ETH Price: $3,457.45 (-1.82%)
Gas: 3 Gwei

Token

RektKids (REKT-KIDS)
 

Overview

Max Total Supply

3,067 REKT-KIDS

Holders

1,163

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 REKT-KIDS
0xc0fb5a51ffe37daa497d8b22e52291336d0c823f
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:
RektKids

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 
// .__ .___.  ..___.  .  .._..__  __.  
// [__)[__ |_/   |    |_/  | |  \(__   
// |  \[___|  \  |    |  \_|_|__/.__)  
//                                     
//

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * 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) public virtual override {
        address owner = ownerOf(tokenId);

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

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


// 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/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// 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: contracts/rektkids.sol


pragma solidity ^0.8.4;




contract RektKids is Ownable, ERC721A, ReentrancyGuard {
    mapping(address => uint256) public minted;
    RektKidsConfig public rektKidsConfig;

    struct RektKidsConfig {
        uint256 price;
        uint256 maxMint;
        uint256 maxSupply;
    }

    constructor() ERC721A("RektKids", "REKT-KIDS") {
        rektKidsConfig.maxSupply = 4000;
        rektKidsConfig.price = 9000000000000000;
        rektKidsConfig.maxMint = 5;
    }

    function getRekt(uint256 quantity) external payable {
        RektKidsConfig memory config = rektKidsConfig;
        uint256 price = uint256(config.price);
        uint256 maxMint = uint256(config.maxMint);
        uint256 buyed = getAddressBuyed(msg.sender);

        require(
            totalSupply() + quantity <= getMaxSupply(),
            "Sold out."
        );
    
        require(
            buyed + quantity <= maxMint,
            "Exceed maxmium mint."
        );

        require(
            quantity * price <= msg.value,
            "No enough eth."
        );

        _safeMint(msg.sender, quantity);
        minted[msg.sender] += quantity;
    }

    function devMint(uint256 quantity) external onlyOwner {
        require(
            totalSupply() + quantity <= getMaxSupply(),
            "Sold out."
        );

        _safeMint(msg.sender, quantity);
    }

    function getAddressBuyed(address owner) public view returns (uint256) {
        return minted[owner];
    }
    
    function getMaxSupply() private view returns (uint256) {
        RektKidsConfig memory config = rektKidsConfig;
        uint256 max = uint256(config.maxSupply);
        return max;
    }

    string private _baseTokenURI;

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

    function setURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setPrice(uint256 _price) external onlyOwner {
        rektKidsConfig.price = _price;
    }

    function setMaxMint(uint256 _amount) external onlyOwner {
        rektKidsConfig.maxMint = _amount;
    }

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


// SPDX-License-Identifier: MIT

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":"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getAddressBuyed","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":"uint256","name":"quantity","type":"uint256"}],"name":"getRekt","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"rektKidsConfig","outputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f52656b744b6964730000000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f52454b542d4b49445300000000000000000000000000000000000000000000008152506200009e620000926200011e60201b60201c565b6200012660201b60201c565b8160039080519060200190620000b6929190620001ef565b508060049080519060200190620000cf929190620001ef565b50620000e0620001ea60201b60201c565b60018190555050506001600981905550610fa0600b60020181905550661ff973cafa8000600b600001819055506005600b6001018190555062000304565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b828054620001fd906200029f565b90600052602060002090601f0160209004810192826200022157600085556200026d565b82601f106200023c57805160ff19168380011785556200026d565b828001600101855582156200026d579182015b828111156200026c5782518255916020019190600101906200024f565b5b5090506200027c919062000280565b5090565b5b808211156200029b57600081600090555060010162000281565b5090565b60006002820490506001821680620002b857607f821691505b60208210811415620002cf57620002ce620002d5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612b5d80620003146000396000f3fe6080604052600436106101815760003560e01c80636352211e116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461056c578063d90e96fe146105a9578063e985e9c5146105c5578063f2fde38b1461060257610181565b8063a22cb465146104ed578063b88d4fde14610516578063c7c778af1461053f57610181565b80636352211e146103dd57806370a082311461041a578063715018a6146104575780638da5cb5b1461046e57806391b7f5ed1461049957806395d89b41146104c257610181565b80631e7269c51161013e578063375a069a11610118578063375a069a1461034b5780633ccfd60b1461037457806342842e0e1461038b578063547520fe146103b457610181565b80631e7269c5146102a85780631fc895db146102e557806323b872dd1461032257610181565b806301ffc9a71461018657806302fe5305146101c357806306fdde03146101ec578063081812fc14610217578063095ea7b31461025457806318160ddd1461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a8919061218f565b61062b565b6040516101ba91906124eb565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e591906121e9565b6106bd565b005b3480156101f857600080fd5b506102016106db565b60405161020e9190612506565b60405180910390f35b34801561022357600080fd5b5061023e60048036038101906102399190612236565b61076d565b60405161024b9190612484565b60405180910390f35b34801561026057600080fd5b5061027b6004803603810190610276919061214f565b6107ec565b005b34801561028957600080fd5b50610292610930565b60405161029f9190612608565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190611fcc565b610947565b6040516102dc9190612608565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190611fcc565b61095f565b6040516103199190612608565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612039565b6109a8565b005b34801561035757600080fd5b50610372600480360381019061036d9190612236565b610ccd565b005b34801561038057600080fd5b50610389610d3e565b005b34801561039757600080fd5b506103b260048036038101906103ad9190612039565b610e4b565b005b3480156103c057600080fd5b506103db60048036038101906103d69190612236565b610e6b565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190612236565b610e80565b6040516104119190612484565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190611fcc565b610e92565b60405161044e9190612608565b60405180910390f35b34801561046357600080fd5b5061046c610f4b565b005b34801561047a57600080fd5b50610483610f5f565b6040516104909190612484565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190612236565b610f88565b005b3480156104ce57600080fd5b506104d7610f9d565b6040516104e49190612506565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f919061210f565b61102f565b005b34801561052257600080fd5b5061053d6004803603810190610538919061208c565b6111a7565b005b34801561054b57600080fd5b5061055461121a565b60405161056393929190612623565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612236565b611232565b6040516105a09190612506565b60405180910390f35b6105c360048036038101906105be9190612236565b6112d1565b005b3480156105d157600080fd5b506105ec60048036038101906105e79190611ff9565b61147e565b6040516105f991906124eb565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190611fcc565b611512565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106b65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6106c5611596565b8181600e91906106d6929190611dfa565b505050565b6060600380546106ea90612864565b80601f016020809104026020016040519081016040528092919081815260200182805461071690612864565b80156107635780601f1061073857610100808354040283529160200191610763565b820191906000526020600020905b81548152906001019060200180831161074657829003601f168201915b5050505050905090565b600061077882611614565b6107ae576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107f782610e80565b90508073ffffffffffffffffffffffffffffffffffffffff16610818611673565b73ffffffffffffffffffffffffffffffffffffffff161461087b576108448161083f611673565b61147e565b61087a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061093a61167b565b6002546001540303905090565b600a6020528060005260406000206000915090505481565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006109b382611680565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a1a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a268461174e565b91509150610a3c8187610a37611673565b611775565b610a8857610a5186610a4c611673565b61147e565b610a87576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610aef576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610afc86868660016117b9565b8015610b0757600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bd585610bb18888876117bf565b7c0200000000000000000000000000000000000000000000000000000000176117e7565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c5d576000600185019050600060056000838152602001908152602001600020541415610c5b576001548114610c5a578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cc58686866001611812565b505050505050565b610cd5611596565b610cdd611818565b81610ce6610930565b610cf091906126fe565b1115610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d28906125c8565b60405180910390fd5b610d3b3382611859565b50565b610d46611596565b60026009541415610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d83906125e8565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610dba9061246f565b60006040518083038185875af1925050503d8060008114610df7576040519150601f19603f3d011682016040523d82523d6000602084013e610dfc565b606091505b5050905080610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790612528565b60405180910390fd5b506001600981905550565b610e66838383604051806020016040528060008152506111a7565b505050565b610e73611596565b80600b6001018190555050565b6000610e8b82611680565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610efa576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f53611596565b610f5d6000611877565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f90611596565b80600b6000018190555050565b606060048054610fac90612864565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd890612864565b80156110255780601f10610ffa57610100808354040283529160200191611025565b820191906000526020600020905b81548152906001019060200180831161100857829003601f168201915b5050505050905090565b611037611673565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561109c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006110a9611673565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611156611673565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161119b91906124eb565b60405180910390a35050565b6111b28484846109a8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611214576111dd8484848461193b565b611213576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b8060000154908060010154908060020154905083565b606061123d82611614565b611273576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061127d611a9b565b905060008151141561129e57604051806020016040528060008152506112c9565b806112a884611b2d565b6040516020016112b992919061244b565b6040516020818303038152906040525b915050919050565b6000600b60405180606001604052908160008201548152602001600182015481526020016002820154815250509050600081600001519050600082602001519050600061131d3361095f565b9050611327611818565b85611330610930565b61133a91906126fe565b111561137b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611372906125c8565b60405180910390fd5b81858261138891906126fe565b11156113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090612568565b60405180910390fd5b3483866113d69190612754565b1115611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e906125a8565b60405180910390fd5b6114213386611859565b84600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461147091906126fe565b925050819055505050505050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61151a611596565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190612548565b60405180910390fd5b61159381611877565b50565b61159e611b7d565b73ffffffffffffffffffffffffffffffffffffffff166115bc610f5f565b73ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990612588565b60405180910390fd5b565b60008161161f61167b565b1115801561162e575060015482105b801561166c575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061168f61167b565b11611717576001548110156117165760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611714575b600081141561170a5760056000836001900393508381526020019081526020016000205490506116df565b8092505050611749565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117d6868684611b85565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080600b60405180606001604052908160008201548152602001600182015481526020016002820154815250509050600081604001519050809250505090565b611873828260405180602001604052806000815250611b8e565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611961611673565b8786866040518563ffffffff1660e01b8152600401611983949392919061249f565b602060405180830381600087803b15801561199d57600080fd5b505af19250505080156119ce57506040513d601f19601f820116820180604052508101906119cb91906121bc565b60015b611a48573d80600081146119fe576040519150601f19603f3d011682016040523d82523d6000602084013e611a03565b606091505b50600081511415611a40576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611aaa90612864565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad690612864565b8015611b235780601f10611af857610100808354040283529160200191611b23565b820191906000526020600020905b815481529060010190602001808311611b0657829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611b6957600183039250600a81066030018353600a8104905080611b6457611b69565b611b3e565b508181036020830392508083525050919050565b600033905090565b60009392505050565b611b988383611c2c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c275760006001549050600083820390505b611bd9600086838060010194508661193b565b611c0f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611bc6578160015414611c2457600080fd5b50505b505050565b600060015490506000821415611c6e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c7b60008483856117b9565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611cf283611ce360008660006117bf565b611cec85611dea565b176117e7565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611d9357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d58565b506000821415611dcf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050611de56000848385611812565b505050565b60006001821460e11b9050919050565b828054611e0690612864565b90600052602060002090601f016020900481019282611e285760008555611e6f565b82601f10611e4157803560ff1916838001178555611e6f565b82800160010185558215611e6f579182015b82811115611e6e578235825591602001919060010190611e53565b5b509050611e7c9190611e80565b5090565b5b80821115611e99576000816000905550600101611e81565b5090565b6000611eb0611eab8461267f565b61265a565b905082815260208101848484011115611ecc57611ecb612963565b5b611ed7848285612822565b509392505050565b600081359050611eee81612acb565b92915050565b600081359050611f0381612ae2565b92915050565b600081359050611f1881612af9565b92915050565b600081519050611f2d81612af9565b92915050565b600082601f830112611f4857611f47612959565b5b8135611f58848260208601611e9d565b91505092915050565b60008083601f840112611f7757611f76612959565b5b8235905067ffffffffffffffff811115611f9457611f93612954565b5b602083019150836001820283011115611fb057611faf61295e565b5b9250929050565b600081359050611fc681612b10565b92915050565b600060208284031215611fe257611fe161296d565b5b6000611ff084828501611edf565b91505092915050565b600080604083850312156120105761200f61296d565b5b600061201e85828601611edf565b925050602061202f85828601611edf565b9150509250929050565b6000806000606084860312156120525761205161296d565b5b600061206086828701611edf565b935050602061207186828701611edf565b925050604061208286828701611fb7565b9150509250925092565b600080600080608085870312156120a6576120a561296d565b5b60006120b487828801611edf565b94505060206120c587828801611edf565b93505060406120d687828801611fb7565b925050606085013567ffffffffffffffff8111156120f7576120f6612968565b5b61210387828801611f33565b91505092959194509250565b600080604083850312156121265761212561296d565b5b600061213485828601611edf565b925050602061214585828601611ef4565b9150509250929050565b600080604083850312156121665761216561296d565b5b600061217485828601611edf565b925050602061218585828601611fb7565b9150509250929050565b6000602082840312156121a5576121a461296d565b5b60006121b384828501611f09565b91505092915050565b6000602082840312156121d2576121d161296d565b5b60006121e084828501611f1e565b91505092915050565b60008060208385031215612200576121ff61296d565b5b600083013567ffffffffffffffff81111561221e5761221d612968565b5b61222a85828601611f61565b92509250509250929050565b60006020828403121561224c5761224b61296d565b5b600061225a84828501611fb7565b91505092915050565b61226c816127ae565b82525050565b61227b816127c0565b82525050565b600061228c826126b0565b61229681856126c6565b93506122a6818560208601612831565b6122af81612972565b840191505092915050565b60006122c5826126bb565b6122cf81856126e2565b93506122df818560208601612831565b6122e881612972565b840191505092915050565b60006122fe826126bb565b61230881856126f3565b9350612318818560208601612831565b80840191505092915050565b60006123316002836126e2565b915061233c82612983565b602082019050919050565b60006123546026836126e2565b915061235f826129ac565b604082019050919050565b60006123776014836126e2565b9150612382826129fb565b602082019050919050565b600061239a6020836126e2565b91506123a582612a24565b602082019050919050565b60006123bd600e836126e2565b91506123c882612a4d565b602082019050919050565b60006123e06000836126d7565b91506123eb82612a76565b600082019050919050565b60006124036009836126e2565b915061240e82612a79565b602082019050919050565b6000612426601f836126e2565b915061243182612aa2565b602082019050919050565b61244581612818565b82525050565b600061245782856122f3565b915061246382846122f3565b91508190509392505050565b600061247a826123d3565b9150819050919050565b60006020820190506124996000830184612263565b92915050565b60006080820190506124b46000830187612263565b6124c16020830186612263565b6124ce604083018561243c565b81810360608301526124e08184612281565b905095945050505050565b60006020820190506125006000830184612272565b92915050565b6000602082019050818103600083015261252081846122ba565b905092915050565b6000602082019050818103600083015261254181612324565b9050919050565b6000602082019050818103600083015261256181612347565b9050919050565b600060208201905081810360008301526125818161236a565b9050919050565b600060208201905081810360008301526125a18161238d565b9050919050565b600060208201905081810360008301526125c1816123b0565b9050919050565b600060208201905081810360008301526125e1816123f6565b9050919050565b6000602082019050818103600083015261260181612419565b9050919050565b600060208201905061261d600083018461243c565b92915050565b6000606082019050612638600083018661243c565b612645602083018561243c565b612652604083018461243c565b949350505050565b6000612664612675565b90506126708282612896565b919050565b6000604051905090565b600067ffffffffffffffff82111561269a57612699612925565b5b6126a382612972565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061270982612818565b915061271483612818565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612749576127486128c7565b5b828201905092915050565b600061275f82612818565b915061276a83612818565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127a3576127a26128c7565b5b828202905092915050565b60006127b9826127f8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561284f578082015181840152602081019050612834565b8381111561285e576000848401525b50505050565b6000600282049050600182168061287c57607f821691505b602082108114156128905761288f6128f6565b5b50919050565b61289f82612972565b810181811067ffffffffffffffff821117156128be576128bd612925565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6f6b000000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564206d61786d69756d206d696e742e000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f20656e6f756768206574682e000000000000000000000000000000000000600082015250565b50565b7f536f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b612ad4816127ae565b8114612adf57600080fd5b50565b612aeb816127c0565b8114612af657600080fd5b50565b612b02816127cc565b8114612b0d57600080fd5b50565b612b1981612818565b8114612b2457600080fd5b5056fea26469706673582212207e81d20651e0247c6810784032559db5f0b6d0d54aa4c4f6b80935f05a5c547164736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101815760003560e01c80636352211e116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461056c578063d90e96fe146105a9578063e985e9c5146105c5578063f2fde38b1461060257610181565b8063a22cb465146104ed578063b88d4fde14610516578063c7c778af1461053f57610181565b80636352211e146103dd57806370a082311461041a578063715018a6146104575780638da5cb5b1461046e57806391b7f5ed1461049957806395d89b41146104c257610181565b80631e7269c51161013e578063375a069a11610118578063375a069a1461034b5780633ccfd60b1461037457806342842e0e1461038b578063547520fe146103b457610181565b80631e7269c5146102a85780631fc895db146102e557806323b872dd1461032257610181565b806301ffc9a71461018657806302fe5305146101c357806306fdde03146101ec578063081812fc14610217578063095ea7b31461025457806318160ddd1461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a8919061218f565b61062b565b6040516101ba91906124eb565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e591906121e9565b6106bd565b005b3480156101f857600080fd5b506102016106db565b60405161020e9190612506565b60405180910390f35b34801561022357600080fd5b5061023e60048036038101906102399190612236565b61076d565b60405161024b9190612484565b60405180910390f35b34801561026057600080fd5b5061027b6004803603810190610276919061214f565b6107ec565b005b34801561028957600080fd5b50610292610930565b60405161029f9190612608565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190611fcc565b610947565b6040516102dc9190612608565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190611fcc565b61095f565b6040516103199190612608565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612039565b6109a8565b005b34801561035757600080fd5b50610372600480360381019061036d9190612236565b610ccd565b005b34801561038057600080fd5b50610389610d3e565b005b34801561039757600080fd5b506103b260048036038101906103ad9190612039565b610e4b565b005b3480156103c057600080fd5b506103db60048036038101906103d69190612236565b610e6b565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190612236565b610e80565b6040516104119190612484565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190611fcc565b610e92565b60405161044e9190612608565b60405180910390f35b34801561046357600080fd5b5061046c610f4b565b005b34801561047a57600080fd5b50610483610f5f565b6040516104909190612484565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190612236565b610f88565b005b3480156104ce57600080fd5b506104d7610f9d565b6040516104e49190612506565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f919061210f565b61102f565b005b34801561052257600080fd5b5061053d6004803603810190610538919061208c565b6111a7565b005b34801561054b57600080fd5b5061055461121a565b60405161056393929190612623565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612236565b611232565b6040516105a09190612506565b60405180910390f35b6105c360048036038101906105be9190612236565b6112d1565b005b3480156105d157600080fd5b506105ec60048036038101906105e79190611ff9565b61147e565b6040516105f991906124eb565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190611fcc565b611512565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106b65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6106c5611596565b8181600e91906106d6929190611dfa565b505050565b6060600380546106ea90612864565b80601f016020809104026020016040519081016040528092919081815260200182805461071690612864565b80156107635780601f1061073857610100808354040283529160200191610763565b820191906000526020600020905b81548152906001019060200180831161074657829003601f168201915b5050505050905090565b600061077882611614565b6107ae576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107f782610e80565b90508073ffffffffffffffffffffffffffffffffffffffff16610818611673565b73ffffffffffffffffffffffffffffffffffffffff161461087b576108448161083f611673565b61147e565b61087a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061093a61167b565b6002546001540303905090565b600a6020528060005260406000206000915090505481565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006109b382611680565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a1a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a268461174e565b91509150610a3c8187610a37611673565b611775565b610a8857610a5186610a4c611673565b61147e565b610a87576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610aef576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610afc86868660016117b9565b8015610b0757600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bd585610bb18888876117bf565b7c0200000000000000000000000000000000000000000000000000000000176117e7565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c5d576000600185019050600060056000838152602001908152602001600020541415610c5b576001548114610c5a578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cc58686866001611812565b505050505050565b610cd5611596565b610cdd611818565b81610ce6610930565b610cf091906126fe565b1115610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d28906125c8565b60405180910390fd5b610d3b3382611859565b50565b610d46611596565b60026009541415610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d83906125e8565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610dba9061246f565b60006040518083038185875af1925050503d8060008114610df7576040519150601f19603f3d011682016040523d82523d6000602084013e610dfc565b606091505b5050905080610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790612528565b60405180910390fd5b506001600981905550565b610e66838383604051806020016040528060008152506111a7565b505050565b610e73611596565b80600b6001018190555050565b6000610e8b82611680565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610efa576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f53611596565b610f5d6000611877565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f90611596565b80600b6000018190555050565b606060048054610fac90612864565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd890612864565b80156110255780601f10610ffa57610100808354040283529160200191611025565b820191906000526020600020905b81548152906001019060200180831161100857829003601f168201915b5050505050905090565b611037611673565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561109c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006110a9611673565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611156611673565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161119b91906124eb565b60405180910390a35050565b6111b28484846109a8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611214576111dd8484848461193b565b611213576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b8060000154908060010154908060020154905083565b606061123d82611614565b611273576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061127d611a9b565b905060008151141561129e57604051806020016040528060008152506112c9565b806112a884611b2d565b6040516020016112b992919061244b565b6040516020818303038152906040525b915050919050565b6000600b60405180606001604052908160008201548152602001600182015481526020016002820154815250509050600081600001519050600082602001519050600061131d3361095f565b9050611327611818565b85611330610930565b61133a91906126fe565b111561137b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611372906125c8565b60405180910390fd5b81858261138891906126fe565b11156113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090612568565b60405180910390fd5b3483866113d69190612754565b1115611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e906125a8565b60405180910390fd5b6114213386611859565b84600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461147091906126fe565b925050819055505050505050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61151a611596565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190612548565b60405180910390fd5b61159381611877565b50565b61159e611b7d565b73ffffffffffffffffffffffffffffffffffffffff166115bc610f5f565b73ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990612588565b60405180910390fd5b565b60008161161f61167b565b1115801561162e575060015482105b801561166c575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061168f61167b565b11611717576001548110156117165760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611714575b600081141561170a5760056000836001900393508381526020019081526020016000205490506116df565b8092505050611749565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117d6868684611b85565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080600b60405180606001604052908160008201548152602001600182015481526020016002820154815250509050600081604001519050809250505090565b611873828260405180602001604052806000815250611b8e565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611961611673565b8786866040518563ffffffff1660e01b8152600401611983949392919061249f565b602060405180830381600087803b15801561199d57600080fd5b505af19250505080156119ce57506040513d601f19601f820116820180604052508101906119cb91906121bc565b60015b611a48573d80600081146119fe576040519150601f19603f3d011682016040523d82523d6000602084013e611a03565b606091505b50600081511415611a40576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611aaa90612864565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad690612864565b8015611b235780601f10611af857610100808354040283529160200191611b23565b820191906000526020600020905b815481529060010190602001808311611b0657829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611b6957600183039250600a81066030018353600a8104905080611b6457611b69565b611b3e565b508181036020830392508083525050919050565b600033905090565b60009392505050565b611b988383611c2c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c275760006001549050600083820390505b611bd9600086838060010194508661193b565b611c0f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611bc6578160015414611c2457600080fd5b50505b505050565b600060015490506000821415611c6e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c7b60008483856117b9565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611cf283611ce360008660006117bf565b611cec85611dea565b176117e7565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611d9357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d58565b506000821415611dcf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050611de56000848385611812565b505050565b60006001821460e11b9050919050565b828054611e0690612864565b90600052602060002090601f016020900481019282611e285760008555611e6f565b82601f10611e4157803560ff1916838001178555611e6f565b82800160010185558215611e6f579182015b82811115611e6e578235825591602001919060010190611e53565b5b509050611e7c9190611e80565b5090565b5b80821115611e99576000816000905550600101611e81565b5090565b6000611eb0611eab8461267f565b61265a565b905082815260208101848484011115611ecc57611ecb612963565b5b611ed7848285612822565b509392505050565b600081359050611eee81612acb565b92915050565b600081359050611f0381612ae2565b92915050565b600081359050611f1881612af9565b92915050565b600081519050611f2d81612af9565b92915050565b600082601f830112611f4857611f47612959565b5b8135611f58848260208601611e9d565b91505092915050565b60008083601f840112611f7757611f76612959565b5b8235905067ffffffffffffffff811115611f9457611f93612954565b5b602083019150836001820283011115611fb057611faf61295e565b5b9250929050565b600081359050611fc681612b10565b92915050565b600060208284031215611fe257611fe161296d565b5b6000611ff084828501611edf565b91505092915050565b600080604083850312156120105761200f61296d565b5b600061201e85828601611edf565b925050602061202f85828601611edf565b9150509250929050565b6000806000606084860312156120525761205161296d565b5b600061206086828701611edf565b935050602061207186828701611edf565b925050604061208286828701611fb7565b9150509250925092565b600080600080608085870312156120a6576120a561296d565b5b60006120b487828801611edf565b94505060206120c587828801611edf565b93505060406120d687828801611fb7565b925050606085013567ffffffffffffffff8111156120f7576120f6612968565b5b61210387828801611f33565b91505092959194509250565b600080604083850312156121265761212561296d565b5b600061213485828601611edf565b925050602061214585828601611ef4565b9150509250929050565b600080604083850312156121665761216561296d565b5b600061217485828601611edf565b925050602061218585828601611fb7565b9150509250929050565b6000602082840312156121a5576121a461296d565b5b60006121b384828501611f09565b91505092915050565b6000602082840312156121d2576121d161296d565b5b60006121e084828501611f1e565b91505092915050565b60008060208385031215612200576121ff61296d565b5b600083013567ffffffffffffffff81111561221e5761221d612968565b5b61222a85828601611f61565b92509250509250929050565b60006020828403121561224c5761224b61296d565b5b600061225a84828501611fb7565b91505092915050565b61226c816127ae565b82525050565b61227b816127c0565b82525050565b600061228c826126b0565b61229681856126c6565b93506122a6818560208601612831565b6122af81612972565b840191505092915050565b60006122c5826126bb565b6122cf81856126e2565b93506122df818560208601612831565b6122e881612972565b840191505092915050565b60006122fe826126bb565b61230881856126f3565b9350612318818560208601612831565b80840191505092915050565b60006123316002836126e2565b915061233c82612983565b602082019050919050565b60006123546026836126e2565b915061235f826129ac565b604082019050919050565b60006123776014836126e2565b9150612382826129fb565b602082019050919050565b600061239a6020836126e2565b91506123a582612a24565b602082019050919050565b60006123bd600e836126e2565b91506123c882612a4d565b602082019050919050565b60006123e06000836126d7565b91506123eb82612a76565b600082019050919050565b60006124036009836126e2565b915061240e82612a79565b602082019050919050565b6000612426601f836126e2565b915061243182612aa2565b602082019050919050565b61244581612818565b82525050565b600061245782856122f3565b915061246382846122f3565b91508190509392505050565b600061247a826123d3565b9150819050919050565b60006020820190506124996000830184612263565b92915050565b60006080820190506124b46000830187612263565b6124c16020830186612263565b6124ce604083018561243c565b81810360608301526124e08184612281565b905095945050505050565b60006020820190506125006000830184612272565b92915050565b6000602082019050818103600083015261252081846122ba565b905092915050565b6000602082019050818103600083015261254181612324565b9050919050565b6000602082019050818103600083015261256181612347565b9050919050565b600060208201905081810360008301526125818161236a565b9050919050565b600060208201905081810360008301526125a18161238d565b9050919050565b600060208201905081810360008301526125c1816123b0565b9050919050565b600060208201905081810360008301526125e1816123f6565b9050919050565b6000602082019050818103600083015261260181612419565b9050919050565b600060208201905061261d600083018461243c565b92915050565b6000606082019050612638600083018661243c565b612645602083018561243c565b612652604083018461243c565b949350505050565b6000612664612675565b90506126708282612896565b919050565b6000604051905090565b600067ffffffffffffffff82111561269a57612699612925565b5b6126a382612972565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061270982612818565b915061271483612818565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612749576127486128c7565b5b828201905092915050565b600061275f82612818565b915061276a83612818565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127a3576127a26128c7565b5b828202905092915050565b60006127b9826127f8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561284f578082015181840152602081019050612834565b8381111561285e576000848401525b50505050565b6000600282049050600182168061287c57607f821691505b602082108114156128905761288f6128f6565b5b50919050565b61289f82612972565b810181811067ffffffffffffffff821117156128be576128bd612925565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6f6b000000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564206d61786d69756d206d696e742e000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f20656e6f756768206574682e000000000000000000000000000000000000600082015250565b50565b7f536f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b612ad4816127ae565b8114612adf57600080fd5b50565b612aeb816127c0565b8114612af657600080fd5b50565b612b02816127cc565b8114612b0d57600080fd5b50565b612b1981612818565b8114612b2457600080fd5b5056fea26469706673582212207e81d20651e0247c6810784032559db5f0b6d0d54aa4c4f6b80935f05a5c547164736f6c63430008070033

Deployed Bytecode Sourcemap

57423:2373:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18610:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59287:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19512:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25995:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25436:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15263:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57485:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58809:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29702:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58583:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59621:172;;;;;;;;;;;;;:::i;:::-;;32615:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59506:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20905:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16447:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56536:103;;;;;;;;;;;;;:::i;:::-;;55888:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59397:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19688:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26553:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33398:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57533:36;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;19898:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57886:689;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27018:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56794:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18610:639;18695:4;19034:10;19019:25;;:11;:25;;;;:102;;;;19111:10;19096:25;;:11;:25;;;;19019:102;:179;;;;19188:10;19173:25;;:11;:25;;;;19019:179;18999:199;;18610:639;;;:::o;59287:102::-;55774:13;:11;:13::i;:::-;59374:7:::1;;59358:13;:23;;;;;;;:::i;:::-;;59287:102:::0;;:::o;19512:100::-;19566:13;19599:5;19592:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19512:100;:::o;25995:218::-;26071:7;26096:16;26104:7;26096;:16::i;:::-;26091:64;;26121:34;;;;;;;;;;;;;;26091:64;26175:15;:24;26191:7;26175:24;;;;;;;;;;;:30;;;;;;;;;;;;26168:37;;25995:218;;;:::o;25436:400::-;25517:13;25533:16;25541:7;25533;:16::i;:::-;25517:32;;25589:5;25566:28;;:19;:17;:19::i;:::-;:28;;;25562:175;;25614:44;25631:5;25638:19;:17;:19::i;:::-;25614:16;:44::i;:::-;25609:128;;25686:35;;;;;;;;;;;;;;25609:128;25562:175;25782:2;25749:15;:24;25765:7;25749:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25820:7;25816:2;25800:28;;25809:5;25800:28;;;;;;;;;;;;25506:330;25436:400;;:::o;15263:323::-;15324:7;15552:15;:13;:15::i;:::-;15537:12;;15521:13;;:28;:46;15514:53;;15263:323;:::o;57485:41::-;;;;;;;;;;;;;;;;;:::o;58809:109::-;58870:7;58897:6;:13;58904:5;58897:13;;;;;;;;;;;;;;;;58890:20;;58809:109;;;:::o;29702:2817::-;29836:27;29866;29885:7;29866:18;:27::i;:::-;29836:57;;29951:4;29910:45;;29926:19;29910:45;;;29906:86;;29964:28;;;;;;;;;;;;;;29906:86;30006:27;30035:23;30062:35;30089:7;30062:26;:35::i;:::-;30005:92;;;;30197:68;30222:15;30239:4;30245:19;:17;:19::i;:::-;30197:24;:68::i;:::-;30192:180;;30285:43;30302:4;30308:19;:17;:19::i;:::-;30285:16;:43::i;:::-;30280:92;;30337:35;;;;;;;;;;;;;;30280:92;30192:180;30403:1;30389:16;;:2;:16;;;30385:52;;;30414:23;;;;;;;;;;;;;;30385:52;30450:43;30472:4;30478:2;30482:7;30491:1;30450:21;:43::i;:::-;30586:15;30583:160;;;30726:1;30705:19;30698:30;30583:160;31123:18;:24;31142:4;31123:24;;;;;;;;;;;;;;;;31121:26;;;;;;;;;;;;31192:18;:22;31211:2;31192:22;;;;;;;;;;;;;;;;31190:24;;;;;;;;;;;31514:146;31551:2;31600:45;31615:4;31621:2;31625:19;31600:14;:45::i;:::-;11662:8;31572:73;31514:18;:146::i;:::-;31485:17;:26;31503:7;31485:26;;;;;;;;;;;:175;;;;31831:1;11662:8;31780:19;:47;:52;31776:627;;;31853:19;31885:1;31875:7;:11;31853:33;;32042:1;32008:17;:30;32026:11;32008:30;;;;;;;;;;;;:35;32004:384;;;32146:13;;32131:11;:28;32127:242;;32326:19;32293:17;:30;32311:11;32293:30;;;;;;;;;;;:52;;;;32127:242;32004:384;31834:569;31776:627;32450:7;32446:2;32431:27;;32440:4;32431:27;;;;;;;;;;;;32469:42;32490:4;32496:2;32500:7;32509:1;32469:20;:42::i;:::-;29825:2694;;;29702:2817;;;:::o;58583:218::-;55774:13;:11;:13::i;:::-;58698:14:::1;:12;:14::i;:::-;58686:8;58670:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;58648:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;58762:31;58772:10;58784:8;58762:9;:31::i;:::-;58583:218:::0;:::o;59621:172::-;55774:13;:11;:13::i;:::-;52813:1:::1;53411:7;;:19;;53403:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;52813:1;53544:7;:18;;;;59685:12:::2;59703:10;:15;;59726:21;59703:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59684:68;;;59771:7;59763:22;;;;;;;;;;;;:::i;:::-;;;;;;;;;59673:120;52769:1:::1;53723:7;:22;;;;59621:172::o:0;32615:185::-;32753:39;32770:4;32776:2;32780:7;32753:39;;;;;;;;;;;;:16;:39::i;:::-;32615:185;;;:::o;59506:107::-;55774:13;:11;:13::i;:::-;59598:7:::1;59573:14;:22;;:32;;;;59506:107:::0;:::o;20905:152::-;20977:7;21020:27;21039:7;21020:18;:27::i;:::-;20997:52;;20905:152;;;:::o;16447:233::-;16519:7;16560:1;16543:19;;:5;:19;;;16539:60;;;16571:28;;;;;;;;;;;;;;16539:60;10606:13;16617:18;:25;16636:5;16617:25;;;;;;;;;;;;;;;;:55;16610:62;;16447:233;;;:::o;56536:103::-;55774:13;:11;:13::i;:::-;56601:30:::1;56628:1;56601:18;:30::i;:::-;56536:103::o:0;55888:87::-;55934:7;55961:6;;;;;;;;;;;55954:13;;55888:87;:::o;59397:101::-;55774:13;:11;:13::i;:::-;59484:6:::1;59461:14;:20;;:29;;;;59397:101:::0;:::o;19688:104::-;19744:13;19777:7;19770:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19688:104;:::o;26553:308::-;26664:19;:17;:19::i;:::-;26652:31;;:8;:31;;;26648:61;;;26692:17;;;;;;;;;;;;;;26648:61;26774:8;26722:18;:39;26741:19;:17;:19::i;:::-;26722:39;;;;;;;;;;;;;;;:49;26762:8;26722:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26834:8;26798:55;;26813:19;:17;:19::i;:::-;26798:55;;;26844:8;26798:55;;;;;;:::i;:::-;;;;;;;;26553:308;;:::o;33398:399::-;33565:31;33578:4;33584:2;33588:7;33565:12;:31::i;:::-;33629:1;33611:2;:14;;;:19;33607:183;;33650:56;33681:4;33687:2;33691:7;33700:5;33650:30;:56::i;:::-;33645:145;;33734:40;;;;;;;;;;;;;;33645:145;33607:183;33398:399;;;;:::o;57533:36::-;;;;;;;;;;;;;;;;;;;:::o;19898:318::-;19971:13;20002:16;20010:7;20002;:16::i;:::-;19997:59;;20027:29;;;;;;;;;;;;;;19997:59;20069:21;20093:10;:8;:10::i;:::-;20069:34;;20146:1;20127:7;20121:21;:26;;:87;;;;;;;;;;;;;;;;;20174:7;20183:18;20193:7;20183:9;:18::i;:::-;20157:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20121:87;20114:94;;;19898:318;;;:::o;57886:689::-;57949:28;57980:14;57949:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58005:13;58029:6;:12;;;58005:37;;58053:15;58079:6;:14;;;58053:41;;58105:13;58121:27;58137:10;58121:15;:27::i;:::-;58105:43;;58211:14;:12;:14::i;:::-;58199:8;58183:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;58161:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;58321:7;58309:8;58301:5;:16;;;;:::i;:::-;:27;;58279:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;58431:9;58422:5;58411:8;:16;;;;:::i;:::-;:29;;58389:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;58495:31;58505:10;58517:8;58495:9;:31::i;:::-;58559:8;58537:6;:18;58544:10;58537:18;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;57938:637;;;;57886:689;:::o;27018:164::-;27115:4;27139:18;:25;27158:5;27139:25;;;;;;;;;;;;;;;:35;27165:8;27139:35;;;;;;;;;;;;;;;;;;;;;;;;;27132:42;;27018:164;;;;:::o;56794:201::-;55774:13;:11;:13::i;:::-;56903:1:::1;56883:22;;:8;:22;;;;56875:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56959:28;56978:8;56959:18;:28::i;:::-;56794:201:::0;:::o;56053:132::-;56128:12;:10;:12::i;:::-;56117:23;;:7;:5;:7::i;:::-;:23;;;56109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56053:132::o;27440:282::-;27505:4;27561:7;27542:15;:13;:15::i;:::-;:26;;:66;;;;;27595:13;;27585:7;:23;27542:66;:153;;;;;27694:1;11382:8;27646:17;:26;27664:7;27646:26;;;;;;;;;;;;:44;:49;27542:153;27522:173;;27440:282;;;:::o;49206:105::-;49266:7;49293:10;49286:17;;49206:105;:::o;14779:92::-;14835:7;14779:92;:::o;22060:1275::-;22127:7;22147:12;22162:7;22147:22;;22230:4;22211:15;:13;:15::i;:::-;:23;22207:1061;;22264:13;;22257:4;:20;22253:1015;;;22302:14;22319:17;:23;22337:4;22319:23;;;;;;;;;;;;22302:40;;22436:1;11382:8;22408:6;:24;:29;22404:845;;;23073:113;23090:1;23080:6;:11;23073:113;;;23133:17;:25;23151:6;;;;;;;23133:25;;;;;;;;;;;;23124:34;;23073:113;;;23219:6;23212:13;;;;;;22404:845;22279:989;22253:1015;22207:1061;23296:31;;;;;;;;;;;;;;22060:1275;;;;:::o;28603:479::-;28705:27;28734:23;28775:38;28816:15;:24;28832:7;28816:24;;;;;;;;;;;28775:65;;28987:18;28964:41;;29044:19;29038:26;29019:45;;28949:126;28603:479;;;:::o;27831:659::-;27980:11;28145:16;28138:5;28134:28;28125:37;;28305:16;28294:9;28290:32;28277:45;;28455:15;28444:9;28441:30;28433:5;28422:9;28419:20;28416:56;28406:66;;27831:659;;;;;:::o;34459:159::-;;;;;:::o;48515:311::-;48650:7;48670:16;11786:3;48696:19;:41;;48670:68;;11786:3;48764:31;48775:4;48781:2;48785:9;48764:10;:31::i;:::-;48756:40;;:62;;48749:69;;;48515:311;;;;;:::o;23883:450::-;23963:14;24131:16;24124:5;24120:28;24111:37;;24308:5;24294:11;24269:23;24265:41;24262:52;24255:5;24252:63;24242:73;;23883:450;;;;:::o;35283:158::-;;;;;:::o;58930:190::-;58976:7;58996:28;59027:14;58996:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59052:11;59074:6;:16;;;59052:39;;59109:3;59102:10;;;;58930:190;:::o;43038:112::-;43115:27;43125:2;43129:8;43115:27;;;;;;;;;;;;:9;:27::i;:::-;43038:112;;:::o;57155:191::-;57229:16;57248:6;;;;;;;;;;;57229:25;;57274:8;57265:6;;:17;;;;;;;;;;;;;;;;;;57329:8;57298:40;;57319:8;57298:40;;;;;;;;;;;;57218:128;57155:191;:::o;35881:716::-;36044:4;36090:2;36065:45;;;36111:19;:17;:19::i;:::-;36132:4;36138:7;36147:5;36065:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36061:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36365:1;36348:6;:13;:18;36344:235;;;36394:40;;;;;;;;;;;;;;36344:235;36537:6;36531:13;36522:6;36518:2;36514:15;36507:38;36061:529;36234:54;;;36224:64;;;:6;:64;;;;36217:71;;;35881:716;;;;;;:::o;59165:114::-;59225:13;59258;59251:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59165:114;:::o;49413:1581::-;49478:17;49903:4;49896;49890:11;49886:22;49879:29;;49995:3;49989:4;49982:17;50101:3;50340:5;50322:428;50348:1;50322:428;;;50388:1;50383:3;50379:11;50372:18;;50559:2;50553:4;50549:13;50545:2;50541:22;50536:3;50528:36;50653:2;50647:4;50643:13;50635:21;;50720:4;50710:25;;50728:5;;50710:25;50322:428;;;50326:21;50789:3;50784;50780:13;50904:4;50899:3;50895:14;50888:21;;50969:6;50964:3;50957:19;49517:1470;;49413:1581;;;:::o;54439:98::-;54492:7;54519:10;54512:17;;54439:98;:::o;48216:147::-;48353:6;48216:147;;;;;:::o;42265:689::-;42396:19;42402:2;42406:8;42396:5;:19::i;:::-;42475:1;42457:2;:14;;;:19;42453:483;;42497:11;42511:13;;42497:27;;42543:13;42565:8;42559:3;:14;42543:30;;42592:233;42623:62;42662:1;42666:2;42670:7;;;;;;42679:5;42623:30;:62::i;:::-;42618:167;;42721:40;;;;;;;;;;;;;;42618:167;42820:3;42812:5;:11;42592:233;;42907:3;42890:13;;:20;42886:34;;42912:8;;;42886:34;42478:458;;42453:483;42265:689;;;:::o;37059:2454::-;37132:20;37155:13;;37132:36;;37195:1;37183:8;:13;37179:44;;;37205:18;;;;;;;;;;;;;;37179:44;37236:61;37266:1;37270:2;37274:12;37288:8;37236:21;:61::i;:::-;37780:1;10744:2;37750:1;:26;;37749:32;37737:8;:45;37711:18;:22;37730:2;37711:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38059:139;38096:2;38150:33;38173:1;38177:2;38181:1;38150:14;:33::i;:::-;38117:30;38138:8;38117:20;:30::i;:::-;:66;38059:18;:139::i;:::-;38025:17;:31;38043:12;38025:31;;;;;;;;;;;:173;;;;38215:16;38246:11;38275:8;38260:12;:23;38246:37;;38530:16;38526:2;38522:25;38510:37;;38902:12;38862:8;38821:1;38759:25;38700:1;38639;38612:335;39027:1;39013:12;39009:20;38967:346;39068:3;39059:7;39056:16;38967:346;;39286:7;39276:8;39273:1;39246:25;39243:1;39240;39235:59;39121:1;39112:7;39108:15;39097:26;;38967:346;;;38971:77;39358:1;39346:8;:13;39342:45;;;39368:19;;;;;;;;;;;;;;39342:45;39420:3;39404:13;:19;;;;37485:1950;;39445:60;39474:1;39478:2;39482:12;39496:8;39445:20;:60::i;:::-;37121:2392;37059:2454;;:::o;24435:324::-;24505:14;24738:1;24728:8;24725:15;24699:24;24695:46;24685:56;;24435:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;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:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:365::-;8473:3;8494:66;8558:1;8553:3;8494:66;:::i;:::-;8487:73;;8569:93;8658:3;8569:93;:::i;:::-;8687:2;8682:3;8678:12;8671:19;;8331:365;;;:::o;8702:366::-;8844:3;8865:67;8929:2;8924:3;8865:67;:::i;:::-;8858:74;;8941:93;9030:3;8941:93;:::i;:::-;9059:2;9054:3;9050:12;9043:19;;8702:366;;;:::o;9074:::-;9216:3;9237:67;9301:2;9296:3;9237:67;:::i;:::-;9230:74;;9313:93;9402:3;9313:93;:::i;:::-;9431:2;9426:3;9422:12;9415:19;;9074:366;;;:::o;9446:::-;9588:3;9609:67;9673:2;9668:3;9609:67;:::i;:::-;9602:74;;9685:93;9774:3;9685:93;:::i;:::-;9803:2;9798:3;9794:12;9787:19;;9446:366;;;:::o;9818:::-;9960:3;9981:67;10045:2;10040:3;9981:67;:::i;:::-;9974:74;;10057:93;10146:3;10057:93;:::i;:::-;10175:2;10170:3;10166:12;10159:19;;9818:366;;;:::o;10190:398::-;10349:3;10370:83;10451:1;10446:3;10370:83;:::i;:::-;10363:90;;10462:93;10551:3;10462:93;:::i;:::-;10580:1;10575:3;10571:11;10564:18;;10190:398;;;:::o;10594:365::-;10736:3;10757:66;10821:1;10816:3;10757:66;:::i;:::-;10750:73;;10832:93;10921:3;10832:93;:::i;:::-;10950:2;10945:3;10941:12;10934:19;;10594:365;;;:::o;10965:366::-;11107:3;11128:67;11192:2;11187:3;11128:67;:::i;:::-;11121:74;;11204:93;11293:3;11204:93;:::i;:::-;11322:2;11317:3;11313:12;11306:19;;10965:366;;;:::o;11337:118::-;11424:24;11442:5;11424:24;:::i;:::-;11419:3;11412:37;11337:118;;:::o;11461:435::-;11641:3;11663:95;11754:3;11745:6;11663:95;:::i;:::-;11656:102;;11775:95;11866:3;11857:6;11775:95;:::i;:::-;11768:102;;11887:3;11880:10;;11461:435;;;;;:::o;11902:379::-;12086:3;12108:147;12251:3;12108:147;:::i;:::-;12101:154;;12272:3;12265:10;;11902:379;;;:::o;12287:222::-;12380:4;12418:2;12407:9;12403:18;12395:26;;12431:71;12499:1;12488:9;12484:17;12475:6;12431:71;:::i;:::-;12287:222;;;;:::o;12515:640::-;12710:4;12748:3;12737:9;12733:19;12725:27;;12762:71;12830:1;12819:9;12815:17;12806:6;12762:71;:::i;:::-;12843:72;12911:2;12900:9;12896:18;12887:6;12843:72;:::i;:::-;12925;12993:2;12982:9;12978:18;12969:6;12925:72;:::i;:::-;13044:9;13038:4;13034:20;13029:2;13018:9;13014:18;13007:48;13072:76;13143:4;13134:6;13072:76;:::i;:::-;13064:84;;12515:640;;;;;;;:::o;13161:210::-;13248:4;13286:2;13275:9;13271:18;13263:26;;13299:65;13361:1;13350:9;13346:17;13337:6;13299:65;:::i;:::-;13161:210;;;;:::o;13377:313::-;13490:4;13528:2;13517:9;13513:18;13505:26;;13577:9;13571:4;13567:20;13563:1;13552:9;13548:17;13541:47;13605:78;13678:4;13669:6;13605:78;:::i;:::-;13597:86;;13377:313;;;;:::o;13696:419::-;13862:4;13900:2;13889:9;13885:18;13877:26;;13949:9;13943:4;13939:20;13935:1;13924:9;13920:17;13913:47;13977:131;14103:4;13977:131;:::i;:::-;13969:139;;13696:419;;;:::o;14121:::-;14287:4;14325:2;14314:9;14310:18;14302:26;;14374:9;14368:4;14364:20;14360:1;14349:9;14345:17;14338:47;14402:131;14528:4;14402:131;:::i;:::-;14394:139;;14121:419;;;:::o;14546:::-;14712:4;14750:2;14739:9;14735:18;14727:26;;14799:9;14793:4;14789:20;14785:1;14774:9;14770:17;14763:47;14827:131;14953:4;14827:131;:::i;:::-;14819:139;;14546:419;;;:::o;14971:::-;15137:4;15175:2;15164:9;15160:18;15152:26;;15224:9;15218:4;15214:20;15210:1;15199:9;15195:17;15188:47;15252:131;15378:4;15252:131;:::i;:::-;15244:139;;14971:419;;;:::o;15396:::-;15562:4;15600:2;15589:9;15585:18;15577:26;;15649:9;15643:4;15639:20;15635:1;15624:9;15620:17;15613:47;15677:131;15803:4;15677:131;:::i;:::-;15669:139;;15396:419;;;:::o;15821:::-;15987:4;16025:2;16014:9;16010:18;16002:26;;16074:9;16068:4;16064:20;16060:1;16049:9;16045:17;16038:47;16102:131;16228:4;16102:131;:::i;:::-;16094:139;;15821:419;;;:::o;16246:::-;16412:4;16450:2;16439:9;16435:18;16427:26;;16499:9;16493:4;16489:20;16485:1;16474:9;16470:17;16463:47;16527:131;16653:4;16527:131;:::i;:::-;16519:139;;16246:419;;;:::o;16671:222::-;16764:4;16802:2;16791:9;16787:18;16779:26;;16815:71;16883:1;16872:9;16868:17;16859:6;16815:71;:::i;:::-;16671:222;;;;:::o;16899:442::-;17048:4;17086:2;17075:9;17071:18;17063:26;;17099:71;17167:1;17156:9;17152:17;17143:6;17099:71;:::i;:::-;17180:72;17248:2;17237:9;17233:18;17224:6;17180:72;:::i;:::-;17262;17330:2;17319:9;17315:18;17306:6;17262:72;:::i;:::-;16899:442;;;;;;:::o;17347:129::-;17381:6;17408:20;;:::i;:::-;17398:30;;17437:33;17465:4;17457:6;17437:33;:::i;:::-;17347:129;;;:::o;17482:75::-;17515:6;17548:2;17542:9;17532:19;;17482:75;:::o;17563:307::-;17624:4;17714:18;17706:6;17703:30;17700:56;;;17736:18;;:::i;:::-;17700:56;17774:29;17796:6;17774:29;:::i;:::-;17766:37;;17858:4;17852;17848:15;17840:23;;17563:307;;;:::o;17876:98::-;17927:6;17961:5;17955:12;17945:22;;17876:98;;;:::o;17980:99::-;18032:6;18066:5;18060:12;18050:22;;17980:99;;;:::o;18085:168::-;18168:11;18202:6;18197:3;18190:19;18242:4;18237:3;18233:14;18218:29;;18085:168;;;;:::o;18259:147::-;18360:11;18397:3;18382:18;;18259:147;;;;:::o;18412:169::-;18496:11;18530:6;18525:3;18518:19;18570:4;18565:3;18561:14;18546:29;;18412:169;;;;:::o;18587:148::-;18689:11;18726:3;18711:18;;18587:148;;;;:::o;18741:305::-;18781:3;18800:20;18818:1;18800:20;:::i;:::-;18795:25;;18834:20;18852:1;18834:20;:::i;:::-;18829:25;;18988:1;18920:66;18916:74;18913:1;18910:81;18907:107;;;18994:18;;:::i;:::-;18907:107;19038:1;19035;19031:9;19024:16;;18741:305;;;;:::o;19052:348::-;19092:7;19115:20;19133:1;19115:20;:::i;:::-;19110:25;;19149:20;19167:1;19149:20;:::i;:::-;19144:25;;19337:1;19269:66;19265:74;19262:1;19259:81;19254:1;19247:9;19240:17;19236:105;19233:131;;;19344:18;;:::i;:::-;19233:131;19392:1;19389;19385:9;19374:20;;19052:348;;;;:::o;19406:96::-;19443:7;19472:24;19490:5;19472:24;:::i;:::-;19461:35;;19406:96;;;:::o;19508:90::-;19542:7;19585:5;19578:13;19571:21;19560:32;;19508:90;;;:::o;19604:149::-;19640:7;19680:66;19673:5;19669:78;19658:89;;19604:149;;;:::o;19759:126::-;19796:7;19836:42;19829:5;19825:54;19814:65;;19759:126;;;:::o;19891:77::-;19928:7;19957:5;19946:16;;19891:77;;;:::o;19974:154::-;20058:6;20053:3;20048;20035:30;20120:1;20111:6;20106:3;20102:16;20095:27;19974:154;;;:::o;20134:307::-;20202:1;20212:113;20226:6;20223:1;20220:13;20212:113;;;20311:1;20306:3;20302:11;20296:18;20292:1;20287:3;20283:11;20276:39;20248:2;20245:1;20241:10;20236:15;;20212:113;;;20343:6;20340:1;20337:13;20334:101;;;20423:1;20414:6;20409:3;20405:16;20398:27;20334:101;20183:258;20134:307;;;:::o;20447:320::-;20491:6;20528:1;20522:4;20518:12;20508:22;;20575:1;20569:4;20565:12;20596:18;20586:81;;20652:4;20644:6;20640:17;20630:27;;20586:81;20714:2;20706:6;20703:14;20683:18;20680:38;20677:84;;;20733:18;;:::i;:::-;20677:84;20498:269;20447:320;;;:::o;20773:281::-;20856:27;20878:4;20856:27;:::i;:::-;20848:6;20844:40;20986:6;20974:10;20971:22;20950:18;20938:10;20935:34;20932:62;20929:88;;;20997:18;;:::i;:::-;20929:88;21037:10;21033:2;21026:22;20816:238;20773:281;;:::o;21060:180::-;21108:77;21105:1;21098:88;21205:4;21202:1;21195:15;21229:4;21226:1;21219:15;21246:180;21294:77;21291:1;21284:88;21391:4;21388:1;21381:15;21415:4;21412:1;21405:15;21432:180;21480:77;21477:1;21470:88;21577:4;21574:1;21567:15;21601:4;21598:1;21591:15;21618:117;21727:1;21724;21717:12;21741:117;21850:1;21847;21840:12;21864:117;21973:1;21970;21963:12;21987:117;22096:1;22093;22086:12;22110:117;22219:1;22216;22209:12;22233:117;22342:1;22339;22332:12;22356:102;22397:6;22448:2;22444:7;22439:2;22432:5;22428:14;22424:28;22414:38;;22356:102;;;:::o;22464:152::-;22604:4;22600:1;22592:6;22588:14;22581:28;22464:152;:::o;22622:225::-;22762:34;22758:1;22750:6;22746:14;22739:58;22831:8;22826:2;22818:6;22814:15;22807:33;22622:225;:::o;22853:170::-;22993:22;22989:1;22981:6;22977:14;22970:46;22853:170;:::o;23029:182::-;23169:34;23165:1;23157:6;23153:14;23146:58;23029:182;:::o;23217:164::-;23357:16;23353:1;23345:6;23341:14;23334:40;23217:164;:::o;23387:114::-;;:::o;23507:159::-;23647:11;23643:1;23635:6;23631:14;23624:35;23507:159;:::o;23672:181::-;23812:33;23808:1;23800:6;23796:14;23789:57;23672:181;:::o;23859:122::-;23932:24;23950:5;23932:24;:::i;:::-;23925:5;23922:35;23912:63;;23971:1;23968;23961:12;23912:63;23859:122;:::o;23987:116::-;24057:21;24072:5;24057:21;:::i;:::-;24050:5;24047:32;24037:60;;24093:1;24090;24083:12;24037:60;23987:116;:::o;24109:120::-;24181:23;24198:5;24181:23;:::i;:::-;24174:5;24171:34;24161:62;;24219:1;24216;24209:12;24161:62;24109:120;:::o;24235:122::-;24308:24;24326:5;24308:24;:::i;:::-;24301:5;24298:35;24288:63;;24347:1;24344;24337:12;24288:63;24235:122;:::o

Swarm Source

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