ETH Price: $3,161.32 (-7.54%)
Gas: 4 Gwei

Token

Kitaro Zenga (KIGA)
 

Overview

Max Total Supply

297 KIGA

Holders

164

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vechknightvault.eth
Balance
8 KIGA
0x27013982436c909a685c4e33a768ea0bb671fd73
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:
KitaroZenga

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.9.9 https://hardhat.org

// File erc721a/contracts/[email protected]

// 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/[email protected]

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


// File @openzeppelin/contracts/utils/[email protected]

// 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/access/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 @openzeppelin/contracts/security/[email protected]

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// File contracts/kitaro_zenga.sol


pragma solidity >=0.8.9 <0.9.0;




contract KitaroZenga is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    mapping (address => uint256) public TokensPerMinter;
    uint256 public tokenFee = 0.001 ether;
    uint256 public maxTokensPerTx = 11;
    uint256 public freeTokensPerWallet = 1;
    uint256 public limitTokensPerWallet = 22;
    uint256 public maxSupply = 7777;
    bool public openForSale = true;
    string public baseURI = "";

    constructor() ERC721A("Kitaro Zenga", "KIGA"){}

    function mint(uint256 amount) external payable {
        require(amount > 0, "Invalid mint amount!");
        require(totalSupply() + amount <= maxSupply, "Max supply exceeded!");
        if (msg.sender != owner()) {
            require(openForSale, "Minting is not open yet");
            require(amount <= maxTokensPerTx, "Exceeded max number tokens per tx");
            require(TokensPerMinter[msg.sender] + amount <= limitTokensPerWallet, 'Exceed limit tokens per wallet!');            
            require(tx.origin == msg.sender, "The caller is another contract");
            uint256 senderTokensMinted = TokensPerMinter[msg.sender];
            uint256 remainFreeMintTokens = (freeTokensPerWallet > senderTokensMinted ? (freeTokensPerWallet - senderTokensMinted) : 0);
            require(
                msg.value >= (amount - remainFreeMintTokens) * tokenFee,
                "Insufficient funds!"
            );
            TokensPerMinter[msg.sender] += amount;
        }
        _mint(msg.sender, amount);
    }

    function devMint(uint256 _mintAmount, address _receiver) public onlyOwner {
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "Max supply exceeded!"
        );
        _mint(_receiver, _mintAmount);
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function setMaxTokensPerTx(uint256 _maxTokensPerTx) external onlyOwner {
        maxTokensPerTx = _maxTokensPerTx;
    }

    function setMaxTokensPerWallet(uint256 _maxTokensPerWallet) external onlyOwner {
        limitTokensPerWallet = _maxTokensPerWallet;
    }

    function setTokenFee(uint256 _fee) public onlyOwner {
        tokenFee = _fee;
    }

    function setFreeTokensPerWallet(uint256 amount) public onlyOwner {
        freeTokensPerWallet = amount;
    }

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

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

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

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

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
        maxSupply = _maxSupply;
    }

    function setSaleOpen(bool _state) public onlyOwner {
        openForSale = _state;
    }

    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"TokensPerMinter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openForSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensPerTx","type":"uint256"}],"name":"setMaxTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensPerWallet","type":"uint256"}],"name":"setMaxTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setTokenFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266038d7ea4c68000600b55600b600c556001600d556016600e55611e61600f556001601060006101000a81548160ff02191690831515021790555060405180602001604052806000815250601190805190602001906200006692919062000230565b503480156200007457600080fd5b506040518060400160405280600c81526020017f4b697461726f205a656e676100000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b494741000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f992919062000230565b5080600390805190602001906200011292919062000230565b50620001236200015960201b60201c565b60008190555050506200014b6200013f6200016260201b60201c565b6200016a60201b60201c565b600160098190555062000344565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023e906200030f565b90600052602060002090601f016020900481019282620002625760008555620002ae565b82601f106200027d57805160ff1916838001178555620002ae565b82800160010185558215620002ae579182015b82811115620002ad57825182559160200191906001019062000290565b5b509050620002bd9190620002c1565b5090565b5b80821115620002dc576000816000905550600101620002c2565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032857607f821691505b6020821081036200033e576200033d620002e0565b5b50919050565b6133af80620003546000396000f3fe6080604052600436106102045760003560e01c8063648e04ac11610118578063a22cb465116100a0578063b9bed05e1161006f578063b9bed05e1461071e578063c87b56dd14610747578063d5abeb0114610784578063e985e9c5146107af578063f2fde38b146107ec57610204565b8063a22cb4651461067a578063aac5d69f146106a3578063af979f25146106cc578063b88d4fde146106f557610204565b8063715018a6116100e7578063715018a6146105b457806388cb6a20146105cb5780638da5cb5b1461060857806395d89b4114610633578063a0712d681461065e57610204565b8063648e04ac146104fa5780636c0360eb146105235780636f8b44b01461054e57806370a082311461057757610204565b80632d1a12f61161019b578063455991361161016a57806345599136146104135780634caf8c671461043e57806355f804b3146104695780635e307a48146104925780636352211e146104bd57610204565b80632d1a12f61461038157806331b31b88146103aa5780633ccfd60b146103d357806342842e0e146103ea57610204565b806318160ddd116101d757806318160ddd146102d7578063211272311461030257806323b872dd1461032d57806326138c361461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061235a565b610815565b60405161023d91906123a2565b60405180910390f35b34801561025257600080fd5b5061025b6108a7565b6040516102689190612456565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906124ae565b610939565b6040516102a5919061251c565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612563565b6109b5565b005b3480156102e357600080fd5b506102ec610af6565b6040516102f991906125b2565b60405180910390f35b34801561030e57600080fd5b50610317610b0d565b60405161032491906125b2565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f91906125cd565b610b13565b005b34801561036257600080fd5b5061036b610e35565b60405161037891906123a2565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190612620565b610e48565b005b3480156103b657600080fd5b506103d160048036038101906103cc91906124ae565b610eb5565b005b3480156103df57600080fd5b506103e8610ec7565b005b3480156103f657600080fd5b50610411600480360381019061040c91906125cd565b610fa4565b005b34801561041f57600080fd5b50610428610fc4565b60405161043591906125b2565b60405180910390f35b34801561044a57600080fd5b50610453610fca565b60405161046091906125b2565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190612795565b610fd0565b005b34801561049e57600080fd5b506104a7610ff2565b6040516104b491906125b2565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df91906124ae565b610ff8565b6040516104f1919061251c565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c91906124ae565b61100a565b005b34801561052f57600080fd5b5061053861101c565b6040516105459190612456565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906124ae565b6110aa565b005b34801561058357600080fd5b5061059e600480360381019061059991906127de565b6110bc565b6040516105ab91906125b2565b60405180910390f35b3480156105c057600080fd5b506105c9611174565b005b3480156105d757600080fd5b506105f260048036038101906105ed91906127de565b611188565b6040516105ff91906125b2565b60405180910390f35b34801561061457600080fd5b5061061d6111a0565b60405161062a919061251c565b60405180910390f35b34801561063f57600080fd5b506106486111ca565b6040516106559190612456565b60405180910390f35b610678600480360381019061067391906124ae565b61125c565b005b34801561068657600080fd5b506106a1600480360381019061069c9190612837565b6115e9565b005b3480156106af57600080fd5b506106ca60048036038101906106c591906124ae565b611760565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190612877565b611772565b005b34801561070157600080fd5b5061071c60048036038101906107179190612945565b611797565b005b34801561072a57600080fd5b50610745600480360381019061074091906124ae565b61180a565b005b34801561075357600080fd5b5061076e600480360381019061076991906124ae565b61181c565b60405161077b9190612456565b60405180910390f35b34801561079057600080fd5b50610799611946565b6040516107a691906125b2565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906129c8565b61194c565b6040516107e391906123a2565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e91906127de565b6119e0565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108b690612a37565b80601f01602080910402602001604051908101604052809291908181526020018280546108e290612a37565b801561092f5780601f106109045761010080835404028352916020019161092f565b820191906000526020600020905b81548152906001019060200180831161091257829003601f168201915b5050505050905090565b600061094482611a63565b61097a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c082610ff8565b90508073ffffffffffffffffffffffffffffffffffffffff166109e1611ac2565b73ffffffffffffffffffffffffffffffffffffffff1614610a4457610a0d81610a08611ac2565b61194c565b610a43576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b00611aca565b6001546000540303905090565b600e5481565b6000610b1e82611ad3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b85576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b9184611b9f565b91509150610ba78187610ba2611ac2565b611bc1565b610bf357610bbc86610bb7611ac2565b61194c565b610bf2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c59576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c668686866001611c05565b8015610c7157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d3f85610d1b888887611c0b565b7c020000000000000000000000000000000000000000000000000000000017611c33565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610dc55760006001850190506000600460008381526020019081526020016000205403610dc3576000548114610dc2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e2d8686866001611c5e565b505050505050565b601060009054906101000a900460ff1681565b610e50611c64565b600f5482610e5c610af6565b610e669190612a97565b1115610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90612b39565b60405180910390fd5b610eb18183611ce2565b5050565b610ebd611c64565b80600b8190555050565b610ecf611c64565b600260095403610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90612ba5565b60405180910390fd5b60026009819055506000610f266111a0565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f4990612bf6565b60006040518083038185875af1925050503d8060008114610f86576040519150601f19603f3d011682016040523d82523d6000602084013e610f8b565b606091505b5050905080610f9957600080fd5b506001600981905550565b610fbf83838360405180602001604052806000815250611797565b505050565b600b5481565b600d5481565b610fd8611c64565b8060119080519060200190610fee92919061224b565b5050565b600c5481565b600061100382611ad3565b9050919050565b611012611c64565b80600d8190555050565b6011805461102990612a37565b80601f016020809104026020016040519081016040528092919081815260200182805461105590612a37565b80156110a25780601f10611077576101008083540402835291602001916110a2565b820191906000526020600020905b81548152906001019060200180831161108557829003601f168201915b505050505081565b6110b2611c64565b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611123576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61117c611c64565b6111866000611eb4565b565b600a6020528060005260406000206000915090505481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111d990612a37565b80601f016020809104026020016040519081016040528092919081815260200182805461120590612a37565b80156112525780601f1061122757610100808354040283529160200191611252565b820191906000526020600020905b81548152906001019060200180831161123557829003601f168201915b5050505050905090565b6000811161129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690612c57565b60405180910390fd5b600f54816112ab610af6565b6112b59190612a97565b11156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90612b39565b60405180910390fd5b6112fe6111a0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115dc57601060009054906101000a900460ff1661137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690612cc3565b60405180910390fd5b600c548111156113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb90612d55565b60405180910390fd5b600e5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114129190612a97565b1115611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90612dc1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b890612e2d565b60405180910390fd5b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081600d5411611517576000611526565b81600d546115259190612e4d565b5b9050600b5481846115379190612e4d565b6115419190612e81565b341015611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90612f27565b60405180910390fd5b82600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115d29190612a97565b9250508190555050505b6115e63382611ce2565b50565b6115f1611ac2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611655576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611662611ac2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661170f611ac2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161175491906123a2565b60405180910390a35050565b611768611c64565b80600e8190555050565b61177a611c64565b80601060006101000a81548160ff02191690831515021790555050565b6117a2848484610b13565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611804576117cd84848484611f7a565b611803576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611812611c64565b80600c8190555050565b606061182782611a63565b611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d90612fb9565b60405180910390fd5b60006011805461187590612a37565b80601f01602080910402602001604051908101604052809291908181526020018280546118a190612a37565b80156118ee5780601f106118c3576101008083540402835291602001916118ee565b820191906000526020600020905b8154815290600101906020018083116118d157829003601f168201915b505050505090506000815111611913576040518060200160405280600081525061193e565b8061191d846120ca565b60405160200161192e929190613061565b6040516020818303038152906040525b915050919050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119e8611c64565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90613102565b60405180910390fd5b611a6081611eb4565b50565b600081611a6e611aca565b11158015611a7d575060005482105b8015611abb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611ae2611aca565b11611b6857600054811015611b675760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b65575b60008103611b5b576004600083600190039350838152602001908152602001600020549050611b31565b8092505050611b9a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c2286868461222a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611c6c612233565b73ffffffffffffffffffffffffffffffffffffffff16611c8a6111a0565b73ffffffffffffffffffffffffffffffffffffffff1614611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd79061316e565b60405180910390fd5b565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d4e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611d88576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d956000848385611c05565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e0c83611dfd6000866000611c0b565b611e068561223b565b17611c33565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611e3057806000819055505050611eaf6000848385611c5e565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fa0611ac2565b8786866040518563ffffffff1660e01b8152600401611fc294939291906131e3565b6020604051808303816000875af1925050508015611ffe57506040513d601f19601f82011682018060405250810190611ffb9190613244565b60015b612077573d806000811461202e576040519150601f19603f3d011682016040523d82523d6000602084013e612033565b606091505b50600081510361206f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612111576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612225565b600082905060005b6000821461214357808061212c90613271565b915050600a8261213c91906132e8565b9150612119565b60008167ffffffffffffffff81111561215f5761215e61266a565b5b6040519080825280601f01601f1916602001820160405280156121915781602001600182028036833780820191505090505b5090505b6000851461221e576001826121aa9190612e4d565b9150600a856121b99190613319565b60306121c59190612a97565b60f81b8183815181106121db576121da61334a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561221791906132e8565b9450612195565b8093505050505b919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b82805461225790612a37565b90600052602060002090601f01602090048101928261227957600085556122c0565b82601f1061229257805160ff19168380011785556122c0565b828001600101855582156122c0579182015b828111156122bf5782518255916020019190600101906122a4565b5b5090506122cd91906122d1565b5090565b5b808211156122ea5760008160009055506001016122d2565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61233781612302565b811461234257600080fd5b50565b6000813590506123548161232e565b92915050565b6000602082840312156123705761236f6122f8565b5b600061237e84828501612345565b91505092915050565b60008115159050919050565b61239c81612387565b82525050565b60006020820190506123b76000830184612393565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123f75780820151818401526020810190506123dc565b83811115612406576000848401525b50505050565b6000601f19601f8301169050919050565b6000612428826123bd565b61243281856123c8565b93506124428185602086016123d9565b61244b8161240c565b840191505092915050565b60006020820190508181036000830152612470818461241d565b905092915050565b6000819050919050565b61248b81612478565b811461249657600080fd5b50565b6000813590506124a881612482565b92915050565b6000602082840312156124c4576124c36122f8565b5b60006124d284828501612499565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612506826124db565b9050919050565b612516816124fb565b82525050565b6000602082019050612531600083018461250d565b92915050565b612540816124fb565b811461254b57600080fd5b50565b60008135905061255d81612537565b92915050565b6000806040838503121561257a576125796122f8565b5b60006125888582860161254e565b925050602061259985828601612499565b9150509250929050565b6125ac81612478565b82525050565b60006020820190506125c760008301846125a3565b92915050565b6000806000606084860312156125e6576125e56122f8565b5b60006125f48682870161254e565b93505060206126058682870161254e565b925050604061261686828701612499565b9150509250925092565b60008060408385031215612637576126366122f8565b5b600061264585828601612499565b92505060206126568582860161254e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126a28261240c565b810181811067ffffffffffffffff821117156126c1576126c061266a565b5b80604052505050565b60006126d46122ee565b90506126e08282612699565b919050565b600067ffffffffffffffff821115612700576126ff61266a565b5b6127098261240c565b9050602081019050919050565b82818337600083830152505050565b6000612738612733846126e5565b6126ca565b90508281526020810184848401111561275457612753612665565b5b61275f848285612716565b509392505050565b600082601f83011261277c5761277b612660565b5b813561278c848260208601612725565b91505092915050565b6000602082840312156127ab576127aa6122f8565b5b600082013567ffffffffffffffff8111156127c9576127c86122fd565b5b6127d584828501612767565b91505092915050565b6000602082840312156127f4576127f36122f8565b5b60006128028482850161254e565b91505092915050565b61281481612387565b811461281f57600080fd5b50565b6000813590506128318161280b565b92915050565b6000806040838503121561284e5761284d6122f8565b5b600061285c8582860161254e565b925050602061286d85828601612822565b9150509250929050565b60006020828403121561288d5761288c6122f8565b5b600061289b84828501612822565b91505092915050565b600067ffffffffffffffff8211156128bf576128be61266a565b5b6128c88261240c565b9050602081019050919050565b60006128e86128e3846128a4565b6126ca565b90508281526020810184848401111561290457612903612665565b5b61290f848285612716565b509392505050565b600082601f83011261292c5761292b612660565b5b813561293c8482602086016128d5565b91505092915050565b6000806000806080858703121561295f5761295e6122f8565b5b600061296d8782880161254e565b945050602061297e8782880161254e565b935050604061298f87828801612499565b925050606085013567ffffffffffffffff8111156129b0576129af6122fd565b5b6129bc87828801612917565b91505092959194509250565b600080604083850312156129df576129de6122f8565b5b60006129ed8582860161254e565b92505060206129fe8582860161254e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a4f57607f821691505b602082108103612a6257612a61612a08565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612aa282612478565b9150612aad83612478565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ae257612ae1612a68565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612b236014836123c8565b9150612b2e82612aed565b602082019050919050565b60006020820190508181036000830152612b5281612b16565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612b8f601f836123c8565b9150612b9a82612b59565b602082019050919050565b60006020820190508181036000830152612bbe81612b82565b9050919050565b600081905092915050565b50565b6000612be0600083612bc5565b9150612beb82612bd0565b600082019050919050565b6000612c0182612bd3565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612c416014836123c8565b9150612c4c82612c0b565b602082019050919050565b60006020820190508181036000830152612c7081612c34565b9050919050565b7f4d696e74696e67206973206e6f74206f70656e20796574000000000000000000600082015250565b6000612cad6017836123c8565b9150612cb882612c77565b602082019050919050565b60006020820190508181036000830152612cdc81612ca0565b9050919050565b7f4578636565646564206d6178206e756d62657220746f6b656e7320706572207460008201527f7800000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d3f6021836123c8565b9150612d4a82612ce3565b604082019050919050565b60006020820190508181036000830152612d6e81612d32565b9050919050565b7f457863656564206c696d697420746f6b656e73207065722077616c6c65742100600082015250565b6000612dab601f836123c8565b9150612db682612d75565b602082019050919050565b60006020820190508181036000830152612dda81612d9e565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612e17601e836123c8565b9150612e2282612de1565b602082019050919050565b60006020820190508181036000830152612e4681612e0a565b9050919050565b6000612e5882612478565b9150612e6383612478565b925082821015612e7657612e75612a68565b5b828203905092915050565b6000612e8c82612478565b9150612e9783612478565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ed057612ecf612a68565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000612f116013836123c8565b9150612f1c82612edb565b602082019050919050565b60006020820190508181036000830152612f4081612f04565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612fa3602f836123c8565b9150612fae82612f47565b604082019050919050565b60006020820190508181036000830152612fd281612f96565b9050919050565b600081905092915050565b6000612fef826123bd565b612ff98185612fd9565b93506130098185602086016123d9565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061304b600583612fd9565b915061305682613015565b600582019050919050565b600061306d8285612fe4565b91506130798284612fe4565b91506130848261303e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130ec6026836123c8565b91506130f782613090565b604082019050919050565b6000602082019050818103600083015261311b816130df565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131586020836123c8565b915061316382613122565b602082019050919050565b600060208201905081810360008301526131878161314b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006131b58261318e565b6131bf8185613199565b93506131cf8185602086016123d9565b6131d88161240c565b840191505092915050565b60006080820190506131f8600083018761250d565b613205602083018661250d565b61321260408301856125a3565b818103606083015261322481846131aa565b905095945050505050565b60008151905061323e8161232e565b92915050565b60006020828403121561325a576132596122f8565b5b60006132688482850161322f565b91505092915050565b600061327c82612478565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036132ae576132ad612a68565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132f382612478565b91506132fe83612478565b92508261330e5761330d6132b9565b5b828204905092915050565b600061332482612478565b915061332f83612478565b92508261333f5761333e6132b9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220d29bfef53210888bbb6df4906cd1779dfea611d41d90a3650ae3bdd8c988579664736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063648e04ac11610118578063a22cb465116100a0578063b9bed05e1161006f578063b9bed05e1461071e578063c87b56dd14610747578063d5abeb0114610784578063e985e9c5146107af578063f2fde38b146107ec57610204565b8063a22cb4651461067a578063aac5d69f146106a3578063af979f25146106cc578063b88d4fde146106f557610204565b8063715018a6116100e7578063715018a6146105b457806388cb6a20146105cb5780638da5cb5b1461060857806395d89b4114610633578063a0712d681461065e57610204565b8063648e04ac146104fa5780636c0360eb146105235780636f8b44b01461054e57806370a082311461057757610204565b80632d1a12f61161019b578063455991361161016a57806345599136146104135780634caf8c671461043e57806355f804b3146104695780635e307a48146104925780636352211e146104bd57610204565b80632d1a12f61461038157806331b31b88146103aa5780633ccfd60b146103d357806342842e0e146103ea57610204565b806318160ddd116101d757806318160ddd146102d7578063211272311461030257806323b872dd1461032d57806326138c361461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061235a565b610815565b60405161023d91906123a2565b60405180910390f35b34801561025257600080fd5b5061025b6108a7565b6040516102689190612456565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906124ae565b610939565b6040516102a5919061251c565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612563565b6109b5565b005b3480156102e357600080fd5b506102ec610af6565b6040516102f991906125b2565b60405180910390f35b34801561030e57600080fd5b50610317610b0d565b60405161032491906125b2565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f91906125cd565b610b13565b005b34801561036257600080fd5b5061036b610e35565b60405161037891906123a2565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190612620565b610e48565b005b3480156103b657600080fd5b506103d160048036038101906103cc91906124ae565b610eb5565b005b3480156103df57600080fd5b506103e8610ec7565b005b3480156103f657600080fd5b50610411600480360381019061040c91906125cd565b610fa4565b005b34801561041f57600080fd5b50610428610fc4565b60405161043591906125b2565b60405180910390f35b34801561044a57600080fd5b50610453610fca565b60405161046091906125b2565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190612795565b610fd0565b005b34801561049e57600080fd5b506104a7610ff2565b6040516104b491906125b2565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df91906124ae565b610ff8565b6040516104f1919061251c565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c91906124ae565b61100a565b005b34801561052f57600080fd5b5061053861101c565b6040516105459190612456565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906124ae565b6110aa565b005b34801561058357600080fd5b5061059e600480360381019061059991906127de565b6110bc565b6040516105ab91906125b2565b60405180910390f35b3480156105c057600080fd5b506105c9611174565b005b3480156105d757600080fd5b506105f260048036038101906105ed91906127de565b611188565b6040516105ff91906125b2565b60405180910390f35b34801561061457600080fd5b5061061d6111a0565b60405161062a919061251c565b60405180910390f35b34801561063f57600080fd5b506106486111ca565b6040516106559190612456565b60405180910390f35b610678600480360381019061067391906124ae565b61125c565b005b34801561068657600080fd5b506106a1600480360381019061069c9190612837565b6115e9565b005b3480156106af57600080fd5b506106ca60048036038101906106c591906124ae565b611760565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190612877565b611772565b005b34801561070157600080fd5b5061071c60048036038101906107179190612945565b611797565b005b34801561072a57600080fd5b50610745600480360381019061074091906124ae565b61180a565b005b34801561075357600080fd5b5061076e600480360381019061076991906124ae565b61181c565b60405161077b9190612456565b60405180910390f35b34801561079057600080fd5b50610799611946565b6040516107a691906125b2565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906129c8565b61194c565b6040516107e391906123a2565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e91906127de565b6119e0565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108b690612a37565b80601f01602080910402602001604051908101604052809291908181526020018280546108e290612a37565b801561092f5780601f106109045761010080835404028352916020019161092f565b820191906000526020600020905b81548152906001019060200180831161091257829003601f168201915b5050505050905090565b600061094482611a63565b61097a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c082610ff8565b90508073ffffffffffffffffffffffffffffffffffffffff166109e1611ac2565b73ffffffffffffffffffffffffffffffffffffffff1614610a4457610a0d81610a08611ac2565b61194c565b610a43576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b00611aca565b6001546000540303905090565b600e5481565b6000610b1e82611ad3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b85576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b9184611b9f565b91509150610ba78187610ba2611ac2565b611bc1565b610bf357610bbc86610bb7611ac2565b61194c565b610bf2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c59576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c668686866001611c05565b8015610c7157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d3f85610d1b888887611c0b565b7c020000000000000000000000000000000000000000000000000000000017611c33565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610dc55760006001850190506000600460008381526020019081526020016000205403610dc3576000548114610dc2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e2d8686866001611c5e565b505050505050565b601060009054906101000a900460ff1681565b610e50611c64565b600f5482610e5c610af6565b610e669190612a97565b1115610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90612b39565b60405180910390fd5b610eb18183611ce2565b5050565b610ebd611c64565b80600b8190555050565b610ecf611c64565b600260095403610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90612ba5565b60405180910390fd5b60026009819055506000610f266111a0565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f4990612bf6565b60006040518083038185875af1925050503d8060008114610f86576040519150601f19603f3d011682016040523d82523d6000602084013e610f8b565b606091505b5050905080610f9957600080fd5b506001600981905550565b610fbf83838360405180602001604052806000815250611797565b505050565b600b5481565b600d5481565b610fd8611c64565b8060119080519060200190610fee92919061224b565b5050565b600c5481565b600061100382611ad3565b9050919050565b611012611c64565b80600d8190555050565b6011805461102990612a37565b80601f016020809104026020016040519081016040528092919081815260200182805461105590612a37565b80156110a25780601f10611077576101008083540402835291602001916110a2565b820191906000526020600020905b81548152906001019060200180831161108557829003601f168201915b505050505081565b6110b2611c64565b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611123576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61117c611c64565b6111866000611eb4565b565b600a6020528060005260406000206000915090505481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111d990612a37565b80601f016020809104026020016040519081016040528092919081815260200182805461120590612a37565b80156112525780601f1061122757610100808354040283529160200191611252565b820191906000526020600020905b81548152906001019060200180831161123557829003601f168201915b5050505050905090565b6000811161129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690612c57565b60405180910390fd5b600f54816112ab610af6565b6112b59190612a97565b11156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90612b39565b60405180910390fd5b6112fe6111a0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115dc57601060009054906101000a900460ff1661137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690612cc3565b60405180910390fd5b600c548111156113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb90612d55565b60405180910390fd5b600e5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114129190612a97565b1115611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90612dc1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b890612e2d565b60405180910390fd5b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081600d5411611517576000611526565b81600d546115259190612e4d565b5b9050600b5481846115379190612e4d565b6115419190612e81565b341015611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90612f27565b60405180910390fd5b82600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115d29190612a97565b9250508190555050505b6115e63382611ce2565b50565b6115f1611ac2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611655576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611662611ac2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661170f611ac2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161175491906123a2565b60405180910390a35050565b611768611c64565b80600e8190555050565b61177a611c64565b80601060006101000a81548160ff02191690831515021790555050565b6117a2848484610b13565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611804576117cd84848484611f7a565b611803576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611812611c64565b80600c8190555050565b606061182782611a63565b611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d90612fb9565b60405180910390fd5b60006011805461187590612a37565b80601f01602080910402602001604051908101604052809291908181526020018280546118a190612a37565b80156118ee5780601f106118c3576101008083540402835291602001916118ee565b820191906000526020600020905b8154815290600101906020018083116118d157829003601f168201915b505050505090506000815111611913576040518060200160405280600081525061193e565b8061191d846120ca565b60405160200161192e929190613061565b6040516020818303038152906040525b915050919050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119e8611c64565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90613102565b60405180910390fd5b611a6081611eb4565b50565b600081611a6e611aca565b11158015611a7d575060005482105b8015611abb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611ae2611aca565b11611b6857600054811015611b675760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b65575b60008103611b5b576004600083600190039350838152602001908152602001600020549050611b31565b8092505050611b9a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c2286868461222a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611c6c612233565b73ffffffffffffffffffffffffffffffffffffffff16611c8a6111a0565b73ffffffffffffffffffffffffffffffffffffffff1614611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd79061316e565b60405180910390fd5b565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d4e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611d88576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d956000848385611c05565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e0c83611dfd6000866000611c0b565b611e068561223b565b17611c33565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611e3057806000819055505050611eaf6000848385611c5e565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fa0611ac2565b8786866040518563ffffffff1660e01b8152600401611fc294939291906131e3565b6020604051808303816000875af1925050508015611ffe57506040513d601f19601f82011682018060405250810190611ffb9190613244565b60015b612077573d806000811461202e576040519150601f19603f3d011682016040523d82523d6000602084013e612033565b606091505b50600081510361206f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612111576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612225565b600082905060005b6000821461214357808061212c90613271565b915050600a8261213c91906132e8565b9150612119565b60008167ffffffffffffffff81111561215f5761215e61266a565b5b6040519080825280601f01601f1916602001820160405280156121915781602001600182028036833780820191505090505b5090505b6000851461221e576001826121aa9190612e4d565b9150600a856121b99190613319565b60306121c59190612a97565b60f81b8183815181106121db576121da61334a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561221791906132e8565b9450612195565b8093505050505b919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b82805461225790612a37565b90600052602060002090601f01602090048101928261227957600085556122c0565b82601f1061229257805160ff19168380011785556122c0565b828001600101855582156122c0579182015b828111156122bf5782518255916020019190600101906122a4565b5b5090506122cd91906122d1565b5090565b5b808211156122ea5760008160009055506001016122d2565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61233781612302565b811461234257600080fd5b50565b6000813590506123548161232e565b92915050565b6000602082840312156123705761236f6122f8565b5b600061237e84828501612345565b91505092915050565b60008115159050919050565b61239c81612387565b82525050565b60006020820190506123b76000830184612393565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123f75780820151818401526020810190506123dc565b83811115612406576000848401525b50505050565b6000601f19601f8301169050919050565b6000612428826123bd565b61243281856123c8565b93506124428185602086016123d9565b61244b8161240c565b840191505092915050565b60006020820190508181036000830152612470818461241d565b905092915050565b6000819050919050565b61248b81612478565b811461249657600080fd5b50565b6000813590506124a881612482565b92915050565b6000602082840312156124c4576124c36122f8565b5b60006124d284828501612499565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612506826124db565b9050919050565b612516816124fb565b82525050565b6000602082019050612531600083018461250d565b92915050565b612540816124fb565b811461254b57600080fd5b50565b60008135905061255d81612537565b92915050565b6000806040838503121561257a576125796122f8565b5b60006125888582860161254e565b925050602061259985828601612499565b9150509250929050565b6125ac81612478565b82525050565b60006020820190506125c760008301846125a3565b92915050565b6000806000606084860312156125e6576125e56122f8565b5b60006125f48682870161254e565b93505060206126058682870161254e565b925050604061261686828701612499565b9150509250925092565b60008060408385031215612637576126366122f8565b5b600061264585828601612499565b92505060206126568582860161254e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126a28261240c565b810181811067ffffffffffffffff821117156126c1576126c061266a565b5b80604052505050565b60006126d46122ee565b90506126e08282612699565b919050565b600067ffffffffffffffff821115612700576126ff61266a565b5b6127098261240c565b9050602081019050919050565b82818337600083830152505050565b6000612738612733846126e5565b6126ca565b90508281526020810184848401111561275457612753612665565b5b61275f848285612716565b509392505050565b600082601f83011261277c5761277b612660565b5b813561278c848260208601612725565b91505092915050565b6000602082840312156127ab576127aa6122f8565b5b600082013567ffffffffffffffff8111156127c9576127c86122fd565b5b6127d584828501612767565b91505092915050565b6000602082840312156127f4576127f36122f8565b5b60006128028482850161254e565b91505092915050565b61281481612387565b811461281f57600080fd5b50565b6000813590506128318161280b565b92915050565b6000806040838503121561284e5761284d6122f8565b5b600061285c8582860161254e565b925050602061286d85828601612822565b9150509250929050565b60006020828403121561288d5761288c6122f8565b5b600061289b84828501612822565b91505092915050565b600067ffffffffffffffff8211156128bf576128be61266a565b5b6128c88261240c565b9050602081019050919050565b60006128e86128e3846128a4565b6126ca565b90508281526020810184848401111561290457612903612665565b5b61290f848285612716565b509392505050565b600082601f83011261292c5761292b612660565b5b813561293c8482602086016128d5565b91505092915050565b6000806000806080858703121561295f5761295e6122f8565b5b600061296d8782880161254e565b945050602061297e8782880161254e565b935050604061298f87828801612499565b925050606085013567ffffffffffffffff8111156129b0576129af6122fd565b5b6129bc87828801612917565b91505092959194509250565b600080604083850312156129df576129de6122f8565b5b60006129ed8582860161254e565b92505060206129fe8582860161254e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a4f57607f821691505b602082108103612a6257612a61612a08565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612aa282612478565b9150612aad83612478565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ae257612ae1612a68565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612b236014836123c8565b9150612b2e82612aed565b602082019050919050565b60006020820190508181036000830152612b5281612b16565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612b8f601f836123c8565b9150612b9a82612b59565b602082019050919050565b60006020820190508181036000830152612bbe81612b82565b9050919050565b600081905092915050565b50565b6000612be0600083612bc5565b9150612beb82612bd0565b600082019050919050565b6000612c0182612bd3565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612c416014836123c8565b9150612c4c82612c0b565b602082019050919050565b60006020820190508181036000830152612c7081612c34565b9050919050565b7f4d696e74696e67206973206e6f74206f70656e20796574000000000000000000600082015250565b6000612cad6017836123c8565b9150612cb882612c77565b602082019050919050565b60006020820190508181036000830152612cdc81612ca0565b9050919050565b7f4578636565646564206d6178206e756d62657220746f6b656e7320706572207460008201527f7800000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d3f6021836123c8565b9150612d4a82612ce3565b604082019050919050565b60006020820190508181036000830152612d6e81612d32565b9050919050565b7f457863656564206c696d697420746f6b656e73207065722077616c6c65742100600082015250565b6000612dab601f836123c8565b9150612db682612d75565b602082019050919050565b60006020820190508181036000830152612dda81612d9e565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612e17601e836123c8565b9150612e2282612de1565b602082019050919050565b60006020820190508181036000830152612e4681612e0a565b9050919050565b6000612e5882612478565b9150612e6383612478565b925082821015612e7657612e75612a68565b5b828203905092915050565b6000612e8c82612478565b9150612e9783612478565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ed057612ecf612a68565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000612f116013836123c8565b9150612f1c82612edb565b602082019050919050565b60006020820190508181036000830152612f4081612f04565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612fa3602f836123c8565b9150612fae82612f47565b604082019050919050565b60006020820190508181036000830152612fd281612f96565b9050919050565b600081905092915050565b6000612fef826123bd565b612ff98185612fd9565b93506130098185602086016123d9565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061304b600583612fd9565b915061305682613015565b600582019050919050565b600061306d8285612fe4565b91506130798284612fe4565b91506130848261303e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130ec6026836123c8565b91506130f782613090565b604082019050919050565b6000602082019050818103600083015261311b816130df565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131586020836123c8565b915061316382613122565b602082019050919050565b600060208201905081810360008301526131878161314b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006131b58261318e565b6131bf8185613199565b93506131cf8185602086016123d9565b6131d88161240c565b840191505092915050565b60006080820190506131f8600083018761250d565b613205602083018661250d565b61321260408301856125a3565b818103606083015261322481846131aa565b905095945050505050565b60008151905061323e8161232e565b92915050565b60006020828403121561325a576132596122f8565b5b60006132688482850161322f565b91505092915050565b600061327c82612478565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036132ae576132ad612a68565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132f382612478565b91506132fe83612478565b92508261330e5761330d6132b9565b5b828204905092915050565b600061332482612478565b915061332f83612478565b92508261333f5761333e6132b9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220d29bfef53210888bbb6df4906cd1779dfea611d41d90a3650ae3bdd8c988579664736f6c634300080e0033

