ETH Price: $2,404.65 (-1.39%)

Token

DigiKoukou (DKK)
 

Overview

Max Total Supply

1,999 DKK

Holders

1,279

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 DKK
0x643f091aa1477ed4ab892ae1b05be9bcd372aaea
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:
DigiKouKou

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-09-01
*/

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

// 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 DigiKouKou is ERC721A, Ownable, Pausable 
{
    using Strings for uint256;
    
    uint256 public collectionSize;
    mapping(address => uint256) public mintList;
    uint256 public walletMintLimit;
    string private baseTokenURI;
    string private preRevealTokenURI;
    bool public revealed = false;
    address payable private seller = payable(0xE32e2d88C278D6384C1163b5F88F3B6fe1d85823); 
    uint256 public currentId = 0;
    uint256 public startingPrice = 0;
    uint public  discount = 10;
    uint256 private startAt = 1660096800;

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

    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 !revealed ? preRevealTokenURI : string(abi.encodePacked(baseTokenURI, _tokenId.toString(),".json"));
    }
    
    
    function reveal(string calldata _baseTokenURI) external onlyOwner 
    {
        revealed = true;
        baseTokenURI = _baseTokenURI;
    }

     
    function setStarttPrice(uint256 _startingPrice) external onlyOwner 
    {
        startingPrice = _startingPrice;
    }


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

    function mint() external payable callerIsUser {
        require(mintList[msg.sender] + 1 <= walletMintLimit, "Up to 5 mint allowed per wallet");
        require(totalSupply() + 1 < collectionSize, "EXCEED_COL_SIZE");
        uint256 timeElapsed = block.timestamp - startAt;
        require(timeElapsed >= 0, "Auction has not started");
        if(startingPrice > 0){
            require(msg.value >= startingPrice * 10**14, "The amount of ETH sent is less than the price of token");
        }

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

        if(startingPrice > 0){
            uint refund = msg.value - 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;
    }

}

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":"_preRevealTokenURI","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":[],"name":"discount","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":[],"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":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"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"}]

