ETH Price: $2,687.69 (-2.18%)

Token

Plethora Moons (PLMS)
 

Overview

Max Total Supply

333 PLMS

Holders

112

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
catharsisdesign.eth
Balance
1 PLMS
0x172c418b3bda2ad1226287376051f5749567d568
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:
NFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: nft-ne-fu2/contracts/lib/Init.sol


pragma solidity 0.8.4;

contract Init {
    bool public init;

    constructor(bool _init) {
        // set true if using a proxy
        init = _init;
    }

    modifier isNotInitialized() {
        require(!init, "Init: Contract already initialized");
        init = true;
        emit Initialized(msg.sender, true);
        _;
    }

    modifier isInitialized() {
        require(init, "Init: Contract not initialized");
        _;
    }

    event Initialized(address initializer, bool flag);
}
// 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/ERC20/extensions/draft-IERC20Permit.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: nft-ne-fu2/contracts/lib/IsOwner.sol


pragma solidity 0.8.4;

abstract contract IsOwner {
  function isOwner() internal view virtual returns (bool);
}
// File: nft-ne-fu2/contracts/lib/ERC20Recovery.sol


pragma solidity 0.8.4;



interface IERC20Recovery {
  function balanceOf(address) external view returns(uint256);
  function safeTransfer(address, uint256) external;
}

abstract contract ERC20Recovery is IsOwner {

    using SafeERC20 for IERC20Recovery;

    function recoverERC20(address _tokenAddress, address _receiver) external {
        require(isOwner(), "ERC20Recovery: Only the owner can recover ERC20");
        
        IERC20Recovery token = IERC20Recovery(_tokenAddress);
        
        uint256 amount = token.balanceOf(address(this));
        token.safeTransfer(_receiver, amount);

        emit ERC20RecoveryTransfer(
            _tokenAddress,
            msg.sender,
            _receiver,
            amount
        );
    }

    event ERC20RecoveryTransfer(
        address indexed token,
        address indexed sender,
        address indexed receiver,
        uint256 amount
    );
}
// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: nft-ne-fu2/contracts/lib/Pause.sol


pragma solidity 0.8.4;



