ETH Price: $2,528.29 (+0.38%)

Token

WAGDIEGRAVE (WAGDIEG)
 

Overview

Max Total Supply

1,022 WAGDIEG

Holders

638

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WAGDIEG
0x4670ca6625d49645d427e7c4265b4f4066c27f79
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:
WAGDIEGRAVE

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-12
*/

// File: contracts/WAGDIEGRAVE.sol

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


/**
 * @title MutantAssGoblinKidz contract
 * @dev Extends ERC721A - thanks azuki
 */

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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));
        }
    }

    /**
     * @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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    /**
     * @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;
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: contracts/TwistedToonz.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // 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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "ERC721A: balance query for the zero address");
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * 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) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

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

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    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.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(quantity != 0, "ERC721A: quantity must be greater than 0");

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract WAGDIEGRAVE is ERC721A, Ownable, ReentrancyGuard {

  string public        baseURI;
  uint public          price             = 0.0035 ether;
  uint public          maxPerTx          = 5;
  uint public          maxPerWallet      = 20;
  uint public          maxFreePerWallet  = 1;
  uint public          totalFree         = 555;
  uint public          maxSupply         = 6969;
  uint public          nextOwnerToExplicitlySet;
  bool public          mintEnabled;

  constructor() ERC721A("WAGDIEGRAVE", "WAGDIEG"){}

  function mint(uint256 amt) external payable
  {
    uint cost = price;
    if(totalSupply() + amt < totalFree + 1) {
      cost = 0;
      amt = 1;
      require(numberMinted(msg.sender) + amt <= maxFreePerWallet, "Too free mint many per wallet!");
    }
    require(msg.sender == tx.origin,"your are not the sender");
    require(msg.value == amt * cost,"Please send the exact amount.");
    require(totalSupply() + amt < maxSupply + 1, "Sorry anno degen");
    require(mintEnabled, "Not live yet.");
    require(numberMinted(msg.sender) + amt <= maxPerWallet, "Too many per wallet!");
    require(amt < maxPerTx + 1, "Max per TX reached.");

    _safeMint(msg.sender, amt);
  }

  function ownerBatchMint(uint256 amt) external onlyOwner
  {
    require(totalSupply() + amt < maxSupply + 1,"too many!");

    _safeMint(msg.sender, amt);
  }

  function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function setBaseURI(string calldata baseURI_) external onlyOwner {
    baseURI = baseURI_;
  }

  function setPrice(uint256 price_) external onlyOwner {
      price = price_;
  }

  function setTotalFree(uint256 totalFree_) external onlyOwner {
      totalFree = totalFree_;
  }

  function setMaxPerTx(uint256 maxPerTx_) external onlyOwner {
      maxPerTx = maxPerTx_;
  }

  function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner {
      maxPerWallet = maxPerWallet_;
  }

  function setmaxSupply(uint256 maxSupply_) external onlyOwner {
      maxSupply = maxSupply_;
  }

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

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

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

  function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }


  /**
    * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
    */
  function _setOwnersExplicit(uint256 quantity) internal {
      require(quantity != 0, "quantity must be nonzero");
      require(currentIndex != 0, "no tokens minted yet");
      uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet;
      require(_nextOwnerToExplicitlySet < currentIndex, "all ownerships have been set");

      // Index underflow is impossible.
      // Counter or index overflow is incredibly unrealistic.
      unchecked {
          uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1;

          // Set the end index to be the last token index
          if (endIndex + 1 > currentIndex) {
              endIndex = currentIndex - 1;
          }

          for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) {
              if (_ownerships[i].addr == address(0)) {
                  TokenOwnership memory ownership = ownershipOf(i);
                  _ownerships[i].addr = ownership.addr;
                  _ownerships[i].startTimestamp = ownership.startTimestamp;
              }
          }

          nextOwnerToExplicitlySet = endIndex + 1;
      }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660c6f3b40b6c000600a556005600b556014600c556001600d5561022b600e55611b39600f553480156200003757600080fd5b506040518060400160405280600b81526020017f57414744494547524156450000000000000000000000000000000000000000008152506040518060400160405280600781526020017f57414744494547000000000000000000000000000000000000000000000000008152508160019080519060200190620000bc929190620001d4565b508060029080519060200190620000d5929190620001d4565b505050620000f8620000ec6200010660201b60201c565b6200010e60201b60201c565b6001600881905550620002e9565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e29062000284565b90600052602060002090601f01602090048101928262000206576000855562000252565b82601f106200022157805160ff191683800117855562000252565b8280016001018555821562000252579182015b828111156200025157825182559160200191906001019062000234565b5b50905062000261919062000265565b5090565b5b808211156200028057600081600090555060010162000266565b5090565b600060028204905060018216806200029d57607f821691505b60208210811415620002b457620002b3620002ba565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61508080620002f96000396000f3fe6080604052600436106102465760003560e01c80637d55094d11610139578063b88d4fde116100b6578063d7224ba01161007a578063d7224ba014610859578063dc33e68114610884578063e268e4d3146108c1578063e985e9c5146108ea578063f2fde38b14610927578063f968adbe1461095057610246565b8063b88d4fde14610774578063c6f6f2161461079d578063c87b56dd146107c6578063d123973014610803578063d5abeb011461082e57610246565b806395d89b41116100fd57806395d89b41146106ae578063a035b1fe146106d9578063a0712d6814610704578063a22cb46514610720578063a70273571461074957610246565b80637d55094d146105dd5780638da5cb5b146105f45780638db89f071461061f57806391b7f5ed146106485780639231ab2a1461067157610246565b80633ccfd60b116101c7578063563aaf111161018b578063563aaf11146104f85780636352211e146105215780636c0360eb1461055e57806370a0823114610589578063715018a6146105c657610246565b80633ccfd60b1461042757806342842e0e1461043e578063453c2310146104675780634f6ccce71461049257806355f804b3146104cf57610246565b8063228025e81161020e578063228025e81461034457806323b872dd1461036d5780632d20fb60146103965780632f745c59146103bf578063333e44e6146103fc57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906137b2565b61097b565b60405161027f9190613ee9565b60405180910390f35b34801561029457600080fd5b5061029d610ac5565b6040516102aa9190613f04565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613859565b610b57565b6040516102e79190613e82565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613772565b610bdc565b005b34801561032557600080fd5b5061032e610cf5565b60405161033b9190614361565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613859565b610cfe565b005b34801561037957600080fd5b50610394600480360381019061038f919061365c565b610d84565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613859565b610d94565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190613772565b610e72565b6040516103f39190614361565b60405180910390f35b34801561040857600080fd5b50610411611064565b60405161041e9190614361565b60405180910390f35b34801561043357600080fd5b5061043c61106a565b005b34801561044a57600080fd5b506104656004803603810190610460919061365c565b6111eb565b005b34801561047357600080fd5b5061047c61120b565b6040516104899190614361565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190613859565b611211565b6040516104c69190614361565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f1919061380c565b611264565b005b34801561050457600080fd5b5061051f600480360381019061051a9190613859565b6112f6565b005b34801561052d57600080fd5b5061054860048036038101906105439190613859565b61137c565b6040516105559190613e82565b60405180910390f35b34801561056a57600080fd5b50610573611392565b6040516105809190613f04565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906135ef565b611420565b6040516105bd9190614361565b60405180910390f35b3480156105d257600080fd5b506105db611509565b005b3480156105e957600080fd5b506105f2611591565b005b34801561060057600080fd5b50610609611639565b6040516106169190613e82565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190613859565b611663565b005b34801561065457600080fd5b5061066f600480360381019061066a9190613859565b61174e565b005b34801561067d57600080fd5b5061069860048036038101906106939190613859565b6117d4565b6040516106a59190614346565b60405180910390f35b3480156106ba57600080fd5b506106c36117ec565b6040516106d09190613f04565b60405180910390f35b3480156106e557600080fd5b506106ee61187e565b6040516106fb9190614361565b60405180910390f35b61071e60048036038101906107199190613859565b611884565b005b34801561072c57600080fd5b5061074760048036038101906107429190613732565b611b36565b005b34801561075557600080fd5b5061075e611cb7565b60405161076b9190614361565b60405180910390f35b34801561078057600080fd5b5061079b600480360381019061079691906136af565b611cbd565b005b3480156107a957600080fd5b506107c460048036038101906107bf9190613859565b611d19565b005b3480156107d257600080fd5b506107ed60048036038101906107e89190613859565b611d9f565b6040516107fa9190613f04565b60405180910390f35b34801561080f57600080fd5b50610818611e47565b6040516108259190613ee9565b60405180910390f35b34801561083a57600080fd5b50610843611e5a565b6040516108509190614361565b60405180910390f35b34801561086557600080fd5b5061086e611e60565b60405161087b9190614361565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a691906135ef565b611e66565b6040516108b89190614361565b60405180910390f35b3480156108cd57600080fd5b506108e860048036038101906108e39190613859565b611e78565b005b3480156108f657600080fd5b50610911600480360381019061090c919061361c565b611efe565b60405161091e9190613ee9565b60405180910390f35b34801561093357600080fd5b5061094e600480360381019061094991906135ef565b611f92565b005b34801561095c57600080fd5b5061096561208a565b6040516109729190614361565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aae57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abe5750610abd82612090565b5b9050919050565b606060018054610ad4906145ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610b00906145ff565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b6000610b62826120fa565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890614306565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be78261137c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906141a6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c77612107565b73ffffffffffffffffffffffffffffffffffffffff161480610ca65750610ca581610ca0612107565b611efe565b5b610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90614086565b60405180910390fd5b610cf083838361210f565b505050565b60008054905090565b610d06612107565b73ffffffffffffffffffffffffffffffffffffffff16610d24611639565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190614106565b60405180910390fd5b80600f8190555050565b610d8f8383836121c1565b505050565b610d9c612107565b73ffffffffffffffffffffffffffffffffffffffff16610dba611639565b73ffffffffffffffffffffffffffffffffffffffff1614610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790614106565b60405180910390fd5b60026008541415610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d906142c6565b60405180910390fd5b6002600881905550610e6781612701565b600160088190555050565b6000610e7d83611420565b8210610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590613f26565b60405180910390fd5b6000610ec8610cf5565b905060008060005b83811015611022576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fc257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611014578684141561100b57819550505050505061105e565b83806001019450505b508080600101915050610ed0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611055906142a6565b60405180910390fd5b92915050565b600e5481565b611072612107565b73ffffffffffffffffffffffffffffffffffffffff16611090611639565b73ffffffffffffffffffffffffffffffffffffffff16146110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90614106565b60405180910390fd5b6002600854141561112c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611123906142c6565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161115a90613e6d565b60006040518083038185875af1925050503d8060008114611197576040519150601f19603f3d011682016040523d82523d6000602084013e61119c565b606091505b50509050806111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d7906141c6565b60405180910390fd5b506001600881905550565b61120683838360405180602001604052806000815250611cbd565b505050565b600c5481565b600061121b610cf5565b821061125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390613fe6565b60405180910390fd5b819050919050565b61126c612107565b73ffffffffffffffffffffffffffffffffffffffff1661128a611639565b73ffffffffffffffffffffffffffffffffffffffff16146112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790614106565b60405180910390fd5b8181600991906112f19291906133e3565b505050565b6112fe612107565b73ffffffffffffffffffffffffffffffffffffffff1661131c611639565b73ffffffffffffffffffffffffffffffffffffffff1614611372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136990614106565b60405180910390fd5b80600e8190555050565b600061138782612933565b600001519050919050565b6009805461139f906145ff565b80601f01602080910402602001604051908101604052809291908181526020018280546113cb906145ff565b80156114185780601f106113ed57610100808354040283529160200191611418565b820191906000526020600020905b8154815290600101906020018083116113fb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611488906140c6565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611511612107565b73ffffffffffffffffffffffffffffffffffffffff1661152f611639565b73ffffffffffffffffffffffffffffffffffffffff1614611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90614106565b60405180910390fd5b61158f6000612acd565b565b611599612107565b73ffffffffffffffffffffffffffffffffffffffff166115b7611639565b73ffffffffffffffffffffffffffffffffffffffff161461160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490614106565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61166b612107565b73ffffffffffffffffffffffffffffffffffffffff16611689611639565b73ffffffffffffffffffffffffffffffffffffffff16146116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690614106565b60405180910390fd5b6001600f546116ee9190614420565b816116f7610cf5565b6117019190614420565b10611741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173890614066565b60405180910390fd5b61174b3382612b93565b50565b611756612107565b73ffffffffffffffffffffffffffffffffffffffff16611774611639565b73ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190614106565b60405180910390fd5b80600a8190555050565b6117dc613469565b6117e582612933565b9050919050565b6060600280546117fb906145ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611827906145ff565b80156118745780601f1061184957610100808354040283529160200191611874565b820191906000526020600020905b81548152906001019060200180831161185757829003601f168201915b5050505050905090565b600a5481565b6000600a5490506001600e5461189a9190614420565b826118a3610cf5565b6118ad9190614420565b1015611914576000905060019150600d54826118c833611e66565b6118d29190614420565b1115611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90614326565b60405180910390fd5b5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990614206565b60405180910390fd5b808261198e91906144a7565b34146119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690614186565b60405180910390fd5b6001600f546119de9190614420565b826119e7610cf5565b6119f19190614420565b10611a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2890614226565b60405180910390fd5b601160009054906101000a900460ff16611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790613f46565b60405180910390fd5b600c5482611a8d33611e66565b611a979190614420565b1115611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90613fc6565b60405180910390fd5b6001600b54611ae79190614420565b8210611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90614286565b60405180910390fd5b611b323383612b93565b5050565b611b3e612107565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390614146565b60405180910390fd5b8060066000611bb9612107565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c66612107565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cab9190613ee9565b60405180910390a35050565b600d5481565b611cc88484846121c1565b611cd484848484612bb1565b611d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0a906141e6565b60405180910390fd5b50505050565b611d21612107565b73ffffffffffffffffffffffffffffffffffffffff16611d3f611639565b73ffffffffffffffffffffffffffffffffffffffff1614611d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8c90614106565b60405180910390fd5b80600b8190555050565b6060611daa826120fa565b611de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de090614126565b60405180910390fd5b6000611df3612d48565b9050600081511415611e145760405180602001604052806000815250611e3f565b80611e1e84612dda565b604051602001611e2f929190613e49565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b600f5481565b60105481565b6000611e7182612f3b565b9050919050565b611e80612107565b73ffffffffffffffffffffffffffffffffffffffff16611e9e611639565b73ffffffffffffffffffffffffffffffffffffffff1614611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb90614106565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f9a612107565b73ffffffffffffffffffffffffffffffffffffffff16611fb8611639565b73ffffffffffffffffffffffffffffffffffffffff161461200e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200590614106565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561207e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207590613f66565b60405180910390fd5b61208781612acd565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121cc82612933565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121f3612107565b73ffffffffffffffffffffffffffffffffffffffff16148061224f5750612218612107565b73ffffffffffffffffffffffffffffffffffffffff1661223784610b57565b73ffffffffffffffffffffffffffffffffffffffff16145b8061226b575061226a8260000151612265612107565b611efe565b5b9050806122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a490614166565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461231f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612316906140e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238690614006565b60405180910390fd5b61239c8585856001613024565b6123ac600084846000015161210f565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612691576125f0816120fa565b156126905782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126fa858585600161302a565b5050505050565b6000811415612745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273c906140a6565b60405180910390fd5b60008054141561278a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278190613fa6565b60405180910390fd5b6000601054905060005481106127d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cc90614046565b60405180910390fd5b600060018383010390506000546001820111156127f55760016000540390505b60008290505b81811161292357600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561291657600061287882612933565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b80806001019150506127fb565b5060018101601081905550505050565b61293b613469565b612944826120fa565b612983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297a90613f86565b60405180910390fd5b60008290505b60008110612a8c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a7d578092505050612ac8565b50808060019003915050612989565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abf906142e6565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bad828260405180602001604052806000815250613030565b5050565b6000612bd28473ffffffffffffffffffffffffffffffffffffffff16613042565b15612d3b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bfb612107565b8786866040518563ffffffff1660e01b8152600401612c1d9493929190613e9d565b602060405180830381600087803b158015612c3757600080fd5b505af1925050508015612c6857506040513d601f19601f82011682018060405250810190612c6591906137df565b60015b612ceb573d8060008114612c98576040519150601f19603f3d011682016040523d82523d6000602084013e612c9d565b606091505b50600081511415612ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cda906141e6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d40565b600190505b949350505050565b606060098054612d57906145ff565b80601f0160208091040260200160405190810160405280929190818152602001828054612d83906145ff565b8015612dd05780601f10612da557610100808354040283529160200191612dd0565b820191906000526020600020905b815481529060010190602001808311612db357829003601f168201915b5050505050905090565b60606000821415612e22576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f36565b600082905060005b60008214612e54578080612e3d90614662565b915050600a82612e4d9190614476565b9150612e2a565b60008167ffffffffffffffff811115612e7057612e6f614798565b5b6040519080825280601f01601f191660200182016040528015612ea25781602001600182028036833780820191505090505b5090505b60008514612f2f57600182612ebb9190614501565b9150600a85612eca91906146ab565b6030612ed69190614420565b60f81b818381518110612eec57612eeb614769565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f289190614476565b9450612ea6565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa390614026565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b61303d8383836001613065565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156130db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d290614246565b60405180910390fd5b600084141561311f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311690614266565b60405180910390fd5b61312c6000868387613024565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156133c657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156133b1576133716000888488612bb1565b6133b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a7906141e6565b60405180910390fd5b5b818060010192505080806001019150506132fa565b5080600081905550506133dc600086838761302a565b5050505050565b8280546133ef906145ff565b90600052602060002090601f0160209004810192826134115760008555613458565b82601f1061342a57803560ff1916838001178555613458565b82800160010185558215613458579182015b8281111561345757823582559160200191906001019061343c565b5b50905061346591906134a3565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156134bc5760008160009055506001016134a4565b5090565b60006134d36134ce846143a1565b61437c565b9050828152602081018484840111156134ef576134ee6147d6565b5b6134fa8482856145bd565b509392505050565b60008135905061351181614fee565b92915050565b60008135905061352681615005565b92915050565b60008135905061353b8161501c565b92915050565b6000815190506135508161501c565b92915050565b600082601f83011261356b5761356a6147cc565b5b813561357b8482602086016134c0565b91505092915050565b60008083601f84011261359a576135996147cc565b5b8235905067ffffffffffffffff8111156135b7576135b66147c7565b5b6020830191508360018202830111156135d3576135d26147d1565b5b9250929050565b6000813590506135e981615033565b92915050565b600060208284031215613605576136046147e0565b5b600061361384828501613502565b91505092915050565b60008060408385031215613633576136326147e0565b5b600061364185828601613502565b925050602061365285828601613502565b9150509250929050565b600080600060608486031215613675576136746147e0565b5b600061368386828701613502565b935050602061369486828701613502565b92505060406136a5868287016135da565b9150509250925092565b600080600080608085870312156136c9576136c86147e0565b5b60006136d787828801613502565b94505060206136e887828801613502565b93505060406136f9878288016135da565b925050606085013567ffffffffffffffff81111561371a576137196147db565b5b61372687828801613556565b91505092959194509250565b60008060408385031215613749576137486147e0565b5b600061375785828601613502565b925050602061376885828601613517565b9150509250929050565b60008060408385031215613789576137886147e0565b5b600061379785828601613502565b92505060206137a8858286016135da565b9150509250929050565b6000602082840312156137c8576137c76147e0565b5b60006137d68482850161352c565b91505092915050565b6000602082840312156137f5576137f46147e0565b5b600061380384828501613541565b91505092915050565b60008060208385031215613823576138226147e0565b5b600083013567ffffffffffffffff811115613841576138406147db565b5b61384d85828601613584565b92509250509250929050565b60006020828403121561386f5761386e6147e0565b5b600061387d848285016135da565b91505092915050565b61388f81614535565b82525050565b61389e81614535565b82525050565b6138ad81614547565b82525050565b60006138be826143d2565b6138c881856143e8565b93506138d88185602086016145cc565b6138e1816147e5565b840191505092915050565b60006138f7826143dd565b6139018185614404565b93506139118185602086016145cc565b61391a816147e5565b840191505092915050565b6000613930826143dd565b61393a8185614415565b935061394a8185602086016145cc565b80840191505092915050565b6000613963602283614404565b915061396e826147f6565b604082019050919050565b6000613986600d83614404565b915061399182614845565b602082019050919050565b60006139a9602683614404565b91506139b48261486e565b604082019050919050565b60006139cc602a83614404565b91506139d7826148bd565b604082019050919050565b60006139ef601483614404565b91506139fa8261490c565b602082019050919050565b6000613a12601483614404565b9150613a1d82614935565b602082019050919050565b6000613a35602383614404565b9150613a408261495e565b604082019050919050565b6000613a58602583614404565b9150613a63826149ad565b604082019050919050565b6000613a7b603183614404565b9150613a86826149fc565b604082019050919050565b6000613a9e601c83614404565b9150613aa982614a4b565b602082019050919050565b6000613ac1600983614404565b9150613acc82614a74565b602082019050919050565b6000613ae4603983614404565b9150613aef82614a9d565b604082019050919050565b6000613b07601883614404565b9150613b1282614aec565b602082019050919050565b6000613b2a602b83614404565b9150613b3582614b15565b604082019050919050565b6000613b4d602683614404565b9150613b5882614b64565b604082019050919050565b6000613b70602083614404565b9150613b7b82614bb3565b602082019050919050565b6000613b93602f83614404565b9150613b9e82614bdc565b604082019050919050565b6000613bb6601a83614404565b9150613bc182614c2b565b602082019050919050565b6000613bd9603283614404565b9150613be482614c54565b604082019050919050565b6000613bfc601d83614404565b9150613c0782614ca3565b602082019050919050565b6000613c1f602283614404565b9150613c2a82614ccc565b604082019050919050565b6000613c426000836143f9565b9150613c4d82614d1b565b600082019050919050565b6000613c65601083614404565b9150613c7082614d1e565b602082019050919050565b6000613c88603383614404565b9150613c9382614d47565b604082019050919050565b6000613cab601783614404565b9150613cb682614d96565b602082019050919050565b6000613cce601083614404565b9150613cd982614dbf565b602082019050919050565b6000613cf1602183614404565b9150613cfc82614de8565b604082019050919050565b6000613d14602883614404565b9150613d1f82614e37565b604082019050919050565b6000613d37601383614404565b9150613d4282614e86565b602082019050919050565b6000613d5a602e83614404565b9150613d6582614eaf565b604082019050919050565b6000613d7d601f83614404565b9150613d8882614efe565b602082019050919050565b6000613da0602f83614404565b9150613dab82614f27565b604082019050919050565b6000613dc3602d83614404565b9150613dce82614f76565b604082019050919050565b6000613de6601e83614404565b9150613df182614fc5565b602082019050919050565b604082016000820151613e126000850182613886565b506020820151613e256020850182613e3a565b50505050565b613e348161459f565b82525050565b613e43816145a9565b82525050565b6000613e558285613925565b9150613e618284613925565b91508190509392505050565b6000613e7882613c35565b9150819050919050565b6000602082019050613e976000830184613895565b92915050565b6000608082019050613eb26000830187613895565b613ebf6020830186613895565b613ecc6040830185613e2b565b8181036060830152613ede81846138b3565b905095945050505050565b6000602082019050613efe60008301846138a4565b92915050565b60006020820190508181036000830152613f1e81846138ec565b905092915050565b60006020820190508181036000830152613f3f81613956565b9050919050565b60006020820190508181036000830152613f5f81613979565b9050919050565b60006020820190508181036000830152613f7f8161399c565b9050919050565b60006020820190508181036000830152613f9f816139bf565b9050919050565b60006020820190508181036000830152613fbf816139e2565b9050919050565b60006020820190508181036000830152613fdf81613a05565b9050919050565b60006020820190508181036000830152613fff81613a28565b9050919050565b6000602082019050818103600083015261401f81613a4b565b9050919050565b6000602082019050818103600083015261403f81613a6e565b9050919050565b6000602082019050818103600083015261405f81613a91565b9050919050565b6000602082019050818103600083015261407f81613ab4565b9050919050565b6000602082019050818103600083015261409f81613ad7565b9050919050565b600060208201905081810360008301526140bf81613afa565b9050919050565b600060208201905081810360008301526140df81613b1d565b9050919050565b600060208201905081810360008301526140ff81613b40565b9050919050565b6000602082019050818103600083015261411f81613b63565b9050919050565b6000602082019050818103600083015261413f81613b86565b9050919050565b6000602082019050818103600083015261415f81613ba9565b9050919050565b6000602082019050818103600083015261417f81613bcc565b9050919050565b6000602082019050818103600083015261419f81613bef565b9050919050565b600060208201905081810360008301526141bf81613c12565b9050919050565b600060208201905081810360008301526141df81613c58565b9050919050565b600060208201905081810360008301526141ff81613c7b565b9050919050565b6000602082019050818103600083015261421f81613c9e565b9050919050565b6000602082019050818103600083015261423f81613cc1565b9050919050565b6000602082019050818103600083015261425f81613ce4565b9050919050565b6000602082019050818103600083015261427f81613d07565b9050919050565b6000602082019050818103600083015261429f81613d2a565b9050919050565b600060208201905081810360008301526142bf81613d4d565b9050919050565b600060208201905081810360008301526142df81613d70565b9050919050565b600060208201905081810360008301526142ff81613d93565b9050919050565b6000602082019050818103600083015261431f81613db6565b9050919050565b6000602082019050818103600083015261433f81613dd9565b9050919050565b600060408201905061435b6000830184613dfc565b92915050565b60006020820190506143766000830184613e2b565b92915050565b6000614386614397565b90506143928282614631565b919050565b6000604051905090565b600067ffffffffffffffff8211156143bc576143bb614798565b5b6143c5826147e5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061442b8261459f565b91506144368361459f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561446b5761446a6146dc565b5b828201905092915050565b60006144818261459f565b915061448c8361459f565b92508261449c5761449b61470b565b5b828204905092915050565b60006144b28261459f565b91506144bd8361459f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144f6576144f56146dc565b5b828202905092915050565b600061450c8261459f565b91506145178361459f565b92508282101561452a576145296146dc565b5b828203905092915050565b60006145408261457f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156145ea5780820151818401526020810190506145cf565b838111156145f9576000848401525b50505050565b6000600282049050600182168061461757607f821691505b6020821081141561462b5761462a61473a565b5b50919050565b61463a826147e5565b810181811067ffffffffffffffff8211171561465957614658614798565b5b80604052505050565b600061466d8261459f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146a05761469f6146dc565b5b600182019050919050565b60006146b68261459f565b91506146c18361459f565b9250826146d1576146d061470b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206c697665207965742e00000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f796f757220617265206e6f74207468652073656e646572000000000000000000600082015250565b7f536f72727920616e6e6f20646567656e00000000000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f546f6f2066726565206d696e74206d616e79207065722077616c6c6574210000600082015250565b614ff781614535565b811461500257600080fd5b50565b61500e81614547565b811461501957600080fd5b50565b61502581614553565b811461503057600080fd5b50565b61503c8161459f565b811461504757600080fd5b5056fea264697066735822122034a85f4ca8a5f7fef10c8627b43c515771d99b86134a9549d5956cbb180e422964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102465760003560e01c80637d55094d11610139578063b88d4fde116100b6578063d7224ba01161007a578063d7224ba014610859578063dc33e68114610884578063e268e4d3146108c1578063e985e9c5146108ea578063f2fde38b14610927578063f968adbe1461095057610246565b8063b88d4fde14610774578063c6f6f2161461079d578063c87b56dd146107c6578063d123973014610803578063d5abeb011461082e57610246565b806395d89b41116100fd57806395d89b41146106ae578063a035b1fe146106d9578063a0712d6814610704578063a22cb46514610720578063a70273571461074957610246565b80637d55094d146105dd5780638da5cb5b146105f45780638db89f071461061f57806391b7f5ed146106485780639231ab2a1461067157610246565b80633ccfd60b116101c7578063563aaf111161018b578063563aaf11146104f85780636352211e146105215780636c0360eb1461055e57806370a0823114610589578063715018a6146105c657610246565b80633ccfd60b1461042757806342842e0e1461043e578063453c2310146104675780634f6ccce71461049257806355f804b3146104cf57610246565b8063228025e81161020e578063228025e81461034457806323b872dd1461036d5780632d20fb60146103965780632f745c59146103bf578063333e44e6146103fc57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906137b2565b61097b565b60405161027f9190613ee9565b60405180910390f35b34801561029457600080fd5b5061029d610ac5565b6040516102aa9190613f04565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613859565b610b57565b6040516102e79190613e82565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613772565b610bdc565b005b34801561032557600080fd5b5061032e610cf5565b60405161033b9190614361565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613859565b610cfe565b005b34801561037957600080fd5b50610394600480360381019061038f919061365c565b610d84565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613859565b610d94565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190613772565b610e72565b6040516103f39190614361565b60405180910390f35b34801561040857600080fd5b50610411611064565b60405161041e9190614361565b60405180910390f35b34801561043357600080fd5b5061043c61106a565b005b34801561044a57600080fd5b506104656004803603810190610460919061365c565b6111eb565b005b34801561047357600080fd5b5061047c61120b565b6040516104899190614361565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190613859565b611211565b6040516104c69190614361565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f1919061380c565b611264565b005b34801561050457600080fd5b5061051f600480360381019061051a9190613859565b6112f6565b005b34801561052d57600080fd5b5061054860048036038101906105439190613859565b61137c565b6040516105559190613e82565b60405180910390f35b34801561056a57600080fd5b50610573611392565b6040516105809190613f04565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906135ef565b611420565b6040516105bd9190614361565b60405180910390f35b3480156105d257600080fd5b506105db611509565b005b3480156105e957600080fd5b506105f2611591565b005b34801561060057600080fd5b50610609611639565b6040516106169190613e82565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190613859565b611663565b005b34801561065457600080fd5b5061066f600480360381019061066a9190613859565b61174e565b005b34801561067d57600080fd5b5061069860048036038101906106939190613859565b6117d4565b6040516106a59190614346565b60405180910390f35b3480156106ba57600080fd5b506106c36117ec565b6040516106d09190613f04565b60405180910390f35b3480156106e557600080fd5b506106ee61187e565b6040516106fb9190614361565b60405180910390f35b61071e60048036038101906107199190613859565b611884565b005b34801561072c57600080fd5b5061074760048036038101906107429190613732565b611b36565b005b34801561075557600080fd5b5061075e611cb7565b60405161076b9190614361565b60405180910390f35b34801561078057600080fd5b5061079b600480360381019061079691906136af565b611cbd565b005b3480156107a957600080fd5b506107c460048036038101906107bf9190613859565b611d19565b005b3480156107d257600080fd5b506107ed60048036038101906107e89190613859565b611d9f565b6040516107fa9190613f04565b60405180910390f35b34801561080f57600080fd5b50610818611e47565b6040516108259190613ee9565b60405180910390f35b34801561083a57600080fd5b50610843611e5a565b6040516108509190614361565b60405180910390f35b34801561086557600080fd5b5061086e611e60565b60405161087b9190614361565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a691906135ef565b611e66565b6040516108b89190614361565b60405180910390f35b3480156108cd57600080fd5b506108e860048036038101906108e39190613859565b611e78565b005b3480156108f657600080fd5b50610911600480360381019061090c919061361c565b611efe565b60405161091e9190613ee9565b60405180910390f35b34801561093357600080fd5b5061094e600480360381019061094991906135ef565b611f92565b005b34801561095c57600080fd5b5061096561208a565b6040516109729190614361565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aae57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abe5750610abd82612090565b5b9050919050565b606060018054610ad4906145ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610b00906145ff565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b6000610b62826120fa565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890614306565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be78261137c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906141a6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c77612107565b73ffffffffffffffffffffffffffffffffffffffff161480610ca65750610ca581610ca0612107565b611efe565b5b610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90614086565b60405180910390fd5b610cf083838361210f565b505050565b60008054905090565b610d06612107565b73ffffffffffffffffffffffffffffffffffffffff16610d24611639565b73ffffffffffffffffffffffffffffffffffffffff1614610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190614106565b60405180910390fd5b80600f8190555050565b610d8f8383836121c1565b505050565b610d9c612107565b73ffffffffffffffffffffffffffffffffffffffff16610dba611639565b73ffffffffffffffffffffffffffffffffffffffff1614610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790614106565b60405180910390fd5b60026008541415610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d906142c6565b60405180910390fd5b6002600881905550610e6781612701565b600160088190555050565b6000610e7d83611420565b8210610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590613f26565b60405180910390fd5b6000610ec8610cf5565b905060008060005b83811015611022576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fc257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611014578684141561100b57819550505050505061105e565b83806001019450505b508080600101915050610ed0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611055906142a6565b60405180910390fd5b92915050565b600e5481565b611072612107565b73ffffffffffffffffffffffffffffffffffffffff16611090611639565b73ffffffffffffffffffffffffffffffffffffffff16146110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90614106565b60405180910390fd5b6002600854141561112c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611123906142c6565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161115a90613e6d565b60006040518083038185875af1925050503d8060008114611197576040519150601f19603f3d011682016040523d82523d6000602084013e61119c565b606091505b50509050806111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d7906141c6565b60405180910390fd5b506001600881905550565b61120683838360405180602001604052806000815250611cbd565b505050565b600c5481565b600061121b610cf5565b821061125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390613fe6565b60405180910390fd5b819050919050565b61126c612107565b73ffffffffffffffffffffffffffffffffffffffff1661128a611639565b73ffffffffffffffffffffffffffffffffffffffff16146112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790614106565b60405180910390fd5b8181600991906112f19291906133e3565b505050565b6112fe612107565b73ffffffffffffffffffffffffffffffffffffffff1661131c611639565b73ffffffffffffffffffffffffffffffffffffffff1614611372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136990614106565b60405180910390fd5b80600e8190555050565b600061138782612933565b600001519050919050565b6009805461139f906145ff565b80601f01602080910402602001604051908101604052809291908181526020018280546113cb906145ff565b80156114185780601f106113ed57610100808354040283529160200191611418565b820191906000526020600020905b8154815290600101906020018083116113fb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611488906140c6565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611511612107565b73ffffffffffffffffffffffffffffffffffffffff1661152f611639565b73ffffffffffffffffffffffffffffffffffffffff1614611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90614106565b60405180910390fd5b61158f6000612acd565b565b611599612107565b73ffffffffffffffffffffffffffffffffffffffff166115b7611639565b73ffffffffffffffffffffffffffffffffffffffff161461160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490614106565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61166b612107565b73ffffffffffffffffffffffffffffffffffffffff16611689611639565b73ffffffffffffffffffffffffffffffffffffffff16146116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690614106565b60405180910390fd5b6001600f546116ee9190614420565b816116f7610cf5565b6117019190614420565b10611741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173890614066565b60405180910390fd5b61174b3382612b93565b50565b611756612107565b73ffffffffffffffffffffffffffffffffffffffff16611774611639565b73ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190614106565b60405180910390fd5b80600a8190555050565b6117dc613469565b6117e582612933565b9050919050565b6060600280546117fb906145ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611827906145ff565b80156118745780601f1061184957610100808354040283529160200191611874565b820191906000526020600020905b81548152906001019060200180831161185757829003601f168201915b5050505050905090565b600a5481565b6000600a5490506001600e5461189a9190614420565b826118a3610cf5565b6118ad9190614420565b1015611914576000905060019150600d54826118c833611e66565b6118d29190614420565b1115611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90614326565b60405180910390fd5b5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990614206565b60405180910390fd5b808261198e91906144a7565b34146119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690614186565b60405180910390fd5b6001600f546119de9190614420565b826119e7610cf5565b6119f19190614420565b10611a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2890614226565b60405180910390fd5b601160009054906101000a900460ff16611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790613f46565b60405180910390fd5b600c5482611a8d33611e66565b611a979190614420565b1115611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90613fc6565b60405180910390fd5b6001600b54611ae79190614420565b8210611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90614286565b60405180910390fd5b611b323383612b93565b5050565b611b3e612107565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390614146565b60405180910390fd5b8060066000611bb9612107565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c66612107565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cab9190613ee9565b60405180910390a35050565b600d5481565b611cc88484846121c1565b611cd484848484612bb1565b611d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0a906141e6565b60405180910390fd5b50505050565b611d21612107565b73ffffffffffffffffffffffffffffffffffffffff16611d3f611639565b73ffffffffffffffffffffffffffffffffffffffff1614611d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8c90614106565b60405180910390fd5b80600b8190555050565b6060611daa826120fa565b611de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de090614126565b60405180910390fd5b6000611df3612d48565b9050600081511415611e145760405180602001604052806000815250611e3f565b80611e1e84612dda565b604051602001611e2f929190613e49565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b600f5481565b60105481565b6000611e7182612f3b565b9050919050565b611e80612107565b73ffffffffffffffffffffffffffffffffffffffff16611e9e611639565b73ffffffffffffffffffffffffffffffffffffffff1614611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb90614106565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f9a612107565b73ffffffffffffffffffffffffffffffffffffffff16611fb8611639565b73ffffffffffffffffffffffffffffffffffffffff161461200e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200590614106565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561207e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207590613f66565b60405180910390fd5b61208781612acd565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121cc82612933565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121f3612107565b73ffffffffffffffffffffffffffffffffffffffff16148061224f5750612218612107565b73ffffffffffffffffffffffffffffffffffffffff1661223784610b57565b73ffffffffffffffffffffffffffffffffffffffff16145b8061226b575061226a8260000151612265612107565b611efe565b5b9050806122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a490614166565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461231f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612316906140e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238690614006565b60405180910390fd5b61239c8585856001613024565b6123ac600084846000015161210f565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612691576125f0816120fa565b156126905782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126fa858585600161302a565b5050505050565b6000811415612745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273c906140a6565b60405180910390fd5b60008054141561278a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278190613fa6565b60405180910390fd5b6000601054905060005481106127d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cc90614046565b60405180910390fd5b600060018383010390506000546001820111156127f55760016000540390505b60008290505b81811161292357600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561291657600061287882612933565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b80806001019150506127fb565b5060018101601081905550505050565b61293b613469565b612944826120fa565b612983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297a90613f86565b60405180910390fd5b60008290505b60008110612a8c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a7d578092505050612ac8565b50808060019003915050612989565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abf906142e6565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bad828260405180602001604052806000815250613030565b5050565b6000612bd28473ffffffffffffffffffffffffffffffffffffffff16613042565b15612d3b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bfb612107565b8786866040518563ffffffff1660e01b8152600401612c1d9493929190613e9d565b602060405180830381600087803b158015612c3757600080fd5b505af1925050508015612c6857506040513d601f19601f82011682018060405250810190612c6591906137df565b60015b612ceb573d8060008114612c98576040519150601f19603f3d011682016040523d82523d6000602084013e612c9d565b606091505b50600081511415612ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cda906141e6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d40565b600190505b949350505050565b606060098054612d57906145ff565b80601f0160208091040260200160405190810160405280929190818152602001828054612d83906145ff565b8015612dd05780601f10612da557610100808354040283529160200191612dd0565b820191906000526020600020905b815481529060010190602001808311612db357829003601f168201915b5050505050905090565b60606000821415612e22576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f36565b600082905060005b60008214612e54578080612e3d90614662565b915050600a82612e4d9190614476565b9150612e2a565b60008167ffffffffffffffff811115612e7057612e6f614798565b5b6040519080825280601f01601f191660200182016040528015612ea25781602001600182028036833780820191505090505b5090505b60008514612f2f57600182612ebb9190614501565b9150600a85612eca91906146ab565b6030612ed69190614420565b60f81b818381518110612eec57612eeb614769565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f289190614476565b9450612ea6565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa390614026565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b61303d8383836001613065565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156130db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d290614246565b60405180910390fd5b600084141561311f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311690614266565b60405180910390fd5b61312c6000868387613024565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156133c657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156133b1576133716000888488612bb1565b6133b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a7906141e6565b60405180910390fd5b5b818060010192505080806001019150506132fa565b5080600081905550506133dc600086838761302a565b5050505050565b8280546133ef906145ff565b90600052602060002090601f0160209004810192826134115760008555613458565b82601f1061342a57803560ff1916838001178555613458565b82800160010185558215613458579182015b8281111561345757823582559160200191906001019061343c565b5b50905061346591906134a3565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156134bc5760008160009055506001016134a4565b5090565b60006134d36134ce846143a1565b61437c565b9050828152602081018484840111156134ef576134ee6147d6565b5b6134fa8482856145bd565b509392505050565b60008135905061351181614fee565b92915050565b60008135905061352681615005565b92915050565b60008135905061353b8161501c565b92915050565b6000815190506135508161501c565b92915050565b600082601f83011261356b5761356a6147cc565b5b813561357b8482602086016134c0565b91505092915050565b60008083601f84011261359a576135996147cc565b5b8235905067ffffffffffffffff8111156135b7576135b66147c7565b5b6020830191508360018202830111156135d3576135d26147d1565b5b9250929050565b6000813590506135e981615033565b92915050565b600060208284031215613605576136046147e0565b5b600061361384828501613502565b91505092915050565b60008060408385031215613633576136326147e0565b5b600061364185828601613502565b925050602061365285828601613502565b9150509250929050565b600080600060608486031215613675576136746147e0565b5b600061368386828701613502565b935050602061369486828701613502565b92505060406136a5868287016135da565b9150509250925092565b600080600080608085870312156136c9576136c86147e0565b5b60006136d787828801613502565b94505060206136e887828801613502565b93505060406136f9878288016135da565b925050606085013567ffffffffffffffff81111561371a576137196147db565b5b61372687828801613556565b91505092959194509250565b60008060408385031215613749576137486147e0565b5b600061375785828601613502565b925050602061376885828601613517565b9150509250929050565b60008060408385031215613789576137886147e0565b5b600061379785828601613502565b92505060206137a8858286016135da565b9150509250929050565b6000602082840312156137c8576137c76147e0565b5b60006137d68482850161352c565b91505092915050565b6000602082840312156137f5576137f46147e0565b5b600061380384828501613541565b91505092915050565b60008060208385031215613823576138226147e0565b5b600083013567ffffffffffffffff811115613841576138406147db565b5b61384d85828601613584565b92509250509250929050565b60006020828403121561386f5761386e6147e0565b5b600061387d848285016135da565b91505092915050565b61388f81614535565b82525050565b61389e81614535565b82525050565b6138ad81614547565b82525050565b60006138be826143d2565b6138c881856143e8565b93506138d88185602086016145cc565b6138e1816147e5565b840191505092915050565b60006138f7826143dd565b6139018185614404565b93506139118185602086016145cc565b61391a816147e5565b840191505092915050565b6000613930826143dd565b61393a8185614415565b935061394a8185602086016145cc565b80840191505092915050565b6000613963602283614404565b915061396e826147f6565b604082019050919050565b6000613986600d83614404565b915061399182614845565b602082019050919050565b60006139a9602683614404565b91506139b48261486e565b604082019050919050565b60006139cc602a83614404565b91506139d7826148bd565b604082019050919050565b60006139ef601483614404565b91506139fa8261490c565b602082019050919050565b6000613a12601483614404565b9150613a1d82614935565b602082019050919050565b6000613a35602383614404565b9150613a408261495e565b604082019050919050565b6000613a58602583614404565b9150613a63826149ad565b604082019050919050565b6000613a7b603183614404565b9150613a86826149fc565b604082019050919050565b6000613a9e601c83614404565b9150613aa982614a4b565b602082019050919050565b6000613ac1600983614404565b9150613acc82614a74565b602082019050919050565b6000613ae4603983614404565b9150613aef82614a9d565b604082019050919050565b6000613b07601883614404565b9150613b1282614aec565b602082019050919050565b6000613b2a602b83614404565b9150613b3582614b15565b604082019050919050565b6000613b4d602683614404565b9150613b5882614b64565b604082019050919050565b6000613b70602083614404565b9150613b7b82614bb3565b602082019050919050565b6000613b93602f83614404565b9150613b9e82614bdc565b604082019050919050565b6000613bb6601a83614404565b9150613bc182614c2b565b602082019050919050565b6000613bd9603283614404565b9150613be482614c54565b604082019050919050565b6000613bfc601d83614404565b9150613c0782614ca3565b602082019050919050565b6000613c1f602283614404565b9150613c2a82614ccc565b604082019050919050565b6000613c426000836143f9565b9150613c4d82614d1b565b600082019050919050565b6000613c65601083614404565b9150613c7082614d1e565b602082019050919050565b6000613c88603383614404565b9150613c9382614d47565b604082019050919050565b6000613cab601783614404565b9150613cb682614d96565b602082019050919050565b6000613cce601083614404565b9150613cd982614dbf565b602082019050919050565b6000613cf1602183614404565b9150613cfc82614de8565b604082019050919050565b6000613d14602883614404565b9150613d1f82614e37565b604082019050919050565b6000613d37601383614404565b9150613d4282614e86565b602082019050919050565b6000613d5a602e83614404565b9150613d6582614eaf565b604082019050919050565b6000613d7d601f83614404565b9150613d8882614efe565b602082019050919050565b6000613da0602f83614404565b9150613dab82614f27565b604082019050919050565b6000613dc3602d83614404565b9150613dce82614f76565b604082019050919050565b6000613de6601e83614404565b9150613df182614fc5565b602082019050919050565b604082016000820151613e126000850182613886565b506020820151613e256020850182613e3a565b50505050565b613e348161459f565b82525050565b613e43816145a9565b82525050565b6000613e558285613925565b9150613e618284613925565b91508190509392505050565b6000613e7882613c35565b9150819050919050565b6000602082019050613e976000830184613895565b92915050565b6000608082019050613eb26000830187613895565b613ebf6020830186613895565b613ecc6040830185613e2b565b8181036060830152613ede81846138b3565b905095945050505050565b6000602082019050613efe60008301846138a4565b92915050565b60006020820190508181036000830152613f1e81846138ec565b905092915050565b60006020820190508181036000830152613f3f81613956565b9050919050565b60006020820190508181036000830152613f5f81613979565b9050919050565b60006020820190508181036000830152613f7f8161399c565b9050919050565b60006020820190508181036000830152613f9f816139bf565b9050919050565b60006020820190508181036000830152613fbf816139e2565b9050919050565b60006020820190508181036000830152613fdf81613a05565b9050919050565b60006020820190508181036000830152613fff81613a28565b9050919050565b6000602082019050818103600083015261401f81613a4b565b9050919050565b6000602082019050818103600083015261403f81613a6e565b9050919050565b6000602082019050818103600083015261405f81613a91565b9050919050565b6000602082019050818103600083015261407f81613ab4565b9050919050565b6000602082019050818103600083015261409f81613ad7565b9050919050565b600060208201905081810360008301526140bf81613afa565b9050919050565b600060208201905081810360008301526140df81613b1d565b9050919050565b600060208201905081810360008301526140ff81613b40565b9050919050565b6000602082019050818103600083015261411f81613b63565b9050919050565b6000602082019050818103600083015261413f81613b86565b9050919050565b6000602082019050818103600083015261415f81613ba9565b9050919050565b6000602082019050818103600083015261417f81613bcc565b9050919050565b6000602082019050818103600083015261419f81613bef565b9050919050565b600060208201905081810360008301526141bf81613c12565b9050919050565b600060208201905081810360008301526141df81613c58565b9050919050565b600060208201905081810360008301526141ff81613c7b565b9050919050565b6000602082019050818103600083015261421f81613c9e565b9050919050565b6000602082019050818103600083015261423f81613cc1565b9050919050565b6000602082019050818103600083015261425f81613ce4565b9050919050565b6000602082019050818103600083015261427f81613d07565b9050919050565b6000602082019050818103600083015261429f81613d2a565b9050919050565b600060208201905081810360008301526142bf81613d4d565b9050919050565b600060208201905081810360008301526142df81613d70565b9050919050565b600060208201905081810360008301526142ff81613d93565b9050919050565b6000602082019050818103600083015261431f81613db6565b9050919050565b6000602082019050818103600083015261433f81613dd9565b9050919050565b600060408201905061435b6000830184613dfc565b92915050565b60006020820190506143766000830184613e2b565b92915050565b6000614386614397565b90506143928282614631565b919050565b6000604051905090565b600067ffffffffffffffff8211156143bc576143bb614798565b5b6143c5826147e5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061442b8261459f565b91506144368361459f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561446b5761446a6146dc565b5b828201905092915050565b60006144818261459f565b915061448c8361459f565b92508261449c5761449b61470b565b5b828204905092915050565b60006144b28261459f565b91506144bd8361459f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144f6576144f56146dc565b5b828202905092915050565b600061450c8261459f565b91506145178361459f565b92508282101561452a576145296146dc565b5b828203905092915050565b60006145408261457f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156145ea5780820151818401526020810190506145cf565b838111156145f9576000848401525b50505050565b6000600282049050600182168061461757607f821691505b6020821081141561462b5761462a61473a565b5b50919050565b61463a826147e5565b810181811067ffffffffffffffff8211171561465957614658614798565b5b80604052505050565b600061466d8261459f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146a05761469f6146dc565b5b600182019050919050565b60006146b68261459f565b91506146c18361459f565b9250826146d1576146d061470b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206c697665207965742e00000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f796f757220617265206e6f74207468652073656e646572000000000000000000600082015250565b7f536f72727920616e6e6f20646567656e00000000000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f546f6f2066726565206d696e74206d616e79207065722077616c6c6574210000600082015250565b614ff781614535565b811461500257600080fd5b50565b61500e81614547565b811461501957600080fd5b50565b61502581614553565b811461503057600080fd5b50565b61503c8161459f565b811461504757600080fd5b5056fea264697066735822122034a85f4ca8a5f7fef10c8627b43c515771d99b86134a9549d5956cbb180e422964736f6c63430008070033

Deployed Bytecode Sourcemap

50319:4016:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37179:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39065:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40627:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40148:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35436:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52444:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41503:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52838:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36100:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50617:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52656:176;;;;;;;;;;;;;:::i;:::-;;41744:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50522:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35613:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51934:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52124:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38874:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50384:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37615:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10571:103;;;;;;;;;;;;;:::i;:::-;;51730:85;;;;;;;;;;;;;:::i;:::-;;9920:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51561:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52036:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52962:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39234:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50417:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50860:695;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40913:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50570:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42000:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52228:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39409:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50766:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50666:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50716;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51821:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52328:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41272:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10829:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50475:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37179:372;37281:4;37333:25;37318:40;;;:11;:40;;;;:105;;;;37390:33;37375:48;;;:11;:48;;;;37318:105;:172;;;;37455:35;37440:50;;;:11;:50;;;;37318:172;:225;;;;37507:36;37531:11;37507:23;:36::i;:::-;37318:225;37298:245;;37179:372;;;:::o;39065:100::-;39119:13;39152:5;39145:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39065:100;:::o;40627:214::-;40695:7;40723:16;40731:7;40723;:16::i;:::-;40715:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40809:15;:24;40825:7;40809:24;;;;;;;;;;;;;;;;;;;;;40802:31;;40627:214;;;:::o;40148:413::-;40221:13;40237:24;40253:7;40237:15;:24::i;:::-;40221:40;;40286:5;40280:11;;:2;:11;;;;40272:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40381:5;40365:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40390:37;40407:5;40414:12;:10;:12::i;:::-;40390:16;:37::i;:::-;40365:62;40343:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40525:28;40534:2;40538:7;40547:5;40525:8;:28::i;:::-;40210:351;40148:413;;:::o;35436:100::-;35489:7;35516:12;;35509:19;;35436:100;:::o;52444:98::-;10151:12;:10;:12::i;:::-;10140:23;;:7;:5;:7::i;:::-;:23;;;10132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52526:10:::1;52514:9;:22;;;;52444:98:::0;:::o;41503:170::-;41637:28;41647:4;41653:2;41657:7;41637:9;:28::i;:::-;41503:170;;;:::o;52838:118::-;10151:12;:10;:12::i;:::-;10140:23;;:7;:5;:7::i;:::-;:23;;;10132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4894:1:::1;5492:7;;:19;;5484:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4894:1;5625:7;:18;;;;52922:28:::2;52941:8;52922:18;:28::i;:::-;4850:1:::1;5804:7;:22;;;;52838:118:::0;:::o;36100:1007::-;36189:7;36225:16;36235:5;36225:9;:16::i;:::-;36217:5;:24;36209:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36291:22;36316:13;:11;:13::i;:::-;36291:38;;36340:19;36370:25;36559:9;36554:466;36574:14;36570:1;:18;36554:466;;;36614:31;36648:11;:14;36660:1;36648:14;;;;;;;;;;;36614:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36711:1;36685:28;;:9;:14;;;:28;;;36681:111;;36758:9;:14;;;36738:34;;36681:111;36835:5;36814:26;;:17;:26;;;36810:195;;;36884:5;36869:11;:20;36865:85;;;36925:1;36918:8;;;;;;;;;36865:85;36972:13;;;;;;;36810:195;36595:425;36590:3;;;;;;;36554:466;;;;37043:56;;;;;;;;;;:::i;:::-;;;;;;;;36100:1007;;;;;:::o;50617:44::-;;;;:::o;52656:176::-;10151:12;:10;:12::i;:::-;10140:23;;:7;:5;:7::i;:::-;:23;;;10132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4894:1:::1;5492:7;;:19;;5484:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4894:1;5625:7;:18;;;;52716:12:::2;52734:10;:15;;52757:21;52734:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52715:68;;;52798:7;52790:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;52708:124;4850:1:::1;5804:7;:22;;;;52656:176::o:0;41744:185::-;41882:39;41899:4;41905:2;41909:7;41882:39;;;;;;;;;;;;:16;:39::i;:::-;41744:185;;;:::o;50522:43::-;;;;:::o;35613:187::-;35680:7;35716:13;:11;:13::i;:::-;35708:5;:21;35700:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;35787:5;35780:12;;35613:187;;;:::o;51934:96::-;10151:12;:10;:12::i;:::-;10140:23;;:7;:5;:7::i;:::-;:23;;;10132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52016:8:::1;;52006:7;:18;;;;;;;:::i;:::-;;51934:96:::0;;:::o;52124:98::-;10151:12;:10;:12::i;:::-;10140:23;;:7;:5;:7::i;:::-;:23;;;10132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52206:10:::1;52194:9;:22;;;;52124:98:::0;:::o;38874:124::-;38938:7;38965:20;38977:7;38965:11;:20::i;:::-;:25;;;38958:32;;38874:124;;;:::o;50384:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37615:221::-;37679:7;37724:1;37707:19;;:5;:19;;;;37699:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37800:12;:19;37813:5;37800:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37792:36;;37785:43;;37615:221;;;:::o;10571:103::-;10151:12;:10;:12::i;:::-;10140:23;;:7;:5;:7::i;:::-;:23;;;10132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10636:30:::1;10663:1;10636:18;:30::i;:::-;10571:103::o:0;51730:85::-;10151:12;:10;:12::i;:::-;10140:23;;:7;:5;:7::i;:::-;:23;;;10132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51798:11:::1;;;;;;;;;;;51797:12;51783:11;;:26;;;;;;;;;;;;;;;;;;51730:85::o:0;9920:87::-;9966:7;9993:6;;;;;;;;;;;9986:13;;9920:87;:::o;51561:163::-;10151:12;:10;:12::i;:::-;10140:23;;:7;:5;:7::i;:::-;:23;;;10132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51669:1:::1;51657:9;;:13;;;;:::i;:::-;51651:3;51635:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51627:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51692:26;51702:10;51714:3;51692:9;:26::i;:::-;51561:163:::0;:::o;52036:82::-;10151:12;:10;:12::i;:::-;10140:23;;:7;:5;:7::i;:::-;:23;;;10132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52106:6:::1;52098:5;:14;;;;52036:82:::0;:::o;52962:132::-;53028:21;;:::i;:::-;53068:20;53080:7;53068:11;:20::i;:::-;53061:27;;52962:132;;;:::o;39234:104::-;39290:13;39323:7;39316:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39234:104;:::o;50417:53::-;;;;:::o;50860:695::-;50914:9;50926:5;;50914:17;;50975:1;50963:9;;:13;;;;:::i;:::-;50957:3;50941:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;50938:183;;;50994:1;50987:8;;51010:1;51004:7;;51062:16;;51055:3;51028:24;51041:10;51028:12;:24::i;:::-;:30;;;;:::i;:::-;:50;;51020:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;50938:183;51149:9;51135:23;;:10;:23;;;51127:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;51219:4;51213:3;:10;;;;:::i;:::-;51200:9;:23;51192:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51305:1;51293:9;;:13;;;;:::i;:::-;51287:3;51271:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51263:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51342:11;;;;;;;;;;;51334:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;51420:12;;51413:3;51386:24;51399:10;51386:12;:24::i;:::-;:30;;;;:::i;:::-;:46;;51378:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;51489:1;51478:8;;:12;;;;:::i;:::-;51472:3;:18;51464:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;51523:26;51533:10;51545:3;51523:9;:26::i;:::-;50907:648;50860:695;:::o;40913:288::-;41020:12;:10;:12::i;:::-;41008:24;;:8;:24;;;;41000:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41121:8;41076:18;:32;41095:12;:10;:12::i;:::-;41076:32;;;;;;;;;;;;;;;:42;41109:8;41076:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41174:8;41145:48;;41160:12;:10;:12::i;:::-;41145:48;;;41184:8;41145:48;;;;;;:::i;:::-;;;;;;;;40913:288;;:::o;50570:42::-;;;;:::o;42000:355::-;42159:28;42169:4;42175:2;42179:7;42159:9;:28::i;:::-;42220:48;42243:4;42249:2;42253:7;42262:5;42220:22;:48::i;:::-;42198:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;42000:355;;;;:::o;52228:94::-;10151:12;:10;:12::i;:::-;10140:23;;:7;:5;:7::i;:::-;:23;;;10132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52307:9:::1;52296:8;:20;;;;52228:94:::0;:::o;39409:335::-;39482:13;39516:16;39524:7;39516;:16::i;:::-;39508:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39597:21;39621:10;:8;:10::i;:::-;39597:34;;39674:1;39655:7;39649:21;:26;;:87;;;;;;;;;;;;;;;;;39702:7;39711:18;:7;:16;:18::i;:::-;39685:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39649:87;39642:94;;;39409:335;;;:::o;50766:32::-;;;;;;;;;;;;;:::o;50666:45::-;;;;:::o;50716:::-;;;;:::o;51821:107::-;51879:7;51902:20;51916:5;51902:13;:20::i;:::-;51895:27;;51821:107;;;:::o;52328:110::-;10151:12;:10;:12::i;:::-;10140:23;;:7;:5;:7::i;:::-;:23;;;10132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52419:13:::1;52404:12;:28;;;;52328:110:::0;:::o;41272:164::-;41369:4;41393:18;:25;41412:5;41393:25;;;;;;;;;;;;;;;:35;41419:8;41393:35;;;;;;;;;;;;;;;;;;;;;;;;;41386:42;;41272:164;;;;:::o;10829:201::-;10151:12;:10;:12::i;:::-;10140:23;;:7;:5;:7::i;:::-;:23;;;10132:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10938:1:::1;10918:22;;:8;:22;;;;10910:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10994:28;11013:8;10994:18;:28::i;:::-;10829:201:::0;:::o;50475:42::-;;;;:::o;26699:157::-;26784:4;26823:25;26808:40;;;:11;:40;;;;26801:47;;26699:157;;;:::o;42610:111::-;42667:4;42701:12;;42691:7;:22;42684:29;;42610:111;;;:::o;8644:98::-;8697:7;8724:10;8717:17;;8644:98;:::o;47530:196::-;47672:2;47645:15;:24;47661:7;47645:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47710:7;47706:2;47690:28;;47699:5;47690:28;;;;;;;;;;;;47530:196;;;:::o;45410:2002::-;45525:35;45563:20;45575:7;45563:11;:20::i;:::-;45525:58;;45596:22;45638:13;:18;;;45622:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45697:12;:10;:12::i;:::-;45673:36;;:20;45685:7;45673:11;:20::i;:::-;:36;;;45622:87;:154;;;;45726:50;45743:13;:18;;;45763:12;:10;:12::i;:::-;45726:16;:50::i;:::-;45622:154;45596:181;;45798:17;45790:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45913:4;45891:26;;:13;:18;;;:26;;;45883:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45993:1;45979:16;;:2;:16;;;;45971:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46050:43;46072:4;46078:2;46082:7;46091:1;46050:21;:43::i;:::-;46158:49;46175:1;46179:7;46188:13;:18;;;46158:8;:49::i;:::-;46533:1;46503:12;:18;46516:4;46503:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46577:1;46549:12;:16;46562:2;46549:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46623:2;46595:11;:20;46607:7;46595:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46685:15;46640:11;:20;46652:7;46640:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46953:19;46985:1;46975:7;:11;46953:33;;47046:1;47005:43;;:11;:24;47017:11;47005:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;47001:295;;;47073:20;47081:11;47073:7;:20::i;:::-;47069:212;;;47150:13;:18;;;47118:11;:24;47130:11;47118:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47233:13;:28;;;47191:11;:24;47203:11;47191:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;47069:212;47001:295;46478:829;47343:7;47339:2;47324:27;;47333:4;47324:27;;;;;;;;;;;;47362:42;47383:4;47389:2;47393:7;47402:1;47362:20;:42::i;:::-;45514:1898;;45410:2002;;;:::o;53202:1130::-;53286:1;53274:8;:13;;53266:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;53349:1;53333:12;;:17;;53325:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;53384:33;53420:24;;53384:60;;53489:12;;53461:25;:40;53453:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;53672:16;53730:1;53719:8;53691:25;:36;:40;53672:59;;53824:12;;53820:1;53809:8;:12;:27;53805:91;;;53881:1;53866:12;;:16;53855:27;;53805:91;53915:9;53927:25;53915:37;;53910:354;53959:8;53954:1;:13;53910:354;;54026:1;53995:33;;:11;:14;54007:1;53995:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;53991:260;;;54051:31;54085:14;54097:1;54085:11;:14::i;:::-;54051:48;;54142:9;:14;;;54120:11;:14;54132:1;54120:14;;;;;;;;;;;:19;;;:36;;;;;;;;;;;;;;;;;;54209:9;:24;;;54177:11;:14;54189:1;54177:14;;;;;;;;;;;:29;;;:56;;;;;;;;;;;;;;;;;;54030:221;53991:260;53969:3;;;;;;;53910:354;;;;54316:1;54305:8;:12;54278:24;:39;;;;53649:678;53257:1075;53202:1130;:::o;38275:537::-;38336:21;;:::i;:::-;38378:16;38386:7;38378;:16::i;:::-;38370:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38484:12;38499:7;38484:22;;38479:245;38516:1;38508:4;:9;38479:245;;38546:31;38580:11;:17;38592:4;38580:17;;;;;;;;;;;38546:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38646:1;38620:28;;:9;:14;;;:28;;;38616:93;;38680:9;38673:16;;;;;;38616:93;38527:197;38519:6;;;;;;;;38479:245;;;;38747:57;;;;;;;;;;:::i;:::-;;;;;;;;38275:537;;;;:::o;11190:191::-;11264:16;11283:6;;;;;;;;;;;11264:25;;11309:8;11300:6;;:17;;;;;;;;;;;;;;;;;;11364:8;11333:40;;11354:8;11333:40;;;;;;;;;;;;11253:128;11190:191;:::o;42729:104::-;42798:27;42808:2;42812:8;42798:27;;;;;;;;;;;;:9;:27::i;:::-;42729:104;;:::o;48291:804::-;48446:4;48467:15;:2;:13;;;:15::i;:::-;48463:625;;;48519:2;48503:36;;;48540:12;:10;:12::i;:::-;48554:4;48560:7;48569:5;48503:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48499:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48766:1;48749:6;:13;:18;48745:273;;;48792:61;;;;;;;;;;:::i;:::-;;;;;;;;48745:273;48968:6;48962:13;48953:6;48949:2;48945:15;48938:38;48499:534;48636:45;;;48626:55;;;:6;:55;;;;48619:62;;;;;48463:625;49072:4;49065:11;;48291:804;;;;;;;:::o;52548:102::-;52608:13;52637:7;52630:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52548:102;:::o;6206:723::-;6262:13;6492:1;6483:5;:10;6479:53;;;6510:10;;;;;;;;;;;;;;;;;;;;;6479:53;6542:12;6557:5;6542:20;;6573:14;6598:78;6613:1;6605:4;:9;6598:78;;6631:8;;;;;:::i;:::-;;;;6662:2;6654:10;;;;;:::i;:::-;;;6598:78;;;6686:19;6718:6;6708:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6686:39;;6736:154;6752:1;6743:5;:10;6736:154;;6780:1;6770:11;;;;;:::i;:::-;;;6847:2;6839:5;:10;;;;:::i;:::-;6826:2;:24;;;;:::i;:::-;6813:39;;6796:6;6803;6796:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6876:2;6867:11;;;;;:::i;:::-;;;6736:154;;;6914:6;6900:21;;;;;6206:723;;;;:::o;37844:229::-;37905:7;37950:1;37933:19;;:5;:19;;;;37925:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;38032:12;:19;38045:5;38032:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;38024:41;;38017:48;;37844:229;;;:::o;49583:159::-;;;;;:::o;50154:158::-;;;;;:::o;43196:163::-;43319:32;43325:2;43329:8;43339:5;43346:4;43319:5;:32::i;:::-;43196:163;;;:::o;12621:326::-;12681:4;12938:1;12916:7;:19;;;:23;12909:30;;12621:326;;;:::o;43618:1538::-;43757:20;43780:12;;43757:35;;43825:1;43811:16;;:2;:16;;;;43803:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43896:1;43884:8;:13;;43876:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43955:61;43985:1;43989:2;43993:12;44007:8;43955:21;:61::i;:::-;44330:8;44294:12;:16;44307:2;44294:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44395:8;44354:12;:16;44367:2;44354:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44454:2;44421:11;:25;44433:12;44421:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44521:15;44471:11;:25;44483:12;44471:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44554:20;44577:12;44554:35;;44611:9;44606:415;44626:8;44622:1;:12;44606:415;;;44690:12;44686:2;44665:38;;44682:1;44665:38;;;;;;;;;;;;44726:4;44722:249;;;44789:59;44820:1;44824:2;44828:12;44842:5;44789:22;:59::i;:::-;44755:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;44722:249;44991:14;;;;;;;44636:3;;;;;;;44606:415;;;;45052:12;45037;:27;;;;44269:807;45088:60;45117:1;45121:2;45125:12;45139:8;45088:20;:60::i;:::-;43746:1410;43618:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8445:366::-;8587:3;8608:67;8672:2;8667:3;8608:67;:::i;:::-;8601:74;;8684:93;8773:3;8684:93;:::i;:::-;8802:2;8797:3;8793:12;8786:19;;8445:366;;;:::o;8817:::-;8959:3;8980:67;9044:2;9039:3;8980:67;:::i;:::-;8973:74;;9056:93;9145:3;9056:93;:::i;:::-;9174:2;9169:3;9165:12;9158:19;;8817:366;;;:::o;9189:::-;9331:3;9352:67;9416:2;9411:3;9352:67;:::i;:::-;9345:74;;9428:93;9517:3;9428:93;:::i;:::-;9546:2;9541:3;9537:12;9530:19;;9189:366;;;:::o;9561:::-;9703:3;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9800:93;9889:3;9800:93;:::i;:::-;9918:2;9913:3;9909:12;9902:19;;9561:366;;;:::o;9933:::-;10075:3;10096:67;10160:2;10155:3;10096:67;:::i;:::-;10089:74;;10172:93;10261:3;10172:93;:::i;:::-;10290:2;10285:3;10281:12;10274:19;;9933:366;;;:::o;10305:::-;10447:3;10468:67;10532:2;10527:3;10468:67;:::i;:::-;10461:74;;10544:93;10633:3;10544:93;:::i;:::-;10662:2;10657:3;10653:12;10646:19;;10305:366;;;:::o;10677:::-;10819:3;10840:67;10904:2;10899:3;10840:67;:::i;:::-;10833:74;;10916:93;11005:3;10916:93;:::i;:::-;11034:2;11029:3;11025:12;11018:19;;10677:366;;;:::o;11049:::-;11191:3;11212:67;11276:2;11271:3;11212:67;:::i;:::-;11205:74;;11288:93;11377:3;11288:93;:::i;:::-;11406:2;11401:3;11397:12;11390:19;;11049:366;;;:::o;11421:::-;11563:3;11584:67;11648:2;11643:3;11584:67;:::i;:::-;11577:74;;11660:93;11749:3;11660:93;:::i;:::-;11778:2;11773:3;11769:12;11762:19;;11421:366;;;:::o;11793:::-;11935:3;11956:67;12020:2;12015:3;11956:67;:::i;:::-;11949:74;;12032:93;12121:3;12032:93;:::i;:::-;12150:2;12145:3;12141:12;12134:19;;11793:366;;;:::o;12165:365::-;12307:3;12328:66;12392:1;12387:3;12328:66;:::i;:::-;12321:73;;12403:93;12492:3;12403:93;:::i;:::-;12521:2;12516:3;12512:12;12505:19;;12165:365;;;:::o;12536:366::-;12678:3;12699:67;12763:2;12758:3;12699:67;:::i;:::-;12692:74;;12775:93;12864:3;12775:93;:::i;:::-;12893:2;12888:3;12884:12;12877:19;;12536:366;;;:::o;12908:::-;13050:3;13071:67;13135:2;13130:3;13071:67;:::i;:::-;13064:74;;13147:93;13236:3;13147:93;:::i;:::-;13265:2;13260:3;13256:12;13249:19;;12908:366;;;:::o;13280:::-;13422:3;13443:67;13507:2;13502:3;13443:67;:::i;:::-;13436:74;;13519:93;13608:3;13519:93;:::i;:::-;13637:2;13632:3;13628:12;13621:19;;13280:366;;;:::o;13652:::-;13794:3;13815:67;13879:2;13874:3;13815:67;:::i;:::-;13808:74;;13891:93;13980:3;13891:93;:::i;:::-;14009:2;14004:3;14000:12;13993:19;;13652:366;;;:::o;14024:::-;14166:3;14187:67;14251:2;14246:3;14187:67;:::i;:::-;14180:74;;14263:93;14352:3;14263:93;:::i;:::-;14381:2;14376:3;14372:12;14365:19;;14024:366;;;:::o;14396:::-;14538:3;14559:67;14623:2;14618:3;14559:67;:::i;:::-;14552:74;;14635:93;14724:3;14635:93;:::i;:::-;14753:2;14748:3;14744:12;14737:19;;14396:366;;;:::o;14768:::-;14910:3;14931:67;14995:2;14990:3;14931:67;:::i;:::-;14924:74;;15007:93;15096:3;15007:93;:::i;:::-;15125:2;15120:3;15116:12;15109:19;;14768:366;;;:::o;15140:::-;15282:3;15303:67;15367:2;15362:3;15303:67;:::i;:::-;15296:74;;15379:93;15468:3;15379:93;:::i;:::-;15497:2;15492:3;15488:12;15481:19;;15140:366;;;:::o;15512:::-;15654:3;15675:67;15739:2;15734:3;15675:67;:::i;:::-;15668:74;;15751:93;15840:3;15751:93;:::i;:::-;15869:2;15864:3;15860:12;15853:19;;15512:366;;;:::o;15884:::-;16026:3;16047:67;16111:2;16106:3;16047:67;:::i;:::-;16040:74;;16123:93;16212:3;16123:93;:::i;:::-;16241:2;16236:3;16232:12;16225:19;;15884:366;;;:::o;16256:398::-;16415:3;16436:83;16517:1;16512:3;16436:83;:::i;:::-;16429:90;;16528:93;16617:3;16528:93;:::i;:::-;16646:1;16641:3;16637:11;16630:18;;16256:398;;;:::o;16660:366::-;16802:3;16823:67;16887:2;16882:3;16823:67;:::i;:::-;16816:74;;16899:93;16988:3;16899:93;:::i;:::-;17017:2;17012:3;17008:12;17001:19;;16660:366;;;:::o;17032:::-;17174:3;17195:67;17259:2;17254:3;17195:67;:::i;:::-;17188:74;;17271:93;17360:3;17271:93;:::i;:::-;17389:2;17384:3;17380:12;17373:19;;17032:366;;;:::o;17404:::-;17546:3;17567:67;17631:2;17626:3;17567:67;:::i;:::-;17560:74;;17643:93;17732:3;17643:93;:::i;:::-;17761:2;17756:3;17752:12;17745:19;;17404:366;;;:::o;17776:::-;17918:3;17939:67;18003:2;17998:3;17939:67;:::i;:::-;17932:74;;18015:93;18104:3;18015:93;:::i;:::-;18133:2;18128:3;18124:12;18117:19;;17776:366;;;:::o;18148:::-;18290:3;18311:67;18375:2;18370:3;18311:67;:::i;:::-;18304:74;;18387:93;18476:3;18387:93;:::i;:::-;18505:2;18500:3;18496:12;18489:19;;18148:366;;;:::o;18520:::-;18662:3;18683:67;18747:2;18742:3;18683:67;:::i;:::-;18676:74;;18759:93;18848:3;18759:93;:::i;:::-;18877:2;18872:3;18868:12;18861:19;;18520:366;;;:::o;18892:::-;19034:3;19055:67;19119:2;19114:3;19055:67;:::i;:::-;19048:74;;19131:93;19220:3;19131:93;:::i;:::-;19249:2;19244:3;19240:12;19233:19;;18892:366;;;:::o;19264:::-;19406:3;19427:67;19491:2;19486:3;19427:67;:::i;:::-;19420:74;;19503:93;19592:3;19503:93;:::i;:::-;19621:2;19616:3;19612:12;19605:19;;19264:366;;;:::o;19636:::-;19778:3;19799:67;19863:2;19858:3;19799:67;:::i;:::-;19792:74;;19875:93;19964:3;19875:93;:::i;:::-;19993:2;19988:3;19984:12;19977:19;;19636:366;;;:::o;20008:::-;20150:3;20171:67;20235:2;20230:3;20171:67;:::i;:::-;20164:74;;20247:93;20336:3;20247:93;:::i;:::-;20365:2;20360:3;20356:12;20349:19;;20008:366;;;:::o;20380:::-;20522:3;20543:67;20607:2;20602:3;20543:67;:::i;:::-;20536:74;;20619:93;20708:3;20619:93;:::i;:::-;20737:2;20732:3;20728:12;20721:19;;20380:366;;;:::o;20752:::-;20894:3;20915:67;20979:2;20974:3;20915:67;:::i;:::-;20908:74;;20991:93;21080:3;20991:93;:::i;:::-;21109:2;21104:3;21100:12;21093:19;;20752:366;;;:::o;21194:529::-;21355:4;21350:3;21346:14;21442:4;21435:5;21431:16;21425:23;21461:63;21518:4;21513:3;21509:14;21495:12;21461:63;:::i;:::-;21370:164;21626:4;21619:5;21615:16;21609:23;21645:61;21700:4;21695:3;21691:14;21677:12;21645:61;:::i;:::-;21544:172;21324:399;21194:529;;:::o;21729:118::-;21816:24;21834:5;21816:24;:::i;:::-;21811:3;21804:37;21729:118;;:::o;21853:105::-;21928:23;21945:5;21928:23;:::i;:::-;21923:3;21916:36;21853:105;;:::o;21964:435::-;22144:3;22166:95;22257:3;22248:6;22166:95;:::i;:::-;22159:102;;22278:95;22369:3;22360:6;22278:95;:::i;:::-;22271:102;;22390:3;22383:10;;21964:435;;;;;:::o;22405:379::-;22589:3;22611:147;22754:3;22611:147;:::i;:::-;22604:154;;22775:3;22768:10;;22405:379;;;:::o;22790:222::-;22883:4;22921:2;22910:9;22906:18;22898:26;;22934:71;23002:1;22991:9;22987:17;22978:6;22934:71;:::i;:::-;22790:222;;;;:::o;23018:640::-;23213:4;23251:3;23240:9;23236:19;23228:27;;23265:71;23333:1;23322:9;23318:17;23309:6;23265:71;:::i;:::-;23346:72;23414:2;23403:9;23399:18;23390:6;23346:72;:::i;:::-;23428;23496:2;23485:9;23481:18;23472:6;23428:72;:::i;:::-;23547:9;23541:4;23537:20;23532:2;23521:9;23517:18;23510:48;23575:76;23646:4;23637:6;23575:76;:::i;:::-;23567:84;;23018:640;;;;;;;:::o;23664:210::-;23751:4;23789:2;23778:9;23774:18;23766:26;;23802:65;23864:1;23853:9;23849:17;23840:6;23802:65;:::i;:::-;23664:210;;;;:::o;23880:313::-;23993:4;24031:2;24020:9;24016:18;24008:26;;24080:9;24074:4;24070:20;24066:1;24055:9;24051:17;24044:47;24108:78;24181:4;24172:6;24108:78;:::i;:::-;24100:86;;23880:313;;;;:::o;24199:419::-;24365:4;24403:2;24392:9;24388:18;24380:26;;24452:9;24446:4;24442:20;24438:1;24427:9;24423:17;24416:47;24480:131;24606:4;24480:131;:::i;:::-;24472:139;;24199:419;;;:::o;24624:::-;24790:4;24828:2;24817:9;24813:18;24805:26;;24877:9;24871:4;24867:20;24863:1;24852:9;24848:17;24841:47;24905:131;25031:4;24905:131;:::i;:::-;24897:139;;24624:419;;;:::o;25049:::-;25215:4;25253:2;25242:9;25238:18;25230:26;;25302:9;25296:4;25292:20;25288:1;25277:9;25273:17;25266:47;25330:131;25456:4;25330:131;:::i;:::-;25322:139;;25049:419;;;:::o;25474:::-;25640:4;25678:2;25667:9;25663:18;25655:26;;25727:9;25721:4;25717:20;25713:1;25702:9;25698:17;25691:47;25755:131;25881:4;25755:131;:::i;:::-;25747:139;;25474:419;;;:::o;25899:::-;26065:4;26103:2;26092:9;26088:18;26080:26;;26152:9;26146:4;26142:20;26138:1;26127:9;26123:17;26116:47;26180:131;26306:4;26180:131;:::i;:::-;26172:139;;25899:419;;;:::o;26324:::-;26490:4;26528:2;26517:9;26513:18;26505:26;;26577:9;26571:4;26567:20;26563:1;26552:9;26548:17;26541:47;26605:131;26731:4;26605:131;:::i;:::-;26597:139;;26324:419;;;:::o;26749:::-;26915:4;26953:2;26942:9;26938:18;26930:26;;27002:9;26996:4;26992:20;26988:1;26977:9;26973:17;26966:47;27030:131;27156:4;27030:131;:::i;:::-;27022:139;;26749:419;;;:::o;27174:::-;27340:4;27378:2;27367:9;27363:18;27355:26;;27427:9;27421:4;27417:20;27413:1;27402:9;27398:17;27391:47;27455:131;27581:4;27455:131;:::i;:::-;27447:139;;27174:419;;;:::o;27599:::-;27765:4;27803:2;27792:9;27788:18;27780:26;;27852:9;27846:4;27842:20;27838:1;27827:9;27823:17;27816:47;27880:131;28006:4;27880:131;:::i;:::-;27872:139;;27599:419;;;:::o;28024:::-;28190:4;28228:2;28217:9;28213:18;28205:26;;28277:9;28271:4;28267:20;28263:1;28252:9;28248:17;28241:47;28305:131;28431:4;28305:131;:::i;:::-;28297:139;;28024:419;;;:::o;28449:::-;28615:4;28653:2;28642:9;28638:18;28630:26;;28702:9;28696:4;28692:20;28688:1;28677:9;28673:17;28666:47;28730:131;28856:4;28730:131;:::i;:::-;28722:139;;28449:419;;;:::o;28874:::-;29040:4;29078:2;29067:9;29063:18;29055:26;;29127:9;29121:4;29117:20;29113:1;29102:9;29098:17;29091:47;29155:131;29281:4;29155:131;:::i;:::-;29147:139;;28874:419;;;:::o;29299:::-;29465:4;29503:2;29492:9;29488:18;29480:26;;29552:9;29546:4;29542:20;29538:1;29527:9;29523:17;29516:47;29580:131;29706:4;29580:131;:::i;:::-;29572:139;;29299:419;;;:::o;29724:::-;29890:4;29928:2;29917:9;29913:18;29905:26;;29977:9;29971:4;29967:20;29963:1;29952:9;29948:17;29941:47;30005:131;30131:4;30005:131;:::i;:::-;29997:139;;29724:419;;;:::o;30149:::-;30315:4;30353:2;30342:9;30338:18;30330:26;;30402:9;30396:4;30392:20;30388:1;30377:9;30373:17;30366:47;30430:131;30556:4;30430:131;:::i;:::-;30422:139;;30149:419;;;:::o;30574:::-;30740:4;30778:2;30767:9;30763:18;30755:26;;30827:9;30821:4;30817:20;30813:1;30802:9;30798:17;30791:47;30855:131;30981:4;30855:131;:::i;:::-;30847:139;;30574:419;;;:::o;30999:::-;31165:4;31203:2;31192:9;31188:18;31180:26;;31252:9;31246:4;31242:20;31238:1;31227:9;31223:17;31216:47;31280:131;31406:4;31280:131;:::i;:::-;31272:139;;30999:419;;;:::o;31424:::-;31590:4;31628:2;31617:9;31613:18;31605:26;;31677:9;31671:4;31667:20;31663:1;31652:9;31648:17;31641:47;31705:131;31831:4;31705:131;:::i;:::-;31697:139;;31424:419;;;:::o;31849:::-;32015:4;32053:2;32042:9;32038:18;32030:26;;32102:9;32096:4;32092:20;32088:1;32077:9;32073:17;32066:47;32130:131;32256:4;32130:131;:::i;:::-;32122:139;;31849:419;;;:::o;32274:::-;32440:4;32478:2;32467:9;32463:18;32455:26;;32527:9;32521:4;32517:20;32513:1;32502:9;32498:17;32491:47;32555:131;32681:4;32555:131;:::i;:::-;32547:139;;32274:419;;;:::o;32699:::-;32865:4;32903:2;32892:9;32888:18;32880:26;;32952:9;32946:4;32942:20;32938:1;32927:9;32923:17;32916:47;32980:131;33106:4;32980:131;:::i;:::-;32972:139;;32699:419;;;:::o;33124:::-;33290:4;33328:2;33317:9;33313:18;33305:26;;33377:9;33371:4;33367:20;33363:1;33352:9;33348:17;33341:47;33405:131;33531:4;33405:131;:::i;:::-;33397:139;;33124:419;;;:::o;33549:::-;33715:4;33753:2;33742:9;33738:18;33730:26;;33802:9;33796:4;33792:20;33788:1;33777:9;33773:17;33766:47;33830:131;33956:4;33830:131;:::i;:::-;33822:139;;33549:419;;;:::o;33974:::-;34140:4;34178:2;34167:9;34163:18;34155:26;;34227:9;34221:4;34217:20;34213:1;34202:9;34198:17;34191:47;34255:131;34381:4;34255:131;:::i;:::-;34247:139;;33974:419;;;:::o;34399:::-;34565:4;34603:2;34592:9;34588:18;34580:26;;34652:9;34646:4;34642:20;34638:1;34627:9;34623:17;34616:47;34680:131;34806:4;34680:131;:::i;:::-;34672:139;;34399:419;;;:::o;34824:::-;34990:4;35028:2;35017:9;35013:18;35005:26;;35077:9;35071:4;35067:20;35063:1;35052:9;35048:17;35041:47;35105:131;35231:4;35105:131;:::i;:::-;35097:139;;34824:419;;;:::o;35249:::-;35415:4;35453:2;35442:9;35438:18;35430:26;;35502:9;35496:4;35492:20;35488:1;35477:9;35473:17;35466:47;35530:131;35656:4;35530:131;:::i;:::-;35522:139;;35249:419;;;:::o;35674:::-;35840:4;35878:2;35867:9;35863:18;35855:26;;35927:9;35921:4;35917:20;35913:1;35902:9;35898:17;35891:47;35955:131;36081:4;35955:131;:::i;:::-;35947:139;;35674:419;;;:::o;36099:::-;36265:4;36303:2;36292:9;36288:18;36280:26;;36352:9;36346:4;36342:20;36338:1;36327:9;36323:17;36316:47;36380:131;36506:4;36380:131;:::i;:::-;36372:139;;36099:419;;;:::o;36524:::-;36690:4;36728:2;36717:9;36713:18;36705:26;;36777:9;36771:4;36767:20;36763:1;36752:9;36748:17;36741:47;36805:131;36931:4;36805:131;:::i;:::-;36797:139;;36524:419;;;:::o;36949:::-;37115:4;37153:2;37142:9;37138:18;37130:26;;37202:9;37196:4;37192:20;37188:1;37177:9;37173:17;37166:47;37230:131;37356:4;37230:131;:::i;:::-;37222:139;;36949:419;;;:::o;37374:::-;37540:4;37578:2;37567:9;37563:18;37555:26;;37627:9;37621:4;37617:20;37613:1;37602:9;37598:17;37591:47;37655:131;37781:4;37655:131;:::i;:::-;37647:139;;37374:419;;;:::o;37799:::-;37965:4;38003:2;37992:9;37988:18;37980:26;;38052:9;38046:4;38042:20;38038:1;38027:9;38023:17;38016:47;38080:131;38206:4;38080:131;:::i;:::-;38072:139;;37799:419;;;:::o;38224:350::-;38381:4;38419:2;38408:9;38404:18;38396:26;;38432:135;38564:1;38553:9;38549:17;38540:6;38432:135;:::i;:::-;38224:350;;;;:::o;38580:222::-;38673:4;38711:2;38700:9;38696:18;38688:26;;38724:71;38792:1;38781:9;38777:17;38768:6;38724:71;:::i;:::-;38580:222;;;;:::o;38808:129::-;38842:6;38869:20;;:::i;:::-;38859:30;;38898:33;38926:4;38918:6;38898:33;:::i;:::-;38808:129;;;:::o;38943:75::-;38976:6;39009:2;39003:9;38993:19;;38943:75;:::o;39024:307::-;39085:4;39175:18;39167:6;39164:30;39161:56;;;39197:18;;:::i;:::-;39161:56;39235:29;39257:6;39235:29;:::i;:::-;39227:37;;39319:4;39313;39309:15;39301:23;;39024:307;;;:::o;39337:98::-;39388:6;39422:5;39416:12;39406:22;;39337:98;;;:::o;39441:99::-;39493:6;39527:5;39521:12;39511:22;;39441:99;;;:::o;39546:168::-;39629:11;39663:6;39658:3;39651:19;39703:4;39698:3;39694:14;39679:29;;39546:168;;;;:::o;39720:147::-;39821:11;39858:3;39843:18;;39720:147;;;;:::o;39873:169::-;39957:11;39991:6;39986:3;39979:19;40031:4;40026:3;40022:14;40007:29;;39873:169;;;;:::o;40048:148::-;40150:11;40187:3;40172:18;;40048:148;;;;:::o;40202:305::-;40242:3;40261:20;40279:1;40261:20;:::i;:::-;40256:25;;40295:20;40313:1;40295:20;:::i;:::-;40290:25;;40449:1;40381:66;40377:74;40374:1;40371:81;40368:107;;;40455:18;;:::i;:::-;40368:107;40499:1;40496;40492:9;40485:16;;40202:305;;;;:::o;40513:185::-;40553:1;40570:20;40588:1;40570:20;:::i;:::-;40565:25;;40604:20;40622:1;40604:20;:::i;:::-;40599:25;;40643:1;40633:35;;40648:18;;:::i;:::-;40633:35;40690:1;40687;40683:9;40678:14;;40513:185;;;;:::o;40704:348::-;40744:7;40767:20;40785:1;40767:20;:::i;:::-;40762:25;;40801:20;40819:1;40801:20;:::i;:::-;40796:25;;40989:1;40921:66;40917:74;40914:1;40911:81;40906:1;40899:9;40892:17;40888:105;40885:131;;;40996:18;;:::i;:::-;40885:131;41044:1;41041;41037:9;41026:20;;40704:348;;;;:::o;41058:191::-;41098:4;41118:20;41136:1;41118:20;:::i;:::-;41113:25;;41152:20;41170:1;41152:20;:::i;:::-;41147:25;;41191:1;41188;41185:8;41182:34;;;41196:18;;:::i;:::-;41182:34;41241:1;41238;41234:9;41226:17;;41058:191;;;;:::o;41255:96::-;41292:7;41321:24;41339:5;41321:24;:::i;:::-;41310:35;;41255:96;;;:::o;41357:90::-;41391:7;41434:5;41427:13;41420:21;41409:32;;41357:90;;;:::o;41453:149::-;41489:7;41529:66;41522:5;41518:78;41507:89;;41453:149;;;:::o;41608:126::-;41645:7;41685:42;41678:5;41674:54;41663:65;;41608:126;;;:::o;41740:77::-;41777:7;41806:5;41795:16;;41740:77;;;:::o;41823:101::-;41859:7;41899:18;41892:5;41888:30;41877:41;;41823:101;;;:::o;41930:154::-;42014:6;42009:3;42004;41991:30;42076:1;42067:6;42062:3;42058:16;42051:27;41930:154;;;:::o;42090:307::-;42158:1;42168:113;42182:6;42179:1;42176:13;42168:113;;;42267:1;42262:3;42258:11;42252:18;42248:1;42243:3;42239:11;42232:39;42204:2;42201:1;42197:10;42192:15;;42168:113;;;42299:6;42296:1;42293:13;42290:101;;;42379:1;42370:6;42365:3;42361:16;42354:27;42290:101;42139:258;42090:307;;;:::o;42403:320::-;42447:6;42484:1;42478:4;42474:12;42464:22;;42531:1;42525:4;42521:12;42552:18;42542:81;;42608:4;42600:6;42596:17;42586:27;;42542:81;42670:2;42662:6;42659:14;42639:18;42636:38;42633:84;;;42689:18;;:::i;:::-;42633:84;42454:269;42403:320;;;:::o;42729:281::-;42812:27;42834:4;42812:27;:::i;:::-;42804:6;42800:40;42942:6;42930:10;42927:22;42906:18;42894:10;42891:34;42888:62;42885:88;;;42953:18;;:::i;:::-;42885:88;42993:10;42989:2;42982:22;42772:238;42729:281;;:::o;43016:233::-;43055:3;43078:24;43096:5;43078:24;:::i;:::-;43069:33;;43124:66;43117:5;43114:77;43111:103;;;43194:18;;:::i;:::-;43111:103;43241:1;43234:5;43230:13;43223:20;;43016:233;;;:::o;43255:176::-;43287:1;43304:20;43322:1;43304:20;:::i;:::-;43299:25;;43338:20;43356:1;43338:20;:::i;:::-;43333:25;;43377:1;43367:35;;43382:18;;:::i;:::-;43367:35;43423:1;43420;43416:9;43411:14;;43255:176;;;;:::o;43437:180::-;43485:77;43482:1;43475:88;43582:4;43579:1;43572:15;43606:4;43603:1;43596:15;43623:180;43671:77;43668:1;43661:88;43768:4;43765:1;43758:15;43792:4;43789:1;43782:15;43809:180;43857:77;43854:1;43847:88;43954:4;43951:1;43944:15;43978:4;43975:1;43968:15;43995:180;44043:77;44040:1;44033:88;44140:4;44137:1;44130:15;44164:4;44161:1;44154:15;44181:180;44229:77;44226:1;44219:88;44326:4;44323:1;44316:15;44350:4;44347:1;44340:15;44367:117;44476:1;44473;44466:12;44490:117;44599:1;44596;44589:12;44613:117;44722:1;44719;44712:12;44736:117;44845:1;44842;44835:12;44859:117;44968:1;44965;44958:12;44982:117;45091:1;45088;45081:12;45105:102;45146:6;45197:2;45193:7;45188:2;45181:5;45177:14;45173:28;45163:38;;45105:102;;;:::o;45213:221::-;45353:34;45349:1;45341:6;45337:14;45330:58;45422:4;45417:2;45409:6;45405:15;45398:29;45213:221;:::o;45440:163::-;45580:15;45576:1;45568:6;45564:14;45557:39;45440:163;:::o;45609:225::-;45749:34;45745:1;45737:6;45733:14;45726:58;45818:8;45813:2;45805:6;45801:15;45794:33;45609:225;:::o;45840:229::-;45980:34;45976:1;45968:6;45964:14;45957:58;46049:12;46044:2;46036:6;46032:15;46025:37;45840:229;:::o;46075:170::-;46215:22;46211:1;46203:6;46199:14;46192:46;46075:170;:::o;46251:::-;46391:22;46387:1;46379:6;46375:14;46368:46;46251:170;:::o;46427:222::-;46567:34;46563:1;46555:6;46551:14;46544:58;46636:5;46631:2;46623:6;46619:15;46612:30;46427:222;:::o;46655:224::-;46795:34;46791:1;46783:6;46779:14;46772:58;46864:7;46859:2;46851:6;46847:15;46840:32;46655:224;:::o;46885:236::-;47025:34;47021:1;47013:6;47009:14;47002:58;47094:19;47089:2;47081:6;47077:15;47070:44;46885:236;:::o;47127:178::-;47267:30;47263:1;47255:6;47251:14;47244:54;47127:178;:::o;47311:159::-;47451:11;47447:1;47439:6;47435:14;47428:35;47311:159;:::o;47476:244::-;47616:34;47612:1;47604:6;47600:14;47593:58;47685:27;47680:2;47672:6;47668:15;47661:52;47476:244;:::o;47726:174::-;47866:26;47862:1;47854:6;47850:14;47843:50;47726:174;:::o;47906:230::-;48046:34;48042:1;48034:6;48030:14;48023:58;48115:13;48110:2;48102:6;48098:15;48091:38;47906:230;:::o;48142:225::-;48282:34;48278:1;48270:6;48266:14;48259:58;48351:8;48346:2;48338:6;48334:15;48327:33;48142:225;:::o;48373:182::-;48513:34;48509:1;48501:6;48497:14;48490:58;48373:182;:::o;48561:234::-;48701:34;48697:1;48689:6;48685:14;48678:58;48770:17;48765:2;48757:6;48753:15;48746:42;48561:234;:::o;48801:176::-;48941:28;48937:1;48929:6;48925:14;48918:52;48801:176;:::o;48983:237::-;49123:34;49119:1;49111:6;49107:14;49100:58;49192:20;49187:2;49179:6;49175:15;49168:45;48983:237;:::o;49226:179::-;49366:31;49362:1;49354:6;49350:14;49343:55;49226:179;:::o;49411:221::-;49551:34;49547:1;49539:6;49535:14;49528:58;49620:4;49615:2;49607:6;49603:15;49596:29;49411:221;:::o;49638:114::-;;:::o;49758:166::-;49898:18;49894:1;49886:6;49882:14;49875:42;49758:166;:::o;49930:238::-;50070:34;50066:1;50058:6;50054:14;50047:58;50139:21;50134:2;50126:6;50122:15;50115:46;49930:238;:::o;50174:173::-;50314:25;50310:1;50302:6;50298:14;50291:49;50174:173;:::o;50353:166::-;50493:18;50489:1;50481:6;50477:14;50470:42;50353:166;:::o;50525:220::-;50665:34;50661:1;50653:6;50649:14;50642:58;50734:3;50729:2;50721:6;50717:15;50710:28;50525:220;:::o;50751:227::-;50891:34;50887:1;50879:6;50875:14;50868:58;50960:10;50955:2;50947:6;50943:15;50936:35;50751:227;:::o;50984:169::-;51124:21;51120:1;51112:6;51108:14;51101:45;50984:169;:::o;51159:233::-;51299:34;51295:1;51287:6;51283:14;51276:58;51368:16;51363:2;51355:6;51351:15;51344:41;51159:233;:::o;51398:181::-;51538:33;51534:1;51526:6;51522:14;51515:57;51398:181;:::o;51585:234::-;51725:34;51721:1;51713:6;51709:14;51702:58;51794:17;51789:2;51781:6;51777:15;51770:42;51585:234;:::o;51825:232::-;51965:34;51961:1;51953:6;51949:14;51942:58;52034:15;52029:2;52021:6;52017:15;52010:40;51825:232;:::o;52063:180::-;52203:32;52199:1;52191:6;52187:14;52180:56;52063:180;:::o;52249:122::-;52322:24;52340:5;52322:24;:::i;:::-;52315:5;52312:35;52302:63;;52361:1;52358;52351:12;52302:63;52249:122;:::o;52377:116::-;52447:21;52462:5;52447:21;:::i;:::-;52440:5;52437:32;52427:60;;52483:1;52480;52473:12;52427:60;52377:116;:::o;52499:120::-;52571:23;52588:5;52571:23;:::i;:::-;52564:5;52561:34;52551:62;;52609:1;52606;52599:12;52551:62;52499:120;:::o;52625:122::-;52698:24;52716:5;52698:24;:::i;:::-;52691:5;52688:35;52678:63;;52737:1;52734;52727:12;52678:63;52625:122;:::o

Swarm Source

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