60806040526000600e60006101000a81548160ff02191690831515021790555073e32e2d88c278d6384c1163b5f88f3b6fe1d85823600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600f556000601055600a6011556362f311206012553480156200009857600080fd5b5060405162003e0e38038062003e0e8339818101604052810190620000be919062000383565b84848160029080519060200190620000d89291906200024a565b508060039080519060200190620000f19291906200024a565b50620001026200017760201b60201c565b60008190555050506200012a6200011e6200017c60201b60201c565b6200018460201b60201c565b6000600860146101000a81548160ff0219169083151502179055508260098190555081600b8190555080600d90805190602001906200016b9291906200024a565b505050505050620005e4565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025890620004ef565b90600052602060002090601f0160209004810192826200027c5760008555620002c8565b82601f106200029757805160ff1916838001178555620002c8565b82800160010185558215620002c8579182015b82811115620002c7578251825591602001919060010190620002aa565b5b509050620002d79190620002db565b5090565b5b80821115620002f6576000816000905550600101620002dc565b5090565b6000620003116200030b8462000479565b62000450565b9050828152602081018484840111156200032a57600080fd5b62000337848285620004b9565b509392505050565b600082601f8301126200035157600080fd5b815162000363848260208601620002fa565b91505092915050565b6000815190506200037d81620005ca565b92915050565b600080600080600060a086880312156200039c57600080fd5b600086015167ffffffffffffffff811115620003b757600080fd5b620003c5888289016200033f565b955050602086015167ffffffffffffffff811115620003e357600080fd5b620003f1888289016200033f565b945050604062000404888289016200036c565b935050606062000417888289016200036c565b925050608086015167ffffffffffffffff8111156200043557600080fd5b62000443888289016200033f565b9150509295509295909350565b60006200045c6200046f565b90506200046a828262000525565b919050565b6000604051905090565b600067ffffffffffffffff8211156200049757620004966200058a565b5b620004a282620005b9565b9050602081019050919050565b6000819050919050565b60005b83811015620004d9578082015181840152602081019050620004bc565b83811115620004e9576000848401525b50505050565b600060028204905060018216806200050857607f821691505b602082108114156200051f576200051e6200055b565b5b50919050565b6200053082620005b9565b810181811067ffffffffffffffff821117156200055257620005516200058a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005d581620004af565b8114620005e157600080fd5b50565b61381a80620005f46000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063b5190c42116100a0578063d6fbf2021161006f578063d6fbf202146106f3578063d7674ed41461071e578063e00dd16114610747578063e985e9c514610772578063f2fde38b146107af57610204565b8063b5190c4214610625578063b88d4fde14610650578063bef432c614610679578063c87b56dd146106b657610204565b80638456cb59116100e75780638456cb59146105735780638ba4cc3c1461058a5780638da5cb5b146105a657806395d89b41146105d1578063a22cb465146105fc57610204565b806370a08231146104c9578063715018a61461050657806374c285611461051d578063778777011461054857610204565b80633f4ba83a1161019b578063518302271161016a57806351830227146103e057806355234ec01461040b5780635c975abb146104365780636352211e146104615780636b6f4a9d1461049e57610204565b80633f4ba83a1461034c57806342842e0e1461036357806345c0f5331461038c5780634c261247146103b757610204565b8063095ea7b3116101d7578063095ea7b3146102c55780631249c58b146102ee57806318160ddd146102f857806323b872dd1461032357610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc1461027157806308b852db146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612a54565b6107d8565b60405161023d9190612ef8565b60405180910390f35b34801561025257600080fd5b5061025b61086a565b6040516102689190612f13565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612aeb565b6108fc565b6040516102a59190612e91565b60405180910390f35b3480156102ba57600080fd5b506102c3610978565b005b3480156102d157600080fd5b506102ec60048036038101906102e79190612a18565b6109fe565b005b6102f6610b3f565b005b34801561030457600080fd5b5061030d610f21565b60405161031a91906130b5565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612912565b610f38565b005b34801561035857600080fd5b5061036161125d565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612912565b6112e3565b005b34801561039857600080fd5b506103a1611303565b6040516103ae91906130b5565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190612aa6565b611309565b005b3480156103ec57600080fd5b506103f56113b6565b6040516104029190612ef8565b60405180910390f35b34801561041757600080fd5b506104206113c9565b60405161042d91906130b5565b60405180910390f35b34801561044257600080fd5b5061044b6113dc565b6040516104589190612ef8565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190612aeb565b6113f3565b6040516104959190612e91565b60405180910390f35b3480156104aa57600080fd5b506104b3611405565b6040516104c091906130b5565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb91906128ad565b61140b565b6040516104fd91906130b5565b60405180910390f35b34801561051257600080fd5b5061051b6114c4565b005b34801561052957600080fd5b5061053261154c565b60405161053f91906130b5565b60405180910390f35b34801561055457600080fd5b5061055d611552565b60405161056a91906130b5565b60405180910390f35b34801561057f57600080fd5b5061058861155c565b005b6105a4600480360381019061059f9190612a18565b6115e2565b005b3480156105b257600080fd5b506105bb61171f565b6040516105c89190612e91565b60405180910390f35b3480156105dd57600080fd5b506105e6611749565b6040516105f39190612f13565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e91906129dc565b6117db565b005b34801561063157600080fd5b5061063a611953565b60405161064791906130b5565b60405180910390f35b34801561065c57600080fd5b5061067760048036038101906106729190612961565b61195d565b005b34801561068557600080fd5b506106a0600480360381019061069b91906128ad565b6119d0565b6040516106ad91906130b5565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190612aeb565b6119e8565b6040516106ea9190612f13565b60405180910390f35b3480156106ff57600080fd5b50610708611b0a565b60405161071591906130b5565b60405180910390f35b34801561072a57600080fd5b5061074560048036038101906107409190612aeb565b611b10565b005b34801561075357600080fd5b5061075c611b96565b60405161076991906130b5565b60405180910390f35b34801561077e57600080fd5b50610799600480360381019061079491906128d6565b611b9c565b6040516107a69190612ef8565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906128ad565b611c30565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108635750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461087990613354565b80601f01602080910402602001604051908101604052809291908181526020018280546108a590613354565b80156108f25780601f106108c7576101008083540402835291602001916108f2565b820191906000526020600020905b8154815290600101906020018083116108d557829003601f168201915b5050505050905090565b600061090782611d28565b61093d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610980611d87565b73ffffffffffffffffffffffffffffffffffffffff1661099e61171f565b73ffffffffffffffffffffffffffffffffffffffff16146109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb90613075565b60405180910390fd5b6000601081905550565b6000610a09826113f3565b90508073ffffffffffffffffffffffffffffffffffffffff16610a2a611d8f565b73ffffffffffffffffffffffffffffffffffffffff1614610a8d57610a5681610a51611d8f565b611b9c565b610a8c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490613095565b60405180910390fd5b600b546001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bfc9190613189565b1115610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490612f55565b60405180910390fd5b6009546001610c4a610f21565b610c549190613189565b10610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90612f75565b60405180910390fd5b600060125442610ca4919061326a565b90506000811015610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190613055565b60405180910390fd5b60006010541115610d4c57655af3107a4000601054610d099190613210565b341015610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613035565b60405180910390fd5b5b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d9c9190613189565b92505081905550610dae336001611d97565b6001600f6000828254610dc19190613189565b9250508190555060006010541115610f1e576000655af3107a4000601054610de99190613210565b34610df4919061326a565b90506000811115610e47573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e45573d6000803e3d6000fd5b505b60004790506000600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610e9490612e7c565b60006040518083038185875af1925050503d8060008114610ed1576040519150601f19603f3d011682016040523d82523d6000602084013e610ed6565b606091505b5050905080610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190612fb5565b60405180910390fd5b5050505b50565b6000610f2b611db5565b6001546000540303905090565b6000610f4382611dba565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610faa576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610fb684611e88565b91509150610fcc8187610fc7611d8f565b611eaa565b61101857610fe186610fdc611d8f565b611b9c565b611017576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561107f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61108c8686866001611eee565b801561109757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061116585611141888887611ef4565b7c020000000000000000000000000000000000000000000000000000000017611f1c565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156111ed5760006001850190506000600460008381526020019081526020016000205414156111eb5760005481146111ea578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112558686866001611f47565b505050505050565b611265611d87565b73ffffffffffffffffffffffffffffffffffffffff1661128361171f565b73ffffffffffffffffffffffffffffffffffffffff16146112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090613075565b60405180910390fd5b6112e1611f4d565b565b6112fe8383836040518060200160405280600081525061195d565b505050565b60095481565b611311611d87565b73ffffffffffffffffffffffffffffffffffffffff1661132f61171f565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90613075565b60405180910390fd5b6001600e60006101000a81548160ff0219169083151502179055508181600c91906113b19291906126ef565b505050565b600e60009054906101000a900460ff1681565b60006113d3610f21565b60095403905090565b6000600860149054906101000a900460ff16905090565b60006113fe82611dba565b9050919050565b60115481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611473576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114cc611d87565b73ffffffffffffffffffffffffffffffffffffffff166114ea61171f565b73ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790613075565b60405180910390fd5b61154a6000611fef565b565b600b5481565b6000601054905090565b611564611d87565b73ffffffffffffffffffffffffffffffffffffffff1661158261171f565b73ffffffffffffffffffffffffffffffffffffffff16146115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90613075565b60405180910390fd5b6115e06120b5565b565b6115ea611d87565b73ffffffffffffffffffffffffffffffffffffffff1661160861171f565b73ffffffffffffffffffffffffffffffffffffffff161461165e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165590613075565b60405180910390fd5b600081116116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890613015565b60405180910390fd5b600954816116ad610f21565b6116b79190613189565b11156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90612f75565b60405180910390fd5b80600f600082825461170a9190613189565b9250508190555061171b8282611d97565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461175890613354565b80601f016020809104026020016040519081016040528092919081815260200182805461178490613354565b80156117d15780601f106117a6576101008083540402835291602001916117d1565b820191906000526020600020905b8154815290600101906020018083116117b457829003601f168201915b5050505050905090565b6117e3611d8f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611848576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611855611d8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611902611d8f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119479190612ef8565b60405180910390a35050565b6000600f54905090565b611968848484610f38565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119ca5761199384848484612158565b6119c9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a6020528060005260406000206000915090505481565b60606119f382611d28565b611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2990612ff5565b60405180910390fd5b600e60009054906101000a900460ff1615611a7757600c611a52836122b8565b604051602001611a63929190612e4d565b604051602081830303815290604052611b03565b600d8054611a8490613354565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab090613354565b8015611afd5780601f10611ad257610100808354040283529160200191611afd565b820191906000526020600020905b815481529060010190602001808311611ae057829003601f168201915b50505050505b9050919050565b60105481565b611b18611d87565b73ffffffffffffffffffffffffffffffffffffffff16611b3661171f565b73ffffffffffffffffffffffffffffffffffffffff1614611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390613075565b60405180910390fd5b8060108190555050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c38611d87565b73ffffffffffffffffffffffffffffffffffffffff16611c5661171f565b73ffffffffffffffffffffffffffffffffffffffff1614611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca390613075565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1390612f95565b60405180910390fd5b611d2581611fef565b50565b600081611d33611db5565b11158015611d42575060005482105b8015611d80575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b611db1828260405180602001604052806000815250612465565b5050565b600090565b60008082905080611dc9611db5565b11611e5157600054811015611e505760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e4e575b6000811415611e44576004600083600190039350838152602001908152602001600020549050611e19565b8092505050611e83565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f0b868684612502565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611f556113dc565b611f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8b90612f35565b60405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611fd8611d87565b604051611fe59190612e91565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120bd6113dc565b156120fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f490612fd5565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612141611d87565b60405161214e9190612e91565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261217e611d8f565b8786866040518563ffffffff1660e01b81526004016121a09493929190612eac565b602060405180830381600087803b1580156121ba57600080fd5b505af19250505080156121eb57506040513d601f19601f820116820180604052508101906121e89190612a7d565b60015b612265573d806000811461221b576040519150601f19603f3d011682016040523d82523d6000602084013e612220565b606091505b5060008151141561225d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612300576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612460565b600082905060005b6000821461233257808061231b906133b7565b915050600a8261232b91906131df565b9150612308565b60008167ffffffffffffffff811115612374577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123a65781602001600182028036833780820191505090505b5090505b60008514612459576001826123bf919061326a565b9150600a856123ce9190613400565b60306123da9190613189565b60f81b818381518110612416577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561245291906131df565b94506123aa565b8093505050505b919050565b61246f838361250b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124fd57600080549050600083820390505b6124af6000868380600101945086612158565b6124e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061249c5781600054146124fa57600080fd5b50505b505050565b60009392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612578576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156125b3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125c06000848385611eee565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612637836126286000866000611ef4565b612631856126df565b17611f1c565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061265b578060008190555050506126da6000848385611f47565b505050565b60006001821460e11b9050919050565b8280546126fb90613354565b90600052602060002090601f01602090048101928261271d5760008555612764565b82601f1061273657803560ff1916838001178555612764565b82800160010185558215612764579182015b82811115612763578235825591602001919060010190612748565b5b5090506127719190612775565b5090565b5b8082111561278e576000816000905550600101612776565b5090565b60006127a56127a0846130f5565b6130d0565b9050828152602081018484840111156127bd57600080fd5b6127c8848285613312565b509392505050565b6000813590506127df81613788565b92915050565b6000813590506127f48161379f565b92915050565b600081359050612809816137b6565b92915050565b60008151905061281e816137b6565b92915050565b600082601f83011261283557600080fd5b8135612845848260208601612792565b91505092915050565b60008083601f84011261286057600080fd5b8235905067ffffffffffffffff81111561287957600080fd5b60208301915083600182028301111561289157600080fd5b9250929050565b6000813590506128a7816137cd565b92915050565b6000602082840312156128bf57600080fd5b60006128cd848285016127d0565b91505092915050565b600080604083850312156128e957600080fd5b60006128f7858286016127d0565b9250506020612908858286016127d0565b9150509250929050565b60008060006060848603121561292757600080fd5b6000612935868287016127d0565b9350506020612946868287016127d0565b925050604061295786828701612898565b9150509250925092565b6000806000806080858703121561297757600080fd5b6000612985878288016127d0565b9450506020612996878288016127d0565b93505060406129a787828801612898565b925050606085013567ffffffffffffffff8111156129c457600080fd5b6129d087828801612824565b91505092959194509250565b600080604083850312156129ef57600080fd5b60006129fd858286016127d0565b9250506020612a0e858286016127e5565b9150509250929050565b60008060408385031215612a2b57600080fd5b6000612a39858286016127d0565b9250506020612a4a85828601612898565b9150509250929050565b600060208284031215612a6657600080fd5b6000612a74848285016127fa565b91505092915050565b600060208284031215612a8f57600080fd5b6000612a9d8482850161280f565b91505092915050565b60008060208385031215612ab957600080fd5b600083013567ffffffffffffffff811115612ad357600080fd5b612adf8582860161284e565b92509250509250929050565b600060208284031215612afd57600080fd5b6000612b0b84828501612898565b91505092915050565b612b1d8161329e565b82525050565b612b2c816132b0565b82525050565b6000612b3d8261313b565b612b478185613151565b9350612b57818560208601613321565b612b60816134ed565b840191505092915050565b6000612b7682613146565b612b80818561316d565b9350612b90818560208601613321565b612b99816134ed565b840191505092915050565b6000612baf82613146565b612bb9818561317e565b9350612bc9818560208601613321565b80840191505092915050565b60008154612be281613354565b612bec818661317e565b94506001821660008114612c075760018114612c1857612c4b565b60ff19831686528186019350612c4b565b612c2185613126565b60005b83811015612c4357815481890152600182019150602081019050612c24565b838801955050505b50505092915050565b6000612c6160148361316d565b9150612c6c826134fe565b602082019050919050565b6000612c84601f8361316d565b9150612c8f82613527565b602082019050919050565b6000612ca7600f8361316d565b9150612cb282613550565b602082019050919050565b6000612cca60268361316d565b9150612cd582613579565b604082019050919050565b6000612ced603a8361316d565b9150612cf8826135c8565b604082019050919050565b6000612d1060108361316d565b9150612d1b82613617565b602082019050919050565b6000612d3360118361316d565b9150612d3e82613640565b602082019050919050565b6000612d5660108361316d565b9150612d6182613669565b602082019050919050565b6000612d7960368361316d565b9150612d8482613692565b604082019050919050565b6000612d9c60178361316d565b9150612da7826136e1565b602082019050919050565b6000612dbf60058361317e565b9150612dca8261370a565b600582019050919050565b6000612de260208361316d565b9150612ded82613733565b602082019050919050565b6000612e0560128361316d565b9150612e108261375c565b602082019050919050565b6000612e28600083613162565b9150612e3382613785565b600082019050919050565b612e4781613308565b82525050565b6000612e598285612bd5565b9150612e658284612ba4565b9150612e7082612db2565b91508190509392505050565b6000612e8782612e1b565b9150819050919050565b6000602082019050612ea66000830184612b14565b92915050565b6000608082019050612ec16000830187612b14565b612ece6020830186612b14565b612edb6040830185612e3e565b8181036060830152612eed8184612b32565b905095945050505050565b6000602082019050612f0d6000830184612b23565b92915050565b60006020820190508181036000830152612f2d8184612b6b565b905092915050565b60006020820190508181036000830152612f4e81612c54565b9050919050565b60006020820190508181036000830152612f6e81612c77565b9050919050565b60006020820190508181036000830152612f8e81612c9a565b9050919050565b60006020820190508181036000830152612fae81612cbd565b9050919050565b60006020820190508181036000830152612fce81612ce0565b9050919050565b60006020820190508181036000830152612fee81612d03565b9050919050565b6000602082019050818103600083015261300e81612d26565b9050919050565b6000602082019050818103600083015261302e81612d49565b9050919050565b6000602082019050818103600083015261304e81612d6c565b9050919050565b6000602082019050818103600083015261306e81612d8f565b9050919050565b6000602082019050818103600083015261308e81612dd5565b9050919050565b600060208201905081810360008301526130ae81612df8565b9050919050565b60006020820190506130ca6000830184612e3e565b92915050565b60006130da6130eb565b90506130e68282613386565b919050565b6000604051905090565b600067ffffffffffffffff8211156131105761310f6134be565b5b613119826134ed565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061319482613308565b915061319f83613308565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131d4576131d3613431565b5b828201905092915050565b60006131ea82613308565b91506131f583613308565b92508261320557613204613460565b5b828204905092915050565b600061321b82613308565b915061322683613308565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561325f5761325e613431565b5b828202905092915050565b600061327582613308565b915061328083613308565b92508282101561329357613292613431565b5b828203905092915050565b60006132a9826132e8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561333f578082015181840152602081019050613324565b8381111561334e576000848401525b50505050565b6000600282049050600182168061336c57607f821691505b602082108114156133805761337f61348f565b5b50919050565b61338f826134ed565b810181811067ffffffffffffffff821117156133ae576133ad6134be565b5b80604052505050565b60006133c282613308565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133f5576133f4613431565b5b600182019050919050565b600061340b82613308565b915061341683613308565b92508261342657613425613460565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f557020746f2035206d696e7420616c6c6f776564207065722077616c6c657400600082015250565b7f4558434545445f434f4c5f53495a450000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e206e6f742065786973746564000000000000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f54686520616d6f756e74206f66204554482073656e74206973206c657373207460008201527f68616e20746865207072696365206f6620746f6b656e00000000000000000000602082015250565b7f41756374696f6e20686173206e6f742073746172746564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616c6c657220697320636f6e74726163740000000000000000000000000000600082015250565b50565b6137918161329e565b811461379c57600080fd5b50565b6137a8816132b0565b81146137b357600080fd5b50565b6137bf816132bc565b81146137ca57600080fd5b50565b6137d681613308565b81146137e157600080fd5b5056fea26469706673582212200a06eac7a6b706de5fd531ff52e4cd15848658fb8f12a1843edf87b638e8104964736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a446967694b6f756b6f75000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444b4b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f696d61676573696f2e6d7970696e6174612e636c6f75642f697066732f516d62336e6551354265763576694e32514a46627748546e586b545a517554627763507731647a486833455465542f000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c806370a0823111610118578063b5190c42116100a0578063d6fbf2021161006f578063d6fbf202146106f3578063d7674ed41461071e578063e00dd16114610747578063e985e9c514610772578063f2fde38b146107af57610204565b8063b5190c4214610625578063b88d4fde14610650578063bef432c614610679578063c87b56dd146106b657610204565b80638456cb59116100e75780638456cb59146105735780638ba4cc3c1461058a5780638da5cb5b146105a657806395d89b41146105d1578063a22cb465146105fc57610204565b806370a08231146104c9578063715018a61461050657806374c285611461051d578063778777011461054857610204565b80633f4ba83a1161019b578063518302271161016a57806351830227146103e057806355234ec01461040b5780635c975abb146104365780636352211e146104615780636b6f4a9d1461049e57610204565b80633f4ba83a1461034c57806342842e0e1461036357806345c0f5331461038c5780634c261247146103b757610204565b8063095ea7b3116101d7578063095ea7b3146102c55780631249c58b146102ee57806318160ddd146102f857806323b872dd1461032357610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc1461027157806308b852db146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612a54565b6107d8565b60405161023d9190612ef8565b60405180910390f35b34801561025257600080fd5b5061025b61086a565b6040516102689190612f13565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612aeb565b6108fc565b6040516102a59190612e91565b60405180910390f35b3480156102ba57600080fd5b506102c3610978565b005b3480156102d157600080fd5b506102ec60048036038101906102e79190612a18565b6109fe565b005b6102f6610b3f565b005b34801561030457600080fd5b5061030d610f21565b60405161031a91906130b5565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612912565b610f38565b005b34801561035857600080fd5b5061036161125d565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612912565b6112e3565b005b34801561039857600080fd5b506103a1611303565b6040516103ae91906130b5565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190612aa6565b611309565b005b3480156103ec57600080fd5b506103f56113b6565b6040516104029190612ef8565b60405180910390f35b34801561041757600080fd5b506104206113c9565b60405161042d91906130b5565b60405180910390f35b34801561044257600080fd5b5061044b6113dc565b6040516104589190612ef8565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190612aeb565b6113f3565b6040516104959190612e91565b60405180910390f35b3480156104aa57600080fd5b506104b3611405565b6040516104c091906130b5565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb91906128ad565b61140b565b6040516104fd91906130b5565b60405180910390f35b34801561051257600080fd5b5061051b6114c4565b005b34801561052957600080fd5b5061053261154c565b60405161053f91906130b5565b60405180910390f35b34801561055457600080fd5b5061055d611552565b60405161056a91906130b5565b60405180910390f35b34801561057f57600080fd5b5061058861155c565b005b6105a4600480360381019061059f9190612a18565b6115e2565b005b3480156105b257600080fd5b506105bb61171f565b6040516105c89190612e91565b60405180910390f35b3480156105dd57600080fd5b506105e6611749565b6040516105f39190612f13565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e91906129dc565b6117db565b005b34801561063157600080fd5b5061063a611953565b60405161064791906130b5565b60405180910390f35b34801561065c57600080fd5b5061067760048036038101906106729190612961565b61195d565b005b34801561068557600080fd5b506106a0600480360381019061069b91906128ad565b6119d0565b6040516106ad91906130b5565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190612aeb565b6119e8565b6040516106ea9190612f13565b60405180910390f35b3480156106ff57600080fd5b50610708611b0a565b60405161071591906130b5565b60405180910390f35b34801561072a57600080fd5b5061074560048036038101906107409190612aeb565b611b10565b005b34801561075357600080fd5b5061075c611b96565b60405161076991906130b5565b60405180910390f35b34801561077e57600080fd5b50610799600480360381019061079491906128d6565b611b9c565b6040516107a69190612ef8565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906128ad565b611c30565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108635750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461087990613354565b80601f01602080910402602001604051908101604052809291908181526020018280546108a590613354565b80156108f25780601f106108c7576101008083540402835291602001916108f2565b820191906000526020600020905b8154815290600101906020018083116108d557829003601f168201915b5050505050905090565b600061090782611d28565b61093d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610980611d87565b73ffffffffffffffffffffffffffffffffffffffff1661099e61171f565b73ffffffffffffffffffffffffffffffffffffffff16146109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb90613075565b60405180910390fd5b6000601081905550565b6000610a09826113f3565b90508073ffffffffffffffffffffffffffffffffffffffff16610a2a611d8f565b73ffffffffffffffffffffffffffffffffffffffff1614610a8d57610a5681610a51611d8f565b611b9c565b610a8c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490613095565b60405180910390fd5b600b546001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bfc9190613189565b1115610c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3490612f55565b60405180910390fd5b6009546001610c4a610f21565b610c549190613189565b10610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90612f75565b60405180910390fd5b600060125442610ca4919061326a565b90506000811015610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190613055565b60405180910390fd5b60006010541115610d4c57655af3107a4000601054610d099190613210565b341015610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613035565b60405180910390fd5b5b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d9c9190613189565b92505081905550610dae336001611d97565b6001600f6000828254610dc19190613189565b9250508190555060006010541115610f1e576000655af3107a4000601054610de99190613210565b34610df4919061326a565b90506000811115610e47573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e45573d6000803e3d6000fd5b505b60004790506000600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610e9490612e7c565b60006040518083038185875af1925050503d8060008114610ed1576040519150601f19603f3d011682016040523d82523d6000602084013e610ed6565b606091505b5050905080610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190612fb5565b60405180910390fd5b5050505b50565b6000610f2b611db5565b6001546000540303905090565b6000610f4382611dba565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610faa576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610fb684611e88565b91509150610fcc8187610fc7611d8f565b611eaa565b61101857610fe186610fdc611d8f565b611b9c565b611017576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561107f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61108c8686866001611eee565b801561109757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061116585611141888887611ef4565b7c020000000000000000000000000000000000000000000000000000000017611f1c565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156111ed5760006001850190506000600460008381526020019081526020016000205414156111eb5760005481146111ea578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112558686866001611f47565b505050505050565b611265611d87565b73ffffffffffffffffffffffffffffffffffffffff1661128361171f565b73ffffffffffffffffffffffffffffffffffffffff16146112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090613075565b60405180910390fd5b6112e1611f4d565b565b6112fe8383836040518060200160405280600081525061195d565b505050565b60095481565b611311611d87565b73ffffffffffffffffffffffffffffffffffffffff1661132f61171f565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90613075565b60405180910390fd5b6001600e60006101000a81548160ff0219169083151502179055508181600c91906113b19291906126ef565b505050565b600e60009054906101000a900460ff1681565b60006113d3610f21565b60095403905090565b6000600860149054906101000a900460ff16905090565b60006113fe82611dba565b9050919050565b60115481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611473576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114cc611d87565b73ffffffffffffffffffffffffffffffffffffffff166114ea61171f565b73ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790613075565b60405180910390fd5b61154a6000611fef565b565b600b5481565b6000601054905090565b611564611d87565b73ffffffffffffffffffffffffffffffffffffffff1661158261171f565b73ffffffffffffffffffffffffffffffffffffffff16146115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90613075565b60405180910390fd5b6115e06120b5565b565b6115ea611d87565b73ffffffffffffffffffffffffffffffffffffffff1661160861171f565b73ffffffffffffffffffffffffffffffffffffffff161461165e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165590613075565b60405180910390fd5b600081116116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890613015565b60405180910390fd5b600954816116ad610f21565b6116b79190613189565b11156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90612f75565b60405180910390fd5b80600f600082825461170a9190613189565b9250508190555061171b8282611d97565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461175890613354565b80601f016020809104026020016040519081016040528092919081815260200182805461178490613354565b80156117d15780601f106117a6576101008083540402835291602001916117d1565b820191906000526020600020905b8154815290600101906020018083116117b457829003601f168201915b5050505050905090565b6117e3611d8f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611848576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611855611d8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611902611d8f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119479190612ef8565b60405180910390a35050565b6000600f54905090565b611968848484610f38565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119ca5761199384848484612158565b6119c9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a6020528060005260406000206000915090505481565b60606119f382611d28565b611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2990612ff5565b60405180910390fd5b600e60009054906101000a900460ff1615611a7757600c611a52836122b8565b604051602001611a63929190612e4d565b604051602081830303815290604052611b03565b600d8054611a8490613354565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab090613354565b8015611afd5780601f10611ad257610100808354040283529160200191611afd565b820191906000526020600020905b815481529060010190602001808311611ae057829003601f168201915b50505050505b9050919050565b60105481565b611b18611d87565b73ffffffffffffffffffffffffffffffffffffffff16611b3661171f565b73ffffffffffffffffffffffffffffffffffffffff1614611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390613075565b60405180910390fd5b8060108190555050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c38611d87565b73ffffffffffffffffffffffffffffffffffffffff16611c5661171f565b73ffffffffffffffffffffffffffffffffffffffff1614611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca390613075565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1390612f95565b60405180910390fd5b611d2581611fef565b50565b600081611d33611db5565b11158015611d42575060005482105b8015611d80575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b611db1828260405180602001604052806000815250612465565b5050565b600090565b60008082905080611dc9611db5565b11611e5157600054811015611e505760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e4e575b6000811415611e44576004600083600190039350838152602001908152602001600020549050611e19565b8092505050611e83565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f0b868684612502565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611f556113dc565b611f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8b90612f35565b60405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611fd8611d87565b604051611fe59190612e91565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120bd6113dc565b156120fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f490612fd5565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612141611d87565b60405161214e9190612e91565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261217e611d8f565b8786866040518563ffffffff1660e01b81526004016121a09493929190612eac565b602060405180830381600087803b1580156121ba57600080fd5b505af19250505080156121eb57506040513d601f19601f820116820180604052508101906121e89190612a7d565b60015b612265573d806000811461221b576040519150601f19603f3d011682016040523d82523d6000602084013e612220565b606091505b5060008151141561225d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612300576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612460565b600082905060005b6000821461233257808061231b906133b7565b915050600a8261232b91906131df565b9150612308565b60008167ffffffffffffffff811115612374577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123a65781602001600182028036833780820191505090505b5090505b60008514612459576001826123bf919061326a565b9150600a856123ce9190613400565b60306123da9190613189565b60f81b818381518110612416577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561245291906131df565b94506123aa565b8093505050505b919050565b61246f838361250b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124fd57600080549050600083820390505b6124af6000868380600101945086612158565b6124e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061249c5781600054146124fa57600080fd5b50505b505050565b60009392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612578576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156125b3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125c06000848385611eee565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612637836126286000866000611ef4565b612631856126df565b17611f1c565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061265b578060008190555050506126da6000848385611f47565b505050565b60006001821460e11b9050919050565b8280546126fb90613354565b90600052602060002090601f01602090048101928261271d5760008555612764565b82601f1061273657803560ff1916838001178555612764565b82800160010185558215612764579182015b82811115612763578235825591602001919060010190612748565b5b5090506127719190612775565b5090565b5b8082111561278e576000816000905550600101612776565b5090565b60006127a56127a0846130f5565b6130d0565b9050828152602081018484840111156127bd57600080fd5b6127c8848285613312565b509392505050565b6000813590506127df81613788565b92915050565b6000813590506127f48161379f565b92915050565b600081359050612809816137b6565b92915050565b60008151905061281e816137b6565b92915050565b600082601f83011261283557600080fd5b8135612845848260208601612792565b91505092915050565b60008083601f84011261286057600080fd5b8235905067ffffffffffffffff81111561287957600080fd5b60208301915083600182028301111561289157600080fd5b9250929050565b6000813590506128a7816137cd565b92915050565b6000602082840312156128bf57600080fd5b60006128cd848285016127d0565b91505092915050565b600080604083850312156128e957600080fd5b60006128f7858286016127d0565b9250506020612908858286016127d0565b9150509250929050565b60008060006060848603121561292757600080fd5b6000612935868287016127d0565b9350506020612946868287016127d0565b925050604061295786828701612898565b9150509250925092565b6000806000806080858703121561297757600080fd5b6000612985878288016127d0565b9450506020612996878288016127d0565b93505060406129a787828801612898565b925050606085013567ffffffffffffffff8111156129c457600080fd5b6129d087828801612824565b91505092959194509250565b600080604083850312156129ef57600080fd5b60006129fd858286016127d0565b9250506020612a0e858286016127e5565b9150509250929050565b60008060408385031215612a2b57600080fd5b6000612a39858286016127d0565b9250506020612a4a85828601612898565b9150509250929050565b600060208284031215612a6657600080fd5b6000612a74848285016127fa565b91505092915050565b600060208284031215612a8f57600080fd5b6000612a9d8482850161280f565b91505092915050565b60008060208385031215612ab957600080fd5b600083013567ffffffffffffffff811115612ad357600080fd5b612adf8582860161284e565b92509250509250929050565b600060208284031215612afd57600080fd5b6000612b0b84828501612898565b91505092915050565b612b1d8161329e565b82525050565b612b2c816132b0565b82525050565b6000612b3d8261313b565b612b478185613151565b9350612b57818560208601613321565b612b60816134ed565b840191505092915050565b6000612b7682613146565b612b80818561316d565b9350612b90818560208601613321565b612b99816134ed565b840191505092915050565b6000612baf82613146565b612bb9818561317e565b9350612bc9818560208601613321565b80840191505092915050565b60008154612be281613354565b612bec818661317e565b94506001821660008114612c075760018114612c1857612c4b565b60ff19831686528186019350612c4b565b612c2185613126565b60005b83811015612c4357815481890152600182019150602081019050612c24565b838801955050505b50505092915050565b6000612c6160148361316d565b9150612c6c826134fe565b602082019050919050565b6000612c84601f8361316d565b9150612c8f82613527565b602082019050919050565b6000612ca7600f8361316d565b9150612cb282613550565b602082019050919050565b6000612cca60268361316d565b9150612cd582613579565b604082019050919050565b6000612ced603a8361316d565b9150612cf8826135c8565b604082019050919050565b6000612d1060108361316d565b9150612d1b82613617565b602082019050919050565b6000612d3360118361316d565b9150612d3e82613640565b602082019050919050565b6000612d5660108361316d565b9150612d6182613669565b602082019050919050565b6000612d7960368361316d565b9150612d8482613692565b604082019050919050565b6000612d9c60178361316d565b9150612da7826136e1565b602082019050919050565b6000612dbf60058361317e565b9150612dca8261370a565b600582019050919050565b6000612de260208361316d565b9150612ded82613733565b602082019050919050565b6000612e0560128361316d565b9150612e108261375c565b602082019050919050565b6000612e28600083613162565b9150612e3382613785565b600082019050919050565b612e4781613308565b82525050565b6000612e598285612bd5565b9150612e658284612ba4565b9150612e7082612db2565b91508190509392505050565b6000612e8782612e1b565b9150819050919050565b6000602082019050612ea66000830184612b14565b92915050565b6000608082019050612ec16000830187612b14565b612ece6020830186612b14565b612edb6040830185612e3e565b8181036060830152612eed8184612b32565b905095945050505050565b6000602082019050612f0d6000830184612b23565b92915050565b60006020820190508181036000830152612f2d8184612b6b565b905092915050565b60006020820190508181036000830152612f4e81612c54565b9050919050565b60006020820190508181036000830152612f6e81612c77565b9050919050565b60006020820190508181036000830152612f8e81612c9a565b9050919050565b60006020820190508181036000830152612fae81612cbd565b9050919050565b60006020820190508181036000830152612fce81612ce0565b9050919050565b60006020820190508181036000830152612fee81612d03565b9050919050565b6000602082019050818103600083015261300e81612d26565b9050919050565b6000602082019050818103600083015261302e81612d49565b9050919050565b6000602082019050818103600083015261304e81612d6c565b9050919050565b6000602082019050818103600083015261306e81612d8f565b9050919050565b6000602082019050818103600083015261308e81612dd5565b9050919050565b600060208201905081810360008301526130ae81612df8565b9050919050565b60006020820190506130ca6000830184612e3e565b92915050565b60006130da6130eb565b90506130e68282613386565b919050565b6000604051905090565b600067ffffffffffffffff8211156131105761310f6134be565b5b613119826134ed565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061319482613308565b915061319f83613308565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131d4576131d3613431565b5b828201905092915050565b60006131ea82613308565b91506131f583613308565b92508261320557613204613460565b5b828204905092915050565b600061321b82613308565b915061322683613308565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561325f5761325e613431565b5b828202905092915050565b600061327582613308565b915061328083613308565b92508282101561329357613292613431565b5b828203905092915050565b60006132a9826132e8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561333f578082015181840152602081019050613324565b8381111561334e576000848401525b50505050565b6000600282049050600182168061336c57607f821691505b602082108114156133805761337f61348f565b5b50919050565b61338f826134ed565b810181811067ffffffffffffffff821117156133ae576133ad6134be565b5b80604052505050565b60006133c282613308565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133f5576133f4613431565b5b600182019050919050565b600061340b82613308565b915061341683613308565b92508261342657613425613460565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f557020746f2035206d696e7420616c6c6f776564207065722077616c6c657400600082015250565b7f4558434545445f434f4c5f53495a450000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e206e6f742065786973746564000000000000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f54686520616d6f756e74206f66204554482073656e74206973206c657373207460008201527f68616e20746865207072696365206f6620746f6b656e00000000000000000000602082015250565b7f41756374696f6e20686173206e6f742073746172746564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616c6c657220697320636f6e74726163740000000000000000000000000000600082015250565b50565b6137918161329e565b811461379c57600080fd5b50565b6137a8816132b0565b81146137b357600080fd5b50565b6137bf816132bc565b81146137ca57600080fd5b50565b6137d681613308565b81146137e157600080fd5b5056fea26469706673582212200a06eac7a6b706de5fd531ff52e4cd15848658fb8f12a1843edf87b638e8104964736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a446967694b6f756b6f75000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444b4b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f696d61676573696f2e6d7970696e6174612e636c6f75642f697066732f516d62336e6551354265763576694e32514a46627748546e586b545a517554627763507731647a486833455465542f000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): DigiKoukou
Arg [1] : _symbol (string): DKK
Arg [2] : _collectionSize (uint256): 2000
Arg [3] : _walletMintLimit (uint256): 5
Arg [4] : _preRevealTokenURI (string): https://imagesio.mypinata.cloud/ipfs/Qmb3neQ5Bev5viN2QJFbwHTnXkTZQuTbwcPw1dzHh3ETeT/

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 446967694b6f756b6f7500000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 444b4b0000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000054
Arg [10] : 68747470733a2f2f696d61676573696f2e6d7970696e6174612e636c6f75642f
Arg [11] : 697066732f516d62336e6551354265763576694e32514a46627748546e586b54
Arg [12] : 5a517554627763507731647a486833455465542f000000000000000000000000


