ETH Price: $3,417.36 (-1.32%)
Gas: 5 Gwei

Token

Anizuki (ANZK)
 

Overview

Max Total Supply

5,000 ANZK

Holders

1,366

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ANZK
0x663c759793c279dc6ac39d956ff041bd6732eada
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:
Anizuki

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-10
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

// File: erc721a/contracts/IERC721A.sol

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol

// ERC721A Contracts v4.2.3
// 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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 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
        payable
        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
    {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.8.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

    function _nonReentrantAfter() private {
        // 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);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

////////////////////////
///// Anizuki /////
////////////////////////
pragma solidity ^0.8.17;

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

    // ================== VARAIBLES =======================

    string private uriPrefix = "";
    string private uriSuffix = ".json";
    string private hiddenMetadataUri;
    bool public paused = true;
    bool public revealed = true;

    uint256 public salePrice = 0.001 ether;
    uint256 public maxFree = 5;
    uint256 public maxTx = 30;
    uint256 public maxFreeSupply = 5000;
    uint256 public maxSupply = 5000;

    uint256 public FREE_MINTED = 0;
    mapping(address => uint256) public CLAIMED;

    // ================== CONTRUCTOR =======================

    constructor() ERC721A("Anizuki", "ANZK") {
        setHiddenMetadataUri("ipfs://__CID__/hidden.json");
    }

    // ================== MINT FUNCTIONS =======================

    /**
     * @notice Mint
     */
    function mint(uint256 _quantity) external payable {
        // Normal requirements
        require(!paused, "The contract is paused!");
        require(
            _quantity > 0,
            "Minimum 1 NFT has to be minted per transaction"
        );
        require(_quantity + balanceOf(msg.sender) <= maxTx, "No more!");
        require(_quantity + totalSupply() <= maxSupply, "Sold out");

        if (msg.sender != owner()) {
            if (
                !(CLAIMED[msg.sender] >= maxFree) &&
                FREE_MINTED + maxFree <= maxFreeSupply
            ) {
                if (_quantity <= maxFree - CLAIMED[msg.sender]) {
                    require(msg.value >= 0, "Please send the exact amount.");
                } else {
                    require(
                        msg.value >=
                            salePrice *
                                (_quantity - (maxFree - CLAIMED[msg.sender])),
                        "Please send the exact amount."
                    );
                }
                FREE_MINTED += _quantity;
                CLAIMED[msg.sender] += _quantity;
            } else {
                require(
                    msg.value >= salePrice * _quantity,
                    "Please send the exact amount."
                );
            }
        }

        // Mint
        _safeMint(msg.sender, _quantity);
    }

    /**
     * @notice Team Mint
     */
    function teamMint(uint256 _quantity) external onlyOwner {
        require(totalSupply() + _quantity <= maxSupply, "Sold out");
        _safeMint(msg.sender, _quantity);
    }

    /**
     * @notice airdrop
     */
    function airdrop(address _to, uint256 _quantity) external onlyOwner {
        require(!paused, "The contract is paused!");
        require(_quantity + totalSupply() <= maxSupply, "Sold out");
        _safeMint(_to, _quantity);
    }

    // ================== SETUP FUNCTIONS =======================

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

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

    function setSalePrice(uint256 _newPrice) external onlyOwner {
        salePrice = _newPrice;
    }

    function setMaxFree(uint256 _maxFree) public onlyOwner {
        maxFree = _maxFree;
    }

    function setMaxTx(uint256 _maxTx) public onlyOwner {
        maxTx = _maxTx;
    }

    function setmaxFreeSupply(uint256 _maxFreeSupply) public onlyOwner {
        maxFreeSupply = _maxFreeSupply;
    }

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

    function setHiddenMetadataUri(string memory _hiddenMetadataUri)
        public
        onlyOwner
    {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

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

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply
        ) {
            address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
            currentTokenId++;
        }
        return ownedTokenIds;
    }

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

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (revealed == false) {
            return hiddenMetadataUri;
        }
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        _tokenId.toString(),
                        uriSuffix
                    )
                )
                : "";
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"CLAIMED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFree","type":"uint256"}],"name":"setMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","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":"_quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a908162000024919062000623565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200006b919062000623565b506001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff02191690831515021790555066038d7ea4c68000600e556005600f55601e6010556113886011556113886012556000601355348015620000d557600080fd5b506040518060400160405280600781526020017f416e697a756b69000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f414e5a4b00000000000000000000000000000000000000000000000000000000815250816002908162000153919062000623565b50806003908162000165919062000623565b5062000176620001f260201b60201c565b60008190555050506200019e62000192620001fb60201b60201c565b6200020360201b60201c565b6001600981905550620001ec6040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e000000000000815250620002c960201b60201c565b6200078d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002d9620002ee60201b60201c565b80600c9081620002ea919062000623565b5050565b620002fe620001fb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003246200037f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200037d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000374906200076b565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200042b57607f821691505b602082108103620004415762000440620003e3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004ab7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200046c565b620004b786836200046c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000504620004fe620004f884620004cf565b620004d9565b620004cf565b9050919050565b6000819050919050565b6200052083620004e3565b620005386200052f826200050b565b84845462000479565b825550505050565b600090565b6200054f62000540565b6200055c81848462000515565b505050565b5b8181101562000584576200057860008262000545565b60018101905062000562565b5050565b601f821115620005d3576200059d8162000447565b620005a8846200045c565b81016020851015620005b8578190505b620005d0620005c7856200045c565b83018262000561565b50505b505050565b600082821c905092915050565b6000620005f860001984600802620005d8565b1980831691505092915050565b6000620006138383620005e5565b9150826002028217905092915050565b6200062e82620003a9565b67ffffffffffffffff8111156200064a5762000649620003b4565b5b62000656825462000412565b6200066382828562000588565b600060209050601f8311600181146200069b576000841562000686578287015190505b62000692858262000605565b86555062000702565b601f198416620006ab8662000447565b60005b82811015620006d557848901518255600182019150602085019450602081019050620006ae565b86831015620006f55784890151620006f1601f891682620005e5565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620007536020836200070a565b915062000760826200071b565b602082019050919050565b60006020820190508181036000830152620007868162000744565b9050919050565b613903806200079d6000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063b88d4fde116100ab578063d755bf991161006f578063d755bf9914610818578063e0a8085314610841578063e985e9c51461086a578063f2fde38b146108a7578063f51f96dd146108d05761023b565b8063b88d4fde14610742578063bc3371821461075e578063bde12d7314610787578063c87b56dd146107b0578063d5abeb01146107ed5761023b565b80638ba4cc3c116100f25780638ba4cc3c1461067e5780638da5cb5b146106a757806395d89b41146106d2578063a0712d68146106fd578063a22cb465146107195761023b565b806370a0823114610599578063715018a6146105d657806371a34298146105ed5780637437681e1461062a5780637ec4a659146106555761023b565b806342842e0e116101bc578063518302271161018057806351830227146104b25780635c975abb146104dd5780635e1a2636146105085780636352211e146105335780636f8b44b0146105705761023b565b806342842e0e146103da578063438b6300146103f65780634751333414610433578063485a68a31461045e5780634fdd43cb146104895761023b565b806318160ddd1161020357806318160ddd1461032a5780631919fed71461035557806323b872dd1461037e5780632fbba1151461039a5780633ccfd60b146103c35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806316c38b3c14610301575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612672565b6108fb565b60405161027491906126ba565b60405180910390f35b34801561028957600080fd5b5061029261098d565b60405161029f9190612765565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906127bd565b610a1f565b6040516102dc919061282b565b60405180910390f35b6102ff60048036038101906102fa9190612872565b610a9e565b005b34801561030d57600080fd5b50610328600480360381019061032391906128de565b610be2565b005b34801561033657600080fd5b5061033f610c07565b60405161034c919061291a565b60405180910390f35b34801561036157600080fd5b5061037c600480360381019061037791906127bd565b610c1e565b005b61039860048036038101906103939190612935565b610c30565b005b3480156103a657600080fd5b506103c160048036038101906103bc91906127bd565b610f52565b005b3480156103cf57600080fd5b506103d8610fbe565b005b6103f460048036038101906103ef9190612935565b611075565b005b34801561040257600080fd5b5061041d60048036038101906104189190612988565b611095565b60405161042a9190612a73565b60405180910390f35b34801561043f57600080fd5b5061044861119f565b604051610455919061291a565b60405180910390f35b34801561046a57600080fd5b506104736111a5565b604051610480919061291a565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190612bca565b6111ab565b005b3480156104be57600080fd5b506104c76111c6565b6040516104d491906126ba565b60405180910390f35b3480156104e957600080fd5b506104f26111d9565b6040516104ff91906126ba565b60405180910390f35b34801561051457600080fd5b5061051d6111ec565b60405161052a919061291a565b60405180910390f35b34801561053f57600080fd5b5061055a600480360381019061055591906127bd565b6111f2565b604051610567919061282b565b60405180910390f35b34801561057c57600080fd5b50610597600480360381019061059291906127bd565b611204565b005b3480156105a557600080fd5b506105c060048036038101906105bb9190612988565b611216565b6040516105cd919061291a565b60405180910390f35b3480156105e257600080fd5b506105eb6112ce565b005b3480156105f957600080fd5b50610614600480360381019061060f9190612988565b6112e2565b604051610621919061291a565b60405180910390f35b34801561063657600080fd5b5061063f6112fa565b60405161064c919061291a565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190612bca565b611300565b005b34801561068a57600080fd5b506106a560048036038101906106a09190612872565b61131b565b005b3480156106b357600080fd5b506106bc6113d8565b6040516106c9919061282b565b60405180910390f35b3480156106de57600080fd5b506106e7611402565b6040516106f49190612765565b60405180910390f35b610717600480360381019061071291906127bd565b611494565b005b34801561072557600080fd5b50610740600480360381019061073b9190612c13565b61188f565b005b61075c60048036038101906107579190612cf4565b61199a565b005b34801561076a57600080fd5b50610785600480360381019061078091906127bd565b611a0d565b005b34801561079357600080fd5b506107ae60048036038101906107a991906127bd565b611a1f565b005b3480156107bc57600080fd5b506107d760048036038101906107d291906127bd565b611a31565b6040516107e49190612765565b60405180910390f35b3480156107f957600080fd5b50610802611b89565b60405161080f919061291a565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a91906127bd565b611b8f565b005b34801561084d57600080fd5b50610868600480360381019061086391906128de565b611ba1565b005b34801561087657600080fd5b50610891600480360381019061088c9190612d77565b611bc6565b60405161089e91906126ba565b60405180910390f35b3480156108b357600080fd5b506108ce60048036038101906108c99190612988565b611c5a565b005b3480156108dc57600080fd5b506108e5611cdd565b6040516108f2919061291a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109865750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461099c90612de6565b80601f01602080910402602001604051908101604052809291908181526020018280546109c890612de6565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b6000610a2a82611ce3565b610a60576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa9826111f2565b90508073ffffffffffffffffffffffffffffffffffffffff16610aca611d42565b73ffffffffffffffffffffffffffffffffffffffff1614610b2d57610af681610af1611d42565b611bc6565b610b2c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610bea611d4a565b80600d60006101000a81548160ff02191690831515021790555050565b6000610c11611dc8565b6001546000540303905090565b610c26611d4a565b80600e8190555050565b6000610c3b82611dd1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ca2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610cae84611e9d565b91509150610cc48187610cbf611d42565b611ec4565b610d1057610cd986610cd4611d42565b611bc6565b610d0f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d76576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d838686866001611f08565b8015610d8e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5c85610e38888887611f0e565b7c020000000000000000000000000000000000000000000000000000000017611f36565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ee25760006001850190506000600460008381526020019081526020016000205403610ee0576000548114610edf578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f4a8686866001611f61565b505050505050565b610f5a611d4a565b60125481610f66610c07565b610f709190612e46565b1115610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890612ec6565b60405180910390fd5b610fbb3382611f67565b50565b610fc6611d4a565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610fec90612f17565b60006040518083038185875af1925050503d8060008114611029576040519150601f19603f3d011682016040523d82523d6000602084013e61102e565b606091505b5050905080611072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106990612f78565b60405180910390fd5b50565b6110908383836040518060200160405280600081525061199a565b505050565b606060006110a283611216565b905060008167ffffffffffffffff8111156110c0576110bf612a9f565b5b6040519080825280602002602001820160405280156110ee5781602001602082028036833780820191505090505b50905060006001905060005b838110801561110b57506012548211155b1561119357600061111b836111f2565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361117f578284838151811061116457611163612f98565b5b602002602001018181525050818061117b90612fc7565b9250505b828061118a90612fc7565b935050506110fa565b82945050505050919050565b60115481565b600f5481565b6111b3611d4a565b80600c90816111c291906131bb565b5050565b600d60019054906101000a900460ff1681565b600d60009054906101000a900460ff1681565b60135481565b60006111fd82611dd1565b9050919050565b61120c611d4a565b8060128190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361127d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112d6611d4a565b6112e06000611f85565b565b60146020528060005260406000206000915090505481565b60105481565b611308611d4a565b80600a908161131791906131bb565b5050565b611323611d4a565b600d60009054906101000a900460ff1615611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a906132d9565b60405180910390fd5b60125461137e610c07565b826113899190612e46565b11156113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190612ec6565b60405180910390fd5b6113d48282611f67565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461141190612de6565b80601f016020809104026020016040519081016040528092919081815260200182805461143d90612de6565b801561148a5780601f1061145f5761010080835404028352916020019161148a565b820191906000526020600020905b81548152906001019060200180831161146d57829003601f168201915b5050505050905090565b600d60009054906101000a900460ff16156114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db906132d9565b60405180910390fd5b60008111611527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151e9061336b565b60405180910390fd5b60105461153333611216565b8261153e9190612e46565b111561157f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611576906133d7565b60405180910390fd5b60125461158a610c07565b826115959190612e46565b11156115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd90612ec6565b60405180910390fd5b6115de6113d8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461188257600f54601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410151580156116735750601154600f546013546116709190612e46565b11155b1561183057601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f546116c591906133f7565b811161171457600034101561170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170690613477565b60405180910390fd5b6117bc565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f5461176191906133f7565b8161176c91906133f7565b600e546117799190613497565b3410156117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b290613477565b60405180910390fd5b5b80601360008282546117ce9190612e46565b9250508190555080601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118249190612e46565b92505081905550611881565b80600e5461183e9190613497565b341015611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790613477565b60405180910390fd5b5b5b61188c3382611f67565b50565b806007600061189c611d42565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611949611d42565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161198e91906126ba565b60405180910390a35050565b6119a5848484610c30565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a07576119d08484848461204b565b611a06576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a15611d4a565b8060108190555050565b611a27611d4a565b8060118190555050565b6060611a3c82611ce3565b611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a729061354b565b60405180910390fd5b60001515600d60019054906101000a900460ff16151503611b2857600c8054611aa390612de6565b80601f0160208091040260200160405190810160405280929190818152602001828054611acf90612de6565b8015611b1c5780601f10611af157610100808354040283529160200191611b1c565b820191906000526020600020905b815481529060010190602001808311611aff57829003601f168201915b50505050509050611b84565b6000611b3261219b565b90506000815111611b525760405180602001604052806000815250611b80565b80611b5c8461222d565b600b604051602001611b709392919061362a565b6040516020818303038152906040525b9150505b919050565b60125481565b611b97611d4a565b80600f8190555050565b611ba9611d4a565b80600d60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c62611d4a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc8906136cd565b60405180910390fd5b611cda81611f85565b50565b600e5481565b600081611cee611dc8565b11158015611cfd575060005482105b8015611d3b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611d5261238d565b73ffffffffffffffffffffffffffffffffffffffff16611d706113d8565b73ffffffffffffffffffffffffffffffffffffffff1614611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd90613739565b60405180910390fd5b565b60006001905090565b60008082905080611de0611dc8565b11611e6657600054811015611e655760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e63575b60008103611e59576004600083600190039350838152602001908152602001600020549050611e2f565b8092505050611e98565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f25868684612395565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611f8182826040518060200160405280600081525061239e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612071611d42565b8786866040518563ffffffff1660e01b815260040161209394939291906137ae565b6020604051808303816000875af19250505080156120cf57506040513d601f19601f820116820180604052508101906120cc919061380f565b60015b612148573d80600081146120ff576040519150601f19603f3d011682016040523d82523d6000602084013e612104565b606091505b506000815103612140576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546121aa90612de6565b80601f01602080910402602001604051908101604052809291908181526020018280546121d690612de6565b80156122235780601f106121f857610100808354040283529160200191612223565b820191906000526020600020905b81548152906001019060200180831161220657829003601f168201915b5050505050905090565b606060008203612274576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612388565b600082905060005b600082146122a657808061228f90612fc7565b915050600a8261229f919061386b565b915061227c565b60008167ffffffffffffffff8111156122c2576122c1612a9f565b5b6040519080825280601f01601f1916602001820160405280156122f45781602001600182028036833780820191505090505b5090505b600085146123815760018261230d91906133f7565b9150600a8561231c919061389c565b60306123289190612e46565b60f81b81838151811061233e5761233d612f98565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561237a919061386b565b94506122f8565b8093505050505b919050565b600033905090565b60009392505050565b6123a8838361243b565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461243657600080549050600083820390505b6123e8600086838060010194508661204b565b61241e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123d557816000541461243357600080fd5b50505b505050565b6000805490506000820361247b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124886000848385611f08565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124ff836124f06000866000611f0e565b6124f9856125f6565b17611f36565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125a057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612565565b50600082036125db576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125f16000848385611f61565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61264f8161261a565b811461265a57600080fd5b50565b60008135905061266c81612646565b92915050565b60006020828403121561268857612687612610565b5b60006126968482850161265d565b91505092915050565b60008115159050919050565b6126b48161269f565b82525050565b60006020820190506126cf60008301846126ab565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561270f5780820151818401526020810190506126f4565b60008484015250505050565b6000601f19601f8301169050919050565b6000612737826126d5565b61274181856126e0565b93506127518185602086016126f1565b61275a8161271b565b840191505092915050565b6000602082019050818103600083015261277f818461272c565b905092915050565b6000819050919050565b61279a81612787565b81146127a557600080fd5b50565b6000813590506127b781612791565b92915050565b6000602082840312156127d3576127d2612610565b5b60006127e1848285016127a8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612815826127ea565b9050919050565b6128258161280a565b82525050565b6000602082019050612840600083018461281c565b92915050565b61284f8161280a565b811461285a57600080fd5b50565b60008135905061286c81612846565b92915050565b6000806040838503121561288957612888612610565b5b60006128978582860161285d565b92505060206128a8858286016127a8565b9150509250929050565b6128bb8161269f565b81146128c657600080fd5b50565b6000813590506128d8816128b2565b92915050565b6000602082840312156128f4576128f3612610565b5b6000612902848285016128c9565b91505092915050565b61291481612787565b82525050565b600060208201905061292f600083018461290b565b92915050565b60008060006060848603121561294e5761294d612610565b5b600061295c8682870161285d565b935050602061296d8682870161285d565b925050604061297e868287016127a8565b9150509250925092565b60006020828403121561299e5761299d612610565b5b60006129ac8482850161285d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6129ea81612787565b82525050565b60006129fc83836129e1565b60208301905092915050565b6000602082019050919050565b6000612a20826129b5565b612a2a81856129c0565b9350612a35836129d1565b8060005b83811015612a66578151612a4d88826129f0565b9750612a5883612a08565b925050600181019050612a39565b5085935050505092915050565b60006020820190508181036000830152612a8d8184612a15565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ad78261271b565b810181811067ffffffffffffffff82111715612af657612af5612a9f565b5b80604052505050565b6000612b09612606565b9050612b158282612ace565b919050565b600067ffffffffffffffff821115612b3557612b34612a9f565b5b612b3e8261271b565b9050602081019050919050565b82818337600083830152505050565b6000612b6d612b6884612b1a565b612aff565b905082815260208101848484011115612b8957612b88612a9a565b5b612b94848285612b4b565b509392505050565b600082601f830112612bb157612bb0612a95565b5b8135612bc1848260208601612b5a565b91505092915050565b600060208284031215612be057612bdf612610565b5b600082013567ffffffffffffffff811115612bfe57612bfd612615565b5b612c0a84828501612b9c565b91505092915050565b60008060408385031215612c2a57612c29612610565b5b6000612c388582860161285d565b9250506020612c49858286016128c9565b9150509250929050565b600067ffffffffffffffff821115612c6e57612c6d612a9f565b5b612c778261271b565b9050602081019050919050565b6000612c97612c9284612c53565b612aff565b905082815260208101848484011115612cb357612cb2612a9a565b5b612cbe848285612b4b565b509392505050565b600082601f830112612cdb57612cda612a95565b5b8135612ceb848260208601612c84565b91505092915050565b60008060008060808587031215612d0e57612d0d612610565b5b6000612d1c8782880161285d565b9450506020612d2d8782880161285d565b9350506040612d3e878288016127a8565b925050606085013567ffffffffffffffff811115612d5f57612d5e612615565b5b612d6b87828801612cc6565b91505092959194509250565b60008060408385031215612d8e57612d8d612610565b5b6000612d9c8582860161285d565b9250506020612dad8582860161285d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dfe57607f821691505b602082108103612e1157612e10612db7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e5182612787565b9150612e5c83612787565b9250828201905080821115612e7457612e73612e17565b5b92915050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612eb06008836126e0565b9150612ebb82612e7a565b602082019050919050565b60006020820190508181036000830152612edf81612ea3565b9050919050565b600081905092915050565b50565b6000612f01600083612ee6565b9150612f0c82612ef1565b600082019050919050565b6000612f2282612ef4565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612f626010836126e0565b9150612f6d82612f2c565b602082019050919050565b60006020820190508181036000830152612f9181612f55565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612fd282612787565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361300457613003612e17565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613034565b61307b8683613034565b95508019841693508086168417925050509392505050565b6000819050919050565b60006130b86130b36130ae84612787565b613093565b612787565b9050919050565b6000819050919050565b6130d28361309d565b6130e66130de826130bf565b848454613041565b825550505050565b600090565b6130fb6130ee565b6131068184846130c9565b505050565b5b8181101561312a5761311f6000826130f3565b60018101905061310c565b5050565b601f82111561316f576131408161300f565b61314984613024565b81016020851015613158578190505b61316c61316485613024565b83018261310b565b50505b505050565b600082821c905092915050565b600061319260001984600802613174565b1980831691505092915050565b60006131ab8383613181565b9150826002028217905092915050565b6131c4826126d5565b67ffffffffffffffff8111156131dd576131dc612a9f565b5b6131e78254612de6565b6131f282828561312e565b600060209050601f8311600181146132255760008415613213578287015190505b61321d858261319f565b865550613285565b601f1984166132338661300f565b60005b8281101561325b57848901518255600182019150602085019450602081019050613236565b868310156132785784890151613274601f891682613181565b8355505b6001600288020188555050505b505050505050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006132c36017836126e0565b91506132ce8261328d565b602082019050919050565b600060208201905081810360008301526132f2816132b6565b9050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b6000613355602e836126e0565b9150613360826132f9565b604082019050919050565b6000602082019050818103600083015261338481613348565b9050919050565b7f4e6f206d6f726521000000000000000000000000000000000000000000000000600082015250565b60006133c16008836126e0565b91506133cc8261338b565b602082019050919050565b600060208201905081810360008301526133f0816133b4565b9050919050565b600061340282612787565b915061340d83612787565b925082820390508181111561342557613424612e17565b5b92915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000613461601d836126e0565b915061346c8261342b565b602082019050919050565b6000602082019050818103600083015261349081613454565b9050919050565b60006134a282612787565b91506134ad83612787565b92508282026134bb81612787565b915082820484148315176134d2576134d1612e17565b5b5092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613535602f836126e0565b9150613540826134d9565b604082019050919050565b6000602082019050818103600083015261356481613528565b9050919050565b600081905092915050565b6000613581826126d5565b61358b818561356b565b935061359b8185602086016126f1565b80840191505092915050565b600081546135b481612de6565b6135be818661356b565b945060018216600081146135d957600181146135ee57613621565b60ff1983168652811515820286019350613621565b6135f78561300f565b60005b83811015613619578154818901526001820191506020810190506135fa565b838801955050505b50505092915050565b60006136368286613576565b91506136428285613576565b915061364e82846135a7565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136b76026836126e0565b91506136c28261365b565b604082019050919050565b600060208201905081810360008301526136e6816136aa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137236020836126e0565b915061372e826136ed565b602082019050919050565b6000602082019050818103600083015261375281613716565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061378082613759565b61378a8185613764565b935061379a8185602086016126f1565b6137a38161271b565b840191505092915050565b60006080820190506137c3600083018761281c565b6137d0602083018661281c565b6137dd604083018561290b565b81810360608301526137ef8184613775565b905095945050505050565b60008151905061380981612646565b92915050565b60006020828403121561382557613824612610565b5b6000613833848285016137fa565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061387682612787565b915061388183612787565b9250826138915761389061383c565b5b828204905092915050565b60006138a782612787565b91506138b283612787565b9250826138c2576138c161383c565b5b82820690509291505056fea264697066735822122080b01b4c0623182685054b5ae9eec11fc9b102e9c115ef9271856c0057b5fd2364736f6c63430008120033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806370a082311161012e578063b88d4fde116100ab578063d755bf991161006f578063d755bf9914610818578063e0a8085314610841578063e985e9c51461086a578063f2fde38b146108a7578063f51f96dd146108d05761023b565b8063b88d4fde14610742578063bc3371821461075e578063bde12d7314610787578063c87b56dd146107b0578063d5abeb01146107ed5761023b565b80638ba4cc3c116100f25780638ba4cc3c1461067e5780638da5cb5b146106a757806395d89b41146106d2578063a0712d68146106fd578063a22cb465146107195761023b565b806370a0823114610599578063715018a6146105d657806371a34298146105ed5780637437681e1461062a5780637ec4a659146106555761023b565b806342842e0e116101bc578063518302271161018057806351830227146104b25780635c975abb146104dd5780635e1a2636146105085780636352211e146105335780636f8b44b0146105705761023b565b806342842e0e146103da578063438b6300146103f65780634751333414610433578063485a68a31461045e5780634fdd43cb146104895761023b565b806318160ddd1161020357806318160ddd1461032a5780631919fed71461035557806323b872dd1461037e5780632fbba1151461039a5780633ccfd60b146103c35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806316c38b3c14610301575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612672565b6108fb565b60405161027491906126ba565b60405180910390f35b34801561028957600080fd5b5061029261098d565b60405161029f9190612765565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906127bd565b610a1f565b6040516102dc919061282b565b60405180910390f35b6102ff60048036038101906102fa9190612872565b610a9e565b005b34801561030d57600080fd5b50610328600480360381019061032391906128de565b610be2565b005b34801561033657600080fd5b5061033f610c07565b60405161034c919061291a565b60405180910390f35b34801561036157600080fd5b5061037c600480360381019061037791906127bd565b610c1e565b005b61039860048036038101906103939190612935565b610c30565b005b3480156103a657600080fd5b506103c160048036038101906103bc91906127bd565b610f52565b005b3480156103cf57600080fd5b506103d8610fbe565b005b6103f460048036038101906103ef9190612935565b611075565b005b34801561040257600080fd5b5061041d60048036038101906104189190612988565b611095565b60405161042a9190612a73565b60405180910390f35b34801561043f57600080fd5b5061044861119f565b604051610455919061291a565b60405180910390f35b34801561046a57600080fd5b506104736111a5565b604051610480919061291a565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190612bca565b6111ab565b005b3480156104be57600080fd5b506104c76111c6565b6040516104d491906126ba565b60405180910390f35b3480156104e957600080fd5b506104f26111d9565b6040516104ff91906126ba565b60405180910390f35b34801561051457600080fd5b5061051d6111ec565b60405161052a919061291a565b60405180910390f35b34801561053f57600080fd5b5061055a600480360381019061055591906127bd565b6111f2565b604051610567919061282b565b60405180910390f35b34801561057c57600080fd5b50610597600480360381019061059291906127bd565b611204565b005b3480156105a557600080fd5b506105c060048036038101906105bb9190612988565b611216565b6040516105cd919061291a565b60405180910390f35b3480156105e257600080fd5b506105eb6112ce565b005b3480156105f957600080fd5b50610614600480360381019061060f9190612988565b6112e2565b604051610621919061291a565b60405180910390f35b34801561063657600080fd5b5061063f6112fa565b60405161064c919061291a565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190612bca565b611300565b005b34801561068a57600080fd5b506106a560048036038101906106a09190612872565b61131b565b005b3480156106b357600080fd5b506106bc6113d8565b6040516106c9919061282b565b60405180910390f35b3480156106de57600080fd5b506106e7611402565b6040516106f49190612765565b60405180910390f35b610717600480360381019061071291906127bd565b611494565b005b34801561072557600080fd5b50610740600480360381019061073b9190612c13565b61188f565b005b61075c60048036038101906107579190612cf4565b61199a565b005b34801561076a57600080fd5b50610785600480360381019061078091906127bd565b611a0d565b005b34801561079357600080fd5b506107ae60048036038101906107a991906127bd565b611a1f565b005b3480156107bc57600080fd5b506107d760048036038101906107d291906127bd565b611a31565b6040516107e49190612765565b60405180910390f35b3480156107f957600080fd5b50610802611b89565b60405161080f919061291a565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a91906127bd565b611b8f565b005b34801561084d57600080fd5b50610868600480360381019061086391906128de565b611ba1565b005b34801561087657600080fd5b50610891600480360381019061088c9190612d77565b611bc6565b60405161089e91906126ba565b60405180910390f35b3480156108b357600080fd5b506108ce60048036038101906108c99190612988565b611c5a565b005b3480156108dc57600080fd5b506108e5611cdd565b6040516108f2919061291a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109865750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461099c90612de6565b80601f01602080910402602001604051908101604052809291908181526020018280546109c890612de6565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b6000610a2a82611ce3565b610a60576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa9826111f2565b90508073ffffffffffffffffffffffffffffffffffffffff16610aca611d42565b73ffffffffffffffffffffffffffffffffffffffff1614610b2d57610af681610af1611d42565b611bc6565b610b2c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610bea611d4a565b80600d60006101000a81548160ff02191690831515021790555050565b6000610c11611dc8565b6001546000540303905090565b610c26611d4a565b80600e8190555050565b6000610c3b82611dd1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ca2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610cae84611e9d565b91509150610cc48187610cbf611d42565b611ec4565b610d1057610cd986610cd4611d42565b611bc6565b610d0f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d76576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d838686866001611f08565b8015610d8e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5c85610e38888887611f0e565b7c020000000000000000000000000000000000000000000000000000000017611f36565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ee25760006001850190506000600460008381526020019081526020016000205403610ee0576000548114610edf578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f4a8686866001611f61565b505050505050565b610f5a611d4a565b60125481610f66610c07565b610f709190612e46565b1115610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890612ec6565b60405180910390fd5b610fbb3382611f67565b50565b610fc6611d4a565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610fec90612f17565b60006040518083038185875af1925050503d8060008114611029576040519150601f19603f3d011682016040523d82523d6000602084013e61102e565b606091505b5050905080611072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106990612f78565b60405180910390fd5b50565b6110908383836040518060200160405280600081525061199a565b505050565b606060006110a283611216565b905060008167ffffffffffffffff8111156110c0576110bf612a9f565b5b6040519080825280602002602001820160405280156110ee5781602001602082028036833780820191505090505b50905060006001905060005b838110801561110b57506012548211155b1561119357600061111b836111f2565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361117f578284838151811061116457611163612f98565b5b602002602001018181525050818061117b90612fc7565b9250505b828061118a90612fc7565b935050506110fa565b82945050505050919050565b60115481565b600f5481565b6111b3611d4a565b80600c90816111c291906131bb565b5050565b600d60019054906101000a900460ff1681565b600d60009054906101000a900460ff1681565b60135481565b60006111fd82611dd1565b9050919050565b61120c611d4a565b8060128190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361127d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112d6611d4a565b6112e06000611f85565b565b60146020528060005260406000206000915090505481565b60105481565b611308611d4a565b80600a908161131791906131bb565b5050565b611323611d4a565b600d60009054906101000a900460ff1615611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a906132d9565b60405180910390fd5b60125461137e610c07565b826113899190612e46565b11156113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190612ec6565b60405180910390fd5b6113d48282611f67565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461141190612de6565b80601f016020809104026020016040519081016040528092919081815260200182805461143d90612de6565b801561148a5780601f1061145f5761010080835404028352916020019161148a565b820191906000526020600020905b81548152906001019060200180831161146d57829003601f168201915b5050505050905090565b600d60009054906101000a900460ff16156114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db906132d9565b60405180910390fd5b60008111611527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151e9061336b565b60405180910390fd5b60105461153333611216565b8261153e9190612e46565b111561157f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611576906133d7565b60405180910390fd5b60125461158a610c07565b826115959190612e46565b11156115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd90612ec6565b60405180910390fd5b6115de6113d8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461188257600f54601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410151580156116735750601154600f546013546116709190612e46565b11155b1561183057601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f546116c591906133f7565b811161171457600034101561170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170690613477565b60405180910390fd5b6117bc565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f5461176191906133f7565b8161176c91906133f7565b600e546117799190613497565b3410156117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b290613477565b60405180910390fd5b5b80601360008282546117ce9190612e46565b9250508190555080601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118249190612e46565b92505081905550611881565b80600e5461183e9190613497565b341015611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790613477565b60405180910390fd5b5b5b61188c3382611f67565b50565b806007600061189c611d42565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611949611d42565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161198e91906126ba565b60405180910390a35050565b6119a5848484610c30565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a07576119d08484848461204b565b611a06576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a15611d4a565b8060108190555050565b611a27611d4a565b8060118190555050565b6060611a3c82611ce3565b611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a729061354b565b60405180910390fd5b60001515600d60019054906101000a900460ff16151503611b2857600c8054611aa390612de6565b80601f0160208091040260200160405190810160405280929190818152602001828054611acf90612de6565b8015611b1c5780601f10611af157610100808354040283529160200191611b1c565b820191906000526020600020905b815481529060010190602001808311611aff57829003601f168201915b50505050509050611b84565b6000611b3261219b565b90506000815111611b525760405180602001604052806000815250611b80565b80611b5c8461222d565b600b604051602001611b709392919061362a565b6040516020818303038152906040525b9150505b919050565b60125481565b611b97611d4a565b80600f8190555050565b611ba9611d4a565b80600d60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c62611d4a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc8906136cd565b60405180910390fd5b611cda81611f85565b50565b600e5481565b600081611cee611dc8565b11158015611cfd575060005482105b8015611d3b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611d5261238d565b73ffffffffffffffffffffffffffffffffffffffff16611d706113d8565b73ffffffffffffffffffffffffffffffffffffffff1614611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd90613739565b60405180910390fd5b565b60006001905090565b60008082905080611de0611dc8565b11611e6657600054811015611e655760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e63575b60008103611e59576004600083600190039350838152602001908152602001600020549050611e2f565b8092505050611e98565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f25868684612395565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611f8182826040518060200160405280600081525061239e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612071611d42565b8786866040518563ffffffff1660e01b815260040161209394939291906137ae565b6020604051808303816000875af19250505080156120cf57506040513d601f19601f820116820180604052508101906120cc919061380f565b60015b612148573d80600081146120ff576040519150601f19603f3d011682016040523d82523d6000602084013e612104565b606091505b506000815103612140576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546121aa90612de6565b80601f01602080910402602001604051908101604052809291908181526020018280546121d690612de6565b80156122235780601f106121f857610100808354040283529160200191612223565b820191906000526020600020905b81548152906001019060200180831161220657829003601f168201915b5050505050905090565b606060008203612274576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612388565b600082905060005b600082146122a657808061228f90612fc7565b915050600a8261229f919061386b565b915061227c565b60008167ffffffffffffffff8111156122c2576122c1612a9f565b5b6040519080825280601f01601f1916602001820160405280156122f45781602001600182028036833780820191505090505b5090505b600085146123815760018261230d91906133f7565b9150600a8561231c919061389c565b60306123289190612e46565b60f81b81838151811061233e5761233d612f98565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561237a919061386b565b94506122f8565b8093505050505b919050565b600033905090565b60009392505050565b6123a8838361243b565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461243657600080549050600083820390505b6123e8600086838060010194508661204b565b61241e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123d557816000541461243357600080fd5b50505b505050565b6000805490506000820361247b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124886000848385611f08565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124ff836124f06000866000611f0e565b6124f9856125f6565b17611f36565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125a057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612565565b50600082036125db576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125f16000848385611f61565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61264f8161261a565b811461265a57600080fd5b50565b60008135905061266c81612646565b92915050565b60006020828403121561268857612687612610565b5b60006126968482850161265d565b91505092915050565b60008115159050919050565b6126b48161269f565b82525050565b60006020820190506126cf60008301846126ab565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561270f5780820151818401526020810190506126f4565b60008484015250505050565b6000601f19601f8301169050919050565b6000612737826126d5565b61274181856126e0565b93506127518185602086016126f1565b61275a8161271b565b840191505092915050565b6000602082019050818103600083015261277f818461272c565b905092915050565b6000819050919050565b61279a81612787565b81146127a557600080fd5b50565b6000813590506127b781612791565b92915050565b6000602082840312156127d3576127d2612610565b5b60006127e1848285016127a8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612815826127ea565b9050919050565b6128258161280a565b82525050565b6000602082019050612840600083018461281c565b92915050565b61284f8161280a565b811461285a57600080fd5b50565b60008135905061286c81612846565b92915050565b6000806040838503121561288957612888612610565b5b60006128978582860161285d565b92505060206128a8858286016127a8565b9150509250929050565b6128bb8161269f565b81146128c657600080fd5b50565b6000813590506128d8816128b2565b92915050565b6000602082840312156128f4576128f3612610565b5b6000612902848285016128c9565b91505092915050565b61291481612787565b82525050565b600060208201905061292f600083018461290b565b92915050565b60008060006060848603121561294e5761294d612610565b5b600061295c8682870161285d565b935050602061296d8682870161285d565b925050604061297e868287016127a8565b9150509250925092565b60006020828403121561299e5761299d612610565b5b60006129ac8482850161285d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6129ea81612787565b82525050565b60006129fc83836129e1565b60208301905092915050565b6000602082019050919050565b6000612a20826129b5565b612a2a81856129c0565b9350612a35836129d1565b8060005b83811015612a66578151612a4d88826129f0565b9750612a5883612a08565b925050600181019050612a39565b5085935050505092915050565b60006020820190508181036000830152612a8d8184612a15565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ad78261271b565b810181811067ffffffffffffffff82111715612af657612af5612a9f565b5b80604052505050565b6000612b09612606565b9050612b158282612ace565b919050565b600067ffffffffffffffff821115612b3557612b34612a9f565b5b612b3e8261271b565b9050602081019050919050565b82818337600083830152505050565b6000612b6d612b6884612b1a565b612aff565b905082815260208101848484011115612b8957612b88612a9a565b5b612b94848285612b4b565b509392505050565b600082601f830112612bb157612bb0612a95565b5b8135612bc1848260208601612b5a565b91505092915050565b600060208284031215612be057612bdf612610565b5b600082013567ffffffffffffffff811115612bfe57612bfd612615565b5b612c0a84828501612b9c565b91505092915050565b60008060408385031215612c2a57612c29612610565b5b6000612c388582860161285d565b9250506020612c49858286016128c9565b9150509250929050565b600067ffffffffffffffff821115612c6e57612c6d612a9f565b5b612c778261271b565b9050602081019050919050565b6000612c97612c9284612c53565b612aff565b905082815260208101848484011115612cb357612cb2612a9a565b5b612cbe848285612b4b565b509392505050565b600082601f830112612cdb57612cda612a95565b5b8135612ceb848260208601612c84565b91505092915050565b60008060008060808587031215612d0e57612d0d612610565b5b6000612d1c8782880161285d565b9450506020612d2d8782880161285d565b9350506040612d3e878288016127a8565b925050606085013567ffffffffffffffff811115612d5f57612d5e612615565b5b612d6b87828801612cc6565b91505092959194509250565b60008060408385031215612d8e57612d8d612610565b5b6000612d9c8582860161285d565b9250506020612dad8582860161285d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dfe57607f821691505b602082108103612e1157612e10612db7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e5182612787565b9150612e5c83612787565b9250828201905080821115612e7457612e73612e17565b5b92915050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612eb06008836126e0565b9150612ebb82612e7a565b602082019050919050565b60006020820190508181036000830152612edf81612ea3565b9050919050565b600081905092915050565b50565b6000612f01600083612ee6565b9150612f0c82612ef1565b600082019050919050565b6000612f2282612ef4565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612f626010836126e0565b9150612f6d82612f2c565b602082019050919050565b60006020820190508181036000830152612f9181612f55565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612fd282612787565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361300457613003612e17565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613034565b61307b8683613034565b95508019841693508086168417925050509392505050565b6000819050919050565b60006130b86130b36130ae84612787565b613093565b612787565b9050919050565b6000819050919050565b6130d28361309d565b6130e66130de826130bf565b848454613041565b825550505050565b600090565b6130fb6130ee565b6131068184846130c9565b505050565b5b8181101561312a5761311f6000826130f3565b60018101905061310c565b5050565b601f82111561316f576131408161300f565b61314984613024565b81016020851015613158578190505b61316c61316485613024565b83018261310b565b50505b505050565b600082821c905092915050565b600061319260001984600802613174565b1980831691505092915050565b60006131ab8383613181565b9150826002028217905092915050565b6131c4826126d5565b67ffffffffffffffff8111156131dd576131dc612a9f565b5b6131e78254612de6565b6131f282828561312e565b600060209050601f8311600181146132255760008415613213578287015190505b61321d858261319f565b865550613285565b601f1984166132338661300f565b60005b8281101561325b57848901518255600182019150602085019450602081019050613236565b868310156132785784890151613274601f891682613181565b8355505b6001600288020188555050505b505050505050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006132c36017836126e0565b91506132ce8261328d565b602082019050919050565b600060208201905081810360008301526132f2816132b6565b9050919050565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b6000613355602e836126e0565b9150613360826132f9565b604082019050919050565b6000602082019050818103600083015261338481613348565b9050919050565b7f4e6f206d6f726521000000000000000000000000000000000000000000000000600082015250565b60006133c16008836126e0565b91506133cc8261338b565b602082019050919050565b600060208201905081810360008301526133f0816133b4565b9050919050565b600061340282612787565b915061340d83612787565b925082820390508181111561342557613424612e17565b5b92915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000613461601d836126e0565b915061346c8261342b565b602082019050919050565b6000602082019050818103600083015261349081613454565b9050919050565b60006134a282612787565b91506134ad83612787565b92508282026134bb81612787565b915082820484148315176134d2576134d1612e17565b5b5092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613535602f836126e0565b9150613540826134d9565b604082019050919050565b6000602082019050818103600083015261356481613528565b9050919050565b600081905092915050565b6000613581826126d5565b61358b818561356b565b935061359b8185602086016126f1565b80840191505092915050565b600081546135b481612de6565b6135be818661356b565b945060018216600081146135d957600181146135ee57613621565b60ff1983168652811515820286019350613621565b6135f78561300f565b60005b83811015613619578154818901526001820191506020810190506135fa565b838801955050505b50505092915050565b60006136368286613576565b91506136428285613576565b915061364e82846135a7565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136b76026836126e0565b91506136c28261365b565b604082019050919050565b600060208201905081810360008301526136e6816136aa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137236020836126e0565b915061372e826136ed565b602082019050919050565b6000602082019050818103600083015261375281613716565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061378082613759565b61378a8185613764565b935061379a8185602086016126f1565b6137a38161271b565b840191505092915050565b60006080820190506137c3600083018761281c565b6137d0602083018661281c565b6137dd604083018561290b565b81810360608301526137ef8184613775565b905095945050505050565b60008151905061380981612646565b92915050565b60006020828403121561382557613824612610565b5b6000613833848285016137fa565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061387682612787565b915061388183612787565b9250826138915761389061383c565b5b828204905092915050565b60006138a782612787565b91506138b283612787565b9250826138c2576138c161383c565b5b82820690509291505056fea264697066735822122080b01b4c0623182685054b5ae9eec11fc9b102e9c115ef9271856c0057b5fd2364736f6c63430008120033

Deployed Bytecode Sourcemap

62165:5828:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18761:689;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19713:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26651:268;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26043:449;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65082:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15286:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65268:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30422:3003;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64542:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67784:206;;;;;;;;;;;;;:::i;:::-;;33521:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66201:735;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62617:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62552:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65800:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62471:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62439:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62699:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21203:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65692:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16470:283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59110:103;;;;;;;;;;;;;:::i;:::-;;62736:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62585:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65969:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64769:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58462:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19889:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63076:1414;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27259:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34312:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65476:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65568:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67053:723;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62659:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65376:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65173:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27682:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59368:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62507:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18761:689;18891:4;19235:10;19220:25;;:11;:25;;;;:102;;;;19312:10;19297:25;;:11;:25;;;;19220:102;:179;;;;19389:10;19374:25;;:11;:25;;;;19220:179;19200:199;;18761:689;;;:::o;19713:100::-;19767:13;19800:5;19793:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19713:100;:::o;26651:268::-;26772:7;26802:16;26810:7;26802;:16::i;:::-;26797:64;;26827:34;;;;;;;;;;;;;;26797:64;26881:15;:24;26897:7;26881:24;;;;;;;;;;;:30;;;;;;;;;;;;26874:37;;26651:268;;;:::o;26043:449::-;26173:13;26189:16;26197:7;26189;:16::i;:::-;26173:32;;26245:5;26222:28;;:19;:17;:19::i;:::-;:28;;;26218:175;;26270:44;26287:5;26294:19;:17;:19::i;:::-;26270:16;:44::i;:::-;26265:128;;26342:35;;;;;;;;;;;;;;26265:128;26218:175;26438:2;26405:15;:24;26421:7;26405:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26476:7;26472:2;26456:28;;26465:5;26456:28;;;;;;;;;;;;26162:330;26043:449;;:::o;65082:83::-;58348:13;:11;:13::i;:::-;65151:6:::1;65142;;:15;;;;;;;;;;;;;;;;;;65082:83:::0;:::o;15286:323::-;15347:7;15575:15;:13;:15::i;:::-;15560:12;;15544:13;;:28;:46;15537:53;;15286:323;:::o;65268:100::-;58348:13;:11;:13::i;:::-;65351:9:::1;65339;:21;;;;65268:100:::0;:::o;30422:3003::-;30564:27;30594;30613:7;30594:18;:27::i;:::-;30564:57;;30679:4;30638:45;;30654:19;30638:45;;;30634:99;;30705:28;;;;;;;;;;;;;;30634:99;30761:27;30803:23;30840:35;30867:7;30840:26;:35::i;:::-;30746:129;;;;30989:134;31032:15;31066:4;31089:19;:17;:19::i;:::-;30989:24;:134::i;:::-;30970:287;;31153:43;31170:4;31176:19;:17;:19::i;:::-;31153:16;:43::i;:::-;31148:109;;31222:35;;;;;;;;;;;;;;31148:109;30970:287;31288:1;31274:16;;:2;:16;;;31270:52;;31299:23;;;;;;;;;;;;;;31270:52;31335:43;31357:4;31363:2;31367:7;31376:1;31335:21;:43::i;:::-;31471:15;31468:160;;;31611:1;31590:19;31583:30;31468:160;32008:18;:24;32027:4;32008:24;;;;;;;;;;;;;;;;32006:26;;;;;;;;;;;;32077:18;:22;32096:2;32077:22;;;;;;;;;;;;;;;;32075:24;;;;;;;;;;;32399:167;32436:2;32506:45;32521:4;32527:2;32531:19;32506:14;:45::i;:::-;11685:8;32457:94;32399:18;:167::i;:::-;32370:17;:26;32388:7;32370:26;;;;;;;;;;;:196;;;;32737:1;11685:8;32686:19;:47;:52;32682:627;;32759:19;32791:1;32781:7;:11;32759:33;;32948:1;32914:17;:30;32932:11;32914:30;;;;;;;;;;;;:35;32910:384;;33052:13;;33037:11;:28;33033:242;;33232:19;33199:17;:30;33217:11;33199:30;;;;;;;;;;;:52;;;;33033:242;32910:384;32740:569;32682:627;33356:7;33352:2;33337:27;;33346:4;33337:27;;;;;;;;;;;;33375:42;33396:4;33402:2;33406:7;33415:1;33375:20;:42::i;:::-;30553:2872;;;30422:3003;;;:::o;64542:177::-;58348:13;:11;:13::i;:::-;64646:9:::1;;64633;64617:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;64609:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;64679:32;64689:10;64701:9;64679;:32::i;:::-;64542:177:::0;:::o;67784:206::-;58348:13;:11;:13::i;:::-;67835:12:::1;67861:10;67853:24;;67899:21;67853:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67834:101;;;67954:7;67946:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;67823:167;67784:206::o:0;33521:193::-;33667:39;33684:4;33690:2;33694:7;33667:39;;;;;;;;;;;;:16;:39::i;:::-;33521:193;;;:::o;66201:735::-;66288:16;66322:23;66348:17;66358:6;66348:9;:17::i;:::-;66322:43;;66376:30;66423:15;66409:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66376:63;;66450:22;66475:1;66450:26;;66487:23;66527:371;66566:15;66548;:33;:64;;;;;66603:9;;66585:14;:27;;66548:64;66527:371;;;66639:25;66667:23;66675:14;66667:7;:23::i;:::-;66639:51;;66730:6;66709:27;;:17;:27;;;66705:151;;66790:14;66757:13;66771:15;66757:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;66823:17;;;;;:::i;:::-;;;;66705:151;66870:16;;;;;:::i;:::-;;;;66624:274;66527:371;;;66915:13;66908:20;;;;;;66201:735;;;:::o;62617:35::-;;;;:::o;62552:26::-;;;;:::o;65800:161::-;58348:13;:11;:13::i;:::-;65935:18:::1;65915:17;:38;;;;;;:::i;:::-;;65800:161:::0;:::o;62471:27::-;;;;;;;;;;;;;:::o;62439:25::-;;;;;;;;;;;;;:::o;62699:30::-;;;;:::o;21203:202::-;21320:7;21368:27;21387:7;21368:18;:27::i;:::-;21345:52;;21203:202;;;:::o;65692:100::-;58348:13;:11;:13::i;:::-;65774:10:::1;65762:9;:22;;;;65692:100:::0;:::o;16470:283::-;16587:7;16633:1;16616:19;;:5;:19;;;16612:60;;16644:28;;;;;;;;;;;;;;16612:60;10629:13;16690:18;:25;16709:5;16690:25;;;;;;;;;;;;;;;;:55;16683:62;;16470:283;;;:::o;59110:103::-;58348:13;:11;:13::i;:::-;59175:30:::1;59202:1;59175:18;:30::i;:::-;59110:103::o:0;62736:42::-;;;;;;;;;;;;;;;;;:::o;62585:25::-;;;;:::o;65969:106::-;58348:13;:11;:13::i;:::-;66057:10:::1;66045:9;:22;;;;;;:::i;:::-;;65969:106:::0;:::o;64769:236::-;58348:13;:11;:13::i;:::-;64857:6:::1;;;;;;;;;;;64856:7;64848:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;64939:9;;64922:13;:11;:13::i;:::-;64910:9;:25;;;;:::i;:::-;:38;;64902:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;64972:25;64982:3;64987:9;64972;:25::i;:::-;64769:236:::0;;:::o;58462:87::-;58508:7;58535:6;;;;;;;;;;;58528:13;;58462:87;:::o;19889:104::-;19945:13;19978:7;19971:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19889:104;:::o;63076:1414::-;63178:6;;;;;;;;;;;63177:7;63169:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;63257:1;63245:9;:13;63223:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;63388:5;;63363:21;63373:10;63363:9;:21::i;:::-;63351:9;:33;;;;:::i;:::-;:42;;63343:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;63454:9;;63437:13;:11;:13::i;:::-;63425:9;:25;;;;:::i;:::-;:38;;63417:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;63507:7;:5;:7::i;:::-;63493:21;;:10;:21;;;63489:932;;63578:7;;63555;:19;63563:10;63555:19;;;;;;;;;;;;;;;;:30;;63553:33;:92;;;;;63632:13;;63621:7;;63607:11;;:21;;;;:::i;:::-;:38;;63553:92;63531:879;;;63707:7;:19;63715:10;63707:19;;;;;;;;;;;;;;;;63697:7;;:29;;;;:::i;:::-;63684:9;:42;63680:443;;63772:1;63759:9;:14;;63751:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;63680:443;;;64001:7;:19;64009:10;64001:19;;;;;;;;;;;;;;;;63991:7;;:29;;;;:::i;:::-;63978:9;:43;;;;:::i;:::-;63932:9;;:90;;;;:::i;:::-;63890:9;:132;;63856:247;;;;;;;;;;;;:::i;:::-;;;;;;;;;63680:443;64156:9;64141:11;;:24;;;;;;;:::i;:::-;;;;;;;;64207:9;64184:7;:19;64192:10;64184:19;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;63531:879;;;64312:9;64300;;:21;;;;:::i;:::-;64287:9;:34;;64257:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;63531:879;63489:932;64450:32;64460:10;64472:9;64450;:32::i;:::-;63076:1414;:::o;27259:266::-;27438:8;27386:18;:39;27405:19;:17;:19::i;:::-;27386:39;;;;;;;;;;;;;;;:49;27426:8;27386:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27498:8;27462:55;;27477:19;:17;:19::i;:::-;27462:55;;;27508:8;27462:55;;;;;;:::i;:::-;;;;;;;;27259:266;;:::o;34312:407::-;34487:31;34500:4;34506:2;34510:7;34487:12;:31::i;:::-;34551:1;34533:2;:14;;;:19;34529:183;;34572:56;34603:4;34609:2;34613:7;34622:5;34572:30;:56::i;:::-;34567:145;;34656:40;;;;;;;;;;;;;;34567:145;34529:183;34312:407;;;;:::o;65476:84::-;58348:13;:11;:13::i;:::-;65546:6:::1;65538:5;:14;;;;65476:84:::0;:::o;65568:116::-;58348:13;:11;:13::i;:::-;65662:14:::1;65646:13;:30;;;;65568:116:::0;:::o;67053:723::-;67172:13;67225:17;67233:8;67225:7;:17::i;:::-;67203:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;67344:5;67332:17;;:8;;;;;;;;;;;:17;;;67328:74;;67373:17;67366:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67328:74;67412:28;67443:10;:8;:10::i;:::-;67412:41;;67515:1;67490:14;67484:28;:32;:284;;;;;;;;;;;;;;;;;67608:14;67649:19;:8;:17;:19::i;:::-;67695:9;67565:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67484:284;67464:304;;;67053:723;;;;:::o;62659:31::-;;;;:::o;65376:92::-;58348:13;:11;:13::i;:::-;65452:8:::1;65442:7;:18;;;;65376:92:::0;:::o;65173:87::-;58348:13;:11;:13::i;:::-;65246:6:::1;65235:8;;:17;;;;;;;;;;;;;;;;;;65173:87:::0;:::o;27682:214::-;27824:4;27853:18;:25;27872:5;27853:25;;;;;;;;;;;;;;;:35;27879:8;27853:35;;;;;;;;;;;;;;;;;;;;;;;;;27846:42;;27682:214;;;;:::o;59368:238::-;58348:13;:11;:13::i;:::-;59491:1:::1;59471:22;;:8;:22;;::::0;59449:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;59570:28;59589:8;59570:18;:28::i;:::-;59368:238:::0;:::o;62507:38::-;;;;:::o;28154:282::-;28219:4;28275:7;28256:15;:13;:15::i;:::-;:26;;:66;;;;;28309:13;;28299:7;:23;28256:66;:153;;;;;28408:1;11405:8;28360:17;:26;28378:7;28360:26;;;;;;;;;;;;:44;:49;28256:153;28236:173;;28154:282;;;:::o;51371:105::-;51431:7;51458:10;51451:17;;51371:105;:::o;58627:132::-;58702:12;:10;:12::i;:::-;58691:23;;:7;:5;:7::i;:::-;:23;;;58683:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58627:132::o;66944:101::-;67009:7;67036:1;67029:8;;66944:101;:::o;22490:1307::-;22584:7;22609:12;22624:7;22609:22;;22692:4;22673:15;:13;:15::i;:::-;:23;22669:1061;;22726:13;;22719:4;:20;22715:1015;;;22764:14;22781:17;:23;22799:4;22781:23;;;;;;;;;;;;22764:40;;22898:1;11405:8;22870:6;:24;:29;22866:845;;23535:113;23552:1;23542:6;:11;23535:113;;23595:17;:25;23613:6;;;;;;;23595:25;;;;;;;;;;;;23586:34;;23535:113;;;23681:6;23674:13;;;;;;22866:845;22741:989;22715:1015;22669:1061;23758:31;;;;;;;;;;;;;;22490:1307;;;;:::o;29317:485::-;29419:27;29448:23;29489:38;29530:15;:24;29546:7;29530:24;;;;;;;;;;;29489:65;;29707:18;29684:41;;29764:19;29758:26;29739:45;;29669:126;29317:485;;;:::o;28545:659::-;28694:11;28859:16;28852:5;28848:28;28839:37;;29019:16;29008:9;29004:32;28991:45;;29169:15;29158:9;29155:30;29147:5;29136:9;29133:20;29130:56;29120:66;;28545:659;;;;;:::o;35381:159::-;;;;;:::o;50680:311::-;50815:7;50835:16;11809:3;50861:19;:41;;50835:68;;11809:3;50929:31;50940:4;50946:2;50950:9;50929:10;:31::i;:::-;50921:40;;:62;;50914:69;;;50680:311;;;;;:::o;24377:531::-;24484:14;24657:16;24650:5;24646:28;24637:37;;24869:5;24855:11;24830:23;24826:41;24823:52;24799:5;24778:112;24768:122;;24377:531;;;;:::o;36205:158::-;;;;;:::o;44984:112::-;45061:27;45071:2;45075:8;45061:27;;;;;;;;;;;;:9;:27::i;:::-;44984:112;;:::o;59766:191::-;59840:16;59859:6;;;;;;;;;;;59840:25;;59885:8;59876:6;;:17;;;;;;;;;;;;;;;;;;59940:8;59909:40;;59930:8;59909:40;;;;;;;;;;;;59829:128;59766:191;:::o;36803:831::-;36966:4;37025:2;37000:45;;;37064:19;:17;:19::i;:::-;37102:4;37125:7;37151:5;37000:171;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36983:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37402:1;37385:6;:13;:18;37381:235;;37431:40;;;;;;;;;;;;;;37381:235;37574:6;37568:13;37559:6;37555:2;37551:15;37544:38;36983:644;37271:54;;;37244:81;;;:6;:81;;;;37220:105;;;36803:831;;;;;;:::o;66083:110::-;66143:13;66176:9;66169:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66083:110;:::o;60273:723::-;60329:13;60559:1;60550:5;:10;60546:53;;60577:10;;;;;;;;;;;;;;;;;;;;;60546:53;60609:12;60624:5;60609:20;;60640:14;60665:78;60680:1;60672:4;:9;60665:78;;60698:8;;;;;:::i;:::-;;;;60729:2;60721:10;;;;;:::i;:::-;;;60665:78;;;60753:19;60785:6;60775:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60753:39;;60803:154;60819:1;60810:5;:10;60803:154;;60847:1;60837:11;;;;;:::i;:::-;;;60914:2;60906:5;:10;;;;:::i;:::-;60893:2;:24;;;;:::i;:::-;60880:39;;60863:6;60870;60863:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;60943:2;60934:11;;;;;:::i;:::-;;;60803:154;;;60981:6;60967:21;;;;;60273:723;;;;:::o;56992:98::-;57045:7;57072:10;57065:17;;56992:98;:::o;50381:147::-;50518:6;50381:147;;;;;:::o;44020:880::-;44151:19;44157:2;44161:8;44151:5;:19::i;:::-;44230:1;44212:2;:14;;;:19;44208:674;;44252:11;44266:13;;44252:27;;44298:13;44320:8;44314:3;:14;44298:30;;44347:424;44404:205;44473:1;44506:2;44539:7;;;;;;44577:5;44404:30;:205::i;:::-;44373:358;;44667:40;;;;;;;;;;;;;;44373:358;44766:3;44758:5;:11;44347:424;;44853:3;44836:13;;:20;44832:34;;44858:8;;;44832:34;44233:649;;44208:674;44020:880;;;:::o;38096:3021::-;38169:20;38192:13;;38169:36;;38232:1;38220:8;:13;38216:44;;38242:18;;;;;;;;;;;;;;38216:44;38273:61;38303:1;38307:2;38311:12;38325:8;38273:21;:61::i;:::-;38851:1;10767:2;38821:1;:26;;38820:32;38791:8;:62;38748:18;:22;38767:2;38748:22;;;;;;;;;;;;;;;;:105;;;;;;;;;;;39130:160;39167:2;39242:33;39265:1;39269:2;39273:1;39242:14;:33::i;:::-;39188:30;39209:8;39188:20;:30::i;:::-;:87;39130:18;:160::i;:::-;39096:17;:31;39114:12;39096:31;;;;;;;;;;;:194;;;;39307:16;39338:11;39367:8;39352:12;:23;39338:37;;39888:16;39884:2;39880:25;39868:37;;40260:12;40220:8;40179:1;40117:25;40058:1;39997;39970:335;40631:1;40617:12;40613:20;40571:346;40672:3;40663:7;40660:16;40571:346;;40890:7;40880:8;40877:1;40850:25;40847:1;40844;40839:59;40725:1;40716:7;40712:15;40701:26;;40571:346;;;40575:77;40962:1;40950:8;:13;40946:45;;40972:19;;;;;;;;;;;;;;40946:45;41024:3;41008:13;:19;;;;38522:2517;;41049:60;41078:1;41082:2;41086:12;41100:8;41049:20;:60::i;:::-;38158:2959;38096:3021;;:::o;25010:356::-;25107:14;25345:1;25335:8;25332:15;25306:24;25302:46;25292:56;;25010:356;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:116::-;4960:21;4975:5;4960:21;:::i;:::-;4953:5;4950:32;4940:60;;4996:1;4993;4986:12;4940:60;4890:116;:::o;5012:133::-;5055:5;5093:6;5080:20;5071:29;;5109:30;5133:5;5109:30;:::i;:::-;5012:133;;;;:::o;5151:323::-;5207:6;5256:2;5244:9;5235:7;5231:23;5227:32;5224:119;;;5262:79;;:::i;:::-;5224:119;5382:1;5407:50;5449:7;5440:6;5429:9;5425:22;5407:50;:::i;:::-;5397:60;;5353:114;5151:323;;;;:::o;5480:118::-;5567:24;5585:5;5567:24;:::i;:::-;5562:3;5555:37;5480:118;;:::o;5604:222::-;5697:4;5735:2;5724:9;5720:18;5712:26;;5748:71;5816:1;5805:9;5801:17;5792:6;5748:71;:::i;:::-;5604:222;;;;:::o;5832:619::-;5909:6;5917;5925;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6071:117;6227:2;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6198:118;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;5832:619;;;;;:::o;6457:329::-;6516:6;6565:2;6553:9;6544:7;6540:23;6536:32;6533:119;;;6571:79;;:::i;:::-;6533:119;6691:1;6716:53;6761:7;6752:6;6741:9;6737:22;6716:53;:::i;:::-;6706:63;;6662:117;6457:329;;;;:::o;6792:114::-;6859:6;6893:5;6887:12;6877:22;;6792:114;;;:::o;6912:184::-;7011:11;7045:6;7040:3;7033:19;7085:4;7080:3;7076:14;7061:29;;6912:184;;;;:::o;7102:132::-;7169:4;7192:3;7184:11;;7222:4;7217:3;7213:14;7205:22;;7102:132;;;:::o;7240:108::-;7317:24;7335:5;7317:24;:::i;:::-;7312:3;7305:37;7240:108;;:::o;7354:179::-;7423:10;7444:46;7486:3;7478:6;7444:46;:::i;:::-;7522:4;7517:3;7513:14;7499:28;;7354:179;;;;:::o;7539:113::-;7609:4;7641;7636:3;7632:14;7624:22;;7539:113;;;:::o;7688:732::-;7807:3;7836:54;7884:5;7836:54;:::i;:::-;7906:86;7985:6;7980:3;7906:86;:::i;:::-;7899:93;;8016:56;8066:5;8016:56;:::i;:::-;8095:7;8126:1;8111:284;8136:6;8133:1;8130:13;8111:284;;;8212:6;8206:13;8239:63;8298:3;8283:13;8239:63;:::i;:::-;8232:70;;8325:60;8378:6;8325:60;:::i;:::-;8315:70;;8171:224;8158:1;8155;8151:9;8146:14;;8111:284;;;8115:14;8411:3;8404:10;;7812:608;;;7688:732;;;;:::o;8426:373::-;8569:4;8607:2;8596:9;8592:18;8584:26;;8656:9;8650:4;8646:20;8642:1;8631:9;8627:17;8620:47;8684:108;8787:4;8778:6;8684:108;:::i;:::-;8676:116;;8426:373;;;;:::o;8805:117::-;8914:1;8911;8904:12;8928:117;9037:1;9034;9027:12;9051:180;9099:77;9096:1;9089:88;9196:4;9193:1;9186:15;9220:4;9217:1;9210:15;9237:281;9320:27;9342:4;9320:27;:::i;:::-;9312:6;9308:40;9450:6;9438:10;9435:22;9414:18;9402:10;9399:34;9396:62;9393:88;;;9461:18;;:::i;:::-;9393:88;9501:10;9497:2;9490:22;9280:238;9237:281;;:::o;9524:129::-;9558:6;9585:20;;:::i;:::-;9575:30;;9614:33;9642:4;9634:6;9614:33;:::i;:::-;9524:129;;;:::o;9659:308::-;9721:4;9811:18;9803:6;9800:30;9797:56;;;9833:18;;:::i;:::-;9797:56;9871:29;9893:6;9871:29;:::i;:::-;9863:37;;9955:4;9949;9945:15;9937:23;;9659:308;;;:::o;9973:146::-;10070:6;10065:3;10060;10047:30;10111:1;10102:6;10097:3;10093:16;10086:27;9973:146;;;:::o;10125:425::-;10203:5;10228:66;10244:49;10286:6;10244:49;:::i;:::-;10228:66;:::i;:::-;10219:75;;10317:6;10310:5;10303:21;10355:4;10348:5;10344:16;10393:3;10384:6;10379:3;10375:16;10372:25;10369:112;;;10400:79;;:::i;:::-;10369:112;10490:54;10537:6;10532:3;10527;10490:54;:::i;:::-;10209:341;10125:425;;;;;:::o;10570:340::-;10626:5;10675:3;10668:4;10660:6;10656:17;10652:27;10642:122;;10683:79;;:::i;:::-;10642:122;10800:6;10787:20;10825:79;10900:3;10892:6;10885:4;10877:6;10873:17;10825:79;:::i;:::-;10816:88;;10632:278;10570:340;;;;:::o;10916:509::-;10985:6;11034:2;11022:9;11013:7;11009:23;11005:32;11002:119;;;11040:79;;:::i;:::-;11002:119;11188:1;11177:9;11173:17;11160:31;11218:18;11210:6;11207:30;11204:117;;;11240:79;;:::i;:::-;11204:117;11345:63;11400:7;11391:6;11380:9;11376:22;11345:63;:::i;:::-;11335:73;;11131:287;10916:509;;;;:::o;11431:468::-;11496:6;11504;11553:2;11541:9;11532:7;11528:23;11524:32;11521:119;;;11559:79;;:::i;:::-;11521:119;11679:1;11704:53;11749:7;11740:6;11729:9;11725:22;11704:53;:::i;:::-;11694:63;;11650:117;11806:2;11832:50;11874:7;11865:6;11854:9;11850:22;11832:50;:::i;:::-;11822:60;;11777:115;11431:468;;;;;:::o;11905:307::-;11966:4;12056:18;12048:6;12045:30;12042:56;;;12078:18;;:::i;:::-;12042:56;12116:29;12138:6;12116:29;:::i;:::-;12108:37;;12200:4;12194;12190:15;12182:23;;11905:307;;;:::o;12218:423::-;12295:5;12320:65;12336:48;12377:6;12336:48;:::i;:::-;12320:65;:::i;:::-;12311:74;;12408:6;12401:5;12394:21;12446:4;12439:5;12435:16;12484:3;12475:6;12470:3;12466:16;12463:25;12460:112;;;12491:79;;:::i;:::-;12460:112;12581:54;12628:6;12623:3;12618;12581:54;:::i;:::-;12301:340;12218:423;;;;;:::o;12660:338::-;12715:5;12764:3;12757:4;12749:6;12745:17;12741:27;12731:122;;12772:79;;:::i;:::-;12731:122;12889:6;12876:20;12914:78;12988:3;12980:6;12973:4;12965:6;12961:17;12914:78;:::i;:::-;12905:87;;12721:277;12660:338;;;;:::o;13004:943::-;13099:6;13107;13115;13123;13172:3;13160:9;13151:7;13147:23;13143:33;13140:120;;;13179:79;;:::i;:::-;13140:120;13299:1;13324:53;13369:7;13360:6;13349:9;13345:22;13324:53;:::i;:::-;13314:63;;13270:117;13426:2;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13397:118;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13710:2;13699:9;13695:18;13682:32;13741:18;13733:6;13730:30;13727:117;;;13763:79;;:::i;:::-;13727:117;13868:62;13922:7;13913:6;13902:9;13898:22;13868:62;:::i;:::-;13858:72;;13653:287;13004:943;;;;;;;:::o;13953:474::-;14021:6;14029;14078:2;14066:9;14057:7;14053:23;14049:32;14046:119;;;14084:79;;:::i;:::-;14046:119;14204:1;14229:53;14274:7;14265:6;14254:9;14250:22;14229:53;:::i;:::-;14219:63;;14175:117;14331:2;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14302:118;13953:474;;;;;:::o;14433:180::-;14481:77;14478:1;14471:88;14578:4;14575:1;14568:15;14602:4;14599:1;14592:15;14619:320;14663:6;14700:1;14694:4;14690:12;14680:22;;14747:1;14741:4;14737:12;14768:18;14758:81;;14824:4;14816:6;14812:17;14802:27;;14758:81;14886:2;14878:6;14875:14;14855:18;14852:38;14849:84;;14905:18;;:::i;:::-;14849:84;14670:269;14619:320;;;:::o;14945:180::-;14993:77;14990:1;14983:88;15090:4;15087:1;15080:15;15114:4;15111:1;15104:15;15131:191;15171:3;15190:20;15208:1;15190:20;:::i;:::-;15185:25;;15224:20;15242:1;15224:20;:::i;:::-;15219:25;;15267:1;15264;15260:9;15253:16;;15288:3;15285:1;15282:10;15279:36;;;15295:18;;:::i;:::-;15279:36;15131:191;;;;:::o;15328:158::-;15468:10;15464:1;15456:6;15452:14;15445:34;15328:158;:::o;15492:365::-;15634:3;15655:66;15719:1;15714:3;15655:66;:::i;:::-;15648:73;;15730:93;15819:3;15730:93;:::i;:::-;15848:2;15843:3;15839:12;15832:19;;15492:365;;;:::o;15863:419::-;16029:4;16067:2;16056:9;16052:18;16044:26;;16116:9;16110:4;16106:20;16102:1;16091:9;16087:17;16080:47;16144:131;16270:4;16144:131;:::i;:::-;16136:139;;15863:419;;;:::o;16288:147::-;16389:11;16426:3;16411:18;;16288:147;;;;:::o;16441:114::-;;:::o;16561:398::-;16720:3;16741:83;16822:1;16817:3;16741:83;:::i;:::-;16734:90;;16833:93;16922:3;16833:93;:::i;:::-;16951:1;16946:3;16942:11;16935:18;;16561:398;;;:::o;16965:379::-;17149:3;17171:147;17314:3;17171:147;:::i;:::-;17164:154;;17335:3;17328:10;;16965:379;;;:::o;17350:166::-;17490:18;17486:1;17478:6;17474:14;17467:42;17350:166;:::o;17522:366::-;17664:3;17685:67;17749:2;17744:3;17685:67;:::i;:::-;17678:74;;17761:93;17850:3;17761:93;:::i;:::-;17879:2;17874:3;17870:12;17863:19;;17522:366;;;:::o;17894:419::-;18060:4;18098:2;18087:9;18083:18;18075:26;;18147:9;18141:4;18137:20;18133:1;18122:9;18118:17;18111:47;18175:131;18301:4;18175:131;:::i;:::-;18167:139;;17894:419;;;:::o;18319:180::-;18367:77;18364:1;18357:88;18464:4;18461:1;18454:15;18488:4;18485:1;18478:15;18505:233;18544:3;18567:24;18585:5;18567:24;:::i;:::-;18558:33;;18613:66;18606:5;18603:77;18600:103;;18683:18;;:::i;:::-;18600:103;18730:1;18723:5;18719:13;18712:20;;18505:233;;;:::o;18744:141::-;18793:4;18816:3;18808:11;;18839:3;18836:1;18829:14;18873:4;18870:1;18860:18;18852:26;;18744:141;;;:::o;18891:93::-;18928:6;18975:2;18970;18963:5;18959:14;18955:23;18945:33;;18891:93;;;:::o;18990:107::-;19034:8;19084:5;19078:4;19074:16;19053:37;;18990:107;;;;:::o;19103:393::-;19172:6;19222:1;19210:10;19206:18;19245:97;19275:66;19264:9;19245:97;:::i;:::-;19363:39;19393:8;19382:9;19363:39;:::i;:::-;19351:51;;19435:4;19431:9;19424:5;19420:21;19411:30;;19484:4;19474:8;19470:19;19463:5;19460:30;19450:40;;19179:317;;19103:393;;;;;:::o;19502:60::-;19530:3;19551:5;19544:12;;19502:60;;;:::o;19568:142::-;19618:9;19651:53;19669:34;19678:24;19696:5;19678:24;:::i;:::-;19669:34;:::i;:::-;19651:53;:::i;:::-;19638:66;;19568:142;;;:::o;19716:75::-;19759:3;19780:5;19773:12;;19716:75;;;:::o;19797:269::-;19907:39;19938:7;19907:39;:::i;:::-;19968:91;20017:41;20041:16;20017:41;:::i;:::-;20009:6;20002:4;19996:11;19968:91;:::i;:::-;19962:4;19955:105;19873:193;19797:269;;;:::o;20072:73::-;20117:3;20072:73;:::o;20151:189::-;20228:32;;:::i;:::-;20269:65;20327:6;20319;20313:4;20269:65;:::i;:::-;20204:136;20151:189;;:::o;20346:186::-;20406:120;20423:3;20416:5;20413:14;20406:120;;;20477:39;20514:1;20507:5;20477:39;:::i;:::-;20450:1;20443:5;20439:13;20430:22;;20406:120;;;20346:186;;:::o;20538:543::-;20639:2;20634:3;20631:11;20628:446;;;20673:38;20705:5;20673:38;:::i;:::-;20757:29;20775:10;20757:29;:::i;:::-;20747:8;20743:44;20940:2;20928:10;20925:18;20922:49;;;20961:8;20946:23;;20922:49;20984:80;21040:22;21058:3;21040:22;:::i;:::-;21030:8;21026:37;21013:11;20984:80;:::i;:::-;20643:431;;20628:446;20538:543;;;:::o;21087:117::-;21141:8;21191:5;21185:4;21181:16;21160:37;;21087:117;;;;:::o;21210:169::-;21254:6;21287:51;21335:1;21331:6;21323:5;21320:1;21316:13;21287:51;:::i;:::-;21283:56;21368:4;21362;21358:15;21348:25;;21261:118;21210:169;;;;:::o;21384:295::-;21460:4;21606:29;21631:3;21625:4;21606:29;:::i;:::-;21598:37;;21668:3;21665:1;21661:11;21655:4;21652:21;21644:29;;21384:295;;;;:::o;21684:1395::-;21801:37;21834:3;21801:37;:::i;:::-;21903:18;21895:6;21892:30;21889:56;;;21925:18;;:::i;:::-;21889:56;21969:38;22001:4;21995:11;21969:38;:::i;:::-;22054:67;22114:6;22106;22100:4;22054:67;:::i;:::-;22148:1;22172:4;22159:17;;22204:2;22196:6;22193:14;22221:1;22216:618;;;;22878:1;22895:6;22892:77;;;22944:9;22939:3;22935:19;22929:26;22920:35;;22892:77;22995:67;23055:6;23048:5;22995:67;:::i;:::-;22989:4;22982:81;22851:222;22186:887;;22216:618;22268:4;22264:9;22256:6;22252:22;22302:37;22334:4;22302:37;:::i;:::-;22361:1;22375:208;22389:7;22386:1;22383:14;22375:208;;;22468:9;22463:3;22459:19;22453:26;22445:6;22438:42;22519:1;22511:6;22507:14;22497:24;;22566:2;22555:9;22551:18;22538:31;;22412:4;22409:1;22405:12;22400:17;;22375:208;;;22611:6;22602:7;22599:19;22596:179;;;22669:9;22664:3;22660:19;22654:26;22712:48;22754:4;22746:6;22742:17;22731:9;22712:48;:::i;:::-;22704:6;22697:64;22619:156;22596:179;22821:1;22817;22809:6;22805:14;22801:22;22795:4;22788:36;22223:611;;;22186:887;;21776:1303;;;21684:1395;;:::o;23085:173::-;23225:25;23221:1;23213:6;23209:14;23202:49;23085:173;:::o;23264:366::-;23406:3;23427:67;23491:2;23486:3;23427:67;:::i;:::-;23420:74;;23503:93;23592:3;23503:93;:::i;:::-;23621:2;23616:3;23612:12;23605:19;;23264:366;;;:::o;23636:419::-;23802:4;23840:2;23829:9;23825:18;23817:26;;23889:9;23883:4;23879:20;23875:1;23864:9;23860:17;23853:47;23917:131;24043:4;23917:131;:::i;:::-;23909:139;;23636:419;;;:::o;24061:233::-;24201:34;24197:1;24189:6;24185:14;24178:58;24270:16;24265:2;24257:6;24253:15;24246:41;24061:233;:::o;24300:366::-;24442:3;24463:67;24527:2;24522:3;24463:67;:::i;:::-;24456:74;;24539:93;24628:3;24539:93;:::i;:::-;24657:2;24652:3;24648:12;24641:19;;24300:366;;;:::o;24672:419::-;24838:4;24876:2;24865:9;24861:18;24853:26;;24925:9;24919:4;24915:20;24911:1;24900:9;24896:17;24889:47;24953:131;25079:4;24953:131;:::i;:::-;24945:139;;24672:419;;;:::o;25097:158::-;25237:10;25233:1;25225:6;25221:14;25214:34;25097:158;:::o;25261:365::-;25403:3;25424:66;25488:1;25483:3;25424:66;:::i;:::-;25417:73;;25499:93;25588:3;25499:93;:::i;:::-;25617:2;25612:3;25608:12;25601:19;;25261:365;;;:::o;25632:419::-;25798:4;25836:2;25825:9;25821:18;25813:26;;25885:9;25879:4;25875:20;25871:1;25860:9;25856:17;25849:47;25913:131;26039:4;25913:131;:::i;:::-;25905:139;;25632:419;;;:::o;26057:194::-;26097:4;26117:20;26135:1;26117:20;:::i;:::-;26112:25;;26151:20;26169:1;26151:20;:::i;:::-;26146:25;;26195:1;26192;26188:9;26180:17;;26219:1;26213:4;26210:11;26207:37;;;26224:18;;:::i;:::-;26207:37;26057:194;;;;:::o;26257:179::-;26397:31;26393:1;26385:6;26381:14;26374:55;26257:179;:::o;26442:366::-;26584:3;26605:67;26669:2;26664:3;26605:67;:::i;:::-;26598:74;;26681:93;26770:3;26681:93;:::i;:::-;26799:2;26794:3;26790:12;26783:19;;26442:366;;;:::o;26814:419::-;26980:4;27018:2;27007:9;27003:18;26995:26;;27067:9;27061:4;27057:20;27053:1;27042:9;27038:17;27031:47;27095:131;27221:4;27095:131;:::i;:::-;27087:139;;26814:419;;;:::o;27239:410::-;27279:7;27302:20;27320:1;27302:20;:::i;:::-;27297:25;;27336:20;27354:1;27336:20;:::i;:::-;27331:25;;27391:1;27388;27384:9;27413:30;27431:11;27413:30;:::i;:::-;27402:41;;27592:1;27583:7;27579:15;27576:1;27573:22;27553:1;27546:9;27526:83;27503:139;;27622:18;;:::i;:::-;27503:139;27287:362;27239:410;;;;:::o;27655:234::-;27795:34;27791:1;27783:6;27779:14;27772:58;27864:17;27859:2;27851:6;27847:15;27840:42;27655:234;:::o;27895:366::-;28037:3;28058:67;28122:2;28117:3;28058:67;:::i;:::-;28051:74;;28134:93;28223:3;28134:93;:::i;:::-;28252:2;28247:3;28243:12;28236:19;;27895:366;;;:::o;28267:419::-;28433:4;28471:2;28460:9;28456:18;28448:26;;28520:9;28514:4;28510:20;28506:1;28495:9;28491:17;28484:47;28548:131;28674:4;28548:131;:::i;:::-;28540:139;;28267:419;;;:::o;28692:148::-;28794:11;28831:3;28816:18;;28692:148;;;;:::o;28846:390::-;28952:3;28980:39;29013:5;28980:39;:::i;:::-;29035:89;29117:6;29112:3;29035:89;:::i;:::-;29028:96;;29133:65;29191:6;29186:3;29179:4;29172:5;29168:16;29133:65;:::i;:::-;29223:6;29218:3;29214:16;29207:23;;28956:280;28846:390;;;;:::o;29266:874::-;29369:3;29406:5;29400:12;29435:36;29461:9;29435:36;:::i;:::-;29487:89;29569:6;29564:3;29487:89;:::i;:::-;29480:96;;29607:1;29596:9;29592:17;29623:1;29618:166;;;;29798:1;29793:341;;;;29585:549;;29618:166;29702:4;29698:9;29687;29683:25;29678:3;29671:38;29764:6;29757:14;29750:22;29742:6;29738:35;29733:3;29729:45;29722:52;;29618:166;;29793:341;29860:38;29892:5;29860:38;:::i;:::-;29920:1;29934:154;29948:6;29945:1;29942:13;29934:154;;;30022:7;30016:14;30012:1;30007:3;30003:11;29996:35;30072:1;30063:7;30059:15;30048:26;;29970:4;29967:1;29963:12;29958:17;;29934:154;;;30117:6;30112:3;30108:16;30101:23;;29800:334;;29585:549;;29373:767;;29266:874;;;;:::o;30146:589::-;30371:3;30393:95;30484:3;30475:6;30393:95;:::i;:::-;30386:102;;30505:95;30596:3;30587:6;30505:95;:::i;:::-;30498:102;;30617:92;30705:3;30696:6;30617:92;:::i;:::-;30610:99;;30726:3;30719:10;;30146:589;;;;;;:::o;30741:225::-;30881:34;30877:1;30869:6;30865:14;30858:58;30950:8;30945:2;30937:6;30933:15;30926:33;30741:225;:::o;30972:366::-;31114:3;31135:67;31199:2;31194:3;31135:67;:::i;:::-;31128:74;;31211:93;31300:3;31211:93;:::i;:::-;31329:2;31324:3;31320:12;31313:19;;30972:366;;;:::o;31344:419::-;31510:4;31548:2;31537:9;31533:18;31525:26;;31597:9;31591:4;31587:20;31583:1;31572:9;31568:17;31561:47;31625:131;31751:4;31625:131;:::i;:::-;31617:139;;31344:419;;;:::o;31769:182::-;31909:34;31905:1;31897:6;31893:14;31886:58;31769:182;:::o;31957:366::-;32099:3;32120:67;32184:2;32179:3;32120:67;:::i;:::-;32113:74;;32196:93;32285:3;32196:93;:::i;:::-;32314:2;32309:3;32305:12;32298:19;;31957:366;;;:::o;32329:419::-;32495:4;32533:2;32522:9;32518:18;32510:26;;32582:9;32576:4;32572:20;32568:1;32557:9;32553:17;32546:47;32610:131;32736:4;32610:131;:::i;:::-;32602:139;;32329:419;;;:::o;32754:98::-;32805:6;32839:5;32833:12;32823:22;;32754:98;;;:::o;32858:168::-;32941:11;32975:6;32970:3;32963:19;33015:4;33010:3;33006:14;32991:29;;32858:168;;;;:::o;33032:373::-;33118:3;33146:38;33178:5;33146:38;:::i;:::-;33200:70;33263:6;33258:3;33200:70;:::i;:::-;33193:77;;33279:65;33337:6;33332:3;33325:4;33318:5;33314:16;33279:65;:::i;:::-;33369:29;33391:6;33369:29;:::i;:::-;33364:3;33360:39;33353:46;;33122:283;33032:373;;;;:::o;33411:640::-;33606:4;33644:3;33633:9;33629:19;33621:27;;33658:71;33726:1;33715:9;33711:17;33702:6;33658:71;:::i;:::-;33739:72;33807:2;33796:9;33792:18;33783:6;33739:72;:::i;:::-;33821;33889:2;33878:9;33874:18;33865:6;33821:72;:::i;:::-;33940:9;33934:4;33930:20;33925:2;33914:9;33910:18;33903:48;33968:76;34039:4;34030:6;33968:76;:::i;:::-;33960:84;;33411:640;;;;;;;:::o;34057:141::-;34113:5;34144:6;34138:13;34129:22;;34160:32;34186:5;34160:32;:::i;:::-;34057:141;;;;:::o;34204:349::-;34273:6;34322:2;34310:9;34301:7;34297:23;34293:32;34290:119;;;34328:79;;:::i;:::-;34290:119;34448:1;34473:63;34528:7;34519:6;34508:9;34504:22;34473:63;:::i;:::-;34463:73;;34419:127;34204:349;;;;:::o;34559:180::-;34607:77;34604:1;34597:88;34704:4;34701:1;34694:15;34728:4;34725:1;34718:15;34745:185;34785:1;34802:20;34820:1;34802:20;:::i;:::-;34797:25;;34836:20;34854:1;34836:20;:::i;:::-;34831:25;;34875:1;34865:35;;34880:18;;:::i;:::-;34865:35;34922:1;34919;34915:9;34910:14;;34745:185;;;;:::o;34936:176::-;34968:1;34985:20;35003:1;34985:20;:::i;:::-;34980:25;;35019:20;35037:1;35019:20;:::i;:::-;35014:25;;35058:1;35048:35;;35063:18;;:::i;:::-;35048:35;35104:1;35101;35097:9;35092:14;;34936:176;;;;:::o

Swarm Source

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