abstract contract Pause is Pausable, IsOwner {

  function pause() external{
    require(isOwner(), "Pause: Only the owner can pause");
    _pause();
  }
  function unpause() external {
    require(isOwner(), "Pause: Only the owner can unpause");
    _unpause();
  }
}
// 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: nft-ne-fu2/contracts/lib/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: nft-ne-fu2/contracts/lib/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    function __ERC721A_Init(string memory name_, string memory symbol_)
        internal
    {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId)
        private
        view
        returns (uint256)
    {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed)
        private
        pure
        returns (TokenOwnership memory ownership)
    {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value)
        private
        pure
        returns (uint256 result)
    {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] +=
                quantity *
                ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 offset;
            do {
                emit Transfer(address(0), to, startTokenId + offset++);
            } while (offset < quantity);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (_addressToUint256(to) == 0) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value)
        internal
        pure
        returns (string memory ptr)
    {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

// File: nft-ne-fu2/contracts/NFT.sol



pragma solidity ^0.8.4;






contract NFT is ERC721A, Ownable, Pause, ERC20Recovery, Init {
    mapping(address => bool) mintWhitelist;
    mapping(address => bool) giveawayWhitelist;
    mapping(address => uint256) mintedFree;
    uint256 public maxSupply;
    uint256 public preMintPrice;
    uint256 public pubMintPrice;
    uint256 public maxMintAmount; // max allowed to mint
    uint256 public freeMintAmount;
    uint256 public giveawayAmountPerUser;
    uint256 public preMintStart;
    uint256 public publicMintStart;
    uint256 public publicMintEnd;
    bool public revealed = false;
    string public notRevealedUri;
    string public baseURI;

    constructor() Init(false) {}

    function initialize(
        string memory _name,
        string memory _symbol,
        string memory _notRevealedUri,
        uint256 _maxMintAmount,
        uint256 _freeMintAmount,
        uint256 _giveawayAmountPerUser,
        uint256 _preMintPrice,
        uint256 _pubMintPrice,
        uint256 _maxSupply,
        uint256 _preMintStart,
        uint256 _publicMintStart,
        uint256 _publicMintEnd
    ) external onlyOwner isNotInitialized {
        __ERC721A_Init(_name, _symbol);
        notRevealedUri = _notRevealedUri;
        maxMintAmount = _maxMintAmount;
        preMintPrice = _preMintPrice;
        pubMintPrice = _pubMintPrice;
        maxSupply = _maxSupply;
        freeMintAmount = _freeMintAmount;
        giveawayAmountPerUser = _giveawayAmountPerUser;
        preMintStart = _preMintStart;
        publicMintStart = _publicMintStart;
        publicMintEnd = _publicMintEnd;
    }

    // ================== modifier ==================

    modifier mintActive() {
        require(
            block.timestamp >= preMintStart ||
                block.timestamp >= publicMintStart,
            "Minting is not active yet"
        );
        require(block.timestamp <= publicMintEnd, "Minting ended");
        _;
    }

    // ================== public functions ==================

    function mint(address _to, uint256 _amount)
        external
        payable
        whenNotPaused
        isInitialized
        mintActive
    {
        require(
            _amount > 0 && _amount <= maxMintAmount,
            "Invalid mint amount!"
        );
        require(totalSupply() + _amount <= maxSupply, "Max supply exceeded!");
        require(
            balanceOf(msg.sender) + _amount <= maxMintAmount,
            "Max mint per wallet exceeded!"
        );

        if (block.timestamp <= publicMintStart)
            require(mintWhitelist[msg.sender], "Sender not whitelisted");

        uint256 amountToPay;
        bool isPreMint = block.timestamp >= preMintStart &&
            block.timestamp <= publicMintStart;

        amountToPay = _amount * (isPreMint ? preMintPrice : pubMintPrice);

        require(
            msg.value >= amountToPay || msg.sender == owner(),
            "Not enough ETH to pay for minting"
        );

        _safeMint(_to, _amount);
    }

    function claim(uint256 _amount)
        external
        payable
        whenNotPaused
        isInitialized
    {
        require(
            block.timestamp >= preMintStart &&
                block.timestamp < publicMintStart,
            "Claiming is not active"
        );
        require(
            _amount > 0 && _amount <= freeMintAmount,
            "Invalid mint amount!"
        );
        require(totalSupply() + _amount <= maxSupply, "Max supply exceeded!");
        require(
            mintedFree[msg.sender] + _amount <= giveawayAmountPerUser,
            "Free mint per wallet exceeded!"
        );
        require(giveawayWhitelist[msg.sender], "Sender not whitelisted");

        freeMintAmount -= _amount;
        mintedFree[msg.sender] += _amount;

        _safeMint(msg.sender, _amount);
    }

    //todo: implement giveaway mint

    function mintOwner(address _to, uint256 _amount)
        external
        whenNotPaused
        isInitialized
        onlyOwner
    {
        require(_amount > 0, "Invalid mint amount!");
        require(totalSupply() + _amount <= maxSupply, "Max supply exceeded!");
        _safeMint(_to, _amount);
    }

    function burn(uint256 _tokenId) external {
        require(
            ownerOf(_tokenId) == msg.sender,
            "Sender is nor owner of this token"
        );
        _burn(_tokenId);
    }

    // ================== internal functions ==================

    function _setBaseURI(string memory _baseUri) internal {
        baseURI = _baseUri;
        emit BaseURIChanged(_baseUri);
    }

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

    // ================== view functions ==================

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

        if (revealed == false) {
            return notRevealedUri;
        }

        return _baseURI();
    }

    // ================== owner functions ==================

    function setFreeMintAmount(uint256 _freeMintAmount)
        external
        onlyOwner
        isNotInitialized
    {
        freeMintAmount = _freeMintAmount;
        emit FreeMintAmountChanged(_freeMintAmount);
    }

    function reveal(string memory _baseUri) external onlyOwner {
        _setBaseURI(_baseUri);
        setRevealed(true);
    }

    function setBaseURI(string memory _baseUri) external onlyOwner {
        _setBaseURI(_baseUri);
    }

    function addManyToMintWhitelist(address[] memory _addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < _addresses.length; i++) {
            addToMintWhitelist(_addresses[i]);
        }
    }

    function removeManyFromMintWhitelist(address[] memory _addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < _addresses.length; i++) {
            removeFromMintWhitelist(_addresses[i]);
        }
    }

    function addToMintWhitelist(address _toAdd) public onlyOwner {
        mintWhitelist[_toAdd] = true;
        emit AddedToMintWhitelist(_toAdd);
    }

    function removeFromMintWhitelist(address _toRemove) public onlyOwner {
        mintWhitelist[_toRemove] = false;
        emit RemovedFromMintWhitelist(_toRemove);
    }

    function isWhitelistedMint(address _toCheck) external view returns (bool) {
        return mintWhitelist[_toCheck];
    }

    function addManyToGiveawayWhitelist(address[] memory _addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < _addresses.length; i++) {
            addToGiveawayWhitelist(_addresses[i]);
        }
    }

    function removeManyFromGiveawayWhitelist(address[] memory _addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < _addresses.length; i++) {
            removeFromGiveawayWhitelist(_addresses[i]);
        }
    }

    function addToGiveawayWhitelist(address _toAdd) public onlyOwner {
        giveawayWhitelist[_toAdd] = true;
        emit AddedToGiveawayWhitelist(_toAdd);
    }

    function removeFromGiveawayWhitelist(address _toRemove) public onlyOwner {
        giveawayWhitelist[_toRemove] = false;
        emit RemovedFromGiveawayWhitelist(_toRemove);
    }

    function isWhitelistedGiveaway(address _toCheck)
        external
        view
        returns (bool)
    {
        return giveawayWhitelist[_toCheck];
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
        require(
            _maxSupply >= totalSupply(),
            "Max supply must be equal or greater than totalSupply"
        );
        maxSupply = _maxSupply;

        emit MaxSupplySet(maxSupply);
    }

    function setMaxMintAmount(uint256 _maxMintAmount) external onlyOwner {
        require(_maxMintAmount > 0, "Max mint amount must be greater than 0");
        maxMintAmount = _maxMintAmount;

        emit MaxMintAmountSet(maxMintAmount);
    }

    function setRevealed(bool _revealed) public onlyOwner {
        revealed = _revealed;

        emit RevealedSet(revealed);
    }

    function setPreMintStart(uint256 _preMintStart) external onlyOwner {
        require(_preMintStart > 0, "Pre-mint start must be greater than 0");
        preMintStart = _preMintStart;

        emit PreMintStartSet(preMintStart);
    }

    function setPublicMintStart(uint256 _publicMintStart) external onlyOwner {
        require(
            _publicMintStart > 0 && _publicMintStart >= preMintStart,
            "Public mint start must be greater than 0"
        );
        publicMintStart = _publicMintStart;

        emit PublicMintStartSet(publicMintStart);
    }

    function setPublicMintEnd(uint256 _publicMintEnd) external onlyOwner {
        require(
            _publicMintEnd > 0 && _publicMintEnd > publicMintStart,
            "Public mint end must be greater than 0"
        );
        publicMintEnd = _publicMintEnd;

        emit PublicMintEndSet(publicMintEnd);
    }

    function setPreMintPrice(uint256 _price) external onlyOwner {
        require(_price > 0, "Price must be greater than 0");
        preMintPrice = _price;

        emit PreMintPriceSet(_price);
    }

    function setPublicMintPrice(uint256 _price) external onlyOwner {
        require(_price > 0, "Price must be greater than 0");
        pubMintPrice = _price;

        emit PublicMintPriceSet(_price);
    }

    function setGiveawayAmountPerUser(uint256 _giveawayAmountPerUser)
        external
        onlyOwner
    {
        giveawayAmountPerUser = _giveawayAmountPerUser;

        emit GiveawayAmountPerUserSet(giveawayAmountPerUser);
    }

    function withdraw() public onlyOwner {
        (bool success, ) = payable(owner()).call{value: address(this).balance}(
            ""
        );
        require(success);
    }
    
 	function getInfo(address _account) external view returns(
        bool canMint, uint256 price, uint256 amount, bool canClaim, uint256 claimAmount) {
            if(block.timestamp >= preMintStart || block.timestamp >= publicMintStart) {
                if(block.timestamp >= preMintStart && block.timestamp < publicMintStart) {
                    if(mintWhitelist[_account]) {
                        if(balanceOf(_account) >= maxMintAmount) {
                            amount = 0;
                            canMint = false;
                            price = 0;
                        } else {
                            amount = maxMintAmount - balanceOf(_account);
                            canMint = true;
                            price = preMintPrice;
                        }
                    } else {
                        canMint = false;
                        price = 0;
                        amount = 0;
                    }
                    if(giveawayWhitelist[_account] && freeMintAmount > 0) {
                        if(mintedFree[_account] >= giveawayAmountPerUser) {
                            canClaim = false;
                            claimAmount = 0;
                        } else {
                            canClaim = true;
                            claimAmount = giveawayAmountPerUser - mintedFree[_account];
                            if(claimAmount > freeMintAmount) {
                                claimAmount = freeMintAmount;
                                if(claimAmount == 0) canClaim = false;
                            }
                        }
                    } else {
                        canClaim = false;
                        claimAmount = 0;
                    }
                } else {
                    if(balanceOf(_account) >= maxMintAmount) {
                        amount = 0;
                        canMint = false;
                        price = 0;
                        canClaim = false;
                        claimAmount = 0;
                        
                    } else {
                        amount = maxMintAmount - balanceOf(_account);
                        canMint = true;
                        price = pubMintPrice;
                        canClaim = false;
                        claimAmount = 0;
                    }
                }
            } else {
                canMint = false; 
                price = 0;
                amount = 0;
                canClaim = false;
                claimAmount = 0;
            }
    }


    // ================== abstract implementations  ==================

    function isOwner() internal view override returns (bool) {
        return msg.sender == owner();
    }

    // ================== events ==================

    event MaxSupplySet(uint256 newMaxSupply);
    event AddedToMintWhitelist(address newWhitelist);
    event RemovedFromMintWhitelist(address removedWhitelist);
    event AddedToGiveawayWhitelist(address newWhitelist);
    event RemovedFromGiveawayWhitelist(address removedWhitelist);
    event MaxMintAmountSet(uint256 newMaxMintAmount);
    event RevealedSet(bool newRevealed);
    event BaseURIChanged(string newBaseURI);
    event FreeMintAmountChanged(uint256 newFreeMintAmount);
    event PreMintStartSet(uint256 newPreMintStart);
    event PublicMintStartSet(uint256 newPublicMintStart);
    event PublicMintEndSet(uint256 newPublicMintEnd);
    event PreMintPriceSet(uint256 newPresalePrice);
    event PublicMintPriceSet(uint256 newPublicSalePrice);
    event GiveawayAmountPerUserSet(uint256 newFreeMintAmount);
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWhitelist","type":"address"}],"name":"AddedToGiveawayWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWhitelist","type":"address"}],"name":"AddedToMintWhitelist","type":"event"},{"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":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20RecoveryTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newFreeMintAmount","type":"uint256"}],"name":"FreeMintAmountChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newFreeMintAmount","type":"uint256"}],"name":"GiveawayAmountPerUserSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"initializer","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxMintAmount","type":"uint256"}],"name":"MaxMintAmountSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"MaxSupplySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPresalePrice","type":"uint256"}],"name":"PreMintPriceSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPreMintStart","type":"uint256"}],"name":"PreMintStartSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPublicMintEnd","type":"uint256"}],"name":"PublicMintEndSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPublicSalePrice","type":"uint256"}],"name":"PublicMintPriceSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPublicMintStart","type":"uint256"}],"name":"PublicMintStartSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"removedWhitelist","type":"address"}],"name":"RemovedFromGiveawayWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"removedWhitelist","type":"address"}],"name":"RemovedFromMintWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"newRevealed","type":"bool"}],"name":"RevealedSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addManyToGiveawayWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addManyToMintWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_toAdd","type":"address"}],"name":"addToGiveawayWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_toAdd","type":"address"}],"name":"addToMintWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getInfo","outputs":[{"internalType":"bool","name":"canMint","type":"bool"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"canClaim","type":"bool"},{"internalType":"uint256","name":"claimAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawayAmountPerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"init","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"},{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"},{"internalType":"uint256","name":"_freeMintAmount","type":"uint256"},{"internalType":"uint256","name":"_giveawayAmountPerUser","type":"uint256"},{"internalType":"uint256","name":"_preMintPrice","type":"uint256"},{"internalType":"uint256","name":"_pubMintPrice","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_preMintStart","type":"uint256"},{"internalType":"uint256","name":"_publicMintStart","type":"uint256"},{"internalType":"uint256","name":"_publicMintEnd","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toCheck","type":"address"}],"name":"isWhitelistedGiveaway","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toCheck","type":"address"}],"name":"isWhitelistedMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMintStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pubMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_toRemove","type":"address"}],"name":"removeFromGiveawayWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_toRemove","type":"address"}],"name":"removeFromMintWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeManyFromGiveawayWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeManyFromMintWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintAmount","type":"uint256"}],"name":"setFreeMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_giveawayAmountPerUser","type":"uint256"}],"name":"setGiveawayAmountPerUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPreMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preMintStart","type":"uint256"}],"name":"setPreMintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMintEnd","type":"uint256"}],"name":"setPublicMintEnd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMintStart","type":"uint256"}],"name":"setPublicMintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setRevealed","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526015805460ff191690553480156200001b57600080fd5b50600062000029336200004c565b60088054911515600160a81b0261ffff60a01b199092169190911790556200009e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6134f880620000ae6000396000f3fe6080604052600436106103b85760003560e01c80636e13c99f116101f2578063a187c89b1161010d578063dce7e61b116100a0578063e985e9c51161006f578063e985e9c514610ac4578063e9c82e6c14610b0d578063f2fde38b14610b23578063ffdd5cf114610b4357600080fd5b8063dce7e61b14610a43578063e0a8085314610a63578063e1c7392a14610a83578063e308091314610aa457600080fd5b8063c435c7a1116100dc578063c435c7a1146109d7578063c87b56dd146109ed578063d5abeb0114610a0d578063da6405e114610a2357600080fd5b8063a187c89b14610961578063a22cb46514610977578063a5652b7914610997578063b88d4fde146109b757600080fd5b80638bf13cf1116101855780638ebb25ca116101545780638ebb25ca146108ec578063934a497a1461090c57806395d89b411461092c5780639a893b8d1461094157600080fd5b80638bf13cf1146108825780638cfec4c0146108a25780638da5cb5b146108b85780638df5378f146108d657600080fd5b806377d37b19116101c157806377d37b191461080d5780637f953a221461082d5780638456cb591461084d578063886f039a1461086257600080fd5b80636e13c99f146107985780636f8b44b0146107b857806370a08231146107d8578063715018a6146107f857600080fd5b80633a467e3d116102e257806342966c68116102755780635c975abb116102445780635c975abb146107245780635d82cf6e146107435780636352211e146107635780636c0360eb1461078357600080fd5b806342966c68146106aa5780634c261247146106ca57806351830227146106ea57806355f804b31461070457600080fd5b806340c10f19116102b157806340c10f191461061e578063411a321e1461063157806342842e0e1461066a578063428b72aa1461068a57600080fd5b80633a467e3d146105be5780633ccfd60b146105d45780633f4ba83a146105e9578063408cbf94146105fe57600080fd5b80630ab0d3571161035a57806323b872dd1161032957806323b872dd146105555780632a196e1b14610575578063340d2eed1461058b578063379607f5146105ab57600080fd5b80630ab0d357146104dc57806318160ddd146104fc5780631d1b7f1f1461051f578063239c70ae1461053f57600080fd5b8063081c8c4411610396578063081c8c441461044c578063088a4ed014610461578063095ea7b3146104835780630a219664146104a357600080fd5b806301ffc9a7146103bd57806306fdde03146103f2578063081812fc14610414575b600080fd5b3480156103c957600080fd5b506103dd6103d83660046130b9565b610b8f565b60405190151581526020015b60405180910390f35b3480156103fe57600080fd5b50610407610be1565b6040516103e991906132c3565b34801561042057600080fd5b5061043461042f36600461320b565b610c73565b6040516001600160a01b0390911681526020016103e9565b34801561045857600080fd5b50610407610cb7565b34801561046d57600080fd5b5061048161047c36600461320b565b610d45565b005b34801561048f57600080fd5b5061048161049e366004612fc7565b610ded565b3480156104af57600080fd5b506103dd6104be366004612e9e565b6001600160a01b03166000908152600a602052604090205460ff1690565b3480156104e857600080fd5b506104816104f7366004612ff0565b610e8d565b34801561050857600080fd5b50600154600054035b6040519081526020016103e9565b34801561052b57600080fd5b5061048161053a366004613124565b610ee7565b34801561054b57600080fd5b50610511600f5481565b34801561056157600080fd5b50610481610570366004612eea565b610fb5565b34801561058157600080fd5b5061051160145481565b34801561059757600080fd5b506104816105a6366004612ff0565b610fc5565b6104816105b936600461320b565b61101b565b3480156105ca57600080fd5b5061051160105481565b3480156105e057600080fd5b50610481611218565b3480156105f557600080fd5b50610481611291565b34801561060a57600080fd5b50610481610619366004612fc7565b6112f9565b61048161062c366004612fc7565b611395565b34801561063d57600080fd5b506103dd61064c366004612e9e565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561067657600080fd5b50610481610685366004612eea565b611649565b34801561069657600080fd5b506104816106a5366004612e9e565b611664565b3480156106b657600080fd5b506104816106c536600461320b565b6116c0565b3480156106d657600080fd5b506104816106e53660046130f1565b611733565b3480156106f657600080fd5b506015546103dd9060ff1681565b34801561071057600080fd5b5061048161071f3660046130f1565b61174e565b34801561073057600080fd5b50600854600160a01b900460ff166103dd565b34801561074f57600080fd5b5061048161075e36600461320b565b61175f565b34801561076f57600080fd5b5061043461077e36600461320b565b6117ec565b34801561078f57600080fd5b506104076117f7565b3480156107a457600080fd5b506104816107b3366004612e9e565b611804565b3480156107c457600080fd5b506104816107d336600461320b565b61185d565b3480156107e457600080fd5b506105116107f3366004612e9e565b61190d565b34801561080457600080fd5b50610481611953565b34801561081957600080fd5b5061048161082836600461320b565b611965565b34801561083957600080fd5b5061048161084836600461320b565b611a0e565b34801561085957600080fd5b50610481611ac1565b34801561086e57600080fd5b5061048161087d366004612eb8565b611b1d565b34801561088e57600080fd5b5061048161089d366004612e9e565b611cc8565b3480156108ae57600080fd5b5061051160135481565b3480156108c457600080fd5b506008546001600160a01b0316610434565b3480156108e257600080fd5b50610511600e5481565b3480156108f857600080fd5b5061048161090736600461320b565b611d21565b34801561091857600080fd5b50610481610927366004612ff0565b611dcd565b34801561093857600080fd5b50610407611e23565b34801561094d57600080fd5b5061048161095c366004612ff0565b611e32565b34801561096d57600080fd5b50610511600d5481565b34801561098357600080fd5b50610481610992366004612f9e565b611e88565b3480156109a357600080fd5b506104816109b236600461320b565b611f1e565b3480156109c357600080fd5b506104816109d2366004612f25565b611fb9565b3480156109e357600080fd5b5061051160125481565b3480156109f957600080fd5b50610407610a0836600461320b565b611ffd565b348015610a1957600080fd5b50610511600c5481565b348015610a2f57600080fd5b50610481610a3e36600461320b565b612110565b348015610a4f57600080fd5b50610481610a5e366004612e9e565b61219d565b348015610a6f57600080fd5b50610481610a7e36600461309f565b6121f9565b348015610a8f57600080fd5b506008546103dd90600160a81b900460ff1681565b348015610ab057600080fd5b50610481610abf36600461320b565b612248565b348015610ad057600080fd5b506103dd610adf366004612eb8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610b1957600080fd5b5061051160115481565b348015610b2f57600080fd5b50610481610b3e366004612e9e565b612285565b348015610b4f57600080fd5b50610b63610b5e366004612e9e565b6122fb565b60408051951515865260208601949094529284019190915215156060830152608082015260a0016103e9565b60006301ffc9a760e01b6001600160e01b031983161480610bc057506380ac58cd60e01b6001600160e01b03198316145b80610bdb5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610bf09061342a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1c9061342a565b8015610c695780601f10610c3e57610100808354040283529160200191610c69565b820191906000526020600020905b815481529060010190602001808311610c4c57829003601f168201915b5050505050905090565b6000610c7e826124c4565b610c9b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60168054610cc49061342a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf09061342a565b8015610d3d5780601f10610d1257610100808354040283529160200191610d3d565b820191906000526020600020905b815481529060010190602001808311610d2057829003601f168201915b505050505081565b610d4d6124eb565b60008111610db15760405162461bcd60e51b815260206004820152602660248201527f4d6178206d696e7420616d6f756e74206d75737420626520677265617465722060448201526507468616e20360d41b60648201526084015b60405180910390fd5b600f8190556040518181527fb76de10430cfde1d7dd54e1e915f8f57ec2a4ae0e29ebb4ff6a8694aeb2f9bfb906020015b60405180910390a150565b6000610df882612545565b9050336001600160a01b03821614610e3157610e148133610adf565b610e31576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610e956124eb565b60005b8151811015610ee357610ed1828281518110610ec457634e487b7160e01b600052603260045260246000fd5b6020026020010151611804565b80610edb81613465565b915050610e98565b5050565b610eef6124eb565b600854600160a81b900460ff1615610f195760405162461bcd60e51b8152600401610da890613369565b6008805460ff60a81b1916600160a81b17905560408051338152600160208201527f50ecb2b4c0539215b81f386729750a4ae9c019a71aba4e3fab9c76be33927230910160405180910390a1610f6f8c8c6125ad565b8951610f829060169060208d0190612d62565b50600f98909855600d94909455600e92909255600c55601093909355601191909155601291909155601355601455505050565b610fc08383836125dd565b505050565b610fcd6124eb565b60005b8151811015610ee357611009828281518110610ffc57634e487b7160e01b600052603260045260246000fd5b6020026020010151611664565b8061101381613465565b915050610fd0565b61102361278d565b600854600160a81b900460ff1661104c5760405162461bcd60e51b8152600401610da890613304565b601254421015801561105f575060135442105b6110a45760405162461bcd60e51b8152602060048201526016602482015275436c61696d696e67206973206e6f742061637469766560501b6044820152606401610da8565b6000811180156110b657506010548111155b6110d25760405162461bcd60e51b8152600401610da8906132d6565b600c54816110e36001546000540390565b6110ed91906133dc565b111561110b5760405162461bcd60e51b8152600401610da89061333b565b601154336000908152600b60205260409020546111299083906133dc565b11156111775760405162461bcd60e51b815260206004820152601e60248201527f46726565206d696e74207065722077616c6c65742065786365656465642100006044820152606401610da8565b336000908152600a602052604090205460ff166111cf5760405162461bcd60e51b815260206004820152601660248201527514d95b99195c881b9bdd081dda1a5d195b1a5cdd195960521b6044820152606401610da8565b80601060008282546111e19190613413565b9091555050336000908152600b6020526040812080548392906112059084906133dc565b90915550611215905033826127da565b50565b6112206124eb565b60006112346008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461127e576040519150601f19603f3d011682016040523d82523d6000602084013e611283565b606091505b505090508061121557600080fd5b6112996127f4565b6112ef5760405162461bcd60e51b815260206004820152602160248201527f50617573653a204f6e6c7920746865206f776e65722063616e20756e706175736044820152606560f81b6064820152608401610da8565b6112f7612821565b565b61130161278d565b600854600160a81b900460ff1661132a5760405162461bcd60e51b8152600401610da890613304565b6113326124eb565b600081116113525760405162461bcd60e51b8152600401610da8906132d6565b600c54816113636001546000540390565b61136d91906133dc565b111561138b5760405162461bcd60e51b8152600401610da89061333b565b610ee382826127da565b61139d61278d565b600854600160a81b900460ff166113c65760405162461bcd60e51b8152600401610da890613304565b601254421015806113d957506013544210155b6114255760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e67206973206e6f742061637469766520796574000000000000006044820152606401610da8565b6014544211156114675760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d1a5b99c8195b991959609a1b6044820152606401610da8565b6000811180156114795750600f548111155b6114955760405162461bcd60e51b8152600401610da8906132d6565b600c54816114a66001546000540390565b6114b091906133dc565b11156114ce5760405162461bcd60e51b8152600401610da89061333b565b600f54816114db3361190d565b6114e591906133dc565b11156115335760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c6574206578636565646564210000006044820152606401610da8565b6013544211611594573360009081526009602052604090205460ff166115945760405162461bcd60e51b815260206004820152601660248201527514d95b99195c881b9bdd081dda1a5d195b1a5cdd195960521b6044820152606401610da8565b60008060125442101580156115ab57506013544211155b9050806115ba57600e546115be565b600d545b6115c890846133f4565b915081341015806115e357506008546001600160a01b031633145b6116395760405162461bcd60e51b815260206004820152602160248201527f4e6f7420656e6f7567682045544820746f2070617920666f72206d696e74696e6044820152606760f81b6064820152608401610da8565b61164384846127da565b50505050565b610fc083838360405180602001604052806000815250611fb9565b61166c6124eb565b6001600160a01b038116600081815260096020908152604091829020805460ff1916600117905590519182527f746b6a036e6f032facafe268e0d5285d739e19a8152e7b757dc275c6c932aedd9101610de2565b336116ca826117ec565b6001600160a01b03161461172a5760405162461bcd60e51b815260206004820152602160248201527f53656e646572206973206e6f72206f776e6572206f66207468697320746f6b656044820152603760f91b6064820152608401610da8565b61121581612876565b61173b6124eb565b61174481612881565b61121560016121f9565b6117566124eb565b61121581612881565b6117676124eb565b600081116117b75760405162461bcd60e51b815260206004820152601c60248201527f5072696365206d7573742062652067726561746572207468616e2030000000006044820152606401610da8565b600e8190556040518181527fea35c277f8aa5dadb5606cb9381b835584be45718058635708d4e96947f3cacb90602001610de2565b6000610bdb82612545565b60178054610cc49061342a565b61180c6124eb565b6001600160a01b0381166000818152600a6020908152604091829020805460ff1916905590519182527f8f04f4dd0c37a7eb2515386d3ac730a4549f65518e666908c14c135c3977c1089101610de2565b6118656124eb565b600154600054038110156118d85760405162461bcd60e51b815260206004820152603460248201527f4d617820737570706c79206d75737420626520657175616c206f722067726561604482015273746572207468616e20746f74616c537570706c7960601b6064820152608401610da8565b600c8190556040518181527facc639f1ff310faf48650d02a82bd24c924e45a5050fc931245096ac57c309d990602001610de2565b60008161192d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61195b6124eb565b6112f760006128c4565b61196d6124eb565b60008111801561197e575060135481115b6119d95760405162461bcd60e51b815260206004820152602660248201527f5075626c6963206d696e7420656e64206d75737420626520677265617465722060448201526507468616e20360d41b6064820152608401610da8565b60148190556040518181527f09c71dcfca34b3e2873203d0b1737e142a8db07c57bf231f975fc20a91d6977190602001610de2565b611a166124eb565b600854600160a81b900460ff1615611a405760405162461bcd60e51b8152600401610da890613369565b6008805460ff60a81b1916600160a81b17905560408051338152600160208201527f50ecb2b4c0539215b81f386729750a4ae9c019a71aba4e3fab9c76be33927230910160405180910390a160108190556040518181527fc7962fd7f75ffaa53f144ad7598a447be65f37d386e970004ddf788c9356cb8d90602001610de2565b611ac96127f4565b611b155760405162461bcd60e51b815260206004820152601f60248201527f50617573653a204f6e6c7920746865206f776e65722063616e207061757365006044820152606401610da8565b6112f7612916565b611b256127f4565b611b895760405162461bcd60e51b815260206004820152602f60248201527f45524332305265636f766572793a204f6e6c7920746865206f776e657220636160448201526e06e207265636f76657220455243323608c1b6064820152608401610da8565b6040516370a0823160e01b815230600482015282906000906001600160a01b038316906370a082319060240160206040518083038186803b158015611bcd57600080fd5b505afa158015611be1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c059190613223565b60405163423f6cef60e01b81526001600160a01b038581166004830152602482018390529192509083169063423f6cef90604401600060405180830381600087803b158015611c5357600080fd5b505af1158015611c67573d6000803e3d6000fd5b50505050826001600160a01b0316336001600160a01b0316856001600160a01b03167f12e4c83f61d79b6a38835155b6d27632a2aa61651c246b8615a8c8acaefac29684604051611cba91815260200190565b60405180910390a450505050565b611cd06124eb565b6001600160a01b038116600081815260096020908152604091829020805460ff1916905590519182527f9f762ca8ac2f2193277abc4606bc3b6c132a0970f153bc930cec90107fc1e5d19101610de2565b611d296124eb565b600081118015611d3b57506012548110155b611d985760405162461bcd60e51b815260206004820152602860248201527f5075626c6963206d696e74207374617274206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610da8565b60138190556040518181527f25ea712149b65d4cbf189a80181f241365d61de8a681745e6ed9c42e4e3048f190602001610de2565b611dd56124eb565b60005b8151811015610ee357611e11828281518110611e0457634e487b7160e01b600052603260045260246000fd5b602002602001015161219d565b80611e1b81613465565b915050611dd8565b606060038054610bf09061342a565b611e3a6124eb565b60005b8151811015610ee357611e76828281518110611e6957634e487b7160e01b600052603260045260246000fd5b6020026020010151611cc8565b80611e8081613465565b915050611e3d565b6001600160a01b038216331415611eb25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611f266124eb565b60008111611f845760405162461bcd60e51b815260206004820152602560248201527f5072652d6d696e74207374617274206d75737420626520677265617465722074604482015264068616e20360dc1b6064820152608401610da8565b60128190556040518181527fba60a532212073fd45c20123de06d2aaa271d0014ca8db00383ec00dec791efb90602001610de2565b611fc48484846125dd565b6001600160a01b0383163b1561164357611fe084848484612959565b611643576040516368d2bf6b60e11b815260040160405180910390fd5b6060612008826124c4565b61206c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610da8565b60155460ff1661210857601680546120839061342a565b80601f01602080910402602001604051908101604052809291908181526020018280546120af9061342a565b80156120fc5780601f106120d1576101008083540402835291602001916120fc565b820191906000526020600020905b8154815290600101906020018083116120df57829003601f168201915b50505050509050919050565b610bdb612a51565b6121186124eb565b600081116121685760405162461bcd60e51b815260206004820152601c60248201527f5072696365206d7573742062652067726561746572207468616e2030000000006044820152606401610da8565b600d8190556040518181527f8a1660f8bb9ad24fdfb72ade95b5135cbcdf387d8778cb98b0048c50c914d49e90602001610de2565b6121a56124eb565b6001600160a01b0381166000818152600a6020908152604091829020805460ff1916600117905590519182527f873fc7c0a999673a8e2e9e9aa8180334661ed2fde4b2f1888fbcef173e5374ad9101610de2565b6122016124eb565b6015805460ff191682151590811790915560405160ff909116151581527fd8129688969dca209968f87d6d2c266c807235d4792c1d6d926614adf705694890602001610de2565b6122506124eb565b60118190556040518181527f7282529f7db2d4fb5bcb4f9ef87bd2f1c49e502a8f53567018f22f57bd9ee22990602001610de2565b61228d6124eb565b6001600160a01b0381166122f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610da8565b611215816128c4565b60008060008060006012544210158061231657506013544210155b156124ab57601254421015801561232e575060135442105b15612458576001600160a01b03861660009081526009602052604090205460ff161561239c57600f546123608761190d565b10612376576000925060009450600093506123a9565b61237f8661190d565b600f5461238c9190613413565b925060019450600d5493506123a9565b6000945060009350600092505b6001600160a01b0386166000908152600a602052604090205460ff1680156123d357506000601054115b1561244d576011546001600160a01b0387166000908152600b602052604090205410612404575060009050806124bb565b6001600160a01b0386166000908152600b60205260409020546011546001935061242e9190613413565b905060105481111561244857506010548061244857600091505b6124bb565b5060009050806124bb565b600f546124648761190d565b1061247d575060009350839250829150819050806124bb565b6124868661190d565b600f546124939190613413565b925060019450600e54935060009150600090506124bb565b5060009350839250829150819050805b91939590929450565b6000805482108015610bdb575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b031633146112f75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610da8565b60008160005481101561259457600081815260046020526040902054600160e01b8116612592575b8061258b57506000190160008181526004602052604090205461256d565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b81516125c0906002906020850190612d62565b5080516125d4906003906020840190612d62565b50600080555050565b60006125e882612545565b9050836001600160a01b0316816001600160a01b03161461261b5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b039081169190861633148061264b575061264b8633610adf565b8061265e57506001600160a01b03821633145b90508061267e57604051632ce44b5f60e11b815260040160405180910390fd5b8461269c57604051633a954ecd60e21b815260040160405180910390fd5b81156126bf57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b87178117909155831661274457600184016000818152600460205260409020546127425760005481146127425760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600854600160a01b900460ff16156112f75760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610da8565b610ee3828260405180602001604052806000815250612a60565b60006128086008546001600160a01b031690565b6001600160a01b0316336001600160a01b031614905090565b612829612acd565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b611215816000612b1d565b8051612894906017906020840190612d62565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610de291906132c3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61291e61278d565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586128593390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061298e903390899088908890600401613286565b602060405180830381600087803b1580156129a857600080fd5b505af19250505080156129d8575060408051601f3d908101601f191682019092526129d5918101906130d5565b60015b612a33573d808015612a06576040519150601f19603f3d011682016040523d82523d6000602084013e612a0b565b606091505b508051612a2b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060178054610bf09061342a565b612a6a8383612c90565b6001600160a01b0383163b15610fc0576000548281035b612a946000868380600101945086612959565b612ab1576040516368d2bf6b60e11b815260040160405180910390fd5b818110612a81578160005414612ac657600080fd5b5050505050565b600854600160a01b900460ff166112f75760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610da8565b6000612b2883612545565b60008481526006602052604090205490915081906001600160a01b03168315612b9e576000336001600160a01b0384161480612b695750612b698333610adf565b80612b7c57506001600160a01b03821633145b905080612b9c57604051632ce44b5f60e11b815260040160405180910390fd5b505b8015612bc157600085815260066020526040902080546001600160a01b03191690555b6001600160a01b038216600090815260056020908152604080832080546fffffffffffffffffffffffffffffffff01905587835260049091529020600360e01b4260a01b8417179055600160e11b8316612c495760018501600081815260046020526040902054612c47576000548114612c475760008181526004602052604090208490555b505b60405185906000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506001805481019055505050565b60005482612cb057604051622e076360e81b815260040160405180910390fd5b81612cce5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4828110612d1557500160005550565b828054612d6e9061342a565b90600052602060002090601f016020900481019282612d905760008555612dd6565b82601f10612da957805160ff1916838001178555612dd6565b82800160010185558215612dd6579182015b82811115612dd6578251825591602001919060010190612dbb565b50612de2929150612de6565b5090565b5b80821115612de25760008155600101612de7565b600067ffffffffffffffff831115612e1557612e15613496565b612e28601f8401601f19166020016133ab565b9050828152838383011115612e3c57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612e6a57600080fd5b919050565b80358015158114612e6a57600080fd5b600082601f830112612e8f578081fd5b61258b83833560208501612dfb565b600060208284031215612eaf578081fd5b61258b82612e53565b60008060408385031215612eca578081fd5b612ed383612e53565b9150612ee160208401612e53565b90509250929050565b600080600060608486031215612efe578081fd5b612f0784612e53565b9250612f1560208501612e53565b9150604084013590509250925092565b60008060008060808587031215612f3a578081fd5b612f4385612e53565b9350612f5160208601612e53565b925060408501359150606085013567ffffffffffffffff811115612f73578182fd5b8501601f81018713612f83578182fd5b612f9287823560208401612dfb565b91505092959194509250565b60008060408385031215612fb0578182fd5b612fb983612e53565b9150612ee160208401612e6f565b60008060408385031215612fd9578182fd5b612fe283612e53565b946020939093013593505050565b60006020808385031215613002578182fd5b823567ffffffffffffffff80821115613019578384fd5b818501915085601f83011261302c578384fd5b81358181111561303e5761303e613496565b8060051b915061304f8483016133ab565b8181528481019084860184860187018a1015613069578788fd5b8795505b838610156130925761307e81612e53565b83526001959095019491860191860161306d565b5098975050505050505050565b6000602082840312156130b0578081fd5b61258b82612e6f565b6000602082840312156130ca578081fd5b813561258b816134ac565b6000602082840312156130e6578081fd5b815161258b816134ac565b600060208284031215613102578081fd5b813567ffffffffffffffff811115613118578182fd5b612a4984828501612e7f565b6000806000806000806000806000806000806101808d8f031215613146578788fd5b67ffffffffffffffff8d35111561315b578788fd5b6131688e8e358f01612e7f565b9b5067ffffffffffffffff60208e01351115613182578788fd5b6131928e60208f01358f01612e7f565b9a5067ffffffffffffffff60408e013511156131ac578788fd5b6131bc8e60408f01358f01612e7f565b9b9e9a9d509a9b60608101359b5060808101359a60a08201359a5060c0820135995060e08201359850610100820135975061012082013596506101408201359550610160909101359350915050565b60006020828403121561321c578081fd5b5035919050565b600060208284031215613234578081fd5b5051919050565b60008151808452815b8181101561326057602081850181015186830182015201613244565b818111156132715782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906132b99083018461323b565b9695505050505050565b60208152600061258b602083018461323b565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252601e908201527f496e69743a20436f6e7472616374206e6f7420696e697469616c697a65640000604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526022908201527f496e69743a20436f6e747261637420616c726561647920696e697469616c697a604082015261195960f21b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156133d4576133d4613496565b604052919050565b600082198211156133ef576133ef613480565b500190565b600081600019048311821515161561340e5761340e613480565b500290565b60008282101561342557613425613480565b500390565b600181811c9082168061343e57607f821691505b6020821081141561345f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561347957613479613480565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461121557600080fdfea2646970667358221220882af7256aa14bd7436106aa81d1fc7295ff6c6948fd28c3f32d39158552b6be64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106103b85760003560e01c80636e13c99f116101f2578063a187c89b1161010d578063dce7e61b116100a0578063e985e9c51161006f578063e985e9c514610ac4578063e9c82e6c14610b0d578063f2fde38b14610b23578063ffdd5cf114610b4357600080fd5b8063dce7e61b14610a43578063e0a8085314610a63578063e1c7392a14610a83578063e308091314610aa457600080fd5b8063c435c7a1116100dc578063c435c7a1146109d7578063c87b56dd146109ed578063d5abeb0114610a0d578063da6405e114610a2357600080fd5b8063a187c89b14610961578063a22cb46514610977578063a5652b7914610997578063b88d4fde146109b757600080fd5b80638bf13cf1116101855780638ebb25ca116101545780638ebb25ca146108ec578063934a497a1461090c57806395d89b411461092c5780639a893b8d1461094157600080fd5b80638bf13cf1146108825780638cfec4c0146108a25780638da5cb5b146108b85780638df5378f146108d657600080fd5b806377d37b19116101c157806377d37b191461080d5780637f953a221461082d5780638456cb591461084d578063886f039a1461086257600080fd5b80636e13c99f146107985780636f8b44b0146107b857806370a08231146107d8578063715018a6146107f857600080fd5b80633a467e3d116102e257806342966c68116102755780635c975abb116102445780635c975abb146107245780635d82cf6e146107435780636352211e146107635780636c0360eb1461078357600080fd5b806342966c68146106aa5780634c261247146106ca57806351830227146106ea57806355f804b31461070457600080fd5b806340c10f19116102b157806340c10f191461061e578063411a321e1461063157806342842e0e1461066a578063428b72aa1461068a57600080fd5b80633a467e3d146105be5780633ccfd60b146105d45780633f4ba83a146105e9578063408cbf94146105fe57600080fd5b80630ab0d3571161035a57806323b872dd1161032957806323b872dd146105555780632a196e1b14610575578063340d2eed1461058b578063379607f5146105ab57600080fd5b80630ab0d357146104dc57806318160ddd146104fc5780631d1b7f1f1461051f578063239c70ae1461053f57600080fd5b8063081c8c4411610396578063081c8c441461044c578063088a4ed014610461578063095ea7b3146104835780630a219664146104a357600080fd5b806301ffc9a7146103bd57806306fdde03146103f2578063081812fc14610414575b600080fd5b3480156103c957600080fd5b506103dd6103d83660046130b9565b610b8f565b60405190151581526020015b60405180910390f35b3480156103fe57600080fd5b50610407610be1565b6040516103e991906132c3565b34801561042057600080fd5b5061043461042f36600461320b565b610c73565b6040516001600160a01b0390911681526020016103e9565b34801561045857600080fd5b50610407610cb7565b34801561046d57600080fd5b5061048161047c36600461320b565b610d45565b005b34801561048f57600080fd5b5061048161049e366004612fc7565b610ded565b3480156104af57600080fd5b506103dd6104be366004612e9e565b6001600160a01b03166000908152600a602052604090205460ff1690565b3480156104e857600080fd5b506104816104f7366004612ff0565b610e8d565b34801561050857600080fd5b50600154600054035b6040519081526020016103e9565b34801561052b57600080fd5b5061048161053a366004613124565b610ee7565b34801561054b57600080fd5b50610511600f5481565b34801561056157600080fd5b50610481610570366004612eea565b610fb5565b34801561058157600080fd5b5061051160145481565b34801561059757600080fd5b506104816105a6366004612ff0565b610fc5565b6104816105b936600461320b565b61101b565b3480156105ca57600080fd5b5061051160105481565b3480156105e057600080fd5b50610481611218565b3480156105f557600080fd5b50610481611291565b34801561060a57600080fd5b50610481610619366004612fc7565b6112f9565b61048161062c366004612fc7565b611395565b34801561063d57600080fd5b506103dd61064c366004612e9e565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561067657600080fd5b50610481610685366004612eea565b611649565b34801561069657600080fd5b506104816106a5366004612e9e565b611664565b3480156106b657600080fd5b506104816106c536600461320b565b6116c0565b3480156106d657600080fd5b506104816106e53660046130f1565b611733565b3480156106f657600080fd5b506015546103dd9060ff1681565b34801561071057600080fd5b5061048161071f3660046130f1565b61174e565b34801561073057600080fd5b50600854600160a01b900460ff166103dd565b34801561074f57600080fd5b5061048161075e36600461320b565b61175f565b34801561076f57600080fd5b5061043461077e36600461320b565b6117ec565b34801561078f57600080fd5b506104076117f7565b3480156107a457600080fd5b506104816107b3366004612e9e565b611804565b3480156107c457600080fd5b506104816107d336600461320b565b61185d565b3480156107e457600080fd5b506105116107f3366004612e9e565b61190d565b34801561080457600080fd5b50610481611953565b34801561081957600080fd5b5061048161082836600461320b565b611965565b34801561083957600080fd5b5061048161084836600461320b565b611a0e565b34801561085957600080fd5b50610481611ac1565b34801561086e57600080fd5b5061048161087d366004612eb8565b611b1d565b34801561088e57600080fd5b5061048161089d366004612e9e565b611cc8565b3480156108ae57600080fd5b5061051160135481565b3480156108c457600080fd5b506008546001600160a01b0316610434565b3480156108e257600080fd5b50610511600e5481565b3480156108f857600080fd5b5061048161090736600461320b565b611d21565b34801561091857600080fd5b50610481610927366004612ff0565b611dcd565b34801561093857600080fd5b50610407611e23565b34801561094d57600080fd5b5061048161095c366004612ff0565b611e32565b34801561096d57600080fd5b50610511600d5481565b34801561098357600080fd5b50610481610992366004612f9e565b611e88565b3480156109a357600080fd5b506104816109b236600461320b565b611f1e565b3480156109c357600080fd5b506104816109d2366004612f25565b611fb9565b3480156109e357600080fd5b5061051160125481565b3480156109f957600080fd5b50610407610a0836600461320b565b611ffd565b348015610a1957600080fd5b50610511600c5481565b348015610a2f57600080fd5b50610481610a3e36600461320b565b612110565b348015610a4f57600080fd5b50610481610a5e366004612e9e565b61219d565b348015610a6f57600080fd5b50610481610a7e36600461309f565b6121f9565b348015610a8f57600080fd5b506008546103dd90600160a81b900460ff1681565b348015610ab057600080fd5b50610481610abf36600461320b565b612248565b348015610ad057600080fd5b506103dd610adf366004612eb8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610b1957600080fd5b5061051160115481565b348015610b2f57600080fd5b50610481610b3e366004612e9e565b612285565b348015610b4f57600080fd5b50610b63610b5e366004612e9e565b6122fb565b60408051951515865260208601949094529284019190915215156060830152608082015260a0016103e9565b60006301ffc9a760e01b6001600160e01b031983161480610bc057506380ac58cd60e01b6001600160e01b03198316145b80610bdb5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610bf09061342a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1c9061342a565b8015610c695780601f10610c3e57610100808354040283529160200191610c69565b820191906000526020600020905b815481529060010190602001808311610c4c57829003601f168201915b5050505050905090565b6000610c7e826124c4565b610c9b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60168054610cc49061342a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf09061342a565b8015610d3d5780601f10610d1257610100808354040283529160200191610d3d565b820191906000526020600020905b815481529060010190602001808311610d2057829003601f168201915b505050505081565b610d4d6124eb565b60008111610db15760405162461bcd60e51b815260206004820152602660248201527f4d6178206d696e7420616d6f756e74206d75737420626520677265617465722060448201526507468616e20360d41b60648201526084015b60405180910390fd5b600f8190556040518181527fb76de10430cfde1d7dd54e1e915f8f57ec2a4ae0e29ebb4ff6a8694aeb2f9bfb906020015b60405180910390a150565b6000610df882612545565b9050336001600160a01b03821614610e3157610e148133610adf565b610e31576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610e956124eb565b60005b8151811015610ee357610ed1828281518110610ec457634e487b7160e01b600052603260045260246000fd5b6020026020010151611804565b80610edb81613465565b915050610e98565b5050565b610eef6124eb565b600854600160a81b900460ff1615610f195760405162461bcd60e51b8152600401610da890613369565b6008805460ff60a81b1916600160a81b17905560408051338152600160208201527f50ecb2b4c0539215b81f386729750a4ae9c019a71aba4e3fab9c76be33927230910160405180910390a1610f6f8c8c6125ad565b8951610f829060169060208d0190612d62565b50600f98909855600d94909455600e92909255600c55601093909355601191909155601291909155601355601455505050565b610fc08383836125dd565b505050565b610fcd6124eb565b60005b8151811015610ee357611009828281518110610ffc57634e487b7160e01b600052603260045260246000fd5b6020026020010151611664565b8061101381613465565b915050610fd0565b61102361278d565b600854600160a81b900460ff1661104c5760405162461bcd60e51b8152600401610da890613304565b601254421015801561105f575060135442105b6110a45760405162461bcd60e51b8152602060048201526016602482015275436c61696d696e67206973206e6f742061637469766560501b6044820152606401610da8565b6000811180156110b657506010548111155b6110d25760405162461bcd60e51b8152600401610da8906132d6565b600c54816110e36001546000540390565b6110ed91906133dc565b111561110b5760405162461bcd60e51b8152600401610da89061333b565b601154336000908152600b60205260409020546111299083906133dc565b11156111775760405162461bcd60e51b815260206004820152601e60248201527f46726565206d696e74207065722077616c6c65742065786365656465642100006044820152606401610da8565b336000908152600a602052604090205460ff166111cf5760405162461bcd60e51b815260206004820152601660248201527514d95b99195c881b9bdd081dda1a5d195b1a5cdd195960521b6044820152606401610da8565b80601060008282546111e19190613413565b9091555050336000908152600b6020526040812080548392906112059084906133dc565b90915550611215905033826127da565b50565b6112206124eb565b60006112346008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461127e576040519150601f19603f3d011682016040523d82523d6000602084013e611283565b606091505b505090508061121557600080fd5b6112996127f4565b6112ef5760405162461bcd60e51b815260206004820152602160248201527f50617573653a204f6e6c7920746865206f776e65722063616e20756e706175736044820152606560f81b6064820152608401610da8565b6112f7612821565b565b61130161278d565b600854600160a81b900460ff1661132a5760405162461bcd60e51b8152600401610da890613304565b6113326124eb565b600081116113525760405162461bcd60e51b8152600401610da8906132d6565b600c54816113636001546000540390565b61136d91906133dc565b111561138b5760405162461bcd60e51b8152600401610da89061333b565b610ee382826127da565b61139d61278d565b600854600160a81b900460ff166113c65760405162461bcd60e51b8152600401610da890613304565b601254421015806113d957506013544210155b6114255760405162461bcd60e51b815260206004820152601960248201527f4d696e74696e67206973206e6f742061637469766520796574000000000000006044820152606401610da8565b6014544211156114675760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d1a5b99c8195b991959609a1b6044820152606401610da8565b6000811180156114795750600f548111155b6114955760405162461bcd60e51b8152600401610da8906132d6565b600c54816114a66001546000540390565b6114b091906133dc565b11156114ce5760405162461bcd60e51b8152600401610da89061333b565b600f54816114db3361190d565b6114e591906133dc565b11156115335760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c6574206578636565646564210000006044820152606401610da8565b6013544211611594573360009081526009602052604090205460ff166115945760405162461bcd60e51b815260206004820152601660248201527514d95b99195c881b9bdd081dda1a5d195b1a5cdd195960521b6044820152606401610da8565b60008060125442101580156115ab57506013544211155b9050806115ba57600e546115be565b600d545b6115c890846133f4565b915081341015806115e357506008546001600160a01b031633145b6116395760405162461bcd60e51b815260206004820152602160248201527f4e6f7420656e6f7567682045544820746f2070617920666f72206d696e74696e6044820152606760f81b6064820152608401610da8565b61164384846127da565b50505050565b610fc083838360405180602001604052806000815250611fb9565b61166c6124eb565b6001600160a01b038116600081815260096020908152604091829020805460ff1916600117905590519182527f746b6a036e6f032facafe268e0d5285d739e19a8152e7b757dc275c6c932aedd9101610de2565b336116ca826117ec565b6001600160a01b03161461172a5760405162461bcd60e51b815260206004820152602160248201527f53656e646572206973206e6f72206f776e6572206f66207468697320746f6b656044820152603760f91b6064820152608401610da8565b61121581612876565b61173b6124eb565b61174481612881565b61121560016121f9565b6117566124eb565b61121581612881565b6117676124eb565b600081116117b75760405162461bcd60e51b815260206004820152601c60248201527f5072696365206d7573742062652067726561746572207468616e2030000000006044820152606401610da8565b600e8190556040518181527fea35c277f8aa5dadb5606cb9381b835584be45718058635708d4e96947f3cacb90602001610de2565b6000610bdb82612545565b60178054610cc49061342a565b61180c6124eb565b6001600160a01b0381166000818152600a6020908152604091829020805460ff1916905590519182527f8f04f4dd0c37a7eb2515386d3ac730a4549f65518e666908c14c135c3977c1089101610de2565b6118656124eb565b600154600054038110156118d85760405162461bcd60e51b815260206004820152603460248201527f4d617820737570706c79206d75737420626520657175616c206f722067726561604482015273746572207468616e20746f74616c537570706c7960601b6064820152608401610da8565b600c8190556040518181527facc639f1ff310faf48650d02a82bd24c924e45a5050fc931245096ac57c309d990602001610de2565b60008161192d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61195b6124eb565b6112f760006128c4565b61196d6124eb565b60008111801561197e575060135481115b6119d95760405162461bcd60e51b815260206004820152602660248201527f5075626c6963206d696e7420656e64206d75737420626520677265617465722060448201526507468616e20360d41b6064820152608401610da8565b60148190556040518181527f09c71dcfca34b3e2873203d0b1737e142a8db07c57bf231f975fc20a91d6977190602001610de2565b611a166124eb565b600854600160a81b900460ff1615611a405760405162461bcd60e51b8152600401610da890613369565b6008805460ff60a81b1916600160a81b17905560408051338152600160208201527f50ecb2b4c0539215b81f386729750a4ae9c019a71aba4e3fab9c76be33927230910160405180910390a160108190556040518181527fc7962fd7f75ffaa53f144ad7598a447be65f37d386e970004ddf788c9356cb8d90602001610de2565b611ac96127f4565b611b155760405162461bcd60e51b815260206004820152601f60248201527f50617573653a204f6e6c7920746865206f776e65722063616e207061757365006044820152606401610da8565b6112f7612916565b611b256127f4565b611b895760405162461bcd60e51b815260206004820152602f60248201527f45524332305265636f766572793a204f6e6c7920746865206f776e657220636160448201526e06e207265636f76657220455243323608c1b6064820152608401610da8565b6040516370a0823160e01b815230600482015282906000906001600160a01b038316906370a082319060240160206040518083038186803b158015611bcd57600080fd5b505afa158015611be1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c059190613223565b60405163423f6cef60e01b81526001600160a01b038581166004830152602482018390529192509083169063423f6cef90604401600060405180830381600087803b158015611c5357600080fd5b505af1158015611c67573d6000803e3d6000fd5b50505050826001600160a01b0316336001600160a01b0316856001600160a01b03167f12e4c83f61d79b6a38835155b6d27632a2aa61651c246b8615a8c8acaefac29684604051611cba91815260200190565b60405180910390a450505050565b611cd06124eb565b6001600160a01b038116600081815260096020908152604091829020805460ff1916905590519182527f9f762ca8ac2f2193277abc4606bc3b6c132a0970f153bc930cec90107fc1e5d19101610de2565b611d296124eb565b600081118015611d3b57506012548110155b611d985760405162461bcd60e51b815260206004820152602860248201527f5075626c6963206d696e74207374617274206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610da8565b60138190556040518181527f25ea712149b65d4cbf189a80181f241365d61de8a681745e6ed9c42e4e3048f190602001610de2565b611dd56124eb565b60005b8151811015610ee357611e11828281518110611e0457634e487b7160e01b600052603260045260246000fd5b602002602001015161219d565b80611e1b81613465565b915050611dd8565b606060038054610bf09061342a565b611e3a6124eb565b60005b8151811015610ee357611e76828281518110611e6957634e487b7160e01b600052603260045260246000fd5b6020026020010151611cc8565b80611e8081613465565b915050611e3d565b6001600160a01b038216331415611eb25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611f266124eb565b60008111611f845760405162461bcd60e51b815260206004820152602560248201527f5072652d6d696e74207374617274206d75737420626520677265617465722074604482015264068616e20360dc1b6064820152608401610da8565b60128190556040518181527fba60a532212073fd45c20123de06d2aaa271d0014ca8db00383ec00dec791efb90602001610de2565b611fc48484846125dd565b6001600160a01b0383163b1561164357611fe084848484612959565b611643576040516368d2bf6b60e11b815260040160405180910390fd5b6060612008826124c4565b61206c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610da8565b60155460ff1661210857601680546120839061342a565b80601f01602080910402602001604051908101604052809291908181526020018280546120af9061342a565b80156120fc5780601f106120d1576101008083540402835291602001916120fc565b820191906000526020600020905b8154815290600101906020018083116120df57829003601f168201915b50505050509050919050565b610bdb612a51565b6121186124eb565b600081116121685760405162461bcd60e51b815260206004820152601c60248201527f5072696365206d7573742062652067726561746572207468616e2030000000006044820152606401610da8565b600d8190556040518181527f8a1660f8bb9ad24fdfb72ade95b5135cbcdf387d8778cb98b0048c50c914d49e90602001610de2565b6121a56124eb565b6001600160a01b0381166000818152600a6020908152604091829020805460ff1916600117905590519182527f873fc7c0a999673a8e2e9e9aa8180334661ed2fde4b2f1888fbcef173e5374ad9101610de2565b6122016124eb565b6015805460ff191682151590811790915560405160ff909116151581527fd8129688969dca209968f87d6d2c266c807235d4792c1d6d926614adf705694890602001610de2565b6122506124eb565b60118190556040518181527f7282529f7db2d4fb5bcb4f9ef87bd2f1c49e502a8f53567018f22f57bd9ee22990602001610de2565b61228d6124eb565b6001600160a01b0381166122f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610da8565b611215816128c4565b60008060008060006012544210158061231657506013544210155b156124ab57601254421015801561232e575060135442105b15612458576001600160a01b03861660009081526009602052604090205460ff161561239c57600f546123608761190d565b10612376576000925060009450600093506123a9565b61237f8661190d565b600f5461238c9190613413565b925060019450600d5493506123a9565b6000945060009350600092505b6001600160a01b0386166000908152600a602052604090205460ff1680156123d357506000601054115b1561244d576011546001600160a01b0387166000908152600b602052604090205410612404575060009050806124bb565b6001600160a01b0386166000908152600b60205260409020546011546001935061242e9190613413565b905060105481111561244857506010548061244857600091505b6124bb565b5060009050806124bb565b600f546124648761190d565b1061247d575060009350839250829150819050806124bb565b6124868661190d565b600f546124939190613413565b925060019450600e54935060009150600090506124bb565b5060009350839250829150819050805b91939590929450565b6000805482108015610bdb575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b031633146112f75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610da8565b60008160005481101561259457600081815260046020526040902054600160e01b8116612592575b8061258b57506000190160008181526004602052604090205461256d565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b81516125c0906002906020850190612d62565b5080516125d4906003906020840190612d62565b50600080555050565b60006125e882612545565b9050836001600160a01b0316816001600160a01b03161461261b5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b039081169190861633148061264b575061264b8633610adf565b8061265e57506001600160a01b03821633145b90508061267e57604051632ce44b5f60e11b815260040160405180910390fd5b8461269c57604051633a954ecd60e21b815260040160405180910390fd5b81156126bf57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b87178117909155831661274457600184016000818152600460205260409020546127425760005481146127425760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600854600160a01b900460ff16156112f75760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610da8565b610ee3828260405180602001604052806000815250612a60565b60006128086008546001600160a01b031690565b6001600160a01b0316336001600160a01b031614905090565b612829612acd565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b611215816000612b1d565b8051612894906017906020840190612d62565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610de291906132c3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61291e61278d565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586128593390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061298e903390899088908890600401613286565b602060405180830381600087803b1580156129a857600080fd5b505af19250505080156129d8575060408051601f3d908101601f191682019092526129d5918101906130d5565b60015b612a33573d808015612a06576040519150601f19603f3d011682016040523d82523d6000602084013e612a0b565b606091505b508051612a2b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060178054610bf09061342a565b612a6a8383612c90565b6001600160a01b0383163b15610fc0576000548281035b612a946000868380600101945086612959565b612ab1576040516368d2bf6b60e11b815260040160405180910390fd5b818110612a81578160005414612ac657600080fd5b5050505050565b600854600160a01b900460ff166112f75760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610da8565b6000612b2883612545565b60008481526006602052604090205490915081906001600160a01b03168315612b9e576000336001600160a01b0384161480612b695750612b698333610adf565b80612b7c57506001600160a01b03821633145b905080612b9c57604051632ce44b5f60e11b815260040160405180910390fd5b505b8015612bc157600085815260066020526040902080546001600160a01b03191690555b6001600160a01b038216600090815260056020908152604080832080546fffffffffffffffffffffffffffffffff01905587835260049091529020600360e01b4260a01b8417179055600160e11b8316612c495760018501600081815260046020526040902054612c47576000548114612c475760008181526004602052604090208490555b505b60405185906000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506001805481019055505050565b60005482612cb057604051622e076360e81b815260040160405180910390fd5b81612cce5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4828110612d1557500160005550565b828054612d6e9061342a565b90600052602060002090601f016020900481019282612d905760008555612dd6565b82601f10612da957805160ff1916838001178555612dd6565b82800160010185558215612dd6579182015b82811115612dd6578251825591602001919060010190612dbb565b50612de2929150612de6565b5090565b5b80821115612de25760008155600101612de7565b600067ffffffffffffffff831115612e1557612e15613496565b612e28601f8401601f19166020016133ab565b9050828152838383011115612e3c57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612e6a57600080fd5b919050565b80358015158114612e6a57600080fd5b600082601f830112612e8f578081fd5b61258b83833560208501612dfb565b600060208284031215612eaf578081fd5b61258b82612e53565b60008060408385031215612eca578081fd5b612ed383612e53565b9150612ee160208401612e53565b90509250929050565b600080600060608486031215612efe578081fd5b612f0784612e53565b9250612f1560208501612e53565b9150604084013590509250925092565b60008060008060808587031215612f3a578081fd5b612f4385612e53565b9350612f5160208601612e53565b925060408501359150606085013567ffffffffffffffff811115612f73578182fd5b8501601f81018713612f83578182fd5b612f9287823560208401612dfb565b91505092959194509250565b60008060408385031215612fb0578182fd5b612fb983612e53565b9150612ee160208401612e6f565b60008060408385031215612fd9578182fd5b612fe283612e53565b946020939093013593505050565b60006020808385031215613002578182fd5b823567ffffffffffffffff80821115613019578384fd5b818501915085601f83011261302c578384fd5b81358181111561303e5761303e613496565b8060051b915061304f8483016133ab565b8181528481019084860184860187018a1015613069578788fd5b8795505b838610156130925761307e81612e53565b83526001959095019491860191860161306d565b5098975050505050505050565b6000602082840312156130b0578081fd5b61258b82612e6f565b6000602082840312156130ca578081fd5b813561258b816134ac565b6000602082840312156130e6578081fd5b815161258b816134ac565b600060208284031215613102578081fd5b813567ffffffffffffffff811115613118578182fd5b612a4984828501612e7f565b6000806000806000806000806000806000806101808d8f031215613146578788fd5b67ffffffffffffffff8d35111561315b578788fd5b6131688e8e358f01612e7f565b9b5067ffffffffffffffff60208e01351115613182578788fd5b6131928e60208f01358f01612e7f565b9a5067ffffffffffffffff60408e013511156131ac578788fd5b6131bc8e60408f01358f01612e7f565b9b9e9a9d509a9b60608101359b5060808101359a60a08201359a5060c0820135995060e08201359850610100820135975061012082013596506101408201359550610160909101359350915050565b60006020828403121561321c578081fd5b5035919050565b600060208284031215613234578081fd5b5051919050565b60008151808452815b8181101561326057602081850181015186830182015201613244565b818111156132715782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906132b99083018461323b565b9695505050505050565b60208152600061258b602083018461323b565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252601e908201527f496e69743a20436f6e7472616374206e6f7420696e697469616c697a65640000604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526022908201527f496e69743a20436f6e747261637420616c726561647920696e697469616c697a604082015261195960f21b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156133d4576133d4613496565b604052919050565b600082198211156133ef576133ef613480565b500190565b600081600019048311821515161561340e5761340e613480565b500290565b60008282101561342557613425613480565b500390565b600181811c9082168061343e57607f821691505b6020821081141561345f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561347957613479613480565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461121557600080fdfea2646970667358221220882af7256aa14bd7436106aa81d1fc7295ff6c6948fd28c3f32d39158552b6be64736f6c63430008040033

Deployed Bytecode Sourcemap

64533:13979:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39653:665;;;;;;;;;;-1:-1:-1;39653:665:0;;;;;:::i;:::-;;:::i;:::-;;;9051:14:1;;9044:22;9026:41;;9014:2;8999:18;39653:665:0;;;;;;;;44919:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47057:245::-;;;;;;;;;;-1:-1:-1;47057:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7781:32:1;;;7763:51;;7751:2;7736:18;47057:245:0;7718:102:1;65117:28:0;;;;;;;;;;;;;:::i;72623:247::-;;;;;;;;;;-1:-1:-1;72623:247:0;;;;;:::i;:::-;;:::i;:::-;;46576:415;;;;;;;;;;-1:-1:-1;46576:415:0;;;;;:::i;:::-;;:::i;72161:163::-;;;;;;;;;;-1:-1:-1;72161:163:0;;;;;:::i;:::-;-1:-1:-1;;;;;72289:27:0;72260:4;72289:27;;;:17;:27;;;;;;;;;72161:163;71543:247;;;;;;;;;;-1:-1:-1;71543:247:0;;;;;:::i;:::-;;:::i;38707:315::-;;;;;;;;;;-1:-1:-1;38973:12:0;;38760:7;38957:13;:28;38707:315;;;19778:25:1;;;19766:2;19751:18;38707:315:0;19733:76:1;65218:935:0;;;;;;;;;;-1:-1:-1;65218:935:0;;;;;:::i;:::-;;:::i;64839:28::-;;;;;;;;;;;;;;;;48066:170;;;;;;;;;;-1:-1:-1;48066:170:0;;;;;:::i;:::-;;:::i;65047:28::-;;;;;;;;;;;;;;;;70344:229;;;;;;;;;;-1:-1:-1;70344:229:0;;;;;:::i;:::-;;:::i;67605:843::-;;;;;;:::i;:::-;;:::i;64897:29::-;;;;;;;;;;;;;;;;74611:181;;;;;;;;;;;;;:::i;23834:113::-;;;;;;;;;;;;;:::i;68495:314::-;;;;;;;;;;-1:-1:-1;68495:314:0;;;;;:::i;:::-;;:::i;66574:1023::-;;;;;;:::i;:::-;;:::i;71167:123::-;;;;;;;;;;-1:-1:-1;71167:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;71259:23:0;71235:4;71259:23;;;:13;:23;;;;;;;;;71167:123;48307:185;;;;;;;;;;-1:-1:-1;48307:185:0;;;;;:::i;:::-;;:::i;70828:152::-;;;;;;;;;;-1:-1:-1;70828:152:0;;;;;:::i;:::-;;:::i;68817:200::-;;;;;;;;;;-1:-1:-1;68817:200:0;;;;;:::i;:::-;;:::i;70098:127::-;;;;;;;;;;-1:-1:-1;70098:127:0;;;;;:::i;:::-;;:::i;65082:28::-;;;;;;;;;;-1:-1:-1;65082:28:0;;;;;;;;70233:103;;;;;;;;;;-1:-1:-1;70233:103:0;;;;;:::i;:::-;;:::i;22611:86::-;;;;;;;;;;-1:-1:-1;22682:7:0;;-1:-1:-1;;;22682:7:0;;;;22611:86;;74148:209;;;;;;;;;;-1:-1:-1;74148:209:0;;;;;:::i;:::-;;:::i;44708:144::-;;;;;;;;;;-1:-1:-1;44708:144:0;;;;;:::i;:::-;;:::i;65152:21::-;;;;;;;;;;;;;:::i;71970:183::-;;;;;;;;;;-1:-1:-1;71970:183:0;;;;;:::i;:::-;;:::i;72332:283::-;;;;;;;;;;-1:-1:-1;72332:283:0;;;;;:::i;:::-;;:::i;40382:234::-;;;;;;;;;;-1:-1:-1;40382:234:0;;;;;:::i;:::-;;:::i;25835:103::-;;;;;;;;;;;;;:::i;73609:320::-;;;;;;;;;;-1:-1:-1;73609:320:0;;;;;:::i;:::-;;:::i;69865:225::-;;;;;;;;;;-1:-1:-1;69865:225:0;;;;;:::i;:::-;;:::i;23724:106::-;;;;;;;;;;;;;:::i;19374:498::-;;;;;;;;;;-1:-1:-1;19374:498:0;;;;;:::i;:::-;;:::i;70988:171::-;;;;;;;;;;-1:-1:-1;70988:171:0;;;;;:::i;:::-;;:::i;65010:30::-;;;;;;;;;;;;;;;;25187:87;;;;;;;;;;-1:-1:-1;25260:6:0;;-1:-1:-1;;;;;25260:6:0;25187:87;;64805:27;;;;;;;;;;;;;;;;73265:336;;;;;;;;;;-1:-1:-1;73265:336:0;;;;;:::i;:::-;;:::i;71298:237::-;;;;;;;;;;-1:-1:-1;71298:237:0;;;;;:::i;:::-;;:::i;45088:104::-;;;;;;;;;;;;;:::i;70581:239::-;;;;;;;;;;-1:-1:-1;70581:239:0;;;;;:::i;:::-;;:::i;64771:27::-;;;;;;;;;;;;;;;;47374:340;;;;;;;;;;-1:-1:-1;47374:340:0;;;;;:::i;:::-;;:::i;73018:239::-;;;;;;;;;;-1:-1:-1;73018:239:0;;;;;:::i;:::-;;:::i;48563:396::-;;;;;;;;;;-1:-1:-1;48563:396:0;;;;;:::i;:::-;;:::i;64976:27::-;;;;;;;;;;;;;;;;69410:383;;;;;;;;;;-1:-1:-1;69410:383:0;;;;;:::i;:::-;;:::i;64740:24::-;;;;;;;;;;;;;;;;73937:203;;;;;;;;;;-1:-1:-1;73937:203:0;;;;;:::i;:::-;;:::i;71798:164::-;;;;;;;;;;-1:-1:-1;71798:164:0;;;;;:::i;:::-;;:::i;72878:132::-;;;;;;;;;;-1:-1:-1;72878:132:0;;;;;:::i;:::-;;:::i;95:16::-;;;;;;;;;;-1:-1:-1;95:16:0;;;;-1:-1:-1;;;95:16:0;;;;;;74365:238;;;;;;;;;;-1:-1:-1;74365:238:0;;;;;:::i;:::-;;:::i;47785:214::-;;;;;;;;;;-1:-1:-1;47785:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;47956:25:0;;;47927:4;47956:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;47785:214;64933:36;;;;;;;;;;;;;;;;26093:201;;;;;;;;;;-1:-1:-1;26093:201:0;;;;;:::i;:::-;;:::i;74802:2624::-;;;;;;;;;;-1:-1:-1;74802:2624:0;;;;;:::i;:::-;;:::i;:::-;;;;9350:14:1;;9343:22;9325:41;;9397:2;9382:18;;9375:34;;;;9425:18;;;9418:34;;;;9495:14;9488:22;9483:2;9468:18;;9461:50;9542:3;9527:19;;9520:35;9312:3;9297:19;74802:2624:0;9279:282:1;39653:665:0;39783:4;-1:-1:-1;;;;;;;;;40088:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;40165:25:0;;;40088:102;:179;;;-1:-1:-1;;;;;;;;;;40242:25:0;;;40088:179;40068:199;39653:665;-1:-1:-1;;39653:665:0:o;44919:100::-;44973:13;45006:5;44999:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44919:100;:::o;47057:245::-;47161:7;47191:16;47199:7;47191;:16::i;:::-;47186:64;;47216:34;;-1:-1:-1;;;47216:34:0;;;;;;;;;;;47186:64;-1:-1:-1;47270:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;47270:24:0;;47057:245::o;65117:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72623:247::-;25073:13;:11;:13::i;:::-;72728:1:::1;72711:14;:18;72703:69;;;::::0;-1:-1:-1;;;72703:69:0;;15680:2:1;72703:69:0::1;::::0;::::1;15662:21:1::0;15719:2;15699:18;;;15692:30;15758:34;15738:18;;;15731:62;-1:-1:-1;;;15809:18:1;;;15802:36;15855:19;;72703:69:0::1;;;;;;;;;72783:13;:30:::0;;;72831:31:::1;::::0;19778:25:1;;;72831:31:0::1;::::0;19766:2:1;19751:18;72831:31:0::1;;;;;;;;72623:247:::0;:::o;46576:415::-;46649:13;46681:27;46700:7;46681:18;:27::i;:::-;46649:61;-1:-1:-1;62328:10:0;-1:-1:-1;;;;;46727:28:0;;;46723:175;;46775:44;46792:5;62328:10;47785:214;:::i;46775:44::-;46770:128;;46847:35;;-1:-1:-1;;;46847:35:0;;;;;;;;;;;46770:128;46910:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;46910:29:0;-1:-1:-1;;;;;46910:29:0;;;;;;;;;46955:28;;46910:24;;46955:28;;;;;;;46576:415;;;:::o;71543:247::-;25073:13;:11;:13::i;:::-;71671:9:::1;71666:117;71690:10;:17;71686:1;:21;71666:117;;;71729:42;71757:10;71768:1;71757:13;;;;;;-1:-1:-1::0;;;71757:13:0::1;;;;;;;;;;;;;;;71729:27;:42::i;:::-;71709:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71666:117;;;;71543:247:::0;:::o;65218:935::-;25073:13;:11;:13::i;:::-;269:4:::1;::::0;-1:-1:-1;;;269:4:0;::::1;;;268:5;260:52;;;;-1:-1:-1::0;;;260:52:0::1;;;;;;;:::i;:::-;323:4;:11:::0;;-1:-1:-1;;;;323:11:0::1;-1:-1:-1::0;;;323:11:0::1;::::0;;350:29:::1;::::0;;362:10:::1;8486:51:1::0;;-1:-1:-1;8568:2:1;8553:18;;8546:50;350:29:0::1;::::0;8459:18:1;350:29:0::1;;;;;;;65695:30:::2;65710:5;65717:7;65695:14;:30::i;:::-;65736:32:::0;;::::2;::::0;:14:::2;::::0;:32:::2;::::0;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;65779:13:0::2;:30:::0;;;;65820:12:::2;:28:::0;;;;65859:12:::2;:28:::0;;;;65898:9:::2;:22:::0;65931:14:::2;:32:::0;;;;65974:21:::2;:46:::0;;;;66031:12:::2;:28:::0;;;;66070:15:::2;:34:::0;66115:13:::2;:30:::0;-1:-1:-1;;;65218:935:0:o;48066:170::-;48200:28;48210:4;48216:2;48220:7;48200:9;:28::i;:::-;48066:170;;;:::o;70344:229::-;25073:13;:11;:13::i;:::-;70463:9:::1;70458:108;70482:10;:17;70478:1;:21;70458:108;;;70521:33;70540:10;70551:1;70540:13;;;;;;-1:-1:-1::0;;;70540:13:0::1;;;;;;;;;;;;;;;70521:18;:33::i;:::-;70501:3:::0;::::1;::::0;::::1;:::i;:::-;;;;70458:108;;67605:843:::0;22216:19;:17;:19::i;:::-;451:4:::1;::::0;-1:-1:-1;;;451:4:0;::::1;;;443:47;;;;-1:-1:-1::0;;;443:47:0::1;;;;;;;:::i;:::-;67775:12:::2;;67756:15;:31;;:85;;;;;67826:15;;67808;:33;67756:85;67734:157;;;::::0;-1:-1:-1;;;67734:157:0;;15329:2:1;67734:157:0::2;::::0;::::2;15311:21:1::0;15368:2;15348:18;;;15341:30;-1:-1:-1;;;15387:18:1;;;15380:52;15449:18;;67734:157:0::2;15301:172:1::0;67734:157:0::2;67934:1;67924:7;:11;:40;;;;;67950:14;;67939:7;:25;;67924:40;67902:110;;;;-1:-1:-1::0;;;67902:110:0::2;;;;;;;:::i;:::-;68058:9;;68047:7;68031:13;38973:12:::0;;38760:7;38957:13;:28;;38707:315;68031:13:::2;:23;;;;:::i;:::-;:36;;68023:69;;;;-1:-1:-1::0;;;68023:69:0::2;;;;;;;:::i;:::-;68161:21;::::0;68136:10:::2;68125:22;::::0;;;:10:::2;:22;::::0;;;;;:32:::2;::::0;68150:7;;68125:32:::2;:::i;:::-;:57;;68103:137;;;::::0;-1:-1:-1;;;68103:137:0;;10748:2:1;68103:137:0::2;::::0;::::2;10730:21:1::0;10787:2;10767:18;;;10760:30;10826:32;10806:18;;;10799:60;10876:18;;68103:137:0::2;10720:180:1::0;68103:137:0::2;68277:10;68259:29;::::0;;;:17:::2;:29;::::0;;;;;::::2;;68251:64;;;::::0;-1:-1:-1;;;68251:64:0;;19080:2:1;68251:64:0::2;::::0;::::2;19062:21:1::0;19119:2;19099:18;;;19092:30;-1:-1:-1;;;19138:18:1;;;19131:52;19200:18;;68251:64:0::2;19052:172:1::0;68251:64:0::2;68346:7;68328:14;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;68375:10:0::2;68364:22;::::0;;;:10:::2;:22;::::0;;;;:33;;68390:7;;68364:22;:33:::2;::::0;68390:7;;68364:33:::2;:::i;:::-;::::0;;;-1:-1:-1;68410:30:0::2;::::0;-1:-1:-1;68420:10:0::2;68432:7:::0;68410:9:::2;:30::i;:::-;67605:843:::0;:::o;74611:181::-;25073:13;:11;:13::i;:::-;74660:12:::1;74686:7;25260:6:::0;;-1:-1:-1;;;;;25260:6:0;;25187:87;74686:7:::1;-1:-1:-1::0;;;;;74678:21:0::1;74707;74678:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74659:98;;;74776:7;74768:16;;;::::0;::::1;23834:113:::0;23877:9;:7;:9::i;:::-;23869:55;;;;-1:-1:-1;;;23869:55:0;;17961:2:1;23869:55:0;;;17943:21:1;18000:2;17980:18;;;17973:30;18039:34;18019:18;;;18012:62;-1:-1:-1;;;18090:18:1;;;18083:31;18131:19;;23869:55:0;17933:223:1;23869:55:0;23931:10;:8;:10::i;:::-;23834:113::o;68495:314::-;22216:19;:17;:19::i;:::-;451:4:::1;::::0;-1:-1:-1;;;451:4:0;::::1;;;443:47;;;;-1:-1:-1::0;;;443:47:0::1;;;;;;;:::i;:::-;25073:13:::2;:11;:13::i;:::-;68661:1:::3;68651:7;:11;68643:44;;;;-1:-1:-1::0;;;68643:44:0::3;;;;;;;:::i;:::-;68733:9;;68722:7;68706:13;38973:12:::0;;38760:7;38957:13;:28;;38707:315;68706:13:::3;:23;;;;:::i;:::-;:36;;68698:69;;;;-1:-1:-1::0;;;68698:69:0::3;;;;;;;:::i;:::-;68778:23;68788:3;68793:7;68778:9;:23::i;66574:1023::-:0;22216:19;:17;:19::i;:::-;451:4:::1;::::0;-1:-1:-1;;;451:4:0;::::1;;;443:47;;;;-1:-1:-1::0;;;443:47:0::1;;;;;;;:::i;:::-;66292:12:::2;;66273:15;:31;;:86;;;;66344:15;;66325;:34;;66273:86;66251:161;;;::::0;-1:-1:-1;;;66251:161:0;;14975:2:1;66251:161:0::2;::::0;::::2;14957:21:1::0;15014:2;14994:18;;;14987:30;15053:27;15033:18;;;15026:55;15098:18;;66251:161:0::2;14947:175:1::0;66251:161:0::2;66450:13;;66431:15;:32;;66423:58;;;::::0;-1:-1:-1;;;66423:58:0;;16864:2:1;66423:58:0::2;::::0;::::2;16846:21:1::0;16903:2;16883:18;;;16876:30;-1:-1:-1;;;16922:18:1;;;16915:43;16975:18;;66423:58:0::2;16836:163:1::0;66423:58:0::2;66767:1:::3;66757:7;:11;:39;;;;;66783:13;;66772:7;:24;;66757:39;66735:109;;;;-1:-1:-1::0;;;66735:109:0::3;;;;;;;:::i;:::-;66890:9;;66879:7;66863:13;38973:12:::0;;38760:7;38957:13;:28;;38707:315;66863:13:::3;:23;;;;:::i;:::-;:36;;66855:69;;;;-1:-1:-1::0;;;66855:69:0::3;;;;;;;:::i;:::-;66992:13;;66981:7;66957:21;66967:10;66957:9;:21::i;:::-;:31;;;;:::i;:::-;:48;;66935:127;;;::::0;-1:-1:-1;;;66935:127:0;;13052:2:1;66935:127:0::3;::::0;::::3;13034:21:1::0;13091:2;13071:18;;;13064:30;13130:31;13110:18;;;13103:59;13179:18;;66935:127:0::3;13024:179:1::0;66935:127:0::3;67098:15;;67079;:34;67075:113;;67150:10;67136:25;::::0;;;:13:::3;:25;::::0;;;;;::::3;;67128:60;;;::::0;-1:-1:-1;;;67128:60:0;;19080:2:1;67128:60:0::3;::::0;::::3;19062:21:1::0;19119:2;19099:18;;;19092:30;-1:-1:-1;;;19138:18:1;;;19131:52;19200:18;;67128:60:0::3;19052:172:1::0;67128:60:0::3;67201:19;67231:14:::0;67267:12:::3;;67248:15;:31;;:82;;;;;67315:15;;67296;:34;;67248:82;67231:99;;67368:9;:39;;67395:12;;67368:39;;;67380:12;;67368:39;67357:51;::::0;:7;:51:::3;:::i;:::-;67343:65;;67456:11;67443:9;:24;;:49;;;-1:-1:-1::0;25260:6:0;;-1:-1:-1;;;;;25260:6:0;67471:10:::3;:21;67443:49;67421:132;;;::::0;-1:-1:-1;;;67421:132:0;;14573:2:1;67421:132:0::3;::::0;::::3;14555:21:1::0;14612:2;14592:18;;;14585:30;14651:34;14631:18;;;14624:62;-1:-1:-1;;;14702:18:1;;;14695:31;14743:19;;67421:132:0::3;14545:223:1::0;67421:132:0::3;67566:23;67576:3;67581:7;67566:9;:23::i;:::-;66492:1;;66574:1023:::0;;:::o;48307:185::-;48445:39;48462:4;48468:2;48472:7;48445:39;;;;;;;;;;;;:16;:39::i;70828:152::-;25073:13;:11;:13::i;:::-;-1:-1:-1;;;;;70900:21:0;::::1;;::::0;;;:13:::1;:21;::::0;;;;;;;;:28;;-1:-1:-1;;70900:28:0::1;70924:4;70900:28;::::0;;70944;;7763:51:1;;;70944:28:0::1;::::0;7736:18:1;70944:28:0::1;7718:102:1::0;68817:200:0;68912:10;68891:17;68899:8;68891:7;:17::i;:::-;-1:-1:-1;;;;;68891:31:0;;68869:114;;;;-1:-1:-1;;;68869:114:0;;14171:2:1;68869:114:0;;;14153:21:1;14210:2;14190:18;;;14183:30;14249:34;14229:18;;;14222:62;-1:-1:-1;;;14300:18:1;;;14293:31;14341:19;;68869:114:0;14143:223:1;68869:114:0;68994:15;69000:8;68994:5;:15::i;70098:127::-;25073:13;:11;:13::i;:::-;70168:21:::1;70180:8;70168:11;:21::i;:::-;70200:17;70212:4;70200:11;:17::i;70233:103::-:0;25073:13;:11;:13::i;:::-;70307:21:::1;70319:8;70307:11;:21::i;74148:209::-:0;25073:13;:11;:13::i;:::-;74239:1:::1;74230:6;:10;74222:51;;;::::0;-1:-1:-1;;;74222:51:0;;18363:2:1;74222:51:0::1;::::0;::::1;18345:21:1::0;18402:2;18382:18;;;18375:30;18441;18421:18;;;18414:58;18489:18;;74222:51:0::1;18335:178:1::0;74222:51:0::1;74284:12;:21:::0;;;74323:26:::1;::::0;19778:25:1;;;74323:26:0::1;::::0;19766:2:1;19751:18;74323:26:0::1;19733:76:1::0;44708:144:0;44772:7;44815:27;44834:7;44815:18;:27::i;65152:21::-;;;;;;;:::i;71970:183::-;25073:13;:11;:13::i;:::-;-1:-1:-1;;;;;72054:28:0;::::1;72085:5;72054:28:::0;;;:17:::1;:28;::::0;;;;;;;;:36;;-1:-1:-1;;72054:36:0::1;::::0;;72106:39;;7763:51:1;;;72106:39:0::1;::::0;7736:18:1;72106:39:0::1;7718:102:1::0;72332:283:0;25073:13;:11;:13::i;:::-;38973:12;;38760:7;38957:13;:28;72426:10:::1;:27;;72404:129;;;::::0;-1:-1:-1;;;72404:129:0;;11863:2:1;72404:129:0::1;::::0;::::1;11845:21:1::0;11902:2;11882:18;;;11875:30;11941:34;11921:18;;;11914:62;-1:-1:-1;;;11992:18:1;;;11985:50;12052:19;;72404:129:0::1;11835:242:1::0;72404:129:0::1;72544:9;:22:::0;;;72584:23:::1;::::0;19778:25:1;;;72584:23:0::1;::::0;19766:2:1;19751:18;72584:23:0::1;19733:76:1::0;40382:234:0;40446:7;40488:5;40466:70;;40508:28;;-1:-1:-1;;;40508:28:0;;;;;;;;;;;40466:70;-1:-1:-1;;;;;;40554:25:0;;;;;:18;:25;;;;;;35642:13;40554:54;;40382:234::o;25835:103::-;25073:13;:11;:13::i;:::-;25900:30:::1;25927:1;25900:18;:30::i;73609:320::-:0;25073:13;:11;:13::i;:::-;73728:1:::1;73711:14;:18;:54;;;;;73750:15;;73733:14;:32;73711:54;73689:142;;;::::0;-1:-1:-1;;;73689:142:0;;9992:2:1;73689:142:0::1;::::0;::::1;9974:21:1::0;10031:2;10011:18;;;10004:30;10070:34;10050:18;;;10043:62;-1:-1:-1;;;10121:18:1;;;10114:36;10167:19;;73689:142:0::1;9964:228:1::0;73689:142:0::1;73842:13;:30:::0;;;73890:31:::1;::::0;19778:25:1;;;73890:31:0::1;::::0;19766:2:1;19751:18;73890:31:0::1;19733:76:1::0;69865:225:0;25073:13;:11;:13::i;:::-;269:4:::1;::::0;-1:-1:-1;;;269:4:0;::::1;;;268:5;260:52;;;;-1:-1:-1::0;;;260:52:0::1;;;;;;;:::i;:::-;323:4;:11:::0;;-1:-1:-1;;;;323:11:0::1;-1:-1:-1::0;;;323:11:0::1;::::0;;350:29:::1;::::0;;362:10:::1;8486:51:1::0;;-1:-1:-1;8568:2:1;8553:18;;8546:50;350:29:0::1;::::0;8459:18:1;350:29:0::1;;;;;;;69996:14:::2;:32:::0;;;70044:38:::2;::::0;19778:25:1;;;70044:38:0::2;::::0;19766:2:1;19751:18;70044:38:0::2;19733:76:1::0;23724:106:0;23764:9;:7;:9::i;:::-;23756:53;;;;-1:-1:-1;;;23756:53:0;;18720:2:1;23756:53:0;;;18702:21:1;18759:2;18739:18;;;18732:30;18798:33;18778:18;;;18771:61;18849:18;;23756:53:0;18692:181:1;23756:53:0;23816:8;:6;:8::i;19374:498::-;19466:9;:7;:9::i;:::-;19458:69;;;;-1:-1:-1;;;19458:69:0;;13755:2:1;19458:69:0;;;13737:21:1;13794:2;13774:18;;;13767:30;13833:34;13813:18;;;13806:62;-1:-1:-1;;;13884:18:1;;;13877:45;13939:19;;19458:69:0;13727:237:1;19458:69:0;19638:30;;-1:-1:-1;;;19638:30:0;;19662:4;19638:30;;;7763:51:1;19586:13:0;;19548:20;;-1:-1:-1;;;;;19638:15:0;;;;;7736:18:1;;19638:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19679:37;;-1:-1:-1;;;19679:37:0;;-1:-1:-1;;;;;8799:32:1;;;19679:37:0;;;8781:51:1;8848:18;;;8841:34;;;19621:47:0;;-1:-1:-1;19679:18:0;;;;;;8754::1;;19679:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19823:9;-1:-1:-1;;;;;19734:130:0;19798:10;-1:-1:-1;;;;;19734:130:0;19770:13;-1:-1:-1;;;;;19734:130:0;;19847:6;19734:130;;;;19778:25:1;;19766:2;19751:18;;19733:76;19734:130:0;;;;;;;;19374:498;;;;:::o;70988:171::-;25073:13;:11;:13::i;:::-;-1:-1:-1;;;;;71068:24:0;::::1;71095:5;71068:24:::0;;;:13:::1;:24;::::0;;;;;;;;:32;;-1:-1:-1;;71068:32:0::1;::::0;;71116:35;;7763:51:1;;;71116:35:0::1;::::0;7736:18:1;71116:35:0::1;7718:102:1::0;73265:336:0;25073:13;:11;:13::i;:::-;73390:1:::1;73371:16;:20;:56;;;;;73415:12;;73395:16;:32;;73371:56;73349:146;;;::::0;-1:-1:-1;;;73349:146:0;;12284:2:1;73349:146:0::1;::::0;::::1;12266:21:1::0;12323:2;12303:18;;;12296:30;12362:34;12342:18;;;12335:62;-1:-1:-1;;;12413:18:1;;;12406:38;12461:19;;73349:146:0::1;12256:230:1::0;73349:146:0::1;73506:15;:34:::0;;;73558:35:::1;::::0;19778:25:1;;;73558:35:0::1;::::0;19766:2:1;19751:18;73558:35:0::1;19733:76:1::0;71298:237:0;25073:13;:11;:13::i;:::-;71421:9:::1;71416:112;71440:10;:17;71436:1;:21;71416:112;;;71479:37;71502:10;71513:1;71502:13;;;;;;-1:-1:-1::0;;;71502:13:0::1;;;;;;;;;;;;;;;71479:22;:37::i;:::-;71459:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71416:112;;45088:104:::0;45144:13;45177:7;45170:14;;;;;:::i;70581:239::-;25073:13;:11;:13::i;:::-;70705:9:::1;70700:113;70724:10;:17;70720:1;:21;70700:113;;;70763:38;70787:10;70798:1;70787:13;;;;;;-1:-1:-1::0;;;70787:13:0::1;;;;;;;;;;;;;;;70763:23;:38::i;:::-;70743:3:::0;::::1;::::0;::::1;:::i;:::-;;;;70700:113;;47374:340:::0;-1:-1:-1;;;;;47505:31:0;;62328:10;47505:31;47501:61;;;47545:17;;-1:-1:-1;;;47545:17:0;;;;;;;;;;;47501:61;62328:10;47575:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;47575:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;47575:60:0;;;;;;;;;;47651:55;;9026:41:1;;;47575:49:0;;62328:10;47651:55;;8999:18:1;47651:55:0;;;;;;;47374:340;;:::o;73018:239::-;25073:13;:11;:13::i;:::-;73120:1:::1;73104:13;:17;73096:67;;;::::0;-1:-1:-1;;;73096:67:0;;17206:2:1;73096:67:0::1;::::0;::::1;17188:21:1::0;17245:2;17225:18;;;17218:30;17284:34;17264:18;;;17257:62;-1:-1:-1;;;17335:18:1;;;17328:35;17380:19;;73096:67:0::1;17178:227:1::0;73096:67:0::1;73174:12;:28:::0;;;73220:29:::1;::::0;19778:25:1;;;73220:29:0::1;::::0;19766:2:1;19751:18;73220:29:0::1;19733:76:1::0;48563:396:0;48730:28;48740:4;48746:2;48750:7;48730:9;:28::i;:::-;-1:-1:-1;;;;;48773:14:0;;;:19;48769:183;;48812:56;48843:4;48849:2;48853:7;48862:5;48812:30;:56::i;:::-;48807:145;;48896:40;;-1:-1:-1;;;48896:40:0;;;;;;;;;;;69410:383;69528:13;69581:16;69589:7;69581;:16::i;:::-;69559:113;;;;-1:-1:-1;;;69559:113:0;;16448:2:1;69559:113:0;;;16430:21:1;16487:2;16467:18;;;16460:30;16526:34;16506:18;;;16499:62;-1:-1:-1;;;16577:18:1;;;16570:45;16632:19;;69559:113:0;16420:237:1;69559:113:0;69689:8;;;;69685:71;;69730:14;69723:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69410:383;;;:::o;69685:71::-;69775:10;:8;:10::i;73937:203::-;25073:13;:11;:13::i;:::-;74025:1:::1;74016:6;:10;74008:51;;;::::0;-1:-1:-1;;;74008:51:0;;18363:2:1;74008:51:0::1;::::0;::::1;18345:21:1::0;18402:2;18382:18;;;18375:30;18441;18421:18;;;18414:58;18489:18;;74008:51:0::1;18335:178:1::0;74008:51:0::1;74070:12;:21:::0;;;74109:23:::1;::::0;19778:25:1;;;74109:23:0::1;::::0;19766:2:1;19751:18;74109:23:0::1;19733:76:1::0;71798:164:0;25073:13;:11;:13::i;:::-;-1:-1:-1;;;;;71874:25:0;::::1;;::::0;;;:17:::1;:25;::::0;;;;;;;;:32;;-1:-1:-1;;71874:32:0::1;71902:4;71874:32;::::0;;71922;;7763:51:1;;;71922:32:0::1;::::0;7736:18:1;71922:32:0::1;7718:102:1::0;72878:132:0;25073:13;:11;:13::i;:::-;72943:8:::1;:20:::0;;-1:-1:-1;;72943:20:0::1;::::0;::::1;;::::0;;::::1;::::0;;;72981:21:::1;::::0;72943:20:::1;72993:8:::0;;;9051:14:1;9044:22;9026:41;;72981:21:0::1;::::0;9014:2:1;8999:18;72981:21:0::1;8981:92:1::0;74365:238:0;25073:13;:11;:13::i;:::-;74484:21:::1;:46:::0;;;74548:47:::1;::::0;19778:25:1;;;74548:47:0::1;::::0;19766:2:1;19751:18;74548:47:0::1;19733:76:1::0;26093:201:0;25073:13;:11;:13::i;:::-;-1:-1:-1;;;;;26182:22:0;::::1;26174:73;;;::::0;-1:-1:-1;;;26174:73:0;;11107:2:1;26174:73:0::1;::::0;::::1;11089:21:1::0;11146:2;11126:18;;;11119:30;11185:34;11165:18;;;11158:62;-1:-1:-1;;;11236:18:1;;;11229:36;11282:19;;26174:73:0::1;11079:228:1::0;26174:73:0::1;26258:28;26277:8;26258:18;:28::i;74802:2624::-:0;74869:12;74883:13;74898:14;74914:13;74929:19;74987:12;;74968:15;:31;;:69;;;;75022:15;;75003;:34;;74968:69;74965:2454;;;75080:12;;75061:15;:31;;:68;;;;;75114:15;;75096;:33;75061:68;75058:2163;;;-1:-1:-1;;;;;75157:23:0;;;;;;:13;:23;;;;;;;;75154:624;;;75235:13;;75212:19;75222:8;75212:9;:19::i;:::-;:36;75209:401;;75290:1;75281:10;;75332:5;75322:15;;75376:1;75368:9;;75154:624;;75209:401;75467:19;75477:8;75467:9;:19::i;:::-;75451:13;;:35;;;;:::i;:::-;75442:44;;75527:4;75517:14;;75570:12;;75562:20;;75154:624;;;75676:5;75666:15;;75716:1;75708:9;;75753:1;75744:10;;75154:624;-1:-1:-1;;;;;75803:27:0;;;;;;:17;:27;;;;;;;;:49;;;;;75851:1;75834:14;;:18;75803:49;75800:789;;;75908:21;;-1:-1:-1;;;;;75884:20:0;;;;;;:10;:20;;;;;;:45;75881:570;;-1:-1:-1;75973:5:0;;-1:-1:-1;75973:5:0;74965:2454;;75881:570;-1:-1:-1;;;;;76173:20:0;;;;;;:10;:20;;;;;;76149:21;;76100:4;;-1:-1:-1;76149:44:0;;76173:20;76149:44;:::i;:::-;76135:58;;76241:14;;76227:11;:28;76224:200;;;-1:-1:-1;76306:14:0;;76358:16;76355:37;;76387:5;76376:16;;76355:37;74965:2454;;75800:789;-1:-1:-1;76518:5:0;;-1:-1:-1;76518:5:0;74965:2454;;75058:2163;76663:13;;76640:19;76650:8;76640:9;:19::i;:::-;:36;76637:565;;-1:-1:-1;76714:1:0;;-1:-1:-1;76714:1:0;;-1:-1:-1;76714:1:0;;-1:-1:-1;76714:1:0;;-1:-1:-1;76714:1:0;74965:2454;;76637:565;76986:19;76996:8;76986:9;:19::i;:::-;76970:13;;:35;;;;:::i;:::-;76961:44;;77042:4;77032:14;;77081:12;;77073:20;;77131:5;77120:16;;77177:1;77163:15;;74965:2454;;;-1:-1:-1;77271:5:0;;-1:-1:-1;77271:5:0;;-1:-1:-1;77271:5:0;;-1:-1:-1;77271:5:0;;-1:-1:-1;77271:5:0;74965:2454;74802:2624;;;;;;;:::o;49214:273::-;49271:4;49361:13;;49351:7;:23;49308:152;;;;-1:-1:-1;;49412:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;49412:43:0;:48;;49214:273::o;25352:132::-;25260:6;;-1:-1:-1;;;;;25260:6:0;62328:10;25416:23;25408:68;;;;-1:-1:-1;;;25408:68:0;;16087:2:1;25408:68:0;;;16069:21:1;;;16106:18;;;16099:30;16165:34;16145:18;;;16138:62;16217:18;;25408:68:0;16059:182:1;42095:1161:0;42189:7;42229;42331:13;;42324:4;:20;42320:869;;;42369:14;42386:23;;;:17;:23;;;;;;-1:-1:-1;;;42475:23:0;;42471:699;;42994:113;43001:11;42994:113;;-1:-1:-1;;;43072:6:0;43054:25;;;;:17;:25;;;;;;42994:113;;;43140:6;42095:1161;-1:-1:-1;;;42095:1161:0:o;42471:699::-;42320:869;;43217:31;;-1:-1:-1;;;43217:31:0;;;;;;;;;;;37896:193;37998:13;;;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;38022:17:0;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;38287:7:0;38050:13;:31;-1:-1:-1;;37896:193:0:o;53105:2667::-;53220:27;53250;53269:7;53250:18;:27::i;:::-;53220:57;;53335:4;-1:-1:-1;;;;;53294:45:0;53310:19;-1:-1:-1;;;;;53294:45:0;;53290:99;;53361:28;;-1:-1:-1;;;53361:28:0;;;;;;;;;;;53290:99;53402:23;53428:24;;;:15;:24;;;;;;-1:-1:-1;;;;;53428:24:0;;;;53402:23;53491:27;;62328:10;53491:27;;:87;;-1:-1:-1;53535:43:0;53552:4;62328:10;47785:214;:::i;53535:43::-;53491:142;;;-1:-1:-1;;;;;;53595:38:0;;62328:10;53595:38;53491:142;53465:169;;53652:17;53647:66;;53678:35;;-1:-1:-1;;;53678:35:0;;;;;;;;;;;53647:66;53746:2;53724:62;;53763:23;;-1:-1:-1;;;53763:23:0;;;;;;;;;;;53724:62;53930:15;53912:39;53908:103;;53975:24;;;;:15;:24;;;;;53968:31;;-1:-1:-1;;;;;;53968:31:0;;;53908:103;-1:-1:-1;;;;;54378:24:0;;;;;;;:18;:24;;;;;;;;54376:26;;-1:-1:-1;;54376:26:0;;;54447:22;;;;;;;;54445:24;;-1:-1:-1;54445:24:0;;;54740:26;;;:17;:26;;;-1:-1:-1;;;54828:15:0;36296:3;54828:41;54786:84;;:128;;54740:174;;;55034:46;;55030:626;;55138:1;55128:11;;55106:19;55261:30;;;:17;:30;;;;;;55257:384;;55399:13;;55384:11;:28;55380:242;;55546:30;;;;:17;:30;;;;;:52;;;55380:242;55030:626;;55703:7;55699:2;-1:-1:-1;;;;;55684:27:0;55693:4;-1:-1:-1;;;;;55684:27:0;;;;;;;;;;;53105:2667;;;;;;:::o;22770:108::-;22682:7;;-1:-1:-1;;;22682:7:0;;;;22840:9;22832:38;;;;-1:-1:-1;;;22832:38:0;;13410:2:1;22832:38:0;;;13392:21:1;13449:2;13429:18;;;13422:30;-1:-1:-1;;;13468:18:1;;;13461:46;13524:18;;22832:38:0;13382:166:1;49571:104:0;49640:27;49650:2;49654:8;49640:27;;;;;;;;;;;;:9;:27::i;77510:104::-;77561:4;77599:7;25260:6;;-1:-1:-1;;;;;25260:6:0;;25187:87;77599:7;-1:-1:-1;;;;;77585:21:0;:10;-1:-1:-1;;;;;77585:21:0;;77578:28;;77510:104;:::o;23466:120::-;22475:16;:14;:16::i;:::-;23525:7:::1;:15:::0;;-1:-1:-1;;;;23525:15:0::1;::::0;;23556:22:::1;62328:10:::0;23565:12:::1;23556:22;::::0;-1:-1:-1;;;;;7781:32:1;;;7763:51;;7751:2;7736:18;23556:22:0::1;;;;;;;23466:120::o:0;55850:89::-;55910:21;55916:7;55925:5;55910;:21::i;69092:131::-;69157:18;;;;:7;;:18;;;;;:::i;:::-;;69191:24;69206:8;69191:24;;;;;;:::i;26454:191::-;26547:6;;;-1:-1:-1;;;;;26564:17:0;;;-1:-1:-1;;;;;;26564:17:0;;;;;;;26597:40;;26547:6;;;26564:17;26547:6;;26597:40;;26528:16;;26597:40;26454:191;;:::o;23207:118::-;22216:19;:17;:19::i;:::-;23267:7:::1;:14:::0;;-1:-1:-1;;;;23267:14:0::1;-1:-1:-1::0;;;23267:14:0::1;::::0;;23297:20:::1;23304:12;62328:10:::0;;62241:105;59595:831;59792:171;;-1:-1:-1;;;59792:171:0;;59758:4;;-1:-1:-1;;;;;59792:45:0;;;;;:171;;62328:10;;59894:4;;59917:7;;59943:5;;59792:171;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59792:171:0;;;;;;;;-1:-1:-1;;59792:171:0;;;;;;;;;;;;:::i;:::-;;;59775:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60177:13:0;;60173:235;;60223:40;;-1:-1:-1;;;60223:40:0;;;;;;;;;;;60173:235;60366:6;60360:13;60351:6;60347:2;60343:15;60336:38;59775:644;-1:-1:-1;;;;;;60036:81:0;-1:-1:-1;;;60036:81:0;;-1:-1:-1;59775:644:0;59595:831;;;;;;:::o;69231:108::-;69291:13;69324:7;69317:14;;;;;:::i;50062:872::-;50185:19;50191:2;50195:8;50185:5;:19::i;:::-;-1:-1:-1;;;;;50246:14:0;;;:19;50242:674;;50286:11;50300:13;50348:14;;;50381:424;50438:205;50507:1;50540:2;50573:7;;;;;;50611:5;50438:30;:205::i;:::-;50407:358;;50701:40;;-1:-1:-1;;;50701:40:0;;;;;;;;;;;50407:358;50800:3;50792:5;:11;50381:424;;50887:3;50870:13;;:20;50866:34;;50892:8;;;50866:34;50242:674;;50062:872;;;:::o;22955:108::-;22682:7;;-1:-1:-1;;;22682:7:0;;;;23014:41;;;;-1:-1:-1;;;23014:41:0;;10399:2:1;23014:41:0;;;10381:21:1;10438:2;10418:18;;;10411:30;-1:-1:-1;;;10457:18:1;;;10450:50;10517:18;;23014:41:0;10371:170:1;56168:2935:0;56248:27;56278;56297:7;56278:18;:27::i;:::-;56318:12;56407:24;;;:15;:24;;;;;;56248:57;;-1:-1:-1;56248:57:0;;-1:-1:-1;;;;;56407:24:0;56444:306;;;;56478:22;62328:10;-1:-1:-1;;;;;56504:27:0;;;;:91;;-1:-1:-1;56552:43:0;56569:4;62328:10;47785:214;:::i;56552:43::-;56504:150;;;-1:-1:-1;;;;;;56616:38:0;;62328:10;56616:38;56504:150;56478:177;;56677:17;56672:66;;56703:35;;-1:-1:-1;;;56703:35:0;;;;;;;;;;;56672:66;56444:306;;56901:15;56883:39;56879:103;;56946:24;;;;:15;:24;;;;;56939:31;;-1:-1:-1;;;;;;56939:31:0;;;56879:103;-1:-1:-1;;;;;57570:24:0;;;;;;:18;:24;;;;;;;;:59;;57598:31;57570:59;;;57867:26;;;:17;:26;;;;;-1:-1:-1;;;57957:15:0;36296:3;57957:41;57913:86;;:164;57867:210;;-1:-1:-1;;;58197:46:0;;58193:626;;58301:1;58291:11;;58269:19;58424:30;;;:17;:30;;;;;;58420:384;;58562:13;;58547:11;:28;58543:242;;58709:30;;;;:17;:30;;;;;:52;;;58543:242;58193:626;;58847:35;;58874:7;;58870:1;;-1:-1:-1;;;;;58847:35:0;;;;;58870:1;;58847:35;-1:-1:-1;;59070:12:0;:14;;;;;;-1:-1:-1;;;56168:2935:0:o;51207:1644::-;51272:20;51295:13;51341:2;51319:58;;51358:19;;-1:-1:-1;;;51358:19:0;;;;;;;;;;;51319:58;51392:13;51388:44;;51414:18;;-1:-1:-1;;;51414:18:0;;;;;;;;;;;51388:44;-1:-1:-1;;;;;51981:22:0;;;;;;:18;:22;;;;35779:2;51981:22;;;:104;;52053:31;52024:61;;51981:104;;;52328:31;;;:17;:31;;;;;52421:15;36296:3;52421:41;52379:84;;-1:-1:-1;52499:13:0;;36555:3;52484:56;52379:162;52328:213;;52587:119;52614:49;;52654:8;;;;52639:23;;;-1:-1:-1;;;;;52614:49:0;;;52631:1;;52614:49;;52631:1;;52614:49;52696:8;52687:6;:17;52587:119;;-1:-1:-1;52738:23:0;52722:13;:39;-1:-1:-1;48066:170:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:2;;753:1;750;743:12;768:229;811:5;864:3;857:4;849:6;845:17;841:27;831:2;;886:5;879;872:20;831:2;912:79;987:3;978:6;965:20;958:4;950:6;946:17;912:79;:::i;1002:196::-;1061:6;1114:2;1102:9;1093:7;1089:23;1085:32;1082:2;;;1135:6;1127;1120:22;1082:2;1163:29;1182:9;1163:29;:::i;1203:270::-;1271:6;1279;1332:2;1320:9;1311:7;1307:23;1303:32;1300:2;;;1353:6;1345;1338:22;1300:2;1381:29;1400:9;1381:29;:::i;:::-;1371:39;;1429:38;1463:2;1452:9;1448:18;1429:38;:::i;:::-;1419:48;;1290:183;;;;;:::o;1478:338::-;1555:6;1563;1571;1624:2;1612:9;1603:7;1599:23;1595:32;1592:2;;;1645:6;1637;1630:22;1592:2;1673:29;1692:9;1673:29;:::i;:::-;1663:39;;1721:38;1755:2;1744:9;1740:18;1721:38;:::i;:::-;1711:48;;1806:2;1795:9;1791:18;1778:32;1768:42;;1582:234;;;;;:::o;1821:696::-;1916:6;1924;1932;1940;1993:3;1981:9;1972:7;1968:23;1964:33;1961:2;;;2015:6;2007;2000:22;1961:2;2043:29;2062:9;2043:29;:::i;:::-;2033:39;;2091:38;2125:2;2114:9;2110:18;2091:38;:::i;:::-;2081:48;;2176:2;2165:9;2161:18;2148:32;2138:42;;2231:2;2220:9;2216:18;2203:32;2258:18;2250:6;2247:30;2244:2;;;2295:6;2287;2280:22;2244:2;2323:22;;2376:4;2368:13;;2364:27;-1:-1:-1;2354:2:1;;2410:6;2402;2395:22;2354:2;2438:73;2503:7;2498:2;2485:16;2480:2;2476;2472:11;2438:73;:::i;:::-;2428:83;;;1951:566;;;;;;;:::o;2522:264::-;2587:6;2595;2648:2;2636:9;2627:7;2623:23;2619:32;2616:2;;;2669:6;2661;2654:22;2616:2;2697:29;2716:9;2697:29;:::i;:::-;2687:39;;2745:35;2776:2;2765:9;2761:18;2745:35;:::i;2791:264::-;2859:6;2867;2920:2;2908:9;2899:7;2895:23;2891:32;2888:2;;;2941:6;2933;2926:22;2888:2;2969:29;2988:9;2969:29;:::i;:::-;2959:39;3045:2;3030:18;;;;3017:32;;-1:-1:-1;;;2878:177:1:o;3060:1008::-;3144:6;3175:2;3218;3206:9;3197:7;3193:23;3189:32;3186:2;;;3239:6;3231;3224:22;3186:2;3284:9;3271:23;3313:18;3354:2;3346:6;3343:14;3340:2;;;3375:6;3367;3360:22;3340:2;3418:6;3407:9;3403:22;3393:32;;3463:7;3456:4;3452:2;3448:13;3444:27;3434:2;;3490:6;3482;3475:22;3434:2;3531;3518:16;3553:2;3549;3546:10;3543:2;;;3559:18;;:::i;:::-;3605:2;3602:1;3598:10;3588:20;;3628:28;3652:2;3648;3644:11;3628:28;:::i;:::-;3690:15;;;3721:12;;;;3753:11;;;3783;;;3779:20;;3776:33;-1:-1:-1;3773:2:1;;;3827:6;3819;3812:22;3773:2;3854:6;3845:15;;3869:169;3883:2;3880:1;3877:9;3869:169;;;3940:23;3959:3;3940:23;:::i;:::-;3928:36;;3901:1;3894:9;;;;;3984:12;;;;4016;;3869:169;;;-1:-1:-1;4057:5:1;3155:913;-1:-1:-1;;;;;;;;3155:913:1:o;4073:190::-;4129:6;4182:2;4170:9;4161:7;4157:23;4153:32;4150:2;;;4203:6;4195;4188:22;4150:2;4231:26;4247:9;4231:26;:::i;4268:255::-;4326:6;4379:2;4367:9;4358:7;4354:23;4350:32;4347:2;;;4400:6;4392;4385:22;4347:2;4444:9;4431:23;4463:30;4487:5;4463:30;:::i;4528:259::-;4597:6;4650:2;4638:9;4629:7;4625:23;4621:32;4618:2;;;4671:6;4663;4656:22;4618:2;4708:9;4702:16;4727:30;4751:5;4727:30;:::i;4792:342::-;4861:6;4914:2;4902:9;4893:7;4889:23;4885:32;4882:2;;;4935:6;4927;4920:22;4882:2;4980:9;4967:23;5013:18;5005:6;5002:30;4999:2;;;5050:6;5042;5035:22;4999:2;5078:50;5120:7;5111:6;5100:9;5096:22;5078:50;:::i;5139:1389::-;5327:6;5335;5343;5351;5359;5367;5375;5383;5391;5399;5407:7;5416;5470:3;5458:9;5449:7;5445:23;5441:33;5438:2;;;5492:6;5484;5477:22;5438:2;5541:18;5529:9;5516:23;5513:47;5510:2;;;5578:6;5570;5563:22;5510:2;5606:67;5665:7;5652:9;5639:23;5628:9;5624:39;5606:67;:::i;:::-;5596:77;;5722:18;5716:2;5705:9;5701:18;5688:32;5685:56;5682:2;;;5759:6;5751;5744:22;5682:2;5787:76;5855:7;5848:2;5837:9;5833:18;5820:32;5809:9;5805:48;5787:76;:::i;:::-;5777:86;;5912:18;5906:2;5895:9;5891:18;5878:32;5875:56;5872:2;;;5949:6;5941;5934:22;5872:2;5977:76;6045:7;6038:2;6027:9;6023:18;6010:32;5999:9;5995:48;5977:76;:::i;:::-;5428:1100;;;;-1:-1:-1;5967:86:1;;6100:2;6085:18;;6072:32;;-1:-1:-1;6151:3:1;6136:19;;6123:33;;6203:3;6188:19;;6175:33;;-1:-1:-1;6255:3:1;6240:19;;6227:33;;-1:-1:-1;6307:3:1;6292:19;;6279:33;;-1:-1:-1;6359:3:1;6344:19;;6331:33;;-1:-1:-1;6411:3:1;6396:19;;6383:33;;-1:-1:-1;6464:3:1;6449:19;;6436:33;;-1:-1:-1;6517:3:1;6502:19;;;6489:33;;-1:-1:-1;5428:1100:1;-1:-1:-1;;5428:1100:1:o;6533:190::-;6592:6;6645:2;6633:9;6624:7;6620:23;6616:32;6613:2;;;6666:6;6658;6651:22;6613:2;-1:-1:-1;6694:23:1;;6603:120;-1:-1:-1;6603:120:1:o;6728:194::-;6798:6;6851:2;6839:9;6830:7;6826:23;6822:32;6819:2;;;6872:6;6864;6857:22;6819:2;-1:-1:-1;6900:16:1;;6809:113;-1:-1:-1;6809:113:1:o;6927:475::-;6968:3;7006:5;7000:12;7033:6;7028:3;7021:19;7058:3;7070:162;7084:6;7081:1;7078:13;7070:162;;;7146:4;7202:13;;;7198:22;;7192:29;7174:11;;;7170:20;;7163:59;7099:12;7070:162;;;7250:6;7247:1;7244:13;7241:2;;;7316:3;7309:4;7300:6;7295:3;7291:16;7287:27;7280:40;7241:2;-1:-1:-1;7384:2:1;7363:15;-1:-1:-1;;7359:29:1;7350:39;;;;7391:4;7346:50;;6976:426;-1:-1:-1;;6976:426:1:o;7825:488::-;-1:-1:-1;;;;;8094:15:1;;;8076:34;;8146:15;;8141:2;8126:18;;8119:43;8193:2;8178:18;;8171:34;;;8241:3;8236:2;8221:18;;8214:31;;;8019:4;;8262:45;;8287:19;;8279:6;8262:45;:::i;:::-;8254:53;8028:285;-1:-1:-1;;;;;;8028:285:1:o;9566:219::-;9715:2;9704:9;9697:21;9678:4;9735:44;9775:2;9764:9;9760:18;9752:6;9735:44;:::i;11312:344::-;11514:2;11496:21;;;11553:2;11533:18;;;11526:30;-1:-1:-1;;;11587:2:1;11572:18;;11565:50;11647:2;11632:18;;11486:170::o;12491:354::-;12693:2;12675:21;;;12732:2;12712:18;;;12705:30;12771:32;12766:2;12751:18;;12744:60;12836:2;12821:18;;12665:180::o;17410:344::-;17612:2;17594:21;;;17651:2;17631:18;;;17624:30;-1:-1:-1;;;17685:2:1;17670:18;;17663:50;17745:2;17730:18;;17584:170::o;19229:398::-;19431:2;19413:21;;;19470:2;19450:18;;;19443:30;19509:34;19504:2;19489:18;;19482:62;-1:-1:-1;;;19575:2:1;19560:18;;19553:32;19617:3;19602:19;;19403:224::o;19814:275::-;19885:2;19879:9;19950:2;19931:13;;-1:-1:-1;;19927:27:1;19915:40;;19985:18;19970:34;;20006:22;;;19967:62;19964:2;;;20032:18;;:::i;:::-;20068:2;20061:22;19859:230;;-1:-1:-1;19859:230:1:o;20094:128::-;20134:3;20165:1;20161:6;20158:1;20155:13;20152:2;;;20171:18;;:::i;:::-;-1:-1:-1;20207:9:1;;20142:80::o;20227:168::-;20267:7;20333:1;20329;20325:6;20321:14;20318:1;20315:21;20310:1;20303:9;20296:17;20292:45;20289:2;;;20340:18;;:::i;:::-;-1:-1:-1;20380:9:1;;20279:116::o;20400:125::-;20440:4;20468:1;20465;20462:8;20459:2;;;20473:18;;:::i;:::-;-1:-1:-1;20510:9:1;;20449:76::o;20530:380::-;20609:1;20605:12;;;;20652;;;20673:2;;20727:4;20719:6;20715:17;20705:27;;20673:2;20780;20772:6;20769:14;20749:18;20746:38;20743:2;;;20826:10;20821:3;20817:20;20814:1;20807:31;20861:4;20858:1;20851:15;20889:4;20886:1;20879:15;20743:2;;20585:325;;;:::o;20915:135::-;20954:3;-1:-1:-1;;20975:17:1;;20972:2;;;20995:18;;:::i;:::-;-1:-1:-1;21042:1:1;21031:13;;20962:88::o;21055:127::-;21116:10;21111:3;21107:20;21104:1;21097:31;21147:4;21144:1;21137:15;21171:4;21168:1;21161:15;21187:127;21248:10;21243:3;21239:20;21236:1;21229:31;21279:4;21276:1;21269:15;21303:4;21300:1;21293:15;21319:131;-1:-1:-1;;;;;;21393:32:1;;21383:43;;21373:2;;21440:1;21437;21430:12

Swarm Source

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