Deployed Bytecode Sourcemap

55405:3817:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25213:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30860:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32806:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59132:85;;;;;;;;;;;;;:::i;:::-;;32354:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57217:1027;;;:::i;:::-;;24267:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42071:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58659:67;;;;;;;;;;;;;:::i;:::-;;33696:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55502:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56824:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55698:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58781:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6905:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30649:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55899:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25892:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9804:103;;;;;;;;;;;;;:::i;:::-;;55588:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58932:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58588:63;;;;;;;;;;;;;:::i;:::-;;58256:322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9153:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31029:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33082:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59033:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33952:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55538:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56482:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55860:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56984:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55825: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;59132:85::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59208:1:::1;59192:13;:17;;;;59132: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;57217:1027::-;56421:10;56408:23;;:9;:23;;;56400:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57310:15:::1;;57305:1;57282:8;:20;57291:10;57282:20;;;;;;;;;;;;;;;;:24;;;;:::i;:::-;:43;;57274:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;57400:14;;57396:1;57380:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:34;57372:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;57445:19;57485:7;;57467:15;:25;;;;:::i;:::-;57445:47;;57526:1;57511:11;:16;;57503:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;57585:1;57569:13;;:17;57566:150;;;57639:6;57623:13;;:22;;;;:::i;:::-;57610:9;:35;;57602:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;57566:150;57752:1;57728:8;:20;57737:10;57728:20;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;57764:24;57774:10;57786:1;57764:9;:24::i;:::-;57812:1;57799:9;;:14;;;;;;;:::i;:::-;;;;;;;;57845:1;57829:13;;:17;57826:409;;;57862:11;57904:6;57888:13;;:22;;;;:::i;:::-;57876:9;:34;;;;:::i;:::-;57862:48;;57938:1;57929:6;:10;57925:87;;;57968:10;57960:28;;:36;57989:6;57960:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;57925:87;58026:15;58044:21;58026:39;;58081:12;58099:6;;;;;;;;;;;:11;;58118:7;58099:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58080:50;;;58153:7;58145:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;57826:409;;;;56465:1;57217:1027::o:0;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;58659:67::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58708:10:::1;:8;:10::i;:::-;58659:67::o:0;33696:185::-;33834:39;33851:4;33857:2;33861:7;33834:39;;;;;;;;;;;;:16;:39::i;:::-;33696:185;;;:::o;55502:29::-;;;;:::o;56824:145::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56918:4:::1;56907:8;;:15;;;;;;;;;;;;;;;;;;56948:13;;56933:12;:28;;;;;;;:::i;:::-;;56824:145:::0;;:::o;55698:28::-;;;;;;;;;;;;;:::o;58781:143::-;58823:7;58892:13;:11;:13::i;:::-;58875:14;;:30;58868:37;;58781: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;55899:26::-;;;;:::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;55588:30::-;;;;:::o;58932:93::-;58980:4;59004:13;;58997:20;;58932:93;:::o;58588:63::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58635:8:::1;:6;:8::i;:::-;58588:63::o:0;58256:322::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58394:1:::1;58383:8;:12;58375:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;58463:14;;58451:8;58435:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;58427:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;58523:8;58510:9;;:21;;;;;;;:::i;:::-;;;;;;;;58542:26;58552:5;58559:8;58542:9;:26::i;:::-;58256: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;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;59033:91::-;59080:7;59107:9;;59100:16;;59033: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;55538:43::-;;;;;;;;;;;;;;;;;:::o;56482:324::-;56601:13;56640:17;56648:8;56640:7;:17::i;:::-;56632:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;56700:8;;;;;;;;;;;56699:9;:99;;56755:12;56769:19;:8;:17;:19::i;:::-;56738:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56699:99;;;56711:17;56699:99;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56692:106;;56482:324;;;:::o;55860:32::-;;;;:::o;56984:122::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57084:14:::1;57068:13;:30;;;;56984:122:::0;:::o;55825: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;34963:104::-;35032:27;35042:2;35046:8;35032:27;;;;;;;;;;;;:9;:27::i;:::-;34963:104;;:::o;57116:93::-;57173:7;57116: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;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;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;51197:147::-;51334:6;51197:147;;;;;:::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:366::-;11557:3;11578:67;11642:2;11637:3;11578:67;:::i;:::-;11571:74;;11654:93;11743:3;11654:93;:::i;:::-;11772:2;11767:3;11763:12;11756:19;;11561:220;;;:::o;11787:400::-;11947:3;11968:84;12050:1;12045:3;11968:84;:::i;:::-;11961:91;;12061:93;12150:3;12061:93;:::i;:::-;12179:1;12174:3;12170:11;12163:18;;11951:236;;;:::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:366::-;12707:3;12728:67;12792:2;12787:3;12728:67;:::i;:::-;12721:74;;12804:93;12893:3;12804:93;:::i;:::-;12922:2;12917:3;12913:12;12906:19;;12711:220;;;:::o;12937:398::-;13096:3;13117:83;13198:1;13193:3;13117:83;:::i;:::-;13110:90;;13209:93;13298:3;13209:93;:::i;:::-;13327:1;13322:3;13318:11;13311:18;;13100:235;;;:::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:170::-;26949:22;26945:1;26937:6;26933:14;26926:46;26915:64;:::o;26985:181::-;27125:33;27121:1;27113:6;27109:14;27102:57;27091:75;:::o;27172:165::-;27312:17;27308:1;27300:6;27296:14;27289:41;27278:59;:::o;27343:225::-;27483:34;27479:1;27471:6;27467:14;27460:58;27552:8;27547:2;27539:6;27535:15;27528:33;27449:119;:::o;27574:245::-;27714:34;27710:1;27702:6;27698:14;27691:58;27783:28;27778:2;27770:6;27766:15;27759:53;27680:139;:::o;27825:166::-;27965:18;27961:1;27953:6;27949:14;27942:42;27931:60;:::o;27997:167::-;28137:19;28133:1;28125:6;28121:14;28114:43;28103:61;:::o;28170:166::-;28310:18;28306:1;28298:6;28294:14;28287:42;28276:60;:::o;28342:241::-;28482:34;28478:1;28470:6;28466:14;28459:58;28551:24;28546:2;28538:6;28534:15;28527:49;28448:135;:::o;28589:173::-;28729:25;28725:1;28717:6;28713:14;28706:49;28695:67;:::o;28768:155::-;28908:7;28904:1;28896:6;28892:14;28885:31;28874:49;:::o;28929:182::-;29069:34;29065:1;29057:6;29053:14;29046:58;29035:76;:::o;29117:168::-;29257:20;29253:1;29245:6;29241:14;29234:44;29223:62;:::o;29291:114::-;29397:8;:::o;29411:122::-;29484:24;29502:5;29484:24;:::i;:::-;29477:5;29474:35;29464:2;;29523:1;29520;29513:12;29464:2;29454:79;:::o;29539:116::-;29609:21;29624:5;29609:21;:::i;:::-;29602:5;29599:32;29589:2;;29645:1;29642;29635:12;29589:2;29579:76;:::o;29661:120::-;29733:23;29750:5;29733:23;:::i;:::-;29726:5;29723:34;29713:2;;29771:1;29768;29761:12;29713:2;29703:78;:::o;29787:122::-;29860:24;29878:5;29860:24;:::i;:::-;29853:5;29850:35;29840:2;;29899:1;29896;29889:12;29840:2;29830:79;:::o

Swarm Source

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