Deployed Bytecode Sourcemap

53750:3645:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14664:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20311:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22257:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21805:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13718:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54037:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31522:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54122:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55300:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55938:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57232:160;;;;;;;;;;;;;:::i;:::-;;23147:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53907:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53992:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56912:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53951:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20100:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56032:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54159:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57024:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15343:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47582:103;;;;;;;;;;;;;:::i;:::-;;53849:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46934:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20480:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54249:1043;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22533:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55790:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57134:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23403:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55660:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56152:636;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54084:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22912:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47840:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14664:615;14749:4;15064:10;15049:25;;:11;:25;;;;:102;;;;15141:10;15126:25;;:11;:25;;;;15049:102;:179;;;;15218:10;15203:25;;:11;:25;;;;15049:179;15029:199;;14664:615;;;:::o;20311:100::-;20365:13;20398:5;20391:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20311:100;:::o;22257:204::-;22325:7;22350:16;22358:7;22350;:16::i;:::-;22345:64;;22375:34;;;;;;;;;;;;;;22345:64;22429:15;:24;22445:7;22429:24;;;;;;;;;;;;;;;;;;;;;22422:31;;22257:204;;;:::o;21805:386::-;21878:13;21894:16;21902:7;21894;:16::i;:::-;21878:32;;21950:5;21927:28;;:19;:17;:19::i;:::-;:28;;;21923:175;;21975:44;21992:5;21999:19;:17;:19::i;:::-;21975:16;:44::i;:::-;21970:128;;22047:35;;;;;;;;;;;;;;21970:128;21923:175;22137:2;22110:15;:24;22126:7;22110:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;22175:7;22171:2;22155:28;;22164:5;22155:28;;;;;;;;;;;;21867:324;21805:386;;:::o;13718:315::-;13771:7;13999:15;:13;:15::i;:::-;13984:12;;13968:13;;:28;:46;13961:53;;13718:315;:::o;54037:40::-;;;;:::o;31522:2800::-;31656:27;31686;31705:7;31686:18;:27::i;:::-;31656:57;;31771:4;31730:45;;31746:19;31730:45;;;31726:86;;31784:28;;;;;;;;;;;;;;31726:86;31826:27;31855:23;31882:28;31902:7;31882:19;:28::i;:::-;31825:85;;;;32010:62;32029:15;32046:4;32052:19;:17;:19::i;:::-;32010:18;:62::i;:::-;32005:174;;32092:43;32109:4;32115:19;:17;:19::i;:::-;32092:16;:43::i;:::-;32087:92;;32144:35;;;;;;;;;;;;;;32087:92;32005:174;32210:1;32196:16;;:2;:16;;;32192:52;;32221:23;;;;;;;;;;;;;;32192:52;32257:43;32279:4;32285:2;32289:7;32298:1;32257:21;:43::i;:::-;32393:15;32390:160;;;32533:1;32512:19;32505:30;32390:160;32928:18;:24;32947:4;32928:24;;;;;;;;;;;;;;;;32926:26;;;;;;;;;;;;32997:18;:22;33016:2;32997:22;;;;;;;;;;;;;;;;32995:24;;;;;;;;;;;33319:145;33356:2;33404:45;33419:4;33425:2;33429:19;33404:14;:45::i;:::-;10946:8;33377:72;33319:18;:145::i;:::-;33290:17;:26;33308:7;33290:26;;;;;;;;;;;:174;;;;33634:1;10946:8;33584:19;:46;:51;33580:626;;33656:19;33688:1;33678:7;:11;33656:33;;33845:1;33811:17;:30;33829:11;33811:30;;;;;;;;;;;;:35;33807:384;;33949:13;;33934:11;:28;33930:242;;34129:19;34096:17;:30;34114:11;34096:30;;;;;;;;;;;:52;;;;33930:242;33807:384;33637:569;33580:626;34253:7;34249:2;34234:27;;34243:4;34234:27;;;;;;;;;;;;34272:42;34293:4;34299:2;34303:7;34312:1;34272:20;:42::i;:::-;31645:2677;;;31522:2800;;;:::o;54122:30::-;;;;;;;;;;;;;:::o;55300:243::-;46820:13;:11;:13::i;:::-;55438:9:::1;;55423:11;55407:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;55385:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;55506:29;55512:9;55523:11;55506:5;:29::i;:::-;55300:243:::0;;:::o;55938:86::-;46820:13;:11;:13::i;:::-;56012:4:::1;56001:8;:15;;;;55938:86:::0;:::o;57232:160::-;46820:13;:11;:13::i;:::-;50217:1:::1;50815:7;;:19:::0;50807:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;50217:1;50948:7;:18;;;;57294:7:::2;57315;:5;:7::i;:::-;57307:21;;57336;57307:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57293:69;;;57381:2;57373:11;;;::::0;::::2;;57282:110;50173:1:::1;51127:7;:22;;;;57232:160::o:0;23147:185::-;23285:39;23302:4;23308:2;23312:7;23285:39;;;;;;;;;;;;:16;:39::i;:::-;23147:185;;;:::o;53907:37::-;;;;:::o;53992:38::-;;;;:::o;56912:104::-;46820:13;:11;:13::i;:::-;56997:11:::1;56987:7;:21;;;;;;;;;;;;:::i;:::-;;56912:104:::0;:::o;53951:34::-;;;;:::o;20100:144::-;20164:7;20207:27;20226:7;20207:18;:27::i;:::-;20184:52;;20100:144;;;:::o;56032:112::-;46820:13;:11;:13::i;:::-;56130:6:::1;56108:19;:28;;;;56032:112:::0;:::o;54159:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57024:102::-;46820:13;:11;:13::i;:::-;57108:10:::1;57096:9;:22;;;;57024:102:::0;:::o;15343:224::-;15407:7;15448:1;15431:19;;:5;:19;;;15427:60;;15459:28;;;;;;;;;;;;;;15427:60;9898:13;15505:18;:25;15524:5;15505:25;;;;;;;;;;;;;;;;:54;15498:61;;15343:224;;;:::o;47582:103::-;46820:13;:11;:13::i;:::-;47647:30:::1;47674:1;47647:18;:30::i;:::-;47582:103::o:0;53849:51::-;;;;;;;;;;;;;;;;;:::o;46934:87::-;46980:7;47007:6;;;;;;;;;;;47000:13;;46934:87;:::o;20480:104::-;20536:13;20569:7;20562:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20480:104;:::o;54249:1043::-;54324:1;54315:6;:10;54307:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;54395:9;;54385:6;54369:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;54361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54458:7;:5;:7::i;:::-;54444:21;;:10;:21;;;54440:809;;54490:11;;;;;;;;;;;54482:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;54562:14;;54552:6;:24;;54544:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;54677:20;;54667:6;54637:15;:27;54653:10;54637:27;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:60;;54629:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;54781:10;54768:23;;:9;:23;;;54760:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;54841:26;54870:15;:27;54886:10;54870:27;;;;;;;;;;;;;;;;54841:56;;54912:28;54966:18;54944:19;;:40;:89;;55032:1;54944:89;;;55010:18;54988:19;;:40;;;;:::i;:::-;54944:89;54912:122;;55122:8;;55098:20;55089:6;:29;;;;:::i;:::-;55088:42;;;;:::i;:::-;55075:9;:55;;55049:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;55231:6;55200:15;:27;55216:10;55200:27;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;54467:782;;54440:809;55259:25;55265:10;55277:6;55259:5;:25::i;:::-;54249:1043;:::o;22533:308::-;22644:19;:17;:19::i;:::-;22632:31;;:8;:31;;;22628:61;;22672:17;;;;;;;;;;;;;;22628:61;22754:8;22702:18;:39;22721:19;:17;:19::i;:::-;22702:39;;;;;;;;;;;;;;;:49;22742:8;22702:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;22814:8;22778:55;;22793:19;:17;:19::i;:::-;22778:55;;;22824:8;22778:55;;;;;;:::i;:::-;;;;;;;;22533:308;;:::o;55790:140::-;46820:13;:11;:13::i;:::-;55903:19:::1;55880:20;:42;;;;55790:140:::0;:::o;57134:90::-;46820:13;:11;:13::i;:::-;57210:6:::1;57196:11;;:20;;;;;;;;;;;;;;;;;;57134:90:::0;:::o;23403:399::-;23570:31;23583:4;23589:2;23593:7;23570:12;:31::i;:::-;23634:1;23616:2;:14;;;:19;23612:183;;23655:56;23686:4;23692:2;23696:7;23705:5;23655:30;:56::i;:::-;23650:145;;23739:40;;;;;;;;;;;;;;23650:145;23612:183;23403:399;;;;:::o;55660:122::-;46820:13;:11;:13::i;:::-;55759:15:::1;55742:14;:32;;;;55660:122:::0;:::o;56152:636::-;56271:13;56324:17;56332:8;56324:7;:17::i;:::-;56302:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;56429:28;56460:7;56429:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56529:1;56504:14;56498:28;:32;:282;;;;;;;;;;;;;;;;;56622:14;56663:19;:8;:17;:19::i;:::-;56579:160;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56498:282;56478:302;;;56152:636;;;:::o;54084:31::-;;;;:::o;22912:164::-;23009:4;23033:18;:25;23052:5;23033:25;;;;;;;;;;;;;;;:35;23059:8;23033:35;;;;;;;;;;;;;;;;;;;;;;;;;23026:42;;22912:164;;;;:::o;47840:201::-;46820:13;:11;:13::i;:::-;47949:1:::1;47929:22;;:8;:22;;::::0;47921:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;48005:28;48024:8;48005:18;:28::i;:::-;47840:201:::0;:::o;24057:273::-;24114:4;24170:7;24151:15;:13;:15::i;:::-;:26;;:66;;;;;24204:13;;24194:7;:23;24151:66;:152;;;;;24302:1;10668:8;24255:17;:26;24273:7;24255:26;;;;;;;;;;;;:43;:48;24151:152;24131:172;;24057:273;;;:::o;42618:105::-;42678:7;42705:10;42698:17;;42618:105;:::o;55551:101::-;55616:7;55643:1;55636:8;;55551:101;:::o;17017:1129::-;17084:7;17104:12;17119:7;17104:22;;17187:4;17168:15;:13;:15::i;:::-;:23;17164:915;;17221:13;;17214:4;:20;17210:869;;;17259:14;17276:17;:23;17294:4;17276:23;;;;;;;;;;;;17259:40;;17392:1;10668:8;17365:6;:23;:28;17361:699;;17884:113;17901:1;17891:6;:11;17884:113;;17944:17;:25;17962:6;;;;;;;17944:25;;;;;;;;;;;;17935:34;;17884:113;;;18030:6;18023:13;;;;;;17361:699;17236:843;17210:869;17164:915;18107:31;;;;;;;;;;;;;;17017:1129;;;;:::o;29858:652::-;29953:27;29982:23;30023:53;30079:15;30023:71;;30265:7;30259:4;30252:21;30300:22;30294:4;30287:36;30376:4;30370;30360:21;30337:44;;30472:19;30466:26;30447:45;;30203:300;29858:652;;;:::o;30623:645::-;30765:11;30927:15;30921:4;30917:26;30909:34;;31086:15;31075:9;31071:31;31058:44;;31233:15;31222:9;31219:30;31212:4;31201:9;31198:19;31195:55;31185:65;;30623:645;;;;;:::o;41451:159::-;;;;;:::o;39763:309::-;39898:7;39918:16;11069:3;39944:19;:40;;39918:67;;11069:3;40011:31;40022:4;40028:2;40032:9;40011:10;:31::i;:::-;40003:40;;:61;;39996:68;;;39763:309;;;;;:::o;19591:447::-;19671:14;19839:15;19832:5;19828:27;19819:36;;20013:5;19999:11;19975:22;19971:40;19968:51;19961:5;19958:62;19948:72;;19591:447;;;;:::o;42269:158::-;;;;;:::o;47099:132::-;47174:12;:10;:12::i;:::-;47163:23;;:7;:5;:7::i;:::-;:23;;;47155:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47099:132::o;25888:1529::-;25953:20;25976:13;;25953:36;;26018:1;26004:16;;:2;:16;;;26000:48;;26029:19;;;;;;;;;;;;;;26000:48;26075:1;26063:8;:13;26059:44;;26085:18;;;;;;;;;;;;;;26059:44;26116:61;26146:1;26150:2;26154:12;26168:8;26116:21;:61::i;:::-;26659:1;10035:2;26630:1;:25;;26629:31;26617:8;:44;26591:18;:22;26610:2;26591:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;26938:139;26975:2;27029:33;27052:1;27056:2;27060:1;27029:14;:33::i;:::-;26996:30;27017:8;26996:20;:30::i;:::-;:66;26938:18;:139::i;:::-;26904:17;:31;26922:12;26904:31;;;;;;;;;;;:173;;;;27094:15;27112:12;27094:30;;27139:11;27168:8;27153:12;:23;27139:37;;27191:101;27243:9;;;;;;27239:2;27218:35;;27235:1;27218:35;;;;;;;;;;;;27287:3;27277:7;:13;27191:101;;27324:3;27308:13;:19;;;;26365:974;;27349:60;27378:1;27382:2;27386:12;27400:8;27349:20;:60::i;:::-;25942:1475;25888:1529;;:::o;48201:191::-;48275:16;48294:6;;;;;;;;;;;48275:25;;48320:8;48311:6;;:17;;;;;;;;;;;;;;;;;;48375:8;48344:40;;48365:8;48344:40;;;;;;;;;;;;48264:128;48201:191;:::o;38273:716::-;38436:4;38482:2;38457:45;;;38503:19;:17;:19::i;:::-;38524:4;38530:7;38539:5;38457:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38453:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38757:1;38740:6;:13;:18;38736:235;;38786:40;;;;;;;;;;;;;;38736:235;38929:6;38923:13;38914:6;38910:2;38906:15;38899:38;38453:529;38626:54;;;38616:64;;;:6;:64;;;;38609:71;;;38273:716;;;;;;:::o;51600:723::-;51656:13;51886:1;51877:5;:10;51873:53;;51904:10;;;;;;;;;;;;;;;;;;;;;51873:53;51936:12;51951:5;51936:20;;51967:14;51992:78;52007:1;51999:4;:9;51992:78;;52025:8;;;;;:::i;:::-;;;;52056:2;52048:10;;;;;:::i;:::-;;;51992:78;;;52080:19;52112:6;52102:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52080:39;;52130:154;52146:1;52137:5;:10;52130:154;;52174:1;52164:11;;;;;:::i;:::-;;;52241:2;52233:5;:10;;;;:::i;:::-;52220:2;:24;;;;:::i;:::-;52207:39;;52190:6;52197;52190:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;52270:2;52261:11;;;;;:::i;:::-;;;52130:154;;;52308:6;52294:21;;;;;51600:723;;;;:::o;40648:147::-;40785:6;40648:147;;;;;:::o;45481:98::-;45534:7;45561:10;45554:17;;45481:98;:::o;21421:322::-;21491:14;21722:1;21712:8;21709:15;21684:23;21680:45;21670:55;;21421:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:474::-;5983:6;5991;6040:2;6028:9;6019:7;6015:23;6011:32;6008:119;;;6046:79;;:::i;:::-;6008:119;6166:1;6191:53;6236:7;6227:6;6216:9;6212:22;6191:53;:::i;:::-;6181:63;;6137:117;6293:2;6319:53;6364:7;6355:6;6344:9;6340:22;6319:53;:::i;:::-;6309:63;;6264:118;5915:474;;;;;:::o;6395:117::-;6504:1;6501;6494:12;6518:117;6627:1;6624;6617:12;6641:180;6689:77;6686:1;6679:88;6786:4;6783:1;6776:15;6810:4;6807:1;6800:15;6827:281;6910:27;6932:4;6910:27;:::i;:::-;6902:6;6898:40;7040:6;7028:10;7025:22;7004:18;6992:10;6989:34;6986:62;6983:88;;;7051:18;;:::i;:::-;6983:88;7091:10;7087:2;7080:22;6870:238;6827:281;;:::o;7114:129::-;7148:6;7175:20;;:::i;:::-;7165:30;;7204:33;7232:4;7224:6;7204:33;:::i;:::-;7114:129;;;:::o;7249:308::-;7311:4;7401:18;7393:6;7390:30;7387:56;;;7423:18;;:::i;:::-;7387:56;7461:29;7483:6;7461:29;:::i;:::-;7453:37;;7545:4;7539;7535:15;7527:23;;7249:308;;;:::o;7563:154::-;7647:6;7642:3;7637;7624:30;7709:1;7700:6;7695:3;7691:16;7684:27;7563:154;;;:::o;7723:412::-;7801:5;7826:66;7842:49;7884:6;7842:49;:::i;:::-;7826:66;:::i;:::-;7817:75;;7915:6;7908:5;7901:21;7953:4;7946:5;7942:16;7991:3;7982:6;7977:3;7973:16;7970:25;7967:112;;;7998:79;;:::i;:::-;7967:112;8088:41;8122:6;8117:3;8112;8088:41;:::i;:::-;7807:328;7723:412;;;;;:::o;8155:340::-;8211:5;8260:3;8253:4;8245:6;8241:17;8237:27;8227:122;;8268:79;;:::i;:::-;8227:122;8385:6;8372:20;8410:79;8485:3;8477:6;8470:4;8462:6;8458:17;8410:79;:::i;:::-;8401:88;;8217:278;8155:340;;;;:::o;8501:509::-;8570:6;8619:2;8607:9;8598:7;8594:23;8590:32;8587:119;;;8625:79;;:::i;:::-;8587:119;8773:1;8762:9;8758:17;8745:31;8803:18;8795:6;8792:30;8789:117;;;8825:79;;:::i;:::-;8789:117;8930:63;8985:7;8976:6;8965:9;8961:22;8930:63;:::i;:::-;8920:73;;8716:287;8501:509;;;;:::o;9016:329::-;9075:6;9124:2;9112:9;9103:7;9099:23;9095:32;9092:119;;;9130:79;;:::i;:::-;9092:119;9250:1;9275:53;9320:7;9311:6;9300:9;9296:22;9275:53;:::i;:::-;9265:63;;9221:117;9016:329;;;;:::o;9351:116::-;9421:21;9436:5;9421:21;:::i;:::-;9414:5;9411:32;9401:60;;9457:1;9454;9447:12;9401:60;9351:116;:::o;9473:133::-;9516:5;9554:6;9541:20;9532:29;;9570:30;9594:5;9570:30;:::i;:::-;9473:133;;;;:::o;9612:468::-;9677:6;9685;9734:2;9722:9;9713:7;9709:23;9705:32;9702:119;;;9740:79;;:::i;:::-;9702:119;9860:1;9885:53;9930:7;9921:6;9910:9;9906:22;9885:53;:::i;:::-;9875:63;;9831:117;9987:2;10013:50;10055:7;10046:6;10035:9;10031:22;10013:50;:::i;:::-;10003:60;;9958:115;9612:468;;;;;:::o;10086:323::-;10142:6;10191:2;10179:9;10170:7;10166:23;10162:32;10159:119;;;10197:79;;:::i;:::-;10159:119;10317:1;10342:50;10384:7;10375:6;10364:9;10360:22;10342:50;:::i;:::-;10332:60;;10288:114;10086:323;;;;:::o;10415:307::-;10476:4;10566:18;10558:6;10555:30;10552:56;;;10588:18;;:::i;:::-;10552:56;10626:29;10648:6;10626:29;:::i;:::-;10618:37;;10710:4;10704;10700:15;10692:23;;10415:307;;;:::o;10728:410::-;10805:5;10830:65;10846:48;10887:6;10846:48;:::i;:::-;10830:65;:::i;:::-;10821:74;;10918:6;10911:5;10904:21;10956:4;10949:5;10945:16;10994:3;10985:6;10980:3;10976:16;10973:25;10970:112;;;11001:79;;:::i;:::-;10970:112;11091:41;11125:6;11120:3;11115;11091:41;:::i;:::-;10811:327;10728:410;;;;;:::o;11157:338::-;11212:5;11261:3;11254:4;11246:6;11242:17;11238:27;11228:122;;11269:79;;:::i;:::-;11228:122;11386:6;11373:20;11411:78;11485:3;11477:6;11470:4;11462:6;11458:17;11411:78;:::i;:::-;11402:87;;11218:277;11157:338;;;;:::o;11501:943::-;11596:6;11604;11612;11620;11669:3;11657:9;11648:7;11644:23;11640:33;11637:120;;;11676:79;;:::i;:::-;11637:120;11796:1;11821:53;11866:7;11857:6;11846:9;11842:22;11821:53;:::i;:::-;11811:63;;11767:117;11923:2;11949:53;11994:7;11985:6;11974:9;11970:22;11949:53;:::i;:::-;11939:63;;11894:118;12051:2;12077:53;12122:7;12113:6;12102:9;12098:22;12077:53;:::i;:::-;12067:63;;12022:118;12207:2;12196:9;12192:18;12179:32;12238:18;12230:6;12227:30;12224:117;;;12260:79;;:::i;:::-;12224:117;12365:62;12419:7;12410:6;12399:9;12395:22;12365:62;:::i;:::-;12355:72;;12150:287;11501:943;;;;;;;:::o;12450:474::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:180::-;13490:77;13487:1;13480:88;13587:4;13584:1;13577:15;13611:4;13608:1;13601:15;13628:305;13668:3;13687:20;13705:1;13687:20;:::i;:::-;13682:25;;13721:20;13739:1;13721:20;:::i;:::-;13716:25;;13875:1;13807:66;13803:74;13800:1;13797:81;13794:107;;;13881:18;;:::i;:::-;13794:107;13925:1;13922;13918:9;13911:16;;13628:305;;;;:::o;13939:170::-;14079:22;14075:1;14067:6;14063:14;14056:46;13939:170;:::o;14115:366::-;14257:3;14278:67;14342:2;14337:3;14278:67;:::i;:::-;14271:74;;14354:93;14443:3;14354:93;:::i;:::-;14472:2;14467:3;14463:12;14456:19;;14115:366;;;:::o;14487:419::-;14653:4;14691:2;14680:9;14676:18;14668:26;;14740:9;14734:4;14730:20;14726:1;14715:9;14711:17;14704:47;14768:131;14894:4;14768:131;:::i;:::-;14760:139;;14487:419;;;:::o;14912:181::-;15052:33;15048:1;15040:6;15036:14;15029:57;14912:181;:::o;15099:366::-;15241:3;15262:67;15326:2;15321:3;15262:67;:::i;:::-;15255:74;;15338:93;15427:3;15338:93;:::i;:::-;15456:2;15451:3;15447:12;15440:19;;15099:366;;;:::o;15471:419::-;15637:4;15675:2;15664:9;15660:18;15652:26;;15724:9;15718:4;15714:20;15710:1;15699:9;15695:17;15688:47;15752:131;15878:4;15752:131;:::i;:::-;15744:139;;15471:419;;;:::o;15896:147::-;15997:11;16034:3;16019:18;;15896:147;;;;:::o;16049:114::-;;:::o;16169:398::-;16328:3;16349:83;16430:1;16425:3;16349:83;:::i;:::-;16342:90;;16441:93;16530:3;16441:93;:::i;:::-;16559:1;16554:3;16550:11;16543:18;;16169:398;;;:::o;16573:379::-;16757:3;16779:147;16922:3;16779:147;:::i;:::-;16772:154;;16943:3;16936:10;;16573:379;;;:::o;16958:170::-;17098:22;17094:1;17086:6;17082:14;17075:46;16958:170;:::o;17134:366::-;17276:3;17297:67;17361:2;17356:3;17297:67;:::i;:::-;17290:74;;17373:93;17462:3;17373:93;:::i;:::-;17491:2;17486:3;17482:12;17475:19;;17134:366;;;:::o;17506:419::-;17672:4;17710:2;17699:9;17695:18;17687:26;;17759:9;17753:4;17749:20;17745:1;17734:9;17730:17;17723:47;17787:131;17913:4;17787:131;:::i;:::-;17779:139;;17506:419;;;:::o;17931:173::-;18071:25;18067:1;18059:6;18055:14;18048:49;17931:173;:::o;18110:366::-;18252:3;18273:67;18337:2;18332:3;18273:67;:::i;:::-;18266:74;;18349:93;18438:3;18349:93;:::i;:::-;18467:2;18462:3;18458:12;18451:19;;18110:366;;;:::o;18482:419::-;18648:4;18686:2;18675:9;18671:18;18663:26;;18735:9;18729:4;18725:20;18721:1;18710:9;18706:17;18699:47;18763:131;18889:4;18763:131;:::i;:::-;18755:139;;18482:419;;;:::o;18907:220::-;19047:34;19043:1;19035:6;19031:14;19024:58;19116:3;19111:2;19103:6;19099:15;19092:28;18907:220;:::o;19133:366::-;19275:3;19296:67;19360:2;19355:3;19296:67;:::i;:::-;19289:74;;19372:93;19461:3;19372:93;:::i;:::-;19490:2;19485:3;19481:12;19474:19;;19133:366;;;:::o;19505:419::-;19671:4;19709:2;19698:9;19694:18;19686:26;;19758:9;19752:4;19748:20;19744:1;19733:9;19729:17;19722:47;19786:131;19912:4;19786:131;:::i;:::-;19778:139;;19505:419;;;:::o;19930:181::-;20070:33;20066:1;20058:6;20054:14;20047:57;19930:181;:::o;20117:366::-;20259:3;20280:67;20344:2;20339:3;20280:67;:::i;:::-;20273:74;;20356:93;20445:3;20356:93;:::i;:::-;20474:2;20469:3;20465:12;20458:19;;20117:366;;;:::o;20489:419::-;20655:4;20693:2;20682:9;20678:18;20670:26;;20742:9;20736:4;20732:20;20728:1;20717:9;20713:17;20706:47;20770:131;20896:4;20770:131;:::i;:::-;20762:139;;20489:419;;;:::o;20914:180::-;21054:32;21050:1;21042:6;21038:14;21031:56;20914:180;:::o;21100:366::-;21242:3;21263:67;21327:2;21322:3;21263:67;:::i;:::-;21256:74;;21339:93;21428:3;21339:93;:::i;:::-;21457:2;21452:3;21448:12;21441:19;;21100:366;;;:::o;21472:419::-;21638:4;21676:2;21665:9;21661:18;21653:26;;21725:9;21719:4;21715:20;21711:1;21700:9;21696:17;21689:47;21753:131;21879:4;21753:131;:::i;:::-;21745:139;;21472:419;;;:::o;21897:191::-;21937:4;21957:20;21975:1;21957:20;:::i;:::-;21952:25;;21991:20;22009:1;21991:20;:::i;:::-;21986:25;;22030:1;22027;22024:8;22021:34;;;22035:18;;:::i;:::-;22021:34;22080:1;22077;22073:9;22065:17;;21897:191;;;;:::o;22094:348::-;22134:7;22157:20;22175:1;22157:20;:::i;:::-;22152:25;;22191:20;22209:1;22191:20;:::i;:::-;22186:25;;22379:1;22311:66;22307:74;22304:1;22301:81;22296:1;22289:9;22282:17;22278:105;22275:131;;;22386:18;;:::i;:::-;22275:131;22434:1;22431;22427:9;22416:20;;22094:348;;;;:::o;22448:169::-;22588:21;22584:1;22576:6;22572:14;22565:45;22448:169;:::o;22623:366::-;22765:3;22786:67;22850:2;22845:3;22786:67;:::i;:::-;22779:74;;22862:93;22951:3;22862:93;:::i;:::-;22980:2;22975:3;22971:12;22964:19;;22623:366;;;:::o;22995:419::-;23161:4;23199:2;23188:9;23184:18;23176:26;;23248:9;23242:4;23238:20;23234:1;23223:9;23219:17;23212:47;23276:131;23402:4;23276:131;:::i;:::-;23268:139;;22995:419;;;:::o;23420:234::-;23560:34;23556:1;23548:6;23544:14;23537:58;23629:17;23624:2;23616:6;23612:15;23605:42;23420:234;:::o;23660:366::-;23802:3;23823:67;23887:2;23882:3;23823:67;:::i;:::-;23816:74;;23899:93;23988:3;23899:93;:::i;:::-;24017:2;24012:3;24008:12;24001:19;;23660:366;;;:::o;24032:419::-;24198:4;24236:2;24225:9;24221:18;24213:26;;24285:9;24279:4;24275:20;24271:1;24260:9;24256:17;24249:47;24313:131;24439:4;24313:131;:::i;:::-;24305:139;;24032:419;;;:::o;24457:148::-;24559:11;24596:3;24581:18;;24457:148;;;;:::o;24611:377::-;24717:3;24745:39;24778:5;24745:39;:::i;:::-;24800:89;24882:6;24877:3;24800:89;:::i;:::-;24793:96;;24898:52;24943:6;24938:3;24931:4;24924:5;24920:16;24898:52;:::i;:::-;24975:6;24970:3;24966:16;24959:23;;24721:267;24611:377;;;;:::o;24994:155::-;25134:7;25130:1;25122:6;25118:14;25111:31;24994:155;:::o;25155:400::-;25315:3;25336:84;25418:1;25413:3;25336:84;:::i;:::-;25329:91;;25429:93;25518:3;25429:93;:::i;:::-;25547:1;25542:3;25538:11;25531:18;;25155:400;;;:::o;25561:701::-;25842:3;25864:95;25955:3;25946:6;25864:95;:::i;:::-;25857:102;;25976:95;26067:3;26058:6;25976:95;:::i;:::-;25969:102;;26088:148;26232:3;26088:148;:::i;:::-;26081:155;;26253:3;26246:10;;25561:701;;;;;:::o;26268:225::-;26408:34;26404:1;26396:6;26392:14;26385:58;26477:8;26472:2;26464:6;26460:15;26453:33;26268:225;:::o;26499:366::-;26641:3;26662:67;26726:2;26721:3;26662:67;:::i;:::-;26655:74;;26738:93;26827:3;26738:93;:::i;:::-;26856:2;26851:3;26847:12;26840:19;;26499:366;;;:::o;26871:419::-;27037:4;27075:2;27064:9;27060:18;27052:26;;27124:9;27118:4;27114:20;27110:1;27099:9;27095:17;27088:47;27152:131;27278:4;27152:131;:::i;:::-;27144:139;;26871:419;;;:::o;27296:182::-;27436:34;27432:1;27424:6;27420:14;27413:58;27296:182;:::o;27484:366::-;27626:3;27647:67;27711:2;27706:3;27647:67;:::i;:::-;27640:74;;27723:93;27812:3;27723:93;:::i;:::-;27841:2;27836:3;27832:12;27825:19;;27484:366;;;:::o;27856:419::-;28022:4;28060:2;28049:9;28045:18;28037:26;;28109:9;28103:4;28099:20;28095:1;28084:9;28080:17;28073:47;28137:131;28263:4;28137:131;:::i;:::-;28129:139;;27856:419;;;:::o;28281:98::-;28332:6;28366:5;28360:12;28350:22;;28281:98;;;:::o;28385:168::-;28468:11;28502:6;28497:3;28490:19;28542:4;28537:3;28533:14;28518:29;;28385:168;;;;:::o;28559:360::-;28645:3;28673:38;28705:5;28673:38;:::i;:::-;28727:70;28790:6;28785:3;28727:70;:::i;:::-;28720:77;;28806:52;28851:6;28846:3;28839:4;28832:5;28828:16;28806:52;:::i;:::-;28883:29;28905:6;28883:29;:::i;:::-;28878:3;28874:39;28867:46;;28649:270;28559:360;;;;:::o;28925:640::-;29120:4;29158:3;29147:9;29143:19;29135:27;;29172:71;29240:1;29229:9;29225:17;29216:6;29172:71;:::i;:::-;29253:72;29321:2;29310:9;29306:18;29297:6;29253:72;:::i;:::-;29335;29403:2;29392:9;29388:18;29379:6;29335:72;:::i;:::-;29454:9;29448:4;29444:20;29439:2;29428:9;29424:18;29417:48;29482:76;29553:4;29544:6;29482:76;:::i;:::-;29474:84;;28925:640;;;;;;;:::o;29571:141::-;29627:5;29658:6;29652:13;29643:22;;29674:32;29700:5;29674:32;:::i;:::-;29571:141;;;;:::o;29718:349::-;29787:6;29836:2;29824:9;29815:7;29811:23;29807:32;29804:119;;;29842:79;;:::i;:::-;29804:119;29962:1;29987:63;30042:7;30033:6;30022:9;30018:22;29987:63;:::i;:::-;29977:73;;29933:127;29718:349;;;;:::o;30073:233::-;30112:3;30135:24;30153:5;30135:24;:::i;:::-;30126:33;;30181:66;30174:5;30171:77;30168:103;;30251:18;;:::i;:::-;30168:103;30298:1;30291:5;30287:13;30280:20;;30073:233;;;:::o;30312:180::-;30360:77;30357:1;30350:88;30457:4;30454:1;30447:15;30481:4;30478:1;30471:15;30498:185;30538:1;30555:20;30573:1;30555:20;:::i;:::-;30550:25;;30589:20;30607:1;30589:20;:::i;:::-;30584:25;;30628:1;30618:35;;30633:18;;:::i;:::-;30618:35;30675:1;30672;30668:9;30663:14;;30498:185;;;;:::o;30689:176::-;30721:1;30738:20;30756:1;30738:20;:::i;:::-;30733:25;;30772:20;30790:1;30772:20;:::i;:::-;30767:25;;30811:1;30801:35;;30816:18;;:::i;:::-;30801:35;30857:1;30854;30850:9;30845:14;;30689:176;;;;:::o;30871:180::-;30919:77;30916:1;30909:88;31016:4;31013:1;31006:15;31040:4;31037:1;31030:15

Swarm Source

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