ETH Price: $3,309.51 (+2.14%)
Gas: 5 Gwei

Token

JustBirdz (JB)
 

Overview

Max Total Supply

1,000 JB

Holders

977

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*你也想起舞吗.eth
Balance
1 JB
0x778fdfa040072887614905431e49ae233b925259
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:
JustBirdz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-09
*/

// SPDX-License-Identifier: MIT                                                                                                          
//By Elfoly
// File: @openzeppelin/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

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

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

    /**
     * @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, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/Justbirdz.sol


//By Elfoly

pragma solidity >=0.7.0 <0.9.0;





contract JustBirdz is ERC721, ERC2981, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "ipfs://bafybeidzanler5cxyaet7hxaizznvnjckk3kyvj5cd3tie7yl3daxwv2su/";
  string public uriSuffix = ".json";
  string public contractURI;
  
  uint256 public maxSupply = 1000;
  uint256 public maxMintAmountPerTx = 1;
  uint256 public maxMintAmountPerWallet = 1;
  mapping(address => uint256) public mintedWallets;

  bool public paused = false;

 constructor(uint96 _royaltyFeesInBips, string memory _contractURI) ERC721("JustBirdz", "JB") {
   setRoyaltyInfo(msg.sender, _royaltyFeesInBips);
   contractURI = _contractURI;
  }
 

  modifier mintCompliance(uint256 _mintAmount) {
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");

    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Only one per Tx!");
    require(mintedWallets[msg.sender] < 1, "Only one per wallet!");
    mintedWallets[msg.sender]++;



    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  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 tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

  

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




  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  

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


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

  function withdraw() public onlyOwner {


    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

  function supportsInterface(bytes4 interfaceId) 
  public
  view
  override(ERC721, ERC2981)
  returns (bool)
  {
    return super.supportsInterface(interfaceId);
  }

    function setRoyaltyInfo(address _receiver, uint96 _royaltyFeesInBips) public onlyOwner {
      _setDefaultRoyalty(_receiver, _royaltyFeesInBips);
    }

    function setContractURI(string calldata _contractURI) public onlyOwner {
      contractURI = _contractURI;
    }

    


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"},{"internalType":"string","name":"_contractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]

608060405260405180608001604052806043815260200162004c9360439139600a90805190602001906200003592919062000532565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200008392919062000532565b506103e8600d556001600e556001600f556000601160006101000a81548160ff021916908315150217905550348015620000bc57600080fd5b5060405162004cd638038062004cd68339818101604052810190620000e2919062000677565b6040518060400160405280600981526020017f4a757374426972647a00000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4a4200000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200016692919062000532565b5080600190805190602001906200017f92919062000532565b505050620001a262000196620001d560201b60201c565b620001dd60201b60201c565b620001b43383620002a360201b60201c565b80600c9080519060200190620001cc92919062000532565b50505062000a20565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002b3620002c960201b60201c565b620002c582826200035a60201b60201c565b5050565b620002d9620001d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ff620004fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000358576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034f9062000752565b60405180910390fd5b565b6200036a6200052860201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620003cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c29062000774565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200043e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004359062000796565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600660008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000612710905090565b828054620005409062000876565b90600052602060002090601f016020900481019282620005645760008555620005b0565b82601f106200057f57805160ff1916838001178555620005b0565b82800160010185558215620005b0579182015b82811115620005af57825182559160200191906001019062000592565b5b509050620005bf9190620005c3565b5090565b5b80821115620005de576000816000905550600101620005c4565b5090565b6000620005f9620005f384620007e1565b620007b8565b90508281526020810184848401111562000618576200061762000945565b5b6200062584828562000840565b509392505050565b600082601f83011262000645576200064462000940565b5b815162000657848260208601620005e2565b91505092915050565b600081519050620006718162000a06565b92915050565b600080604083850312156200069157620006906200094f565b5b6000620006a18582860162000660565b925050602083015167ffffffffffffffff811115620006c557620006c46200094a565b5b620006d3858286016200062d565b9150509250929050565b6000620006ec60208362000817565b9150620006f98262000965565b602082019050919050565b600062000713602a8362000817565b915062000720826200098e565b604082019050919050565b60006200073a60198362000817565b91506200074782620009dd565b602082019050919050565b600060208201905081810360008301526200076d81620006dd565b9050919050565b600060208201905081810360008301526200078f8162000704565b9050919050565b60006020820190508181036000830152620007b1816200072b565b9050919050565b6000620007c4620007d7565b9050620007d28282620008ac565b919050565b6000604051905090565b600067ffffffffffffffff821115620007ff57620007fe62000911565b5b6200080a8262000954565b9050602081019050919050565b600082825260208201905092915050565b60006bffffffffffffffffffffffff82169050919050565b60005b838110156200086057808201518184015260208101905062000843565b8381111562000870576000848401525b50505050565b600060028204905060018216806200088f57607f821691505b60208210811415620008a657620008a5620008e2565b5b50919050565b620008b78262000954565b810181811067ffffffffffffffff82111715620008d957620008d862000911565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b62000a118162000828565b811462000a1d57600080fd5b50565b6142638062000a306000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063b071401b116100a0578063d5abeb011161006f578063d5abeb0114610759578063e8a3d48514610784578063e985e9c5146107af578063efbd73f4146107ec578063f2fde38b1461081557610204565b8063b071401b1461069f578063b88d4fde146106c8578063bc951b91146106f1578063c87b56dd1461071c57610204565b806394354fd0116100e757806394354fd0146105c757806395d89b41146105f2578063a0712d681461061d578063a22cb46514610639578063ada7c4ed1461066257610204565b8063715018a6146105335780637ec4a6591461054a5780638da5cb5b14610573578063938e3d7b1461059e57610204565b80632a55205a1161019b5780635503a0e81161016a5780635503a0e8146104385780635c975abb1461046357806362b99ad41461048e5780636352211e146104b957806370a08231146104f657610204565b80632a55205a1461037d5780633ccfd60b146103bb57806342842e0e146103d2578063438b6300146103fb57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806316c38b3c1461030057806318160ddd1461032957806323b872dd1461035457610204565b806301ffc9a71461020957806302fa7c471461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612dea565b61083e565b60405161023d9190613532565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612d7d565b610850565b005b34801561027b57600080fd5b50610284610866565b604051610291919061354d565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612eda565b6108f8565b6040516102ce9190613480565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190612d3d565b61093e565b005b34801561030c57600080fd5b5061032760048036038101906103229190612dbd565b610a56565b005b34801561033557600080fd5b5061033e610a7b565b60405161034b91906137ef565b60405180910390f35b34801561036057600080fd5b5061037b60048036038101906103769190612c27565b610a8c565b005b34801561038957600080fd5b506103a4600480360381019061039f9190612f47565b610aec565b6040516103b29291906134e7565b60405180910390f35b3480156103c757600080fd5b506103d0610cd7565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612c27565b610d5f565b005b34801561040757600080fd5b50610422600480360381019061041d9190612bba565b610d7f565b60405161042f9190613510565b60405180910390f35b34801561044457600080fd5b5061044d610e8a565b60405161045a919061354d565b60405180910390f35b34801561046f57600080fd5b50610478610f18565b6040516104859190613532565b60405180910390f35b34801561049a57600080fd5b506104a3610f2b565b6040516104b0919061354d565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612eda565b610fb9565b6040516104ed9190613480565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612bba565b61106b565b60405161052a91906137ef565b60405180910390f35b34801561053f57600080fd5b50610548611123565b005b34801561055657600080fd5b50610571600480360381019061056c9190612e91565b611137565b005b34801561057f57600080fd5b50610588611159565b6040516105959190613480565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612e44565b611183565b005b3480156105d357600080fd5b506105dc6111a1565b6040516105e991906137ef565b60405180910390f35b3480156105fe57600080fd5b506106076111a7565b604051610614919061354d565b60405180910390f35b61063760048036038101906106329190612eda565b611239565b005b34801561064557600080fd5b50610660600480360381019061065b9190612cfd565b611419565b005b34801561066e57600080fd5b5061068960048036038101906106849190612bba565b61142f565b60405161069691906137ef565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190612eda565b611447565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190612c7a565b611459565b005b3480156106fd57600080fd5b506107066114bb565b60405161071391906137ef565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612eda565b6114c1565b604051610750919061354d565b60405180910390f35b34801561076557600080fd5b5061076e61156b565b60405161077b91906137ef565b60405180910390f35b34801561079057600080fd5b50610799611571565b6040516107a6919061354d565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190612be7565b6115ff565b6040516107e39190613532565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e9190612f07565b611693565b005b34801561082157600080fd5b5061083c60048036038101906108379190612bba565b611704565b005b600061084982611788565b9050919050565b610858611802565b6108628282611880565b5050565b60606000805461087590613b10565b80601f01602080910402602001604051908101604052809291908181526020018280546108a190613b10565b80156108ee5780601f106108c3576101008083540402835291602001916108ee565b820191906000526020600020905b8154815290600101906020018083116108d157829003601f168201915b5050505050905090565b600061090382611a16565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094982610fb9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b19061374f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d9611a61565b73ffffffffffffffffffffffffffffffffffffffff161480610a085750610a0781610a02611a61565b6115ff565b5b610a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3e9061364f565b60405180910390fd5b610a518383611a69565b505050565b610a5e611802565b80601160006101000a81548160ff02191690831515021790555050565b6000610a876009611b22565b905090565b610a9d610a97611a61565b82611b30565b610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad3906137af565b60405180910390fd5b610ae7838383611bc5565b505050565b6000806000600760008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610c825760066040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610c8c611e2c565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610cb891906139b4565b610cc29190613983565b90508160000151819350935050509250929050565b610cdf611802565b6000610ce9611159565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d0c9061346b565b60006040518083038185875af1925050503d8060008114610d49576040519150601f19603f3d011682016040523d82523d6000602084013e610d4e565b606091505b5050905080610d5c57600080fd5b50565b610d7a83838360405180602001604052806000815250611459565b505050565b60606000610d8c8361106b565b905060008167ffffffffffffffff811115610daa57610da9613ca9565b5b604051908082528060200260200182016040528015610dd85781602001602082028036833780820191505090505b50905060006001905060005b8381108015610df55750600d548211155b15610e7e576000610e0583610fb9565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e6a5782848381518110610e4f57610e4e613c7a565b5b6020026020010181815250508180610e6690613b73565b9250505b8280610e7590613b73565b93505050610de4565b82945050505050919050565b600b8054610e9790613b10565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec390613b10565b8015610f105780601f10610ee557610100808354040283529160200191610f10565b820191906000526020600020905b815481529060010190602001808311610ef357829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b600a8054610f3890613b10565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6490613b10565b8015610fb15780601f10610f8657610100808354040283529160200191610fb1565b820191906000526020600020905b815481529060010190602001808311610f9457829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611062576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110599061370f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d39061362f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61112b611802565b6111356000611e36565b565b61113f611802565b80600a90805190602001906111559291906128dd565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61118b611802565b8181600c919061119c929190612963565b505050565b600e5481565b6060600180546111b690613b10565b80601f01602080910402602001604051908101604052809291908181526020018280546111e290613b10565b801561122f5780601f106112045761010080835404028352916020019161122f565b820191906000526020600020905b81548152906001019060200180831161121257829003601f168201915b5050505050905090565b80600d54816112486009611b22565b611252919061392d565b1115611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a9061376f565b60405180910390fd5b601160009054906101000a900460ff16156112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da906136af565b60405180910390fd5b6000821180156112f55750600e548211155b611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b906136ef565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad9061372f565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061140690613b73565b91905055506114153383611efc565b5050565b61142b611424611a61565b8383611f3c565b5050565b60106020528060005260406000206000915090505481565b61144f611802565b80600e8190555050565b61146a611464611a61565b83611b30565b6114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a0906137af565b60405180910390fd5b6114b5848484846120a9565b50505050565b600f5481565b60606114cc82612105565b61150b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611502906136cf565b60405180910390fd5b6000611515612171565b905060008151116115355760405180602001604052806000815250611563565b8061153f84612203565b600b6040516020016115539392919061343a565b6040516020818303038152906040525b915050919050565b600d5481565b600c805461157e90613b10565b80601f01602080910402602001604051908101604052809291908181526020018280546115aa90613b10565b80156115f75780601f106115cc576101008083540402835291602001916115f7565b820191906000526020600020905b8154815290600101906020018083116115da57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600d54816116a26009611b22565b6116ac919061392d565b11156116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e49061376f565b60405180910390fd5b6116f5611802565b6116ff8284611efc565b505050565b61170c611802565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561177c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117739061358f565b60405180910390fd5b61178581611e36565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117fb57506117fa82612364565b5b9050919050565b61180a611a61565b73ffffffffffffffffffffffffffffffffffffffff16611828611159565b73ffffffffffffffffffffffffffffffffffffffff161461187e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118759061368f565b60405180910390fd5b565b611888611e2c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd9061378f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d906137cf565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600660008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b611a1f81612105565b611a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a559061370f565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611adc83610fb9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600080611b3c83610fb9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b7e5750611b7d81856115ff565b5b80611bbc57508373ffffffffffffffffffffffffffffffffffffffff16611ba4846108f8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611be582610fb9565b73ffffffffffffffffffffffffffffffffffffffff1614611c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c32906135af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca2906135ef565b60405180910390fd5b611cb6838383612446565b611cc1600082611a69565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d119190613a0e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d68919061392d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e2783838361244b565b505050565b6000612710905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611f3757611f116009612450565b611f2483611f1f6009611b22565b612466565b8080611f2f90613b73565b915050611eff565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa29061360f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161209c9190613532565b60405180910390a3505050565b6120b4848484611bc5565b6120c084848484612484565b6120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f69061356f565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600a805461218090613b10565b80601f01602080910402602001604051908101604052809291908181526020018280546121ac90613b10565b80156121f95780601f106121ce576101008083540402835291602001916121f9565b820191906000526020600020905b8154815290600101906020018083116121dc57829003601f168201915b5050505050905090565b6060600082141561224b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061235f565b600082905060005b6000821461227d57808061226690613b73565b915050600a826122769190613983565b9150612253565b60008167ffffffffffffffff81111561229957612298613ca9565b5b6040519080825280601f01601f1916602001820160405280156122cb5781602001600182028036833780820191505090505b5090505b60008514612358576001826122e49190613a0e565b9150600a856122f39190613bbc565b60306122ff919061392d565b60f81b81838151811061231557612314613c7a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123519190613983565b94506122cf565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061242f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061243f575061243e8261261b565b5b9050919050565b505050565b505050565b6001816000016000828254019250508190555050565b612480828260405180602001604052806000815250612685565b5050565b60006124a58473ffffffffffffffffffffffffffffffffffffffff166126e0565b1561260e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ce611a61565b8786866040518563ffffffff1660e01b81526004016124f0949392919061349b565b602060405180830381600087803b15801561250a57600080fd5b505af192505050801561253b57506040513d601f19601f820116820180604052508101906125389190612e17565b60015b6125be573d806000811461256b576040519150601f19603f3d011682016040523d82523d6000602084013e612570565b606091505b506000815114156125b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ad9061356f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612613565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61268f8383612703565b61269c6000848484612484565b6126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d29061356f565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276a9061366f565b60405180910390fd5b61277c81612105565b156127bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b3906135cf565b60405180910390fd5b6127c860008383612446565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612818919061392d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128d96000838361244b565b5050565b8280546128e990613b10565b90600052602060002090601f01602090048101928261290b5760008555612952565b82601f1061292457805160ff1916838001178555612952565b82800160010185558215612952579182015b82811115612951578251825591602001919060010190612936565b5b50905061295f91906129e9565b5090565b82805461296f90613b10565b90600052602060002090601f01602090048101928261299157600085556129d8565b82601f106129aa57803560ff19168380011785556129d8565b828001600101855582156129d8579182015b828111156129d75782358255916020019190600101906129bc565b5b5090506129e591906129e9565b5090565b5b80821115612a025760008160009055506001016129ea565b5090565b6000612a19612a148461382f565b61380a565b905082815260208101848484011115612a3557612a34613ce7565b5b612a40848285613ace565b509392505050565b6000612a5b612a5684613860565b61380a565b905082815260208101848484011115612a7757612a76613ce7565b5b612a82848285613ace565b509392505050565b600081359050612a99816141ba565b92915050565b600081359050612aae816141d1565b92915050565b600081359050612ac3816141e8565b92915050565b600081519050612ad8816141e8565b92915050565b600082601f830112612af357612af2613cdd565b5b8135612b03848260208601612a06565b91505092915050565b60008083601f840112612b2257612b21613cdd565b5b8235905067ffffffffffffffff811115612b3f57612b3e613cd8565b5b602083019150836001820283011115612b5b57612b5a613ce2565b5b9250929050565b600082601f830112612b7757612b76613cdd565b5b8135612b87848260208601612a48565b91505092915050565b600081359050612b9f816141ff565b92915050565b600081359050612bb481614216565b92915050565b600060208284031215612bd057612bcf613cf1565b5b6000612bde84828501612a8a565b91505092915050565b60008060408385031215612bfe57612bfd613cf1565b5b6000612c0c85828601612a8a565b9250506020612c1d85828601612a8a565b9150509250929050565b600080600060608486031215612c4057612c3f613cf1565b5b6000612c4e86828701612a8a565b9350506020612c5f86828701612a8a565b9250506040612c7086828701612b90565b9150509250925092565b60008060008060808587031215612c9457612c93613cf1565b5b6000612ca287828801612a8a565b9450506020612cb387828801612a8a565b9350506040612cc487828801612b90565b925050606085013567ffffffffffffffff811115612ce557612ce4613cec565b5b612cf187828801612ade565b91505092959194509250565b60008060408385031215612d1457612d13613cf1565b5b6000612d2285828601612a8a565b9250506020612d3385828601612a9f565b9150509250929050565b60008060408385031215612d5457612d53613cf1565b5b6000612d6285828601612a8a565b9250506020612d7385828601612b90565b9150509250929050565b60008060408385031215612d9457612d93613cf1565b5b6000612da285828601612a8a565b9250506020612db385828601612ba5565b9150509250929050565b600060208284031215612dd357612dd2613cf1565b5b6000612de184828501612a9f565b91505092915050565b600060208284031215612e0057612dff613cf1565b5b6000612e0e84828501612ab4565b91505092915050565b600060208284031215612e2d57612e2c613cf1565b5b6000612e3b84828501612ac9565b91505092915050565b60008060208385031215612e5b57612e5a613cf1565b5b600083013567ffffffffffffffff811115612e7957612e78613cec565b5b612e8585828601612b0c565b92509250509250929050565b600060208284031215612ea757612ea6613cf1565b5b600082013567ffffffffffffffff811115612ec557612ec4613cec565b5b612ed184828501612b62565b91505092915050565b600060208284031215612ef057612eef613cf1565b5b6000612efe84828501612b90565b91505092915050565b60008060408385031215612f1e57612f1d613cf1565b5b6000612f2c85828601612b90565b9250506020612f3d85828601612a8a565b9150509250929050565b60008060408385031215612f5e57612f5d613cf1565b5b6000612f6c85828601612b90565b9250506020612f7d85828601612b90565b9150509250929050565b6000612f93838361341c565b60208301905092915050565b612fa881613a42565b82525050565b6000612fb9826138b6565b612fc381856138e4565b9350612fce83613891565b8060005b83811015612fff578151612fe68882612f87565b9750612ff1836138d7565b925050600181019050612fd2565b5085935050505092915050565b61301581613a54565b82525050565b6000613026826138c1565b61303081856138f5565b9350613040818560208601613add565b61304981613cf6565b840191505092915050565b600061305f826138cc565b6130698185613911565b9350613079818560208601613add565b61308281613cf6565b840191505092915050565b6000613098826138cc565b6130a28185613922565b93506130b2818560208601613add565b80840191505092915050565b600081546130cb81613b10565b6130d58186613922565b945060018216600081146130f0576001811461310157613134565b60ff19831686528186019350613134565b61310a856138a1565b60005b8381101561312c5781548189015260018201915060208101905061310d565b838801955050505b50505092915050565b600061314a603283613911565b915061315582613d07565b604082019050919050565b600061316d602683613911565b915061317882613d56565b604082019050919050565b6000613190602583613911565b915061319b82613da5565b604082019050919050565b60006131b3601c83613911565b91506131be82613df4565b602082019050919050565b60006131d6602483613911565b91506131e182613e1d565b604082019050919050565b60006131f9601983613911565b915061320482613e6c565b602082019050919050565b600061321c602983613911565b915061322782613e95565b604082019050919050565b600061323f603e83613911565b915061324a82613ee4565b604082019050919050565b6000613262602083613911565b915061326d82613f33565b602082019050919050565b6000613285602083613911565b915061329082613f5c565b602082019050919050565b60006132a8601783613911565b91506132b382613f85565b602082019050919050565b60006132cb602f83613911565b91506132d682613fae565b604082019050919050565b60006132ee601083613911565b91506132f982613ffd565b602082019050919050565b6000613311601883613911565b915061331c82614026565b602082019050919050565b6000613334601483613911565b915061333f8261404f565b602082019050919050565b6000613357602183613911565b915061336282614078565b604082019050919050565b600061337a600083613906565b9150613385826140c7565b600082019050919050565b600061339d601483613911565b91506133a8826140ca565b602082019050919050565b60006133c0602a83613911565b91506133cb826140f3565b604082019050919050565b60006133e3602e83613911565b91506133ee82614142565b604082019050919050565b6000613406601983613911565b915061341182614191565b602082019050919050565b61342581613aac565b82525050565b61343481613aac565b82525050565b6000613446828661308d565b9150613452828561308d565b915061345e82846130be565b9150819050949350505050565b60006134768261336d565b9150819050919050565b60006020820190506134956000830184612f9f565b92915050565b60006080820190506134b06000830187612f9f565b6134bd6020830186612f9f565b6134ca604083018561342b565b81810360608301526134dc818461301b565b905095945050505050565b60006040820190506134fc6000830185612f9f565b613509602083018461342b565b9392505050565b6000602082019050818103600083015261352a8184612fae565b905092915050565b6000602082019050613547600083018461300c565b92915050565b600060208201905081810360008301526135678184613054565b905092915050565b600060208201905081810360008301526135888161313d565b9050919050565b600060208201905081810360008301526135a881613160565b9050919050565b600060208201905081810360008301526135c881613183565b9050919050565b600060208201905081810360008301526135e8816131a6565b9050919050565b60006020820190508181036000830152613608816131c9565b9050919050565b60006020820190508181036000830152613628816131ec565b9050919050565b600060208201905081810360008301526136488161320f565b9050919050565b6000602082019050818103600083015261366881613232565b9050919050565b6000602082019050818103600083015261368881613255565b9050919050565b600060208201905081810360008301526136a881613278565b9050919050565b600060208201905081810360008301526136c88161329b565b9050919050565b600060208201905081810360008301526136e8816132be565b9050919050565b60006020820190508181036000830152613708816132e1565b9050919050565b6000602082019050818103600083015261372881613304565b9050919050565b6000602082019050818103600083015261374881613327565b9050919050565b600060208201905081810360008301526137688161334a565b9050919050565b6000602082019050818103600083015261378881613390565b9050919050565b600060208201905081810360008301526137a8816133b3565b9050919050565b600060208201905081810360008301526137c8816133d6565b9050919050565b600060208201905081810360008301526137e8816133f9565b9050919050565b6000602082019050613804600083018461342b565b92915050565b6000613814613825565b90506138208282613b42565b919050565b6000604051905090565b600067ffffffffffffffff82111561384a57613849613ca9565b5b61385382613cf6565b9050602081019050919050565b600067ffffffffffffffff82111561387b5761387a613ca9565b5b61388482613cf6565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061393882613aac565b915061394383613aac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561397857613977613bed565b5b828201905092915050565b600061398e82613aac565b915061399983613aac565b9250826139a9576139a8613c1c565b5b828204905092915050565b60006139bf82613aac565b91506139ca83613aac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0357613a02613bed565b5b828202905092915050565b6000613a1982613aac565b9150613a2483613aac565b925082821015613a3757613a36613bed565b5b828203905092915050565b6000613a4d82613a8c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613afb578082015181840152602081019050613ae0565b83811115613b0a576000848401525b50505050565b60006002820490506001821680613b2857607f821691505b60208210811415613b3c57613b3b613c4b565b5b50919050565b613b4b82613cf6565b810181811067ffffffffffffffff82111715613b6a57613b69613ca9565b5b80604052505050565b6000613b7e82613aac565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bb157613bb0613bed565b5b600182019050919050565b6000613bc782613aac565b9150613bd283613aac565b925082613be257613be1613c1c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4f6e6c79206f6e65207065722054782100000000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4f6e6c79206f6e65207065722077616c6c657421000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6141c381613a42565b81146141ce57600080fd5b50565b6141da81613a54565b81146141e557600080fd5b50565b6141f181613a60565b81146141fc57600080fd5b50565b61420881613aac565b811461421357600080fd5b50565b61421f81613ab6565b811461422a57600080fd5b5056fea26469706673582212204e284c78abbf6f146a51ecc55160bbece53cb80fef6936945cbb7a64953568a164736f6c63430008070033697066733a2f2f62616679626569647a616e6c65723563787961657437687861697a7a6e766e6a636b6b336b79766a3563643374696537796c3364617877763273752f00000000000000000000000000000000000000000000000000000000000002ee0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006668747470733a2f2f6261667962656962693365757a7064766565767268693565796c7170726d7a6534376e707471376f6234706c72693435353571716a617664626b612e697066732e6e667473746f726167652e6c696e6b2f6d657461646174612e6a736f6e0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063b071401b116100a0578063d5abeb011161006f578063d5abeb0114610759578063e8a3d48514610784578063e985e9c5146107af578063efbd73f4146107ec578063f2fde38b1461081557610204565b8063b071401b1461069f578063b88d4fde146106c8578063bc951b91146106f1578063c87b56dd1461071c57610204565b806394354fd0116100e757806394354fd0146105c757806395d89b41146105f2578063a0712d681461061d578063a22cb46514610639578063ada7c4ed1461066257610204565b8063715018a6146105335780637ec4a6591461054a5780638da5cb5b14610573578063938e3d7b1461059e57610204565b80632a55205a1161019b5780635503a0e81161016a5780635503a0e8146104385780635c975abb1461046357806362b99ad41461048e5780636352211e146104b957806370a08231146104f657610204565b80632a55205a1461037d5780633ccfd60b146103bb57806342842e0e146103d2578063438b6300146103fb57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806316c38b3c1461030057806318160ddd1461032957806323b872dd1461035457610204565b806301ffc9a71461020957806302fa7c471461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612dea565b61083e565b60405161023d9190613532565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612d7d565b610850565b005b34801561027b57600080fd5b50610284610866565b604051610291919061354d565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612eda565b6108f8565b6040516102ce9190613480565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190612d3d565b61093e565b005b34801561030c57600080fd5b5061032760048036038101906103229190612dbd565b610a56565b005b34801561033557600080fd5b5061033e610a7b565b60405161034b91906137ef565b60405180910390f35b34801561036057600080fd5b5061037b60048036038101906103769190612c27565b610a8c565b005b34801561038957600080fd5b506103a4600480360381019061039f9190612f47565b610aec565b6040516103b29291906134e7565b60405180910390f35b3480156103c757600080fd5b506103d0610cd7565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612c27565b610d5f565b005b34801561040757600080fd5b50610422600480360381019061041d9190612bba565b610d7f565b60405161042f9190613510565b60405180910390f35b34801561044457600080fd5b5061044d610e8a565b60405161045a919061354d565b60405180910390f35b34801561046f57600080fd5b50610478610f18565b6040516104859190613532565b60405180910390f35b34801561049a57600080fd5b506104a3610f2b565b6040516104b0919061354d565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612eda565b610fb9565b6040516104ed9190613480565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612bba565b61106b565b60405161052a91906137ef565b60405180910390f35b34801561053f57600080fd5b50610548611123565b005b34801561055657600080fd5b50610571600480360381019061056c9190612e91565b611137565b005b34801561057f57600080fd5b50610588611159565b6040516105959190613480565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612e44565b611183565b005b3480156105d357600080fd5b506105dc6111a1565b6040516105e991906137ef565b60405180910390f35b3480156105fe57600080fd5b506106076111a7565b604051610614919061354d565b60405180910390f35b61063760048036038101906106329190612eda565b611239565b005b34801561064557600080fd5b50610660600480360381019061065b9190612cfd565b611419565b005b34801561066e57600080fd5b5061068960048036038101906106849190612bba565b61142f565b60405161069691906137ef565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190612eda565b611447565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190612c7a565b611459565b005b3480156106fd57600080fd5b506107066114bb565b60405161071391906137ef565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612eda565b6114c1565b604051610750919061354d565b60405180910390f35b34801561076557600080fd5b5061076e61156b565b60405161077b91906137ef565b60405180910390f35b34801561079057600080fd5b50610799611571565b6040516107a6919061354d565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190612be7565b6115ff565b6040516107e39190613532565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e9190612f07565b611693565b005b34801561082157600080fd5b5061083c60048036038101906108379190612bba565b611704565b005b600061084982611788565b9050919050565b610858611802565b6108628282611880565b5050565b60606000805461087590613b10565b80601f01602080910402602001604051908101604052809291908181526020018280546108a190613b10565b80156108ee5780601f106108c3576101008083540402835291602001916108ee565b820191906000526020600020905b8154815290600101906020018083116108d157829003601f168201915b5050505050905090565b600061090382611a16565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094982610fb9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b19061374f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d9611a61565b73ffffffffffffffffffffffffffffffffffffffff161480610a085750610a0781610a02611a61565b6115ff565b5b610a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3e9061364f565b60405180910390fd5b610a518383611a69565b505050565b610a5e611802565b80601160006101000a81548160ff02191690831515021790555050565b6000610a876009611b22565b905090565b610a9d610a97611a61565b82611b30565b610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad3906137af565b60405180910390fd5b610ae7838383611bc5565b505050565b6000806000600760008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610c825760066040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610c8c611e2c565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610cb891906139b4565b610cc29190613983565b90508160000151819350935050509250929050565b610cdf611802565b6000610ce9611159565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d0c9061346b565b60006040518083038185875af1925050503d8060008114610d49576040519150601f19603f3d011682016040523d82523d6000602084013e610d4e565b606091505b5050905080610d5c57600080fd5b50565b610d7a83838360405180602001604052806000815250611459565b505050565b60606000610d8c8361106b565b905060008167ffffffffffffffff811115610daa57610da9613ca9565b5b604051908082528060200260200182016040528015610dd85781602001602082028036833780820191505090505b50905060006001905060005b8381108015610df55750600d548211155b15610e7e576000610e0583610fb9565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e6a5782848381518110610e4f57610e4e613c7a565b5b6020026020010181815250508180610e6690613b73565b9250505b8280610e7590613b73565b93505050610de4565b82945050505050919050565b600b8054610e9790613b10565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec390613b10565b8015610f105780601f10610ee557610100808354040283529160200191610f10565b820191906000526020600020905b815481529060010190602001808311610ef357829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b600a8054610f3890613b10565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6490613b10565b8015610fb15780601f10610f8657610100808354040283529160200191610fb1565b820191906000526020600020905b815481529060010190602001808311610f9457829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611062576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110599061370f565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d39061362f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61112b611802565b6111356000611e36565b565b61113f611802565b80600a90805190602001906111559291906128dd565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61118b611802565b8181600c919061119c929190612963565b505050565b600e5481565b6060600180546111b690613b10565b80601f01602080910402602001604051908101604052809291908181526020018280546111e290613b10565b801561122f5780601f106112045761010080835404028352916020019161122f565b820191906000526020600020905b81548152906001019060200180831161121257829003601f168201915b5050505050905090565b80600d54816112486009611b22565b611252919061392d565b1115611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a9061376f565b60405180910390fd5b601160009054906101000a900460ff16156112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da906136af565b60405180910390fd5b6000821180156112f55750600e548211155b611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b906136ef565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad9061372f565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061140690613b73565b91905055506114153383611efc565b5050565b61142b611424611a61565b8383611f3c565b5050565b60106020528060005260406000206000915090505481565b61144f611802565b80600e8190555050565b61146a611464611a61565b83611b30565b6114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a0906137af565b60405180910390fd5b6114b5848484846120a9565b50505050565b600f5481565b60606114cc82612105565b61150b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611502906136cf565b60405180910390fd5b6000611515612171565b905060008151116115355760405180602001604052806000815250611563565b8061153f84612203565b600b6040516020016115539392919061343a565b6040516020818303038152906040525b915050919050565b600d5481565b600c805461157e90613b10565b80601f01602080910402602001604051908101604052809291908181526020018280546115aa90613b10565b80156115f75780601f106115cc576101008083540402835291602001916115f7565b820191906000526020600020905b8154815290600101906020018083116115da57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600d54816116a26009611b22565b6116ac919061392d565b11156116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e49061376f565b60405180910390fd5b6116f5611802565b6116ff8284611efc565b505050565b61170c611802565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561177c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117739061358f565b60405180910390fd5b61178581611e36565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117fb57506117fa82612364565b5b9050919050565b61180a611a61565b73ffffffffffffffffffffffffffffffffffffffff16611828611159565b73ffffffffffffffffffffffffffffffffffffffff161461187e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118759061368f565b60405180910390fd5b565b611888611e2c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd9061378f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d906137cf565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600660008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b611a1f81612105565b611a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a559061370f565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611adc83610fb9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600080611b3c83610fb9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b7e5750611b7d81856115ff565b5b80611bbc57508373ffffffffffffffffffffffffffffffffffffffff16611ba4846108f8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611be582610fb9565b73ffffffffffffffffffffffffffffffffffffffff1614611c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c32906135af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca2906135ef565b60405180910390fd5b611cb6838383612446565b611cc1600082611a69565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d119190613a0e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d68919061392d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e2783838361244b565b505050565b6000612710905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611f3757611f116009612450565b611f2483611f1f6009611b22565b612466565b8080611f2f90613b73565b915050611eff565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa29061360f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161209c9190613532565b60405180910390a3505050565b6120b4848484611bc5565b6120c084848484612484565b6120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f69061356f565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600a805461218090613b10565b80601f01602080910402602001604051908101604052809291908181526020018280546121ac90613b10565b80156121f95780601f106121ce576101008083540402835291602001916121f9565b820191906000526020600020905b8154815290600101906020018083116121dc57829003601f168201915b5050505050905090565b6060600082141561224b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061235f565b600082905060005b6000821461227d57808061226690613b73565b915050600a826122769190613983565b9150612253565b60008167ffffffffffffffff81111561229957612298613ca9565b5b6040519080825280601f01601f1916602001820160405280156122cb5781602001600182028036833780820191505090505b5090505b60008514612358576001826122e49190613a0e565b9150600a856122f39190613bbc565b60306122ff919061392d565b60f81b81838151811061231557612314613c7a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123519190613983565b94506122cf565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061242f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061243f575061243e8261261b565b5b9050919050565b505050565b505050565b6001816000016000828254019250508190555050565b612480828260405180602001604052806000815250612685565b5050565b60006124a58473ffffffffffffffffffffffffffffffffffffffff166126e0565b1561260e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ce611a61565b8786866040518563ffffffff1660e01b81526004016124f0949392919061349b565b602060405180830381600087803b15801561250a57600080fd5b505af192505050801561253b57506040513d601f19601f820116820180604052508101906125389190612e17565b60015b6125be573d806000811461256b576040519150601f19603f3d011682016040523d82523d6000602084013e612570565b606091505b506000815114156125b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ad9061356f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612613565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61268f8383612703565b61269c6000848484612484565b6126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d29061356f565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276a9061366f565b60405180910390fd5b61277c81612105565b156127bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b3906135cf565b60405180910390fd5b6127c860008383612446565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612818919061392d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128d96000838361244b565b5050565b8280546128e990613b10565b90600052602060002090601f01602090048101928261290b5760008555612952565b82601f1061292457805160ff1916838001178555612952565b82800160010185558215612952579182015b82811115612951578251825591602001919060010190612936565b5b50905061295f91906129e9565b5090565b82805461296f90613b10565b90600052602060002090601f01602090048101928261299157600085556129d8565b82601f106129aa57803560ff19168380011785556129d8565b828001600101855582156129d8579182015b828111156129d75782358255916020019190600101906129bc565b5b5090506129e591906129e9565b5090565b5b80821115612a025760008160009055506001016129ea565b5090565b6000612a19612a148461382f565b61380a565b905082815260208101848484011115612a3557612a34613ce7565b5b612a40848285613ace565b509392505050565b6000612a5b612a5684613860565b61380a565b905082815260208101848484011115612a7757612a76613ce7565b5b612a82848285613ace565b509392505050565b600081359050612a99816141ba565b92915050565b600081359050612aae816141d1565b92915050565b600081359050612ac3816141e8565b92915050565b600081519050612ad8816141e8565b92915050565b600082601f830112612af357612af2613cdd565b5b8135612b03848260208601612a06565b91505092915050565b60008083601f840112612b2257612b21613cdd565b5b8235905067ffffffffffffffff811115612b3f57612b3e613cd8565b5b602083019150836001820283011115612b5b57612b5a613ce2565b5b9250929050565b600082601f830112612b7757612b76613cdd565b5b8135612b87848260208601612a48565b91505092915050565b600081359050612b9f816141ff565b92915050565b600081359050612bb481614216565b92915050565b600060208284031215612bd057612bcf613cf1565b5b6000612bde84828501612a8a565b91505092915050565b60008060408385031215612bfe57612bfd613cf1565b5b6000612c0c85828601612a8a565b9250506020612c1d85828601612a8a565b9150509250929050565b600080600060608486031215612c4057612c3f613cf1565b5b6000612c4e86828701612a8a565b9350506020612c5f86828701612a8a565b9250506040612c7086828701612b90565b9150509250925092565b60008060008060808587031215612c9457612c93613cf1565b5b6000612ca287828801612a8a565b9450506020612cb387828801612a8a565b9350506040612cc487828801612b90565b925050606085013567ffffffffffffffff811115612ce557612ce4613cec565b5b612cf187828801612ade565b91505092959194509250565b60008060408385031215612d1457612d13613cf1565b5b6000612d2285828601612a8a565b9250506020612d3385828601612a9f565b9150509250929050565b60008060408385031215612d5457612d53613cf1565b5b6000612d6285828601612a8a565b9250506020612d7385828601612b90565b9150509250929050565b60008060408385031215612d9457612d93613cf1565b5b6000612da285828601612a8a565b9250506020612db385828601612ba5565b9150509250929050565b600060208284031215612dd357612dd2613cf1565b5b6000612de184828501612a9f565b91505092915050565b600060208284031215612e0057612dff613cf1565b5b6000612e0e84828501612ab4565b91505092915050565b600060208284031215612e2d57612e2c613cf1565b5b6000612e3b84828501612ac9565b91505092915050565b60008060208385031215612e5b57612e5a613cf1565b5b600083013567ffffffffffffffff811115612e7957612e78613cec565b5b612e8585828601612b0c565b92509250509250929050565b600060208284031215612ea757612ea6613cf1565b5b600082013567ffffffffffffffff811115612ec557612ec4613cec565b5b612ed184828501612b62565b91505092915050565b600060208284031215612ef057612eef613cf1565b5b6000612efe84828501612b90565b91505092915050565b60008060408385031215612f1e57612f1d613cf1565b5b6000612f2c85828601612b90565b9250506020612f3d85828601612a8a565b9150509250929050565b60008060408385031215612f5e57612f5d613cf1565b5b6000612f6c85828601612b90565b9250506020612f7d85828601612b90565b9150509250929050565b6000612f93838361341c565b60208301905092915050565b612fa881613a42565b82525050565b6000612fb9826138b6565b612fc381856138e4565b9350612fce83613891565b8060005b83811015612fff578151612fe68882612f87565b9750612ff1836138d7565b925050600181019050612fd2565b5085935050505092915050565b61301581613a54565b82525050565b6000613026826138c1565b61303081856138f5565b9350613040818560208601613add565b61304981613cf6565b840191505092915050565b600061305f826138cc565b6130698185613911565b9350613079818560208601613add565b61308281613cf6565b840191505092915050565b6000613098826138cc565b6130a28185613922565b93506130b2818560208601613add565b80840191505092915050565b600081546130cb81613b10565b6130d58186613922565b945060018216600081146130f0576001811461310157613134565b60ff19831686528186019350613134565b61310a856138a1565b60005b8381101561312c5781548189015260018201915060208101905061310d565b838801955050505b50505092915050565b600061314a603283613911565b915061315582613d07565b604082019050919050565b600061316d602683613911565b915061317882613d56565b604082019050919050565b6000613190602583613911565b915061319b82613da5565b604082019050919050565b60006131b3601c83613911565b91506131be82613df4565b602082019050919050565b60006131d6602483613911565b91506131e182613e1d565b604082019050919050565b60006131f9601983613911565b915061320482613e6c565b602082019050919050565b600061321c602983613911565b915061322782613e95565b604082019050919050565b600061323f603e83613911565b915061324a82613ee4565b604082019050919050565b6000613262602083613911565b915061326d82613f33565b602082019050919050565b6000613285602083613911565b915061329082613f5c565b602082019050919050565b60006132a8601783613911565b91506132b382613f85565b602082019050919050565b60006132cb602f83613911565b91506132d682613fae565b604082019050919050565b60006132ee601083613911565b91506132f982613ffd565b602082019050919050565b6000613311601883613911565b915061331c82614026565b602082019050919050565b6000613334601483613911565b915061333f8261404f565b602082019050919050565b6000613357602183613911565b915061336282614078565b604082019050919050565b600061337a600083613906565b9150613385826140c7565b600082019050919050565b600061339d601483613911565b91506133a8826140ca565b602082019050919050565b60006133c0602a83613911565b91506133cb826140f3565b604082019050919050565b60006133e3602e83613911565b91506133ee82614142565b604082019050919050565b6000613406601983613911565b915061341182614191565b602082019050919050565b61342581613aac565b82525050565b61343481613aac565b82525050565b6000613446828661308d565b9150613452828561308d565b915061345e82846130be565b9150819050949350505050565b60006134768261336d565b9150819050919050565b60006020820190506134956000830184612f9f565b92915050565b60006080820190506134b06000830187612f9f565b6134bd6020830186612f9f565b6134ca604083018561342b565b81810360608301526134dc818461301b565b905095945050505050565b60006040820190506134fc6000830185612f9f565b613509602083018461342b565b9392505050565b6000602082019050818103600083015261352a8184612fae565b905092915050565b6000602082019050613547600083018461300c565b92915050565b600060208201905081810360008301526135678184613054565b905092915050565b600060208201905081810360008301526135888161313d565b9050919050565b600060208201905081810360008301526135a881613160565b9050919050565b600060208201905081810360008301526135c881613183565b9050919050565b600060208201905081810360008301526135e8816131a6565b9050919050565b60006020820190508181036000830152613608816131c9565b9050919050565b60006020820190508181036000830152613628816131ec565b9050919050565b600060208201905081810360008301526136488161320f565b9050919050565b6000602082019050818103600083015261366881613232565b9050919050565b6000602082019050818103600083015261368881613255565b9050919050565b600060208201905081810360008301526136a881613278565b9050919050565b600060208201905081810360008301526136c88161329b565b9050919050565b600060208201905081810360008301526136e8816132be565b9050919050565b60006020820190508181036000830152613708816132e1565b9050919050565b6000602082019050818103600083015261372881613304565b9050919050565b6000602082019050818103600083015261374881613327565b9050919050565b600060208201905081810360008301526137688161334a565b9050919050565b6000602082019050818103600083015261378881613390565b9050919050565b600060208201905081810360008301526137a8816133b3565b9050919050565b600060208201905081810360008301526137c8816133d6565b9050919050565b600060208201905081810360008301526137e8816133f9565b9050919050565b6000602082019050613804600083018461342b565b92915050565b6000613814613825565b90506138208282613b42565b919050565b6000604051905090565b600067ffffffffffffffff82111561384a57613849613ca9565b5b61385382613cf6565b9050602081019050919050565b600067ffffffffffffffff82111561387b5761387a613ca9565b5b61388482613cf6565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061393882613aac565b915061394383613aac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561397857613977613bed565b5b828201905092915050565b600061398e82613aac565b915061399983613aac565b9250826139a9576139a8613c1c565b5b828204905092915050565b60006139bf82613aac565b91506139ca83613aac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0357613a02613bed565b5b828202905092915050565b6000613a1982613aac565b9150613a2483613aac565b925082821015613a3757613a36613bed565b5b828203905092915050565b6000613a4d82613a8c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613afb578082015181840152602081019050613ae0565b83811115613b0a576000848401525b50505050565b60006002820490506001821680613b2857607f821691505b60208210811415613b3c57613b3b613c4b565b5b50919050565b613b4b82613cf6565b810181811067ffffffffffffffff82111715613b6a57613b69613ca9565b5b80604052505050565b6000613b7e82613aac565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bb157613bb0613bed565b5b600182019050919050565b6000613bc782613aac565b9150613bd283613aac565b925082613be257613be1613c1c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4f6e6c79206f6e65207065722054782100000000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4f6e6c79206f6e65207065722077616c6c657421000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6141c381613a42565b81146141ce57600080fd5b50565b6141da81613a54565b81146141e557600080fd5b50565b6141f181613a60565b81146141fc57600080fd5b50565b61420881613aac565b811461421357600080fd5b50565b61421f81613ab6565b811461422a57600080fd5b5056fea26469706673582212204e284c78abbf6f146a51ecc55160bbece53cb80fef6936945cbb7a64953568a164736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000002ee0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006668747470733a2f2f6261667962656962693365757a7064766565767268693565796c7170726d7a6534376e707471376f6234706c72693435353571716a617664626b612e697066732e6e667473746f726167652e6c696e6b2f6d657461646174612e6a736f6e0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _royaltyFeesInBips (uint96): 750
Arg [1] : _contractURI (string): https://bafybeibi3euzpdveevrhi5eylqprmze47nptq7ob4plri4555qqjavdbka.ipfs.nftstorage.link/metadata.json

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000002ee
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000066
Arg [3] : 68747470733a2f2f6261667962656962693365757a7064766565767268693565
Arg [4] : 796c7170726d7a6534376e707471376f6234706c72693435353571716a617664
Arg [5] : 626b612e697066732e6e667473746f726167652e6c696e6b2f6d657461646174
Arg [6] : 612e6a736f6e0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44683:4199:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48412:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48592:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32332:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33845:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33362:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47537:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45570:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34545:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21814:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;47620:466;;;;;;;;;;;;;:::i;:::-;;34952:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46206:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44945:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45196:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44845:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32043:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31774:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6890:103;;;;;;;;;;;;;:::i;:::-;;47429:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6242:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48753:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45053:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32501:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45665:372;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34088:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45141:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47287:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35208:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45095:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46847:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45017:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44983:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34314:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46045:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7148:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48412:172;48519:4;48542:36;48566:11;48542:23;:36::i;:::-;48535:43;;48412:172;;;:::o;48592:153::-;6128:13;:11;:13::i;:::-;48688:49:::1;48707:9;48718:18;48688;:49::i;:::-;48592:153:::0;;:::o;32332:100::-;32386:13;32419:5;32412:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32332:100;:::o;33845:171::-;33921:7;33941:23;33956:7;33941:14;:23::i;:::-;33984:15;:24;34000:7;33984:24;;;;;;;;;;;;;;;;;;;;;33977:31;;33845:171;;;:::o;33362:417::-;33443:13;33459:23;33474:7;33459:14;:23::i;:::-;33443:39;;33507:5;33501:11;;:2;:11;;;;33493:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;33601:5;33585:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33610:37;33627:5;33634:12;:10;:12::i;:::-;33610:16;:37::i;:::-;33585:62;33563:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;33750:21;33759:2;33763:7;33750:8;:21::i;:::-;33432:347;33362:417;;:::o;47537:77::-;6128:13;:11;:13::i;:::-;47602:6:::1;47593;;:15;;;;;;;;;;;;;;;;;;47537:77:::0;:::o;45570:89::-;45614:7;45637:16;:6;:14;:16::i;:::-;45630:23;;45570:89;:::o;34545:336::-;34740:41;34759:12;:10;:12::i;:::-;34773:7;34740:18;:41::i;:::-;34732:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;34845:28;34855:4;34861:2;34865:7;34845:9;:28::i;:::-;34545:336;;;:::o;21814:442::-;21911:7;21920;21940:26;21969:17;:27;21987:8;21969:27;;;;;;;;;;;21940:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22041:1;22013:30;;:7;:16;;;:30;;;22009:92;;;22070:19;22060:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22009:92;22113:21;22178:17;:15;:17::i;:::-;22137:58;;22151:7;:23;;;22138:36;;:10;:36;;;;:::i;:::-;22137:58;;;;:::i;:::-;22113:82;;22216:7;:16;;;22234:13;22208:40;;;;;;21814:442;;;;;:::o;47620:466::-;6128:13;:11;:13::i;:::-;47908:7:::1;47929;:5;:7::i;:::-;47921:21;;47950;47921:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47907:69;;;47991:2;47983:11;;;::::0;::::1;;47657:429;47620:466::o:0;34952:185::-;35090:39;35107:4;35113:2;35117:7;35090:39;;;;;;;;;;;;:16;:39::i;:::-;34952:185;;;:::o;46206:635::-;46281:16;46309:23;46335:17;46345:6;46335:9;:17::i;:::-;46309:43;;46359:30;46406:15;46392:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46359:63;;46429:22;46454:1;46429:26;;46462:23;46498:309;46523:15;46505;:33;:64;;;;;46560:9;;46542:14;:27;;46505:64;46498:309;;;46580:25;46608:23;46616:14;46608:7;:23::i;:::-;46580:51;;46667:6;46646:27;;:17;:27;;;46642:131;;;46719:14;46686:13;46700:15;46686:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;46746:17;;;;;:::i;:::-;;;;46642:131;46783:16;;;;;:::i;:::-;;;;46571:236;46498:309;;;46822:13;46815:20;;;;;;46206:635;;;:::o;44945:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45196:26::-;;;;;;;;;;;;;:::o;44845:95::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32043:222::-;32115:7;32135:13;32151:7;:16;32159:7;32151:16;;;;;;;;;;;;;;;;;;;;;32135:32;;32203:1;32186:19;;:5;:19;;;;32178:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;32252:5;32245:12;;;32043:222;;;:::o;31774:207::-;31846:7;31891:1;31874:19;;:5;:19;;;;31866:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31957:9;:16;31967:5;31957:16;;;;;;;;;;;;;;;;31950:23;;31774:207;;;:::o;6890:103::-;6128:13;:11;:13::i;:::-;6955:30:::1;6982:1;6955:18;:30::i;:::-;6890:103::o:0;47429:100::-;6128:13;:11;:13::i;:::-;47513:10:::1;47501:9;:22;;;;;;;;;;;;:::i;:::-;;47429:100:::0;:::o;6242:87::-;6288:7;6315:6;;;;;;;;;;;6308:13;;6242:87;:::o;48753:114::-;6128:13;:11;:13::i;:::-;48847:12:::1;;48833:11;:26;;;;;;;:::i;:::-;;48753:114:::0;;:::o;45053:37::-;;;;:::o;32501:104::-;32557:13;32590:7;32583:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32501:104;:::o;45665:372::-;45730:11;45514:9;;45499:11;45480:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;45472:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;45759:6:::1;;;;;;;;;;;45758:7;45750:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;45822:1;45808:11;:15;:52;;;;;45842:18;;45827:11;:33;;45808:52;45800:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;45924:1;45896:13;:25;45910:10;45896:25;;;;;;;;;;;;;;;;:29;45888:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45957:13;:25;45971:10;45957:25;;;;;;;;;;;;;;;;:27;;;;;;;;;:::i;:::-;;;;;;45997:34;46007:10;46019:11;45997:9;:34::i;:::-;45665:372:::0;;:::o;34088:155::-;34183:52;34202:12;:10;:12::i;:::-;34216:8;34226;34183:18;:52::i;:::-;34088:155;;:::o;45141:48::-;;;;;;;;;;;;;;;;;:::o;47287:130::-;6128:13;:11;:13::i;:::-;47392:19:::1;47371:18;:40;;;;47287:130:::0;:::o;35208:323::-;35382:41;35401:12;:10;:12::i;:::-;35415:7;35382:18;:41::i;:::-;35374:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;35485:38;35499:4;35505:2;35509:7;35518:4;35485:13;:38::i;:::-;35208:323;;;;:::o;45095:41::-;;;;:::o;46847:428::-;46946:13;46987:17;46995:8;46987:7;:17::i;:::-;46971:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;47084:28;47115:10;:8;:10::i;:::-;47084:41;;47170:1;47145:14;47139:28;:32;:130;;;;;;;;;;;;;;;;;47207:14;47223:19;:8;:17;:19::i;:::-;47244:9;47190:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47139:130;47132:137;;;46847:428;;;:::o;45017:31::-;;;;:::o;44983:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34314:164::-;34411:4;34435:18;:25;34454:5;34435:25;;;;;;;;;;;;;;;:35;34461:8;34435:35;;;;;;;;;;;;;;;;;;;;;;;;;34428:42;;34314:164;;;;:::o;46045:155::-;46131:11;45514:9;;45499:11;45480:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;45472:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;6128:13:::1;:11;:13::i;:::-;46161:33:::2;46171:9;46182:11;46161:9;:33::i;:::-;46045:155:::0;;;:::o;7148:201::-;6128:13;:11;:13::i;:::-;7257:1:::1;7237:22;;:8;:22;;;;7229:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7313:28;7332:8;7313:18;:28::i;:::-;7148:201:::0;:::o;21544:215::-;21646:4;21685:26;21670:41;;;:11;:41;;;;:81;;;;21715:36;21739:11;21715:23;:36::i;:::-;21670:81;21663:88;;21544:215;;;:::o;6407:132::-;6482:12;:10;:12::i;:::-;6471:23;;:7;:5;:7::i;:::-;:23;;;6463:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6407:132::o;22906:332::-;23025:17;:15;:17::i;:::-;23009:33;;:12;:33;;;;23001:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;23128:1;23108:22;;:8;:22;;;;23100:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23195:35;;;;;;;;23207:8;23195:35;;;;;;23217:12;23195:35;;;;;23173:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22906:332;;:::o;41820:135::-;41902:16;41910:7;41902;:16::i;:::-;41894:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;41820:135;:::o;4793:98::-;4846:7;4873:10;4866:17;;4793:98;:::o;41099:174::-;41201:2;41174:15;:24;41190:7;41174:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41257:7;41253:2;41219:46;;41228:23;41243:7;41228:14;:23::i;:::-;41219:46;;;;;;;;;;;;41099:174;;:::o;1024:114::-;1089:7;1116;:14;;;1109:21;;1024:114;;;:::o;37332:264::-;37425:4;37442:13;37458:23;37473:7;37458:14;:23::i;:::-;37442:39;;37511:5;37500:16;;:7;:16;;;:52;;;;37520:32;37537:5;37544:7;37520:16;:32::i;:::-;37500:52;:87;;;;37580:7;37556:31;;:20;37568:7;37556:11;:20::i;:::-;:31;;;37500:87;37492:96;;;37332:264;;;;:::o;40355:625::-;40514:4;40487:31;;:23;40502:7;40487:14;:23::i;:::-;:31;;;40479:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;40593:1;40579:16;;:2;:16;;;;40571:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;40649:39;40670:4;40676:2;40680:7;40649:20;:39::i;:::-;40753:29;40770:1;40774:7;40753:8;:29::i;:::-;40814:1;40795:9;:15;40805:4;40795:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;40843:1;40826:9;:13;40836:2;40826:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40874:2;40855:7;:16;40863:7;40855:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40913:7;40909:2;40894:27;;40903:4;40894:27;;;;;;;;;;;;40934:38;40954:4;40960:2;40964:7;40934:19;:38::i;:::-;40355:625;;;:::o;22538:97::-;22596:6;22622:5;22615:12;;22538:97;:::o;7509:191::-;7583:16;7602:6;;;;;;;;;;;7583:25;;7628:8;7619:6;;:17;;;;;;;;;;;;;;;;;;7683:8;7652:40;;7673:8;7652:40;;;;;;;;;;;;7572:128;7509:191;:::o;48092:204::-;48172:9;48167:124;48191:11;48187:1;:15;48167:124;;;48218:18;:6;:16;:18::i;:::-;48245:38;48255:9;48266:16;:6;:14;:16::i;:::-;48245:9;:38::i;:::-;48204:3;;;;;:::i;:::-;;;;48167:124;;;;48092:204;;:::o;41416:315::-;41571:8;41562:17;;:5;:17;;;;41554:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;41658:8;41620:18;:25;41639:5;41620:25;;;;;;;;;;;;;;;:35;41646:8;41620:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;41704:8;41682:41;;41697:5;41682:41;;;41714:8;41682:41;;;;;;:::i;:::-;;;;;;;;41416:315;;;:::o;36412:313::-;36568:28;36578:4;36584:2;36588:7;36568:9;:28::i;:::-;36615:47;36638:4;36644:2;36648:7;36657:4;36615:22;:47::i;:::-;36607:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;36412:313;;;;:::o;37038:127::-;37103:4;37155:1;37127:30;;:7;:16;37135:7;37127:16;;;;;;;;;;;;;;;;;;;;;:30;;;;37120:37;;37038:127;;;:::o;48302:104::-;48362:13;48391:9;48384:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48302:104;:::o;2047:723::-;2103:13;2333:1;2324:5;:10;2320:53;;;2351:10;;;;;;;;;;;;;;;;;;;;;2320:53;2383:12;2398:5;2383:20;;2414:14;2439:78;2454:1;2446:4;:9;2439:78;;2472:8;;;;;:::i;:::-;;;;2503:2;2495:10;;;;;:::i;:::-;;;2439:78;;;2527:19;2559:6;2549:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2527:39;;2577:154;2593:1;2584:5;:10;2577:154;;2621:1;2611:11;;;;;:::i;:::-;;;2688:2;2680:5;:10;;;;:::i;:::-;2667:2;:24;;;;:::i;:::-;2654:39;;2637:6;2644;2637:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2717:2;2708:11;;;;;:::i;:::-;;;2577:154;;;2755:6;2741:21;;;;;2047:723;;;;:::o;31405:305::-;31507:4;31559:25;31544:40;;;:11;:40;;;;:105;;;;31616:33;31601:48;;;:11;:48;;;;31544:105;:158;;;;31666:36;31690:11;31666:23;:36::i;:::-;31544:158;31524:178;;31405:305;;;:::o;43944:126::-;;;;:::o;44455:125::-;;;;:::o;1146:127::-;1253:1;1235:7;:14;;;:19;;;;;;;;;;;1146:127;:::o;37938:110::-;38014:26;38024:2;38028:7;38014:26;;;;;;;;;;;;:9;:26::i;:::-;37938:110;;:::o;42519:853::-;42673:4;42694:15;:2;:13;;;:15::i;:::-;42690:675;;;42746:2;42730:36;;;42767:12;:10;:12::i;:::-;42781:4;42787:7;42796:4;42730:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42726:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42988:1;42971:6;:13;:18;42967:328;;;43014:60;;;;;;;;;;:::i;:::-;;;;;;;;42967:328;43245:6;43239:13;43230:6;43226:2;43222:15;43215:38;42726:584;42862:41;;;42852:51;;;:6;:51;;;;42845:58;;;;;42690:675;43349:4;43342:11;;42519:853;;;;;;;:::o;19994:157::-;20079:4;20118:25;20103:40;;;:11;:40;;;;20096:47;;19994:157;;;:::o;38275:319::-;38404:18;38410:2;38414:7;38404:5;:18::i;:::-;38455:53;38486:1;38490:2;38494:7;38503:4;38455:22;:53::i;:::-;38433:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;38275:319;;;:::o;8940:326::-;9000:4;9257:1;9235:7;:19;;;:23;9228:30;;8940:326;;;:::o;38930:439::-;39024:1;39010:16;;:2;:16;;;;39002:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39083:16;39091:7;39083;:16::i;:::-;39082:17;39074:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;39145:45;39174:1;39178:2;39182:7;39145:20;:45::i;:::-;39220:1;39203:9;:13;39213:2;39203:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39251:2;39232:7;:16;39240:7;39232:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39296:7;39292:2;39271:33;;39288:1;39271:33;;;;;;;;;;;;39317:44;39345:1;39349:2;39353:7;39317:19;:44::i;:::-;38930:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:553::-;1844:8;1854:6;1904:3;1897:4;1889:6;1885:17;1881:27;1871:122;;1912:79;;:::i;:::-;1871:122;2025:6;2012:20;2002:30;;2055:18;2047:6;2044:30;2041:117;;;2077:79;;:::i;:::-;2041:117;2191:4;2183:6;2179:17;2167:29;;2245:3;2237:4;2229:6;2225:17;2215:8;2211:32;2208:41;2205:128;;;2252:79;;:::i;:::-;2205:128;1786:553;;;;;:::o;2359:340::-;2415:5;2464:3;2457:4;2449:6;2445:17;2441:27;2431:122;;2472:79;;:::i;:::-;2431:122;2589:6;2576:20;2614:79;2689:3;2681:6;2674:4;2666:6;2662:17;2614:79;:::i;:::-;2605:88;;2421:278;2359:340;;;;:::o;2705:139::-;2751:5;2789:6;2776:20;2767:29;;2805:33;2832:5;2805:33;:::i;:::-;2705:139;;;;:::o;2850:137::-;2895:5;2933:6;2920:20;2911:29;;2949:32;2975:5;2949:32;:::i;:::-;2850:137;;;;:::o;2993:329::-;3052:6;3101:2;3089:9;3080:7;3076:23;3072:32;3069:119;;;3107:79;;:::i;:::-;3069:119;3227:1;3252:53;3297:7;3288:6;3277:9;3273:22;3252:53;:::i;:::-;3242:63;;3198:117;2993:329;;;;:::o;3328:474::-;3396:6;3404;3453:2;3441:9;3432:7;3428:23;3424:32;3421:119;;;3459:79;;:::i;:::-;3421:119;3579:1;3604:53;3649:7;3640:6;3629:9;3625:22;3604:53;:::i;:::-;3594:63;;3550:117;3706:2;3732:53;3777:7;3768:6;3757:9;3753:22;3732:53;:::i;:::-;3722:63;;3677:118;3328:474;;;;;:::o;3808:619::-;3885:6;3893;3901;3950:2;3938:9;3929:7;3925:23;3921:32;3918:119;;;3956:79;;:::i;:::-;3918:119;4076:1;4101:53;4146:7;4137:6;4126:9;4122:22;4101:53;:::i;:::-;4091:63;;4047:117;4203:2;4229:53;4274:7;4265:6;4254:9;4250:22;4229:53;:::i;:::-;4219:63;;4174:118;4331:2;4357:53;4402:7;4393:6;4382:9;4378:22;4357:53;:::i;:::-;4347:63;;4302:118;3808:619;;;;;:::o;4433:943::-;4528:6;4536;4544;4552;4601:3;4589:9;4580:7;4576:23;4572:33;4569:120;;;4608:79;;:::i;:::-;4569:120;4728:1;4753:53;4798:7;4789:6;4778:9;4774:22;4753:53;:::i;:::-;4743:63;;4699:117;4855:2;4881:53;4926:7;4917:6;4906:9;4902:22;4881:53;:::i;:::-;4871:63;;4826:118;4983:2;5009:53;5054:7;5045:6;5034:9;5030:22;5009:53;:::i;:::-;4999:63;;4954:118;5139:2;5128:9;5124:18;5111:32;5170:18;5162:6;5159:30;5156:117;;;5192:79;;:::i;:::-;5156:117;5297:62;5351:7;5342:6;5331:9;5327:22;5297:62;:::i;:::-;5287:72;;5082:287;4433:943;;;;;;;:::o;5382:468::-;5447:6;5455;5504:2;5492:9;5483:7;5479:23;5475:32;5472:119;;;5510:79;;:::i;:::-;5472:119;5630:1;5655:53;5700:7;5691:6;5680:9;5676:22;5655:53;:::i;:::-;5645:63;;5601:117;5757:2;5783:50;5825:7;5816:6;5805:9;5801:22;5783:50;:::i;:::-;5773:60;;5728:115;5382:468;;;;;:::o;5856:474::-;5924:6;5932;5981:2;5969:9;5960:7;5956:23;5952:32;5949:119;;;5987:79;;:::i;:::-;5949:119;6107:1;6132:53;6177:7;6168:6;6157:9;6153:22;6132:53;:::i;:::-;6122:63;;6078:117;6234:2;6260:53;6305:7;6296:6;6285:9;6281:22;6260:53;:::i;:::-;6250:63;;6205:118;5856:474;;;;;:::o;6336:472::-;6403:6;6411;6460:2;6448:9;6439:7;6435:23;6431:32;6428:119;;;6466:79;;:::i;:::-;6428:119;6586:1;6611:53;6656:7;6647:6;6636:9;6632:22;6611:53;:::i;:::-;6601:63;;6557:117;6713:2;6739:52;6783:7;6774:6;6763:9;6759:22;6739:52;:::i;:::-;6729:62;;6684:117;6336:472;;;;;:::o;6814:323::-;6870:6;6919:2;6907:9;6898:7;6894:23;6890:32;6887:119;;;6925:79;;:::i;:::-;6887:119;7045:1;7070:50;7112:7;7103:6;7092:9;7088:22;7070:50;:::i;:::-;7060:60;;7016:114;6814:323;;;;:::o;7143:327::-;7201:6;7250:2;7238:9;7229:7;7225:23;7221:32;7218:119;;;7256:79;;:::i;:::-;7218:119;7376:1;7401:52;7445:7;7436:6;7425:9;7421:22;7401:52;:::i;:::-;7391:62;;7347:116;7143:327;;;;:::o;7476:349::-;7545:6;7594:2;7582:9;7573:7;7569:23;7565:32;7562:119;;;7600:79;;:::i;:::-;7562:119;7720:1;7745:63;7800:7;7791:6;7780:9;7776:22;7745:63;:::i;:::-;7735:73;;7691:127;7476:349;;;;:::o;7831:529::-;7902:6;7910;7959:2;7947:9;7938:7;7934:23;7930:32;7927:119;;;7965:79;;:::i;:::-;7927:119;8113:1;8102:9;8098:17;8085:31;8143:18;8135:6;8132:30;8129:117;;;8165:79;;:::i;:::-;8129:117;8278:65;8335:7;8326:6;8315:9;8311:22;8278:65;:::i;:::-;8260:83;;;;8056:297;7831:529;;;;;:::o;8366:509::-;8435:6;8484:2;8472:9;8463:7;8459:23;8455:32;8452:119;;;8490:79;;:::i;:::-;8452:119;8638:1;8627:9;8623:17;8610:31;8668:18;8660:6;8657:30;8654:117;;;8690:79;;:::i;:::-;8654:117;8795:63;8850:7;8841:6;8830:9;8826:22;8795:63;:::i;:::-;8785:73;;8581:287;8366:509;;;;:::o;8881:329::-;8940:6;8989:2;8977:9;8968:7;8964:23;8960:32;8957:119;;;8995:79;;:::i;:::-;8957:119;9115:1;9140:53;9185:7;9176:6;9165:9;9161:22;9140:53;:::i;:::-;9130:63;;9086:117;8881:329;;;;:::o;9216:474::-;9284:6;9292;9341:2;9329:9;9320:7;9316:23;9312:32;9309:119;;;9347:79;;:::i;:::-;9309:119;9467:1;9492:53;9537:7;9528:6;9517:9;9513:22;9492:53;:::i;:::-;9482:63;;9438:117;9594:2;9620:53;9665:7;9656:6;9645:9;9641:22;9620:53;:::i;:::-;9610:63;;9565:118;9216:474;;;;;:::o;9696:::-;9764:6;9772;9821:2;9809:9;9800:7;9796:23;9792:32;9789:119;;;9827:79;;:::i;:::-;9789:119;9947:1;9972:53;10017:7;10008:6;9997:9;9993:22;9972:53;:::i;:::-;9962:63;;9918:117;10074:2;10100:53;10145:7;10136:6;10125:9;10121:22;10100:53;:::i;:::-;10090:63;;10045:118;9696:474;;;;;:::o;10176:179::-;10245:10;10266:46;10308:3;10300:6;10266:46;:::i;:::-;10344:4;10339:3;10335:14;10321:28;;10176:179;;;;:::o;10361:118::-;10448:24;10466:5;10448:24;:::i;:::-;10443:3;10436:37;10361:118;;:::o;10515:732::-;10634:3;10663:54;10711:5;10663:54;:::i;:::-;10733:86;10812:6;10807:3;10733:86;:::i;:::-;10726:93;;10843:56;10893:5;10843:56;:::i;:::-;10922:7;10953:1;10938:284;10963:6;10960:1;10957:13;10938:284;;;11039:6;11033:13;11066:63;11125:3;11110:13;11066:63;:::i;:::-;11059:70;;11152:60;11205:6;11152:60;:::i;:::-;11142:70;;10998:224;10985:1;10982;10978:9;10973:14;;10938:284;;;10942:14;11238:3;11231:10;;10639:608;;;10515:732;;;;:::o;11253:109::-;11334:21;11349:5;11334:21;:::i;:::-;11329:3;11322:34;11253:109;;:::o;11368:360::-;11454:3;11482:38;11514:5;11482:38;:::i;:::-;11536:70;11599:6;11594:3;11536:70;:::i;:::-;11529:77;;11615:52;11660:6;11655:3;11648:4;11641:5;11637:16;11615:52;:::i;:::-;11692:29;11714:6;11692:29;:::i;:::-;11687:3;11683:39;11676:46;;11458:270;11368:360;;;;:::o;11734:364::-;11822:3;11850:39;11883:5;11850:39;:::i;:::-;11905:71;11969:6;11964:3;11905:71;:::i;:::-;11898:78;;11985:52;12030:6;12025:3;12018:4;12011:5;12007:16;11985:52;:::i;:::-;12062:29;12084:6;12062:29;:::i;:::-;12057:3;12053:39;12046:46;;11826:272;11734:364;;;;:::o;12104:377::-;12210:3;12238:39;12271:5;12238:39;:::i;:::-;12293:89;12375:6;12370:3;12293:89;:::i;:::-;12286:96;;12391:52;12436:6;12431:3;12424:4;12417:5;12413:16;12391:52;:::i;:::-;12468:6;12463:3;12459:16;12452:23;;12214:267;12104:377;;;;:::o;12511:845::-;12614:3;12651:5;12645:12;12680:36;12706:9;12680:36;:::i;:::-;12732:89;12814:6;12809:3;12732:89;:::i;:::-;12725:96;;12852:1;12841:9;12837:17;12868:1;12863:137;;;;13014:1;13009:341;;;;12830:520;;12863:137;12947:4;12943:9;12932;12928:25;12923:3;12916:38;12983:6;12978:3;12974:16;12967:23;;12863:137;;13009:341;13076:38;13108:5;13076:38;:::i;:::-;13136:1;13150:154;13164:6;13161:1;13158:13;13150:154;;;13238:7;13232:14;13228:1;13223:3;13219:11;13212:35;13288:1;13279:7;13275:15;13264:26;;13186:4;13183:1;13179:12;13174:17;;13150:154;;;13333:6;13328:3;13324:16;13317:23;;13016:334;;12830:520;;12618:738;;12511:845;;;;:::o;13362:366::-;13504:3;13525:67;13589:2;13584:3;13525:67;:::i;:::-;13518:74;;13601:93;13690:3;13601:93;:::i;:::-;13719:2;13714:3;13710:12;13703:19;;13362:366;;;:::o;13734:::-;13876:3;13897:67;13961:2;13956:3;13897:67;:::i;:::-;13890:74;;13973:93;14062:3;13973:93;:::i;:::-;14091:2;14086:3;14082:12;14075:19;;13734:366;;;:::o;14106:::-;14248:3;14269:67;14333:2;14328:3;14269:67;:::i;:::-;14262:74;;14345:93;14434:3;14345:93;:::i;:::-;14463:2;14458:3;14454:12;14447:19;;14106:366;;;:::o;14478:::-;14620:3;14641:67;14705:2;14700:3;14641:67;:::i;:::-;14634:74;;14717:93;14806:3;14717:93;:::i;:::-;14835:2;14830:3;14826:12;14819:19;;14478:366;;;:::o;14850:::-;14992:3;15013:67;15077:2;15072:3;15013:67;:::i;:::-;15006:74;;15089:93;15178:3;15089:93;:::i;:::-;15207:2;15202:3;15198:12;15191:19;;14850:366;;;:::o;15222:::-;15364:3;15385:67;15449:2;15444:3;15385:67;:::i;:::-;15378:74;;15461:93;15550:3;15461:93;:::i;:::-;15579:2;15574:3;15570:12;15563:19;;15222:366;;;:::o;15594:::-;15736:3;15757:67;15821:2;15816:3;15757:67;:::i;:::-;15750:74;;15833:93;15922:3;15833:93;:::i;:::-;15951:2;15946:3;15942:12;15935:19;;15594:366;;;:::o;15966:::-;16108:3;16129:67;16193:2;16188:3;16129:67;:::i;:::-;16122:74;;16205:93;16294:3;16205:93;:::i;:::-;16323:2;16318:3;16314:12;16307:19;;15966:366;;;:::o;16338:::-;16480:3;16501:67;16565:2;16560:3;16501:67;:::i;:::-;16494:74;;16577:93;16666:3;16577:93;:::i;:::-;16695:2;16690:3;16686:12;16679:19;;16338:366;;;:::o;16710:::-;16852:3;16873:67;16937:2;16932:3;16873:67;:::i;:::-;16866:74;;16949:93;17038:3;16949:93;:::i;:::-;17067:2;17062:3;17058:12;17051:19;;16710:366;;;:::o;17082:::-;17224:3;17245:67;17309:2;17304:3;17245:67;:::i;:::-;17238:74;;17321:93;17410:3;17321:93;:::i;:::-;17439:2;17434:3;17430:12;17423:19;;17082:366;;;:::o;17454:::-;17596:3;17617:67;17681:2;17676:3;17617:67;:::i;:::-;17610:74;;17693:93;17782:3;17693:93;:::i;:::-;17811:2;17806:3;17802:12;17795:19;;17454:366;;;:::o;17826:::-;17968:3;17989:67;18053:2;18048:3;17989:67;:::i;:::-;17982:74;;18065:93;18154:3;18065:93;:::i;:::-;18183:2;18178:3;18174:12;18167:19;;17826:366;;;:::o;18198:::-;18340:3;18361:67;18425:2;18420:3;18361:67;:::i;:::-;18354:74;;18437:93;18526:3;18437:93;:::i;:::-;18555:2;18550:3;18546:12;18539:19;;18198:366;;;:::o;18570:::-;18712:3;18733:67;18797:2;18792:3;18733:67;:::i;:::-;18726:74;;18809:93;18898:3;18809:93;:::i;:::-;18927:2;18922:3;18918:12;18911:19;;18570:366;;;:::o;18942:::-;19084:3;19105:67;19169:2;19164:3;19105:67;:::i;:::-;19098:74;;19181:93;19270:3;19181:93;:::i;:::-;19299:2;19294:3;19290:12;19283:19;;18942:366;;;:::o;19314:398::-;19473:3;19494:83;19575:1;19570:3;19494:83;:::i;:::-;19487:90;;19586:93;19675:3;19586:93;:::i;:::-;19704:1;19699:3;19695:11;19688:18;;19314:398;;;:::o;19718:366::-;19860:3;19881:67;19945:2;19940:3;19881:67;:::i;:::-;19874:74;;19957:93;20046:3;19957:93;:::i;:::-;20075:2;20070:3;20066:12;20059:19;;19718:366;;;:::o;20090:::-;20232:3;20253:67;20317:2;20312:3;20253:67;:::i;:::-;20246:74;;20329:93;20418:3;20329:93;:::i;:::-;20447:2;20442:3;20438:12;20431:19;;20090:366;;;:::o;20462:::-;20604:3;20625:67;20689:2;20684:3;20625:67;:::i;:::-;20618:74;;20701:93;20790:3;20701:93;:::i;:::-;20819:2;20814:3;20810:12;20803:19;;20462:366;;;:::o;20834:::-;20976:3;20997:67;21061:2;21056:3;20997:67;:::i;:::-;20990:74;;21073:93;21162:3;21073:93;:::i;:::-;21191:2;21186:3;21182:12;21175:19;;20834:366;;;:::o;21206:108::-;21283:24;21301:5;21283:24;:::i;:::-;21278:3;21271:37;21206:108;;:::o;21320:118::-;21407:24;21425:5;21407:24;:::i;:::-;21402:3;21395:37;21320:118;;:::o;21444:589::-;21669:3;21691:95;21782:3;21773:6;21691:95;:::i;:::-;21684:102;;21803:95;21894:3;21885:6;21803:95;:::i;:::-;21796:102;;21915:92;22003:3;21994:6;21915:92;:::i;:::-;21908:99;;22024:3;22017:10;;21444:589;;;;;;:::o;22039:379::-;22223:3;22245:147;22388:3;22245:147;:::i;:::-;22238:154;;22409:3;22402:10;;22039:379;;;:::o;22424:222::-;22517:4;22555:2;22544:9;22540:18;22532:26;;22568:71;22636:1;22625:9;22621:17;22612:6;22568:71;:::i;:::-;22424:222;;;;:::o;22652:640::-;22847:4;22885:3;22874:9;22870:19;22862:27;;22899:71;22967:1;22956:9;22952:17;22943:6;22899:71;:::i;:::-;22980:72;23048:2;23037:9;23033:18;23024:6;22980:72;:::i;:::-;23062;23130:2;23119:9;23115:18;23106:6;23062:72;:::i;:::-;23181:9;23175:4;23171:20;23166:2;23155:9;23151:18;23144:48;23209:76;23280:4;23271:6;23209:76;:::i;:::-;23201:84;;22652:640;;;;;;;:::o;23298:332::-;23419:4;23457:2;23446:9;23442:18;23434:26;;23470:71;23538:1;23527:9;23523:17;23514:6;23470:71;:::i;:::-;23551:72;23619:2;23608:9;23604:18;23595:6;23551:72;:::i;:::-;23298:332;;;;;:::o;23636:373::-;23779:4;23817:2;23806:9;23802:18;23794:26;;23866:9;23860:4;23856:20;23852:1;23841:9;23837:17;23830:47;23894:108;23997:4;23988:6;23894:108;:::i;:::-;23886:116;;23636:373;;;;:::o;24015:210::-;24102:4;24140:2;24129:9;24125:18;24117:26;;24153:65;24215:1;24204:9;24200:17;24191:6;24153:65;:::i;:::-;24015:210;;;;:::o;24231:313::-;24344:4;24382:2;24371:9;24367:18;24359:26;;24431:9;24425:4;24421:20;24417:1;24406:9;24402:17;24395:47;24459:78;24532:4;24523:6;24459:78;:::i;:::-;24451:86;;24231:313;;;;:::o;24550:419::-;24716:4;24754:2;24743:9;24739:18;24731:26;;24803:9;24797:4;24793:20;24789:1;24778:9;24774:17;24767:47;24831:131;24957:4;24831:131;:::i;:::-;24823:139;;24550:419;;;:::o;24975:::-;25141:4;25179:2;25168:9;25164:18;25156:26;;25228:9;25222:4;25218:20;25214:1;25203:9;25199:17;25192:47;25256:131;25382:4;25256:131;:::i;:::-;25248:139;;24975:419;;;:::o;25400:::-;25566:4;25604:2;25593:9;25589:18;25581:26;;25653:9;25647:4;25643:20;25639:1;25628:9;25624:17;25617:47;25681:131;25807:4;25681:131;:::i;:::-;25673:139;;25400:419;;;:::o;25825:::-;25991:4;26029:2;26018:9;26014:18;26006:26;;26078:9;26072:4;26068:20;26064:1;26053:9;26049:17;26042:47;26106:131;26232:4;26106:131;:::i;:::-;26098:139;;25825:419;;;:::o;26250:::-;26416:4;26454:2;26443:9;26439:18;26431:26;;26503:9;26497:4;26493:20;26489:1;26478:9;26474:17;26467:47;26531:131;26657:4;26531:131;:::i;:::-;26523:139;;26250:419;;;:::o;26675:::-;26841:4;26879:2;26868:9;26864:18;26856:26;;26928:9;26922:4;26918:20;26914:1;26903:9;26899:17;26892:47;26956:131;27082:4;26956:131;:::i;:::-;26948:139;;26675:419;;;:::o;27100:::-;27266:4;27304:2;27293:9;27289:18;27281:26;;27353:9;27347:4;27343:20;27339:1;27328:9;27324:17;27317:47;27381:131;27507:4;27381:131;:::i;:::-;27373:139;;27100:419;;;:::o;27525:::-;27691:4;27729:2;27718:9;27714:18;27706:26;;27778:9;27772:4;27768:20;27764:1;27753:9;27749:17;27742:47;27806:131;27932:4;27806:131;:::i;:::-;27798:139;;27525:419;;;:::o;27950:::-;28116:4;28154:2;28143:9;28139:18;28131:26;;28203:9;28197:4;28193:20;28189:1;28178:9;28174:17;28167:47;28231:131;28357:4;28231:131;:::i;:::-;28223:139;;27950:419;;;:::o;28375:::-;28541:4;28579:2;28568:9;28564:18;28556:26;;28628:9;28622:4;28618:20;28614:1;28603:9;28599:17;28592:47;28656:131;28782:4;28656:131;:::i;:::-;28648:139;;28375:419;;;:::o;28800:::-;28966:4;29004:2;28993:9;28989:18;28981:26;;29053:9;29047:4;29043:20;29039:1;29028:9;29024:17;29017:47;29081:131;29207:4;29081:131;:::i;:::-;29073:139;;28800:419;;;:::o;29225:::-;29391:4;29429:2;29418:9;29414:18;29406:26;;29478:9;29472:4;29468:20;29464:1;29453:9;29449:17;29442:47;29506:131;29632:4;29506:131;:::i;:::-;29498:139;;29225:419;;;:::o;29650:::-;29816:4;29854:2;29843:9;29839:18;29831:26;;29903:9;29897:4;29893:20;29889:1;29878:9;29874:17;29867:47;29931:131;30057:4;29931:131;:::i;:::-;29923:139;;29650:419;;;:::o;30075:::-;30241:4;30279:2;30268:9;30264:18;30256:26;;30328:9;30322:4;30318:20;30314:1;30303:9;30299:17;30292:47;30356:131;30482:4;30356:131;:::i;:::-;30348:139;;30075:419;;;:::o;30500:::-;30666:4;30704:2;30693:9;30689:18;30681:26;;30753:9;30747:4;30743:20;30739:1;30728:9;30724:17;30717:47;30781:131;30907:4;30781:131;:::i;:::-;30773:139;;30500:419;;;:::o;30925:::-;31091:4;31129:2;31118:9;31114:18;31106:26;;31178:9;31172:4;31168:20;31164:1;31153:9;31149:17;31142:47;31206:131;31332:4;31206:131;:::i;:::-;31198:139;;30925:419;;;:::o;31350:::-;31516:4;31554:2;31543:9;31539:18;31531:26;;31603:9;31597:4;31593:20;31589:1;31578:9;31574:17;31567:47;31631:131;31757:4;31631:131;:::i;:::-;31623:139;;31350:419;;;:::o;31775:::-;31941:4;31979:2;31968:9;31964:18;31956:26;;32028:9;32022:4;32018:20;32014:1;32003:9;31999:17;31992:47;32056:131;32182:4;32056:131;:::i;:::-;32048:139;;31775:419;;;:::o;32200:::-;32366:4;32404:2;32393:9;32389:18;32381:26;;32453:9;32447:4;32443:20;32439:1;32428:9;32424:17;32417:47;32481:131;32607:4;32481:131;:::i;:::-;32473:139;;32200:419;;;:::o;32625:::-;32791:4;32829:2;32818:9;32814:18;32806:26;;32878:9;32872:4;32868:20;32864:1;32853:9;32849:17;32842:47;32906:131;33032:4;32906:131;:::i;:::-;32898:139;;32625:419;;;:::o;33050:222::-;33143:4;33181:2;33170:9;33166:18;33158:26;;33194:71;33262:1;33251:9;33247:17;33238:6;33194:71;:::i;:::-;33050:222;;;;:::o;33278:129::-;33312:6;33339:20;;:::i;:::-;33329:30;;33368:33;33396:4;33388:6;33368:33;:::i;:::-;33278:129;;;:::o;33413:75::-;33446:6;33479:2;33473:9;33463:19;;33413:75;:::o;33494:307::-;33555:4;33645:18;33637:6;33634:30;33631:56;;;33667:18;;:::i;:::-;33631:56;33705:29;33727:6;33705:29;:::i;:::-;33697:37;;33789:4;33783;33779:15;33771:23;;33494:307;;;:::o;33807:308::-;33869:4;33959:18;33951:6;33948:30;33945:56;;;33981:18;;:::i;:::-;33945:56;34019:29;34041:6;34019:29;:::i;:::-;34011:37;;34103:4;34097;34093:15;34085:23;;33807:308;;;:::o;34121:132::-;34188:4;34211:3;34203:11;;34241:4;34236:3;34232:14;34224:22;;34121:132;;;:::o;34259:141::-;34308:4;34331:3;34323:11;;34354:3;34351:1;34344:14;34388:4;34385:1;34375:18;34367:26;;34259:141;;;:::o;34406:114::-;34473:6;34507:5;34501:12;34491:22;;34406:114;;;:::o;34526:98::-;34577:6;34611:5;34605:12;34595:22;;34526:98;;;:::o;34630:99::-;34682:6;34716:5;34710:12;34700:22;;34630:99;;;:::o;34735:113::-;34805:4;34837;34832:3;34828:14;34820:22;;34735:113;;;:::o;34854:184::-;34953:11;34987:6;34982:3;34975:19;35027:4;35022:3;35018:14;35003:29;;34854:184;;;;:::o;35044:168::-;35127:11;35161:6;35156:3;35149:19;35201:4;35196:3;35192:14;35177:29;;35044:168;;;;:::o;35218:147::-;35319:11;35356:3;35341:18;;35218:147;;;;:::o;35371:169::-;35455:11;35489:6;35484:3;35477:19;35529:4;35524:3;35520:14;35505:29;;35371:169;;;;:::o;35546:148::-;35648:11;35685:3;35670:18;;35546:148;;;;:::o;35700:305::-;35740:3;35759:20;35777:1;35759:20;:::i;:::-;35754:25;;35793:20;35811:1;35793:20;:::i;:::-;35788:25;;35947:1;35879:66;35875:74;35872:1;35869:81;35866:107;;;35953:18;;:::i;:::-;35866:107;35997:1;35994;35990:9;35983:16;;35700:305;;;;:::o;36011:185::-;36051:1;36068:20;36086:1;36068:20;:::i;:::-;36063:25;;36102:20;36120:1;36102:20;:::i;:::-;36097:25;;36141:1;36131:35;;36146:18;;:::i;:::-;36131:35;36188:1;36185;36181:9;36176:14;;36011:185;;;;:::o;36202:348::-;36242:7;36265:20;36283:1;36265:20;:::i;:::-;36260:25;;36299:20;36317:1;36299:20;:::i;:::-;36294:25;;36487:1;36419:66;36415:74;36412:1;36409:81;36404:1;36397:9;36390:17;36386:105;36383:131;;;36494:18;;:::i;:::-;36383:131;36542:1;36539;36535:9;36524:20;;36202:348;;;;:::o;36556:191::-;36596:4;36616:20;36634:1;36616:20;:::i;:::-;36611:25;;36650:20;36668:1;36650:20;:::i;:::-;36645:25;;36689:1;36686;36683:8;36680:34;;;36694:18;;:::i;:::-;36680:34;36739:1;36736;36732:9;36724:17;;36556:191;;;;:::o;36753:96::-;36790:7;36819:24;36837:5;36819:24;:::i;:::-;36808:35;;36753:96;;;:::o;36855:90::-;36889:7;36932:5;36925:13;36918:21;36907:32;;36855:90;;;:::o;36951:149::-;36987:7;37027:66;37020:5;37016:78;37005:89;;36951:149;;;:::o;37106:126::-;37143:7;37183:42;37176:5;37172:54;37161:65;;37106:126;;;:::o;37238:77::-;37275:7;37304:5;37293:16;;37238:77;;;:::o;37321:109::-;37357:7;37397:26;37390:5;37386:38;37375:49;;37321:109;;;:::o;37436:154::-;37520:6;37515:3;37510;37497:30;37582:1;37573:6;37568:3;37564:16;37557:27;37436:154;;;:::o;37596:307::-;37664:1;37674:113;37688:6;37685:1;37682:13;37674:113;;;37773:1;37768:3;37764:11;37758:18;37754:1;37749:3;37745:11;37738:39;37710:2;37707:1;37703:10;37698:15;;37674:113;;;37805:6;37802:1;37799:13;37796:101;;;37885:1;37876:6;37871:3;37867:16;37860:27;37796:101;37645:258;37596:307;;;:::o;37909:320::-;37953:6;37990:1;37984:4;37980:12;37970:22;;38037:1;38031:4;38027:12;38058:18;38048:81;;38114:4;38106:6;38102:17;38092:27;;38048:81;38176:2;38168:6;38165:14;38145:18;38142:38;38139:84;;;38195:18;;:::i;:::-;38139:84;37960:269;37909:320;;;:::o;38235:281::-;38318:27;38340:4;38318:27;:::i;:::-;38310:6;38306:40;38448:6;38436:10;38433:22;38412:18;38400:10;38397:34;38394:62;38391:88;;;38459:18;;:::i;:::-;38391:88;38499:10;38495:2;38488:22;38278:238;38235:281;;:::o;38522:233::-;38561:3;38584:24;38602:5;38584:24;:::i;:::-;38575:33;;38630:66;38623:5;38620:77;38617:103;;;38700:18;;:::i;:::-;38617:103;38747:1;38740:5;38736:13;38729:20;;38522:233;;;:::o;38761:176::-;38793:1;38810:20;38828:1;38810:20;:::i;:::-;38805:25;;38844:20;38862:1;38844:20;:::i;:::-;38839:25;;38883:1;38873:35;;38888:18;;:::i;:::-;38873:35;38929:1;38926;38922:9;38917:14;;38761:176;;;;:::o;38943:180::-;38991:77;38988:1;38981:88;39088:4;39085:1;39078:15;39112:4;39109:1;39102:15;39129:180;39177:77;39174:1;39167:88;39274:4;39271:1;39264:15;39298:4;39295:1;39288:15;39315:180;39363:77;39360:1;39353:88;39460:4;39457:1;39450:15;39484:4;39481:1;39474:15;39501:180;39549:77;39546:1;39539:88;39646:4;39643:1;39636:15;39670:4;39667:1;39660:15;39687:180;39735:77;39732:1;39725:88;39832:4;39829:1;39822:15;39856:4;39853:1;39846:15;39873:117;39982:1;39979;39972:12;39996:117;40105:1;40102;40095:12;40119:117;40228:1;40225;40218:12;40242:117;40351:1;40348;40341:12;40365:117;40474:1;40471;40464:12;40488:117;40597:1;40594;40587:12;40611:102;40652:6;40703:2;40699:7;40694:2;40687:5;40683:14;40679:28;40669:38;;40611:102;;;:::o;40719:237::-;40859:34;40855:1;40847:6;40843:14;40836:58;40928:20;40923:2;40915:6;40911:15;40904:45;40719:237;:::o;40962:225::-;41102:34;41098:1;41090:6;41086:14;41079:58;41171:8;41166:2;41158:6;41154:15;41147:33;40962:225;:::o;41193:224::-;41333:34;41329:1;41321:6;41317:14;41310:58;41402:7;41397:2;41389:6;41385:15;41378:32;41193:224;:::o;41423:178::-;41563:30;41559:1;41551:6;41547:14;41540:54;41423:178;:::o;41607:223::-;41747:34;41743:1;41735:6;41731:14;41724:58;41816:6;41811:2;41803:6;41799:15;41792:31;41607:223;:::o;41836:175::-;41976:27;41972:1;41964:6;41960:14;41953:51;41836:175;:::o;42017:228::-;42157:34;42153:1;42145:6;42141:14;42134:58;42226:11;42221:2;42213:6;42209:15;42202:36;42017:228;:::o;42251:249::-;42391:34;42387:1;42379:6;42375:14;42368:58;42460:32;42455:2;42447:6;42443:15;42436:57;42251:249;:::o;42506:182::-;42646:34;42642:1;42634:6;42630:14;42623:58;42506:182;:::o;42694:::-;42834:34;42830:1;42822:6;42818:14;42811:58;42694:182;:::o;42882:173::-;43022:25;43018:1;43010:6;43006:14;42999:49;42882:173;:::o;43061:234::-;43201:34;43197:1;43189:6;43185:14;43178:58;43270:17;43265:2;43257:6;43253:15;43246:42;43061:234;:::o;43301:166::-;43441:18;43437:1;43429:6;43425:14;43418:42;43301:166;:::o;43473:174::-;43613:26;43609:1;43601:6;43597:14;43590:50;43473:174;:::o;43653:170::-;43793:22;43789:1;43781:6;43777:14;43770:46;43653:170;:::o;43829:220::-;43969:34;43965:1;43957:6;43953:14;43946:58;44038:3;44033:2;44025:6;44021:15;44014:28;43829:220;:::o;44055:114::-;;:::o;44175:170::-;44315:22;44311:1;44303:6;44299:14;44292:46;44175:170;:::o;44351:229::-;44491:34;44487:1;44479:6;44475:14;44468:58;44560:12;44555:2;44547:6;44543:15;44536:37;44351:229;:::o;44586:233::-;44726:34;44722:1;44714:6;44710:14;44703:58;44795:16;44790:2;44782:6;44778:15;44771:41;44586:233;:::o;44825:175::-;44965:27;44961:1;44953:6;44949:14;44942:51;44825:175;:::o;45006:122::-;45079:24;45097:5;45079:24;:::i;:::-;45072:5;45069:35;45059:63;;45118:1;45115;45108:12;45059:63;45006:122;:::o;45134:116::-;45204:21;45219:5;45204:21;:::i;:::-;45197:5;45194:32;45184:60;;45240:1;45237;45230:12;45184:60;45134:116;:::o;45256:120::-;45328:23;45345:5;45328:23;:::i;:::-;45321:5;45318:34;45308:62;;45366:1;45363;45356:12;45308:62;45256:120;:::o;45382:122::-;45455:24;45473:5;45455:24;:::i;:::-;45448:5;45445:35;45435:63;;45494:1;45491;45484:12;45435:63;45382:122;:::o;45510:120::-;45582:23;45599:5;45582:23;:::i;:::-;45575:5;45572:34;45562:62;;45620:1;45617;45610:12;45562:62;45510:120;:::o

Swarm Source

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