ETH Price: $3,315.87 (+1.72%)
Gas: 4 Gwei

Token

Okay Pumpkins (Pumpkins)
 

Overview

Max Total Supply

2,222 Pumpkins

Holders

585

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Pumpkins
0x10a06f53980bb77f08a84b808bca3821a74eb052
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:
OkayPumpkins

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-10-23
*/

// SPDX-License-Identifier: MIT

// File: contracts/Okay Pumpkins.sol



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


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

pragma solidity ^0.8.0;


library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/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 (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

// File: contracts/SpaceRocket999.sol





pragma solidity >=0.7.0 <0.9.0;




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

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = "";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0 ether;
  uint256 public finalMaxSupply = 2222;
  uint256 public currentMaxSupply = 2;
  uint256 public maxMintAmountPerTx = 3;

  bool public paused = true;
  bool public revealed = false;

  constructor() ERC721("Okay Pumpkins", "Pumpkins") {
    setHiddenMetadataUri("ipfs://bafybeie3fvpmwnhu7ha4dwwla7h2thzsodetwnjm7dll33tvh5gpfajy4m/");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= currentMaxSupply, "Max supply exceeded!");
    _;
  }

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

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

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

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

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= currentMaxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

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

  function setCurrentMaxSupply(uint256 _supply) public onlyOwner { 
    require (_supply <= finalMaxSupply && _supply >= totalSupply());  
    currentMaxSupply = _supply;
  }

  function resetFinalMaxSupply() public onlyOwner {
      finalMaxSupply = currentMaxSupply;
  }

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

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

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

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

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

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

  function withdraw() public onlyOwner {
   
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }

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

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

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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetFinalMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setCurrentMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b92919062000352565b5060405180602001604052806000815250600990805190602001906200005392919062000352565b506000600b556108ae600c556002600d556003600e556001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff021916908315150217905550348015620000ac57600080fd5b506040518060400160405280600d81526020017f4f6b61792050756d706b696e73000000000000000000000000000000000000008152506040518060400160405280600881526020017f50756d706b696e7300000000000000000000000000000000000000000000000081525081600090805190602001906200013192919062000352565b5080600190805190602001906200014a92919062000352565b5050506200016d620001616200019d60201b60201c565b620001a560201b60201c565b62000197604051806080016040528060438152602001620041c9604391396200026b60201b60201c565b620004ea565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200027b6200029760201b60201c565b80600a90805190602001906200029392919062000352565b5050565b620002a76200019d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002cd6200032860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000326576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031d9062000429565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000360906200045c565b90600052602060002090601f016020900481019282620003845760008555620003d0565b82601f106200039f57805160ff1916838001178555620003d0565b82800160010185558215620003d0579182015b82811115620003cf578251825591602001919060010190620003b2565b5b509050620003df9190620003e3565b5090565b5b80821115620003fe576000816000905550600101620003e4565b5090565b6000620004116020836200044b565b91506200041e82620004c1565b602082019050919050565b60006020820190508181036000830152620004448162000402565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200047557607f821691505b602082108114156200048c576200048b62000492565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613ccf80620004fa6000396000f3fe6080604052600436106102305760003560e01c80635c975abb1161012e578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107e2578063e0a808531461081f578063e985e9c514610848578063efbd73f414610885578063f2fde38b146108ae57610230565b8063a0712d6814610720578063a22cb4651461073c578063a45ba8e714610765578063b071401b14610790578063b88d4fde146107b957610230565b806373022011116100f2578063730220111461064d5780637ec4a659146106765780638da5cb5b1461069f57806394354fd0146106ca57806395d89b41146106f557610230565b80635c975abb1461056657806362b99ad4146105915780636352211e146105bc57806370a08231146105f9578063715018a61461063657610230565b806323b872dd116101bc5780634ad66811116101805780634ad66811146104a55780634fdd43cb146104d057806351830227146104f95780635503a0e814610524578063569b75f81461054f57610230565b806323b872dd146103d65780633ccfd60b146103ff57806342842e0e14610416578063438b63001461043f57806344a0d68a1461047c57610230565b8063104aeef811610203578063104aeef81461030357806313faede61461032e57806316ba10e01461035957806316c38b3c1461038257806318160ddd146103ab57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612a43565b6108d7565b604051610269919061308f565b60405180910390f35b34801561027e57600080fd5b506102876109b9565b60405161029491906130aa565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612ae6565b610a4b565b6040516102d19190613006565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906129d6565b610a91565b005b34801561030f57600080fd5b50610318610ba9565b604051610325919061330c565b60405180910390f35b34801561033a57600080fd5b50610343610baf565b604051610350919061330c565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190612a9d565b610bb5565b005b34801561038e57600080fd5b506103a960048036038101906103a49190612a16565b610bd7565b005b3480156103b757600080fd5b506103c0610bfc565b6040516103cd919061330c565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f891906128c0565b610c0d565b005b34801561040b57600080fd5b50610414610c6d565b005b34801561042257600080fd5b5061043d600480360381019061043891906128c0565b610cf5565b005b34801561044b57600080fd5b5061046660048036038101906104619190612853565b610d15565b604051610473919061306d565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190612ae6565b610e20565b005b3480156104b157600080fd5b506104ba610e32565b6040516104c7919061330c565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190612a9d565b610e38565b005b34801561050557600080fd5b5061050e610e5a565b60405161051b919061308f565b60405180910390f35b34801561053057600080fd5b50610539610e6d565b60405161054691906130aa565b60405180910390f35b34801561055b57600080fd5b50610564610efb565b005b34801561057257600080fd5b5061057b610f0e565b604051610588919061308f565b60405180910390f35b34801561059d57600080fd5b506105a6610f21565b6040516105b391906130aa565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190612ae6565b610faf565b6040516105f09190613006565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190612853565b611061565b60405161062d919061330c565b60405180910390f35b34801561064257600080fd5b5061064b611119565b005b34801561065957600080fd5b50610674600480360381019061066f9190612ae6565b61112d565b005b34801561068257600080fd5b5061069d60048036038101906106989190612a9d565b611161565b005b3480156106ab57600080fd5b506106b4611183565b6040516106c19190613006565b60405180910390f35b3480156106d657600080fd5b506106df6111ad565b6040516106ec919061330c565b60405180910390f35b34801561070157600080fd5b5061070a6111b3565b60405161071791906130aa565b60405180910390f35b61073a60048036038101906107359190612ae6565b611245565b005b34801561074857600080fd5b50610763600480360381019061075e9190612996565b61139e565b005b34801561077157600080fd5b5061077a6113b4565b60405161078791906130aa565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b29190612ae6565b611442565b005b3480156107c557600080fd5b506107e060048036038101906107db9190612913565b611454565b005b3480156107ee57600080fd5b5061080960048036038101906108049190612ae6565b6114b6565b60405161081691906130aa565b60405180910390f35b34801561082b57600080fd5b5061084660048036038101906108419190612a16565b61160f565b005b34801561085457600080fd5b5061086f600480360381019061086a9190612880565b611634565b60405161087c919061308f565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190612b13565b6116c8565b005b3480156108ba57600080fd5b506108d560048036038101906108d09190612853565b61178a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b257506109b18261180e565b5b9050919050565b6060600080546109c890613615565b80601f01602080910402602001604051908101604052809291908181526020018280546109f490613615565b8015610a415780601f10610a1657610100808354040283529160200191610a41565b820191906000526020600020905b815481529060010190602001808311610a2457829003601f168201915b5050505050905090565b6000610a5682611878565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9c82610faf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b049061328c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b2c6118c3565b73ffffffffffffffffffffffffffffffffffffffff161480610b5b5750610b5a81610b556118c3565b611634565b5b610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b91906131cc565b60405180910390fd5b610ba483836118cb565b505050565b600d5481565b600b5481565b610bbd611984565b8060099080519060200190610bd3929190612667565b5050565b610bdf611984565b80600f60006101000a81548160ff02191690831515021790555050565b6000610c086007611a02565b905090565b610c1e610c186118c3565b82611a10565b610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c54906132cc565b60405180910390fd5b610c68838383611aa5565b505050565b610c75611984565b6000610c7f611183565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ca290612ff1565b60006040518083038185875af1925050503d8060008114610cdf576040519150601f19603f3d011682016040523d82523d6000602084013e610ce4565b606091505b5050905080610cf257600080fd5b50565b610d1083838360405180602001604052806000815250611454565b505050565b60606000610d2283611061565b905060008167ffffffffffffffff811115610d4057610d3f6137ae565b5b604051908082528060200260200182016040528015610d6e5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610d8b5750600d548211155b15610e14576000610d9b83610faf565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e005782848381518110610de557610de461377f565b5b6020026020010181815250508180610dfc90613678565b9250505b8280610e0b90613678565b93505050610d7a565b82945050505050919050565b610e28611984565b80600b8190555050565b600c5481565b610e40611984565b80600a9080519060200190610e56929190612667565b5050565b600f60019054906101000a900460ff1681565b60098054610e7a90613615565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea690613615565b8015610ef35780601f10610ec857610100808354040283529160200191610ef3565b820191906000526020600020905b815481529060010190602001808311610ed657829003601f168201915b505050505081565b610f03611984565b600d54600c81905550565b600f60009054906101000a900460ff1681565b60088054610f2e90613615565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5a90613615565b8015610fa75780601f10610f7c57610100808354040283529160200191610fa7565b820191906000526020600020905b815481529060010190602001808311610f8a57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f9061326c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c9906131ac565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611121611984565b61112b6000611d0c565b565b611135611984565b600c54811115801561114e575061114a610bfc565b8110155b61115757600080fd5b80600d8190555050565b611169611984565b806008908051906020019061117f929190612667565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600180546111c290613615565b80601f01602080910402602001604051908101604052809291908181526020018280546111ee90613615565b801561123b5780601f106112105761010080835404028352916020019161123b565b820191906000526020600020905b81548152906001019060200180831161121e57829003601f168201915b5050505050905090565b806000811180156112585750600e548111155b611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e9061314c565b60405180910390fd5b600d54816112a56007611a02565b6112af919061344a565b11156112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e7906132ac565b60405180910390fd5b600f60009054906101000a900460ff1615611340576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113379061322c565b60405180910390fd5b81600b5461134e91906134d1565b341015611390576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611387906132ec565b60405180910390fd5b61139a3383611dd2565b5050565b6113b06113a96118c3565b8383611e12565b5050565b600a80546113c190613615565b80601f01602080910402602001604051908101604052809291908181526020018280546113ed90613615565b801561143a5780601f1061140f5761010080835404028352916020019161143a565b820191906000526020600020905b81548152906001019060200180831161141d57829003601f168201915b505050505081565b61144a611984565b80600e8190555050565b61146561145f6118c3565b83611a10565b6114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b906132cc565b60405180910390fd5b6114b084848484611f7f565b50505050565b60606114c182611fdb565b611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f79061324c565b60405180910390fd5b60001515600f60019054906101000a900460ff16151514156115ae57600a805461152990613615565b80601f016020809104026020016040519081016040528092919081815260200182805461155590613615565b80156115a25780601f10611577576101008083540402835291602001916115a2565b820191906000526020600020905b81548152906001019060200180831161158557829003601f168201915b5050505050905061160a565b60006115b8612047565b905060008151116115d85760405180602001604052806000815250611606565b806115e2846120d9565b60096040516020016115f693929190612fc0565b6040516020818303038152906040525b9150505b919050565b611617611984565b80600f60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156116db5750600e548111155b61171a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117119061314c565b60405180910390fd5b600d54816117286007611a02565b611732919061344a565b1115611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a906132ac565b60405180910390fd5b61177b611984565b6117858284611dd2565b505050565b611792611984565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f9906130ec565b60405180910390fd5b61180b81611d0c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61188181611fdb565b6118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b79061326c565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661193e83610faf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61198c6118c3565b73ffffffffffffffffffffffffffffffffffffffff166119aa611183565b73ffffffffffffffffffffffffffffffffffffffff1614611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f79061320c565b60405180910390fd5b565b600081600001549050919050565b600080611a1c83610faf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a5e5750611a5d8185611634565b5b80611a9c57508373ffffffffffffffffffffffffffffffffffffffff16611a8484610a4b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ac582610faf565b73ffffffffffffffffffffffffffffffffffffffff1614611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b129061310c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b829061316c565b60405180910390fd5b611b9683838361223a565b611ba16000826118cb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bf1919061352b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c48919061344a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d0783838361223f565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611e0d57611de76007612244565b611dfa83611df56007611a02565b61225a565b8080611e0590613678565b915050611dd5565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e789061318c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f72919061308f565b60405180910390a3505050565b611f8a848484611aa5565b611f9684848484612278565b611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc906130cc565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606008805461205690613615565b80601f016020809104026020016040519081016040528092919081815260200182805461208290613615565b80156120cf5780601f106120a4576101008083540402835291602001916120cf565b820191906000526020600020905b8154815290600101906020018083116120b257829003601f168201915b5050505050905090565b60606000821415612121576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612235565b600082905060005b6000821461215357808061213c90613678565b915050600a8261214c91906134a0565b9150612129565b60008167ffffffffffffffff81111561216f5761216e6137ae565b5b6040519080825280601f01601f1916602001820160405280156121a15781602001600182028036833780820191505090505b5090505b6000851461222e576001826121ba919061352b565b9150600a856121c991906136c1565b60306121d5919061344a565b60f81b8183815181106121eb576121ea61377f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561222791906134a0565b94506121a5565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b61227482826040518060200160405280600081525061240f565b5050565b60006122998473ffffffffffffffffffffffffffffffffffffffff1661246a565b15612402578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122c26118c3565b8786866040518563ffffffff1660e01b81526004016122e49493929190613021565b602060405180830381600087803b1580156122fe57600080fd5b505af192505050801561232f57506040513d601f19601f8201168201806040525081019061232c9190612a70565b60015b6123b2573d806000811461235f576040519150601f19603f3d011682016040523d82523d6000602084013e612364565b606091505b506000815114156123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a1906130cc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612407565b600190505b949350505050565b612419838361248d565b6124266000848484612278565b612465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245c906130cc565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f4906131ec565b60405180910390fd5b61250681611fdb565b15612546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253d9061312c565b60405180910390fd5b6125526000838361223a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125a2919061344a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126636000838361223f565b5050565b82805461267390613615565b90600052602060002090601f01602090048101928261269557600085556126dc565b82601f106126ae57805160ff19168380011785556126dc565b828001600101855582156126dc579182015b828111156126db5782518255916020019190600101906126c0565b5b5090506126e991906126ed565b5090565b5b808211156127065760008160009055506001016126ee565b5090565b600061271d6127188461334c565b613327565b905082815260208101848484011115612739576127386137e2565b5b6127448482856135d3565b509392505050565b600061275f61275a8461337d565b613327565b90508281526020810184848401111561277b5761277a6137e2565b5b6127868482856135d3565b509392505050565b60008135905061279d81613c3d565b92915050565b6000813590506127b281613c54565b92915050565b6000813590506127c781613c6b565b92915050565b6000815190506127dc81613c6b565b92915050565b600082601f8301126127f7576127f66137dd565b5b813561280784826020860161270a565b91505092915050565b600082601f830112612825576128246137dd565b5b813561283584826020860161274c565b91505092915050565b60008135905061284d81613c82565b92915050565b600060208284031215612869576128686137ec565b5b60006128778482850161278e565b91505092915050565b60008060408385031215612897576128966137ec565b5b60006128a58582860161278e565b92505060206128b68582860161278e565b9150509250929050565b6000806000606084860312156128d9576128d86137ec565b5b60006128e78682870161278e565b93505060206128f88682870161278e565b92505060406129098682870161283e565b9150509250925092565b6000806000806080858703121561292d5761292c6137ec565b5b600061293b8782880161278e565b945050602061294c8782880161278e565b935050604061295d8782880161283e565b925050606085013567ffffffffffffffff81111561297e5761297d6137e7565b5b61298a878288016127e2565b91505092959194509250565b600080604083850312156129ad576129ac6137ec565b5b60006129bb8582860161278e565b92505060206129cc858286016127a3565b9150509250929050565b600080604083850312156129ed576129ec6137ec565b5b60006129fb8582860161278e565b9250506020612a0c8582860161283e565b9150509250929050565b600060208284031215612a2c57612a2b6137ec565b5b6000612a3a848285016127a3565b91505092915050565b600060208284031215612a5957612a586137ec565b5b6000612a67848285016127b8565b91505092915050565b600060208284031215612a8657612a856137ec565b5b6000612a94848285016127cd565b91505092915050565b600060208284031215612ab357612ab26137ec565b5b600082013567ffffffffffffffff811115612ad157612ad06137e7565b5b612add84828501612810565b91505092915050565b600060208284031215612afc57612afb6137ec565b5b6000612b0a8482850161283e565b91505092915050565b60008060408385031215612b2a57612b296137ec565b5b6000612b388582860161283e565b9250506020612b498582860161278e565b9150509250929050565b6000612b5f8383612fa2565b60208301905092915050565b612b748161355f565b82525050565b6000612b85826133d3565b612b8f8185613401565b9350612b9a836133ae565b8060005b83811015612bcb578151612bb28882612b53565b9750612bbd836133f4565b925050600181019050612b9e565b5085935050505092915050565b612be181613571565b82525050565b6000612bf2826133de565b612bfc8185613412565b9350612c0c8185602086016135e2565b612c15816137f1565b840191505092915050565b6000612c2b826133e9565b612c35818561342e565b9350612c458185602086016135e2565b612c4e816137f1565b840191505092915050565b6000612c64826133e9565b612c6e818561343f565b9350612c7e8185602086016135e2565b80840191505092915050565b60008154612c9781613615565b612ca1818661343f565b94506001821660008114612cbc5760018114612ccd57612d00565b60ff19831686528186019350612d00565b612cd6856133be565b60005b83811015612cf857815481890152600182019150602081019050612cd9565b838801955050505b50505092915050565b6000612d1660328361342e565b9150612d2182613802565b604082019050919050565b6000612d3960268361342e565b9150612d4482613851565b604082019050919050565b6000612d5c60258361342e565b9150612d67826138a0565b604082019050919050565b6000612d7f601c8361342e565b9150612d8a826138ef565b602082019050919050565b6000612da260148361342e565b9150612dad82613918565b602082019050919050565b6000612dc560248361342e565b9150612dd082613941565b604082019050919050565b6000612de860198361342e565b9150612df382613990565b602082019050919050565b6000612e0b60298361342e565b9150612e16826139b9565b604082019050919050565b6000612e2e603e8361342e565b9150612e3982613a08565b604082019050919050565b6000612e5160208361342e565b9150612e5c82613a57565b602082019050919050565b6000612e7460208361342e565b9150612e7f82613a80565b602082019050919050565b6000612e9760178361342e565b9150612ea282613aa9565b602082019050919050565b6000612eba602f8361342e565b9150612ec582613ad2565b604082019050919050565b6000612edd60188361342e565b9150612ee882613b21565b602082019050919050565b6000612f0060218361342e565b9150612f0b82613b4a565b604082019050919050565b6000612f23600083613423565b9150612f2e82613b99565b600082019050919050565b6000612f4660148361342e565b9150612f5182613b9c565b602082019050919050565b6000612f69602e8361342e565b9150612f7482613bc5565b604082019050919050565b6000612f8c60138361342e565b9150612f9782613c14565b602082019050919050565b612fab816135c9565b82525050565b612fba816135c9565b82525050565b6000612fcc8286612c59565b9150612fd88285612c59565b9150612fe48284612c8a565b9150819050949350505050565b6000612ffc82612f16565b9150819050919050565b600060208201905061301b6000830184612b6b565b92915050565b60006080820190506130366000830187612b6b565b6130436020830186612b6b565b6130506040830185612fb1565b81810360608301526130628184612be7565b905095945050505050565b600060208201905081810360008301526130878184612b7a565b905092915050565b60006020820190506130a46000830184612bd8565b92915050565b600060208201905081810360008301526130c48184612c20565b905092915050565b600060208201905081810360008301526130e581612d09565b9050919050565b6000602082019050818103600083015261310581612d2c565b9050919050565b6000602082019050818103600083015261312581612d4f565b9050919050565b6000602082019050818103600083015261314581612d72565b9050919050565b6000602082019050818103600083015261316581612d95565b9050919050565b6000602082019050818103600083015261318581612db8565b9050919050565b600060208201905081810360008301526131a581612ddb565b9050919050565b600060208201905081810360008301526131c581612dfe565b9050919050565b600060208201905081810360008301526131e581612e21565b9050919050565b6000602082019050818103600083015261320581612e44565b9050919050565b6000602082019050818103600083015261322581612e67565b9050919050565b6000602082019050818103600083015261324581612e8a565b9050919050565b6000602082019050818103600083015261326581612ead565b9050919050565b6000602082019050818103600083015261328581612ed0565b9050919050565b600060208201905081810360008301526132a581612ef3565b9050919050565b600060208201905081810360008301526132c581612f39565b9050919050565b600060208201905081810360008301526132e581612f5c565b9050919050565b6000602082019050818103600083015261330581612f7f565b9050919050565b60006020820190506133216000830184612fb1565b92915050565b6000613331613342565b905061333d8282613647565b919050565b6000604051905090565b600067ffffffffffffffff821115613367576133666137ae565b5b613370826137f1565b9050602081019050919050565b600067ffffffffffffffff821115613398576133976137ae565b5b6133a1826137f1565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613455826135c9565b9150613460836135c9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613495576134946136f2565b5b828201905092915050565b60006134ab826135c9565b91506134b6836135c9565b9250826134c6576134c5613721565b5b828204905092915050565b60006134dc826135c9565b91506134e7836135c9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135205761351f6136f2565b5b828202905092915050565b6000613536826135c9565b9150613541836135c9565b925082821015613554576135536136f2565b5b828203905092915050565b600061356a826135a9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136005780820151818401526020810190506135e5565b8381111561360f576000848401525b50505050565b6000600282049050600182168061362d57607f821691505b6020821081141561364157613640613750565b5b50919050565b613650826137f1565b810181811067ffffffffffffffff8211171561366f5761366e6137ae565b5b80604052505050565b6000613683826135c9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136b6576136b56136f2565b5b600182019050919050565b60006136cc826135c9565b91506136d7836135c9565b9250826136e7576136e6613721565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613c468161355f565b8114613c5157600080fd5b50565b613c5d81613571565b8114613c6857600080fd5b50565b613c748161357d565b8114613c7f57600080fd5b50565b613c8b816135c9565b8114613c9657600080fd5b5056fea26469706673582212208afc00f7e00e213e57ab87033f16de53d784b53c39427962ded1aa6634f08dc064736f6c63430008070033697066733a2f2f6261667962656965336676706d776e6875376861346477776c6137683274687a736f646574776e6a6d37646c6c333374766835677066616a79346d2f

Deployed Bytecode

0x6080604052600436106102305760003560e01c80635c975abb1161012e578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107e2578063e0a808531461081f578063e985e9c514610848578063efbd73f414610885578063f2fde38b146108ae57610230565b8063a0712d6814610720578063a22cb4651461073c578063a45ba8e714610765578063b071401b14610790578063b88d4fde146107b957610230565b806373022011116100f2578063730220111461064d5780637ec4a659146106765780638da5cb5b1461069f57806394354fd0146106ca57806395d89b41146106f557610230565b80635c975abb1461056657806362b99ad4146105915780636352211e146105bc57806370a08231146105f9578063715018a61461063657610230565b806323b872dd116101bc5780634ad66811116101805780634ad66811146104a55780634fdd43cb146104d057806351830227146104f95780635503a0e814610524578063569b75f81461054f57610230565b806323b872dd146103d65780633ccfd60b146103ff57806342842e0e14610416578063438b63001461043f57806344a0d68a1461047c57610230565b8063104aeef811610203578063104aeef81461030357806313faede61461032e57806316ba10e01461035957806316c38b3c1461038257806318160ddd146103ab57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612a43565b6108d7565b604051610269919061308f565b60405180910390f35b34801561027e57600080fd5b506102876109b9565b60405161029491906130aa565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612ae6565b610a4b565b6040516102d19190613006565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906129d6565b610a91565b005b34801561030f57600080fd5b50610318610ba9565b604051610325919061330c565b60405180910390f35b34801561033a57600080fd5b50610343610baf565b604051610350919061330c565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190612a9d565b610bb5565b005b34801561038e57600080fd5b506103a960048036038101906103a49190612a16565b610bd7565b005b3480156103b757600080fd5b506103c0610bfc565b6040516103cd919061330c565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f891906128c0565b610c0d565b005b34801561040b57600080fd5b50610414610c6d565b005b34801561042257600080fd5b5061043d600480360381019061043891906128c0565b610cf5565b005b34801561044b57600080fd5b5061046660048036038101906104619190612853565b610d15565b604051610473919061306d565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190612ae6565b610e20565b005b3480156104b157600080fd5b506104ba610e32565b6040516104c7919061330c565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190612a9d565b610e38565b005b34801561050557600080fd5b5061050e610e5a565b60405161051b919061308f565b60405180910390f35b34801561053057600080fd5b50610539610e6d565b60405161054691906130aa565b60405180910390f35b34801561055b57600080fd5b50610564610efb565b005b34801561057257600080fd5b5061057b610f0e565b604051610588919061308f565b60405180910390f35b34801561059d57600080fd5b506105a6610f21565b6040516105b391906130aa565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190612ae6565b610faf565b6040516105f09190613006565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190612853565b611061565b60405161062d919061330c565b60405180910390f35b34801561064257600080fd5b5061064b611119565b005b34801561065957600080fd5b50610674600480360381019061066f9190612ae6565b61112d565b005b34801561068257600080fd5b5061069d60048036038101906106989190612a9d565b611161565b005b3480156106ab57600080fd5b506106b4611183565b6040516106c19190613006565b60405180910390f35b3480156106d657600080fd5b506106df6111ad565b6040516106ec919061330c565b60405180910390f35b34801561070157600080fd5b5061070a6111b3565b60405161071791906130aa565b60405180910390f35b61073a60048036038101906107359190612ae6565b611245565b005b34801561074857600080fd5b50610763600480360381019061075e9190612996565b61139e565b005b34801561077157600080fd5b5061077a6113b4565b60405161078791906130aa565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b29190612ae6565b611442565b005b3480156107c557600080fd5b506107e060048036038101906107db9190612913565b611454565b005b3480156107ee57600080fd5b5061080960048036038101906108049190612ae6565b6114b6565b60405161081691906130aa565b60405180910390f35b34801561082b57600080fd5b5061084660048036038101906108419190612a16565b61160f565b005b34801561085457600080fd5b5061086f600480360381019061086a9190612880565b611634565b60405161087c919061308f565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a79190612b13565b6116c8565b005b3480156108ba57600080fd5b506108d560048036038101906108d09190612853565b61178a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b257506109b18261180e565b5b9050919050565b6060600080546109c890613615565b80601f01602080910402602001604051908101604052809291908181526020018280546109f490613615565b8015610a415780601f10610a1657610100808354040283529160200191610a41565b820191906000526020600020905b815481529060010190602001808311610a2457829003601f168201915b5050505050905090565b6000610a5682611878565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9c82610faf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b049061328c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b2c6118c3565b73ffffffffffffffffffffffffffffffffffffffff161480610b5b5750610b5a81610b556118c3565b611634565b5b610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b91906131cc565b60405180910390fd5b610ba483836118cb565b505050565b600d5481565b600b5481565b610bbd611984565b8060099080519060200190610bd3929190612667565b5050565b610bdf611984565b80600f60006101000a81548160ff02191690831515021790555050565b6000610c086007611a02565b905090565b610c1e610c186118c3565b82611a10565b610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c54906132cc565b60405180910390fd5b610c68838383611aa5565b505050565b610c75611984565b6000610c7f611183565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ca290612ff1565b60006040518083038185875af1925050503d8060008114610cdf576040519150601f19603f3d011682016040523d82523d6000602084013e610ce4565b606091505b5050905080610cf257600080fd5b50565b610d1083838360405180602001604052806000815250611454565b505050565b60606000610d2283611061565b905060008167ffffffffffffffff811115610d4057610d3f6137ae565b5b604051908082528060200260200182016040528015610d6e5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610d8b5750600d548211155b15610e14576000610d9b83610faf565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e005782848381518110610de557610de461377f565b5b6020026020010181815250508180610dfc90613678565b9250505b8280610e0b90613678565b93505050610d7a565b82945050505050919050565b610e28611984565b80600b8190555050565b600c5481565b610e40611984565b80600a9080519060200190610e56929190612667565b5050565b600f60019054906101000a900460ff1681565b60098054610e7a90613615565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea690613615565b8015610ef35780601f10610ec857610100808354040283529160200191610ef3565b820191906000526020600020905b815481529060010190602001808311610ed657829003601f168201915b505050505081565b610f03611984565b600d54600c81905550565b600f60009054906101000a900460ff1681565b60088054610f2e90613615565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5a90613615565b8015610fa75780601f10610f7c57610100808354040283529160200191610fa7565b820191906000526020600020905b815481529060010190602001808311610f8a57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f9061326c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c9906131ac565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611121611984565b61112b6000611d0c565b565b611135611984565b600c54811115801561114e575061114a610bfc565b8110155b61115757600080fd5b80600d8190555050565b611169611984565b806008908051906020019061117f929190612667565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6060600180546111c290613615565b80601f01602080910402602001604051908101604052809291908181526020018280546111ee90613615565b801561123b5780601f106112105761010080835404028352916020019161123b565b820191906000526020600020905b81548152906001019060200180831161121e57829003601f168201915b5050505050905090565b806000811180156112585750600e548111155b611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e9061314c565b60405180910390fd5b600d54816112a56007611a02565b6112af919061344a565b11156112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e7906132ac565b60405180910390fd5b600f60009054906101000a900460ff1615611340576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113379061322c565b60405180910390fd5b81600b5461134e91906134d1565b341015611390576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611387906132ec565b60405180910390fd5b61139a3383611dd2565b5050565b6113b06113a96118c3565b8383611e12565b5050565b600a80546113c190613615565b80601f01602080910402602001604051908101604052809291908181526020018280546113ed90613615565b801561143a5780601f1061140f5761010080835404028352916020019161143a565b820191906000526020600020905b81548152906001019060200180831161141d57829003601f168201915b505050505081565b61144a611984565b80600e8190555050565b61146561145f6118c3565b83611a10565b6114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b906132cc565b60405180910390fd5b6114b084848484611f7f565b50505050565b60606114c182611fdb565b611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f79061324c565b60405180910390fd5b60001515600f60019054906101000a900460ff16151514156115ae57600a805461152990613615565b80601f016020809104026020016040519081016040528092919081815260200182805461155590613615565b80156115a25780601f10611577576101008083540402835291602001916115a2565b820191906000526020600020905b81548152906001019060200180831161158557829003601f168201915b5050505050905061160a565b60006115b8612047565b905060008151116115d85760405180602001604052806000815250611606565b806115e2846120d9565b60096040516020016115f693929190612fc0565b6040516020818303038152906040525b9150505b919050565b611617611984565b80600f60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156116db5750600e548111155b61171a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117119061314c565b60405180910390fd5b600d54816117286007611a02565b611732919061344a565b1115611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176a906132ac565b60405180910390fd5b61177b611984565b6117858284611dd2565b505050565b611792611984565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f9906130ec565b60405180910390fd5b61180b81611d0c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61188181611fdb565b6118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b79061326c565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661193e83610faf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61198c6118c3565b73ffffffffffffffffffffffffffffffffffffffff166119aa611183565b73ffffffffffffffffffffffffffffffffffffffff1614611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f79061320c565b60405180910390fd5b565b600081600001549050919050565b600080611a1c83610faf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a5e5750611a5d8185611634565b5b80611a9c57508373ffffffffffffffffffffffffffffffffffffffff16611a8484610a4b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ac582610faf565b73ffffffffffffffffffffffffffffffffffffffff1614611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b129061310c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b829061316c565b60405180910390fd5b611b9683838361223a565b611ba16000826118cb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bf1919061352b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c48919061344a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d0783838361223f565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611e0d57611de76007612244565b611dfa83611df56007611a02565b61225a565b8080611e0590613678565b915050611dd5565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e789061318c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f72919061308f565b60405180910390a3505050565b611f8a848484611aa5565b611f9684848484612278565b611fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcc906130cc565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606008805461205690613615565b80601f016020809104026020016040519081016040528092919081815260200182805461208290613615565b80156120cf5780601f106120a4576101008083540402835291602001916120cf565b820191906000526020600020905b8154815290600101906020018083116120b257829003601f168201915b5050505050905090565b60606000821415612121576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612235565b600082905060005b6000821461215357808061213c90613678565b915050600a8261214c91906134a0565b9150612129565b60008167ffffffffffffffff81111561216f5761216e6137ae565b5b6040519080825280601f01601f1916602001820160405280156121a15781602001600182028036833780820191505090505b5090505b6000851461222e576001826121ba919061352b565b9150600a856121c991906136c1565b60306121d5919061344a565b60f81b8183815181106121eb576121ea61377f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561222791906134a0565b94506121a5565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b61227482826040518060200160405280600081525061240f565b5050565b60006122998473ffffffffffffffffffffffffffffffffffffffff1661246a565b15612402578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122c26118c3565b8786866040518563ffffffff1660e01b81526004016122e49493929190613021565b602060405180830381600087803b1580156122fe57600080fd5b505af192505050801561232f57506040513d601f19601f8201168201806040525081019061232c9190612a70565b60015b6123b2573d806000811461235f576040519150601f19603f3d011682016040523d82523d6000602084013e612364565b606091505b506000815114156123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a1906130cc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612407565b600190505b949350505050565b612419838361248d565b6124266000848484612278565b612465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245c906130cc565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f4906131ec565b60405180910390fd5b61250681611fdb565b15612546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253d9061312c565b60405180910390fd5b6125526000838361223a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125a2919061344a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126636000838361223f565b5050565b82805461267390613615565b90600052602060002090601f01602090048101928261269557600085556126dc565b82601f106126ae57805160ff19168380011785556126dc565b828001600101855582156126dc579182015b828111156126db5782518255916020019190600101906126c0565b5b5090506126e991906126ed565b5090565b5b808211156127065760008160009055506001016126ee565b5090565b600061271d6127188461334c565b613327565b905082815260208101848484011115612739576127386137e2565b5b6127448482856135d3565b509392505050565b600061275f61275a8461337d565b613327565b90508281526020810184848401111561277b5761277a6137e2565b5b6127868482856135d3565b509392505050565b60008135905061279d81613c3d565b92915050565b6000813590506127b281613c54565b92915050565b6000813590506127c781613c6b565b92915050565b6000815190506127dc81613c6b565b92915050565b600082601f8301126127f7576127f66137dd565b5b813561280784826020860161270a565b91505092915050565b600082601f830112612825576128246137dd565b5b813561283584826020860161274c565b91505092915050565b60008135905061284d81613c82565b92915050565b600060208284031215612869576128686137ec565b5b60006128778482850161278e565b91505092915050565b60008060408385031215612897576128966137ec565b5b60006128a58582860161278e565b92505060206128b68582860161278e565b9150509250929050565b6000806000606084860312156128d9576128d86137ec565b5b60006128e78682870161278e565b93505060206128f88682870161278e565b92505060406129098682870161283e565b9150509250925092565b6000806000806080858703121561292d5761292c6137ec565b5b600061293b8782880161278e565b945050602061294c8782880161278e565b935050604061295d8782880161283e565b925050606085013567ffffffffffffffff81111561297e5761297d6137e7565b5b61298a878288016127e2565b91505092959194509250565b600080604083850312156129ad576129ac6137ec565b5b60006129bb8582860161278e565b92505060206129cc858286016127a3565b9150509250929050565b600080604083850312156129ed576129ec6137ec565b5b60006129fb8582860161278e565b9250506020612a0c8582860161283e565b9150509250929050565b600060208284031215612a2c57612a2b6137ec565b5b6000612a3a848285016127a3565b91505092915050565b600060208284031215612a5957612a586137ec565b5b6000612a67848285016127b8565b91505092915050565b600060208284031215612a8657612a856137ec565b5b6000612a94848285016127cd565b91505092915050565b600060208284031215612ab357612ab26137ec565b5b600082013567ffffffffffffffff811115612ad157612ad06137e7565b5b612add84828501612810565b91505092915050565b600060208284031215612afc57612afb6137ec565b5b6000612b0a8482850161283e565b91505092915050565b60008060408385031215612b2a57612b296137ec565b5b6000612b388582860161283e565b9250506020612b498582860161278e565b9150509250929050565b6000612b5f8383612fa2565b60208301905092915050565b612b748161355f565b82525050565b6000612b85826133d3565b612b8f8185613401565b9350612b9a836133ae565b8060005b83811015612bcb578151612bb28882612b53565b9750612bbd836133f4565b925050600181019050612b9e565b5085935050505092915050565b612be181613571565b82525050565b6000612bf2826133de565b612bfc8185613412565b9350612c0c8185602086016135e2565b612c15816137f1565b840191505092915050565b6000612c2b826133e9565b612c35818561342e565b9350612c458185602086016135e2565b612c4e816137f1565b840191505092915050565b6000612c64826133e9565b612c6e818561343f565b9350612c7e8185602086016135e2565b80840191505092915050565b60008154612c9781613615565b612ca1818661343f565b94506001821660008114612cbc5760018114612ccd57612d00565b60ff19831686528186019350612d00565b612cd6856133be565b60005b83811015612cf857815481890152600182019150602081019050612cd9565b838801955050505b50505092915050565b6000612d1660328361342e565b9150612d2182613802565b604082019050919050565b6000612d3960268361342e565b9150612d4482613851565b604082019050919050565b6000612d5c60258361342e565b9150612d67826138a0565b604082019050919050565b6000612d7f601c8361342e565b9150612d8a826138ef565b602082019050919050565b6000612da260148361342e565b9150612dad82613918565b602082019050919050565b6000612dc560248361342e565b9150612dd082613941565b604082019050919050565b6000612de860198361342e565b9150612df382613990565b602082019050919050565b6000612e0b60298361342e565b9150612e16826139b9565b604082019050919050565b6000612e2e603e8361342e565b9150612e3982613a08565b604082019050919050565b6000612e5160208361342e565b9150612e5c82613a57565b602082019050919050565b6000612e7460208361342e565b9150612e7f82613a80565b602082019050919050565b6000612e9760178361342e565b9150612ea282613aa9565b602082019050919050565b6000612eba602f8361342e565b9150612ec582613ad2565b604082019050919050565b6000612edd60188361342e565b9150612ee882613b21565b602082019050919050565b6000612f0060218361342e565b9150612f0b82613b4a565b604082019050919050565b6000612f23600083613423565b9150612f2e82613b99565b600082019050919050565b6000612f4660148361342e565b9150612f5182613b9c565b602082019050919050565b6000612f69602e8361342e565b9150612f7482613bc5565b604082019050919050565b6000612f8c60138361342e565b9150612f9782613c14565b602082019050919050565b612fab816135c9565b82525050565b612fba816135c9565b82525050565b6000612fcc8286612c59565b9150612fd88285612c59565b9150612fe48284612c8a565b9150819050949350505050565b6000612ffc82612f16565b9150819050919050565b600060208201905061301b6000830184612b6b565b92915050565b60006080820190506130366000830187612b6b565b6130436020830186612b6b565b6130506040830185612fb1565b81810360608301526130628184612be7565b905095945050505050565b600060208201905081810360008301526130878184612b7a565b905092915050565b60006020820190506130a46000830184612bd8565b92915050565b600060208201905081810360008301526130c48184612c20565b905092915050565b600060208201905081810360008301526130e581612d09565b9050919050565b6000602082019050818103600083015261310581612d2c565b9050919050565b6000602082019050818103600083015261312581612d4f565b9050919050565b6000602082019050818103600083015261314581612d72565b9050919050565b6000602082019050818103600083015261316581612d95565b9050919050565b6000602082019050818103600083015261318581612db8565b9050919050565b600060208201905081810360008301526131a581612ddb565b9050919050565b600060208201905081810360008301526131c581612dfe565b9050919050565b600060208201905081810360008301526131e581612e21565b9050919050565b6000602082019050818103600083015261320581612e44565b9050919050565b6000602082019050818103600083015261322581612e67565b9050919050565b6000602082019050818103600083015261324581612e8a565b9050919050565b6000602082019050818103600083015261326581612ead565b9050919050565b6000602082019050818103600083015261328581612ed0565b9050919050565b600060208201905081810360008301526132a581612ef3565b9050919050565b600060208201905081810360008301526132c581612f39565b9050919050565b600060208201905081810360008301526132e581612f5c565b9050919050565b6000602082019050818103600083015261330581612f7f565b9050919050565b60006020820190506133216000830184612fb1565b92915050565b6000613331613342565b905061333d8282613647565b919050565b6000604051905090565b600067ffffffffffffffff821115613367576133666137ae565b5b613370826137f1565b9050602081019050919050565b600067ffffffffffffffff821115613398576133976137ae565b5b6133a1826137f1565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613455826135c9565b9150613460836135c9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613495576134946136f2565b5b828201905092915050565b60006134ab826135c9565b91506134b6836135c9565b9250826134c6576134c5613721565b5b828204905092915050565b60006134dc826135c9565b91506134e7836135c9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135205761351f6136f2565b5b828202905092915050565b6000613536826135c9565b9150613541836135c9565b925082821015613554576135536136f2565b5b828203905092915050565b600061356a826135a9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136005780820151818401526020810190506135e5565b8381111561360f576000848401525b50505050565b6000600282049050600182168061362d57607f821691505b6020821081141561364157613640613750565b5b50919050565b613650826137f1565b810181811067ffffffffffffffff8211171561366f5761366e6137ae565b5b80604052505050565b6000613683826135c9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136b6576136b56136f2565b5b600182019050919050565b60006136cc826135c9565b91506136d7836135c9565b9250826136e7576136e6613721565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613c468161355f565b8114613c5157600080fd5b50565b613c5d81613571565b8114613c6857600080fd5b50565b613c748161357d565b8114613c7f57600080fd5b50565b613c8b816135c9565b8114613c9657600080fd5b5056fea26469706673582212208afc00f7e00e213e57ab87033f16de53d784b53c39427962ded1aa6634f08dc064736f6c63430008070033

Deployed Bytecode Sourcemap

39235:4122:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25963:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26890:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28403:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27920:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39572:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39497:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42617:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42723:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40128:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29103:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42806:228;;;;;;;;;;;;;:::i;:::-;;29510:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40639:642;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42157:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39531:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42373:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39686:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39424;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41968:96;;;;;;;;;;;;;:::i;:::-;;39656:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39391:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26601:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26332:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6499:103;;;;;;;;;;;;;:::i;:::-;;41787:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42511:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5851:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39612:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27059:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40223:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28646:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39457:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42237:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29766:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41287:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42070:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28872:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40478:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6757:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25963:305;26065:4;26117:25;26102:40;;;:11;:40;;;;:105;;;;26174:33;26159:48;;;:11;:48;;;;26102:105;:158;;;;26224:36;26248:11;26224:23;:36::i;:::-;26102:158;26082:178;;25963:305;;;:::o;26890:100::-;26944:13;26977:5;26970:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26890:100;:::o;28403:171::-;28479:7;28499:23;28514:7;28499:14;:23::i;:::-;28542:15;:24;28558:7;28542:24;;;;;;;;;;;;;;;;;;;;;28535:31;;28403:171;;;:::o;27920:417::-;28001:13;28017:23;28032:7;28017:14;:23::i;:::-;28001:39;;28065:5;28059:11;;:2;:11;;;;28051:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28159:5;28143:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28168:37;28185:5;28192:12;:10;:12::i;:::-;28168:16;:37::i;:::-;28143:62;28121:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;28308:21;28317:2;28321:7;28308:8;:21::i;:::-;27990:347;27920:417;;:::o;39572:35::-;;;;:::o;39497:29::-;;;;:::o;42617:100::-;5737:13;:11;:13::i;:::-;42701:10:::1;42689:9;:22;;;;;;;;;;;;:::i;:::-;;42617:100:::0;:::o;42723:77::-;5737:13;:11;:13::i;:::-;42788:6:::1;42779;;:15;;;;;;;;;;;;;;;;;;42723:77:::0;:::o;40128:89::-;40172:7;40195:16;:6;:14;:16::i;:::-;40188:23;;40128:89;:::o;29103:336::-;29298:41;29317:12;:10;:12::i;:::-;29331:7;29298:18;:41::i;:::-;29290:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29403:28;29413:4;29419:2;29423:7;29403:9;:28::i;:::-;29103:336;;;:::o;42806:228::-;5737:13;:11;:13::i;:::-;42856:7:::1;42877;:5;:7::i;:::-;42869:21;;42898;42869:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42855:69;;;42939:2;42931:11;;;::::0;::::1;;42843:191;42806:228::o:0;29510:185::-;29648:39;29665:4;29671:2;29675:7;29648:39;;;;;;;;;;;;:16;:39::i;:::-;29510:185;;;:::o;40639:642::-;40714:16;40742:23;40768:17;40778:6;40768:9;:17::i;:::-;40742:43;;40792:30;40839:15;40825:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40792:63;;40862:22;40887:1;40862:26;;40895:23;40931:316;40956:15;40938;:33;:71;;;;;40993:16;;40975:14;:34;;40938:71;40931:316;;;41020:25;41048:23;41056:14;41048:7;:23::i;:::-;41020:51;;41107:6;41086:27;;:17;:27;;;41082:131;;;41159:14;41126:13;41140:15;41126:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;41186:17;;;;;:::i;:::-;;;;41082:131;41223:16;;;;;:::i;:::-;;;;41011:236;40931:316;;;41262:13;41255:20;;;;;;40639:642;;;:::o;42157:74::-;5737:13;:11;:13::i;:::-;42220:5:::1;42213:4;:12;;;;42157:74:::0;:::o;39531:36::-;;;;:::o;42373:132::-;5737:13;:11;:13::i;:::-;42481:18:::1;42461:17;:38;;;;;;;;;;;;:::i;:::-;;42373:132:::0;:::o;39686:28::-;;;;;;;;;;;;;:::o;39424:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41968:96::-;5737:13;:11;:13::i;:::-;42042:16:::1;;42025:14;:33;;;;41968:96::o:0;39656:25::-;;;;;;;;;;;;;:::o;39391:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26601:222::-;26673:7;26693:13;26709:7;:16;26717:7;26709:16;;;;;;;;;;;;;;;;;;;;;26693:32;;26761:1;26744:19;;:5;:19;;;;26736:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;26810:5;26803:12;;;26601:222;;;:::o;26332:207::-;26404:7;26449:1;26432:19;;:5;:19;;;;26424:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26515:9;:16;26525:5;26515:16;;;;;;;;;;;;;;;;26508:23;;26332:207;;;:::o;6499:103::-;5737:13;:11;:13::i;:::-;6564:30:::1;6591:1;6564:18;:30::i;:::-;6499:103::o:0;41787:175::-;5737:13;:11;:13::i;:::-;41878:14:::1;;41867:7;:25;;:53;;;;;41907:13;:11;:13::i;:::-;41896:7;:24;;41867:53;41858:63;;;::::0;::::1;;41949:7;41930:16;:26;;;;41787:175:::0;:::o;42511:100::-;5737:13;:11;:13::i;:::-;42595:10:::1;42583:9;:22;;;;;;;;;;;;:::i;:::-;;42511:100:::0;:::o;5851:87::-;5897:7;5924:6;;;;;;;;;;;5917:13;;5851:87;:::o;39612:37::-;;;;:::o;27059:104::-;27115:13;27148:7;27141:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27059:104;:::o;40223:247::-;40288:11;39955:1;39941:11;:15;:52;;;;;39975:18;;39960:11;:33;;39941:52;39933:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40067:16;;40052:11;40033:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:50;;40025:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;40317:6:::1;;;;;;;;;;;40316:7;40308:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;40386:11;40379:4;;:18;;;;:::i;:::-;40366:9;:31;;40358:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40430:34;40440:10;40452:11;40430:9;:34::i;:::-;40223:247:::0;;:::o;28646:155::-;28741:52;28760:12;:10;:12::i;:::-;28774:8;28784;28741:18;:52::i;:::-;28646:155;;:::o;39457:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42237:130::-;5737:13;:11;:13::i;:::-;42342:19:::1;42321:18;:40;;;;42237:130:::0;:::o;29766:323::-;29940:41;29959:12;:10;:12::i;:::-;29973:7;29940:18;:41::i;:::-;29932:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30043:38;30057:4;30063:2;30067:7;30076:4;30043:13;:38::i;:::-;29766:323;;;;:::o;41287:494::-;41386:13;41427:17;41435:8;41427:7;:17::i;:::-;41411:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;41534:5;41522:17;;:8;;;;;;;;;;;:17;;;41518:64;;;41557:17;41550:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41518:64;41590:28;41621:10;:8;:10::i;:::-;41590:41;;41676:1;41651:14;41645:28;:32;:130;;;;;;;;;;;;;;;;;41713:14;41729:19;:8;:17;:19::i;:::-;41750:9;41696:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41645:130;41638:137;;;41287:494;;;;:::o;42070:81::-;5737:13;:11;:13::i;:::-;42139:6:::1;42128:8;;:17;;;;;;;;;;;;;;;;;;42070:81:::0;:::o;28872:164::-;28969:4;28993:18;:25;29012:5;28993:25;;;;;;;;;;;;;;;:35;29019:8;28993:35;;;;;;;;;;;;;;;;;;;;;;;;;28986:42;;28872:164;;;;:::o;40478:155::-;40564:11;39955:1;39941:11;:15;:52;;;;;39975:18;;39960:11;:33;;39941:52;39933:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40067:16;;40052:11;40033:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:50;;40025:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;5737:13:::1;:11;:13::i;:::-;40594:33:::2;40604:9;40615:11;40594:9;:33::i;:::-;40478:155:::0;;;:::o;6757:201::-;5737:13;:11;:13::i;:::-;6866:1:::1;6846:22;;:8;:22;;;;6838:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6922:28;6941:8;6922:18;:28::i;:::-;6757:201:::0;:::o;18705:157::-;18790:4;18829:25;18814:40;;;:11;:40;;;;18807:47;;18705:157;;;:::o;36378:135::-;36460:16;36468:7;36460;:16::i;:::-;36452:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36378:135;:::o;4402:98::-;4455:7;4482:10;4475:17;;4402:98;:::o;35657:174::-;35759:2;35732:15;:24;35748:7;35732:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35815:7;35811:2;35777:46;;35786:23;35801:7;35786:14;:23::i;:::-;35777:46;;;;;;;;;;;;35657:174;;:::o;6016:132::-;6091:12;:10;:12::i;:::-;6080:23;;:7;:5;:7::i;:::-;:23;;;6072:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6016:132::o;633:114::-;698:7;725;:14;;;718:21;;633:114;;;:::o;31890:264::-;31983:4;32000:13;32016:23;32031:7;32016:14;:23::i;:::-;32000:39;;32069:5;32058:16;;:7;:16;;;:52;;;;32078:32;32095:5;32102:7;32078:16;:32::i;:::-;32058:52;:87;;;;32138:7;32114:31;;:20;32126:7;32114:11;:20::i;:::-;:31;;;32058:87;32050:96;;;31890:264;;;;:::o;34913:625::-;35072:4;35045:31;;:23;35060:7;35045:14;:23::i;:::-;:31;;;35037:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35151:1;35137:16;;:2;:16;;;;35129:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35207:39;35228:4;35234:2;35238:7;35207:20;:39::i;:::-;35311:29;35328:1;35332:7;35311:8;:29::i;:::-;35372:1;35353:9;:15;35363:4;35353:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35401:1;35384:9;:13;35394:2;35384:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35432:2;35413:7;:16;35421:7;35413:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35471:7;35467:2;35452:27;;35461:4;35452:27;;;;;;;;;;;;35492:38;35512:4;35518:2;35522:7;35492:19;:38::i;:::-;34913:625;;;:::o;7118:191::-;7192:16;7211:6;;;;;;;;;;;7192:25;;7237:8;7228:6;;:17;;;;;;;;;;;;;;;;;;7292:8;7261:40;;7282:8;7261:40;;;;;;;;;;;;7181:128;7118:191;:::o;43040:204::-;43120:9;43115:124;43139:11;43135:1;:15;43115:124;;;43166:18;:6;:16;:18::i;:::-;43193:38;43203:9;43214:16;:6;:14;:16::i;:::-;43193:9;:38::i;:::-;43152:3;;;;;:::i;:::-;;;;43115:124;;;;43040:204;;:::o;35974:315::-;36129:8;36120:17;;:5;:17;;;;36112:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36216:8;36178:18;:25;36197:5;36178:25;;;;;;;;;;;;;;;:35;36204:8;36178:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36262:8;36240:41;;36255:5;36240:41;;;36272:8;36240:41;;;;;;:::i;:::-;;;;;;;;35974:315;;;:::o;30970:313::-;31126:28;31136:4;31142:2;31146:7;31126:9;:28::i;:::-;31173:47;31196:4;31202:2;31206:7;31215:4;31173:22;:47::i;:::-;31165:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;30970:313;;;;:::o;31596:127::-;31661:4;31713:1;31685:30;;:7;:16;31693:7;31685:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31678:37;;31596:127;;;:::o;43250:104::-;43310:13;43339:9;43332:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43250:104;:::o;1656:723::-;1712:13;1942:1;1933:5;:10;1929:53;;;1960:10;;;;;;;;;;;;;;;;;;;;;1929:53;1992:12;2007:5;1992:20;;2023:14;2048:78;2063:1;2055:4;:9;2048:78;;2081:8;;;;;:::i;:::-;;;;2112:2;2104:10;;;;;:::i;:::-;;;2048:78;;;2136:19;2168:6;2158:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2136:39;;2186:154;2202:1;2193:5;:10;2186:154;;2230:1;2220:11;;;;;:::i;:::-;;;2297:2;2289:5;:10;;;;:::i;:::-;2276:2;:24;;;;:::i;:::-;2263:39;;2246:6;2253;2246:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2326:2;2317:11;;;;;:::i;:::-;;;2186:154;;;2364:6;2350:21;;;;;1656:723;;;;:::o;38502:126::-;;;;:::o;39013:125::-;;;;:::o;755:127::-;862:1;844:7;:14;;;:19;;;;;;;;;;;755:127;:::o;32496:110::-;32572:26;32582:2;32586:7;32572:26;;;;;;;;;;;;:9;:26::i;:::-;32496:110;;:::o;37077:853::-;37231:4;37252:15;:2;:13;;;:15::i;:::-;37248:675;;;37304:2;37288:36;;;37325:12;:10;:12::i;:::-;37339:4;37345:7;37354:4;37288:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37284:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37546:1;37529:6;:13;:18;37525:328;;;37572:60;;;;;;;;;;:::i;:::-;;;;;;;;37525:328;37803:6;37797:13;37788:6;37784:2;37780:15;37773:38;37284:584;37420:41;;;37410:51;;;:6;:51;;;;37403:58;;;;;37248:675;37907:4;37900:11;;37077:853;;;;;;;:::o;32833:319::-;32962:18;32968:2;32972:7;32962:5;:18::i;:::-;33013:53;33044:1;33048:2;33052:7;33061:4;33013:22;:53::i;:::-;32991:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;32833:319;;;:::o;8549:326::-;8609:4;8866:1;8844:7;:19;;;:23;8837:30;;8549:326;;;:::o;33488:439::-;33582:1;33568:16;;:2;:16;;;;33560:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33641:16;33649:7;33641;:16::i;:::-;33640:17;33632:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33703:45;33732:1;33736:2;33740:7;33703:20;:45::i;:::-;33778:1;33761:9;:13;33771:2;33761:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33809:2;33790:7;:16;33798:7;33790:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33854:7;33850:2;33829:33;;33846:1;33829:33;;;;;;;;;;;;33875:44;33903:1;33907:2;33911:7;33875:19;:44::i;:::-;33488:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:::-;13527:3;13548:67;13612:2;13607:3;13548:67;:::i;:::-;13541:74;;13624:93;13713:3;13624:93;:::i;:::-;13742:2;13737:3;13733:12;13726:19;;13385:366;;;:::o;13757:::-;13899:3;13920:67;13984:2;13979:3;13920:67;:::i;:::-;13913:74;;13996:93;14085:3;13996:93;:::i;:::-;14114:2;14109:3;14105:12;14098:19;;13757:366;;;:::o;14129:::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:::-;14643:3;14664:67;14728:2;14723:3;14664:67;:::i;:::-;14657:74;;14740:93;14829:3;14740:93;:::i;:::-;14858:2;14853:3;14849:12;14842:19;;14501:366;;;:::o;14873:::-;15015:3;15036:67;15100:2;15095:3;15036:67;:::i;:::-;15029:74;;15112:93;15201:3;15112:93;:::i;:::-;15230:2;15225:3;15221:12;15214:19;;14873:366;;;:::o;15245:::-;15387:3;15408:67;15472:2;15467:3;15408:67;:::i;:::-;15401:74;;15484:93;15573:3;15484:93;:::i;:::-;15602:2;15597:3;15593:12;15586:19;;15245:366;;;:::o;15617:::-;15759:3;15780:67;15844:2;15839:3;15780:67;:::i;:::-;15773:74;;15856:93;15945:3;15856:93;:::i;:::-;15974:2;15969:3;15965:12;15958:19;;15617:366;;;:::o;15989:::-;16131:3;16152:67;16216:2;16211:3;16152:67;:::i;:::-;16145:74;;16228:93;16317:3;16228:93;:::i;:::-;16346:2;16341:3;16337:12;16330:19;;15989:366;;;:::o;16361:::-;16503:3;16524:67;16588:2;16583:3;16524:67;:::i;:::-;16517:74;;16600:93;16689:3;16600:93;:::i;:::-;16718:2;16713:3;16709:12;16702:19;;16361:366;;;:::o;16733:398::-;16892:3;16913:83;16994:1;16989:3;16913:83;:::i;:::-;16906:90;;17005:93;17094:3;17005:93;:::i;:::-;17123:1;17118:3;17114:11;17107:18;;16733:398;;;:::o;17137:366::-;17279:3;17300:67;17364:2;17359:3;17300:67;:::i;:::-;17293:74;;17376:93;17465:3;17376:93;:::i;:::-;17494:2;17489:3;17485:12;17478:19;;17137:366;;;:::o;17509:::-;17651:3;17672:67;17736:2;17731:3;17672:67;:::i;:::-;17665:74;;17748:93;17837:3;17748:93;:::i;:::-;17866:2;17861:3;17857:12;17850:19;;17509:366;;;:::o;17881:::-;18023:3;18044:67;18108:2;18103:3;18044:67;:::i;:::-;18037:74;;18120:93;18209:3;18120:93;:::i;:::-;18238:2;18233:3;18229:12;18222:19;;17881:366;;;:::o;18253:108::-;18330:24;18348:5;18330:24;:::i;:::-;18325:3;18318:37;18253:108;;:::o;18367:118::-;18454:24;18472:5;18454:24;:::i;:::-;18449:3;18442:37;18367:118;;:::o;18491:589::-;18716:3;18738:95;18829:3;18820:6;18738:95;:::i;:::-;18731:102;;18850:95;18941:3;18932:6;18850:95;:::i;:::-;18843:102;;18962:92;19050:3;19041:6;18962:92;:::i;:::-;18955:99;;19071:3;19064:10;;18491:589;;;;;;:::o;19086:379::-;19270:3;19292:147;19435:3;19292:147;:::i;:::-;19285:154;;19456:3;19449:10;;19086:379;;;:::o;19471:222::-;19564:4;19602:2;19591:9;19587:18;19579:26;;19615:71;19683:1;19672:9;19668:17;19659:6;19615:71;:::i;:::-;19471:222;;;;:::o;19699:640::-;19894:4;19932:3;19921:9;19917:19;19909:27;;19946:71;20014:1;20003:9;19999:17;19990:6;19946:71;:::i;:::-;20027:72;20095:2;20084:9;20080:18;20071:6;20027:72;:::i;:::-;20109;20177:2;20166:9;20162:18;20153:6;20109:72;:::i;:::-;20228:9;20222:4;20218:20;20213:2;20202:9;20198:18;20191:48;20256:76;20327:4;20318:6;20256:76;:::i;:::-;20248:84;;19699:640;;;;;;;:::o;20345:373::-;20488:4;20526:2;20515:9;20511:18;20503:26;;20575:9;20569:4;20565:20;20561:1;20550:9;20546:17;20539:47;20603:108;20706:4;20697:6;20603:108;:::i;:::-;20595:116;;20345:373;;;;:::o;20724:210::-;20811:4;20849:2;20838:9;20834:18;20826:26;;20862:65;20924:1;20913:9;20909:17;20900:6;20862:65;:::i;:::-;20724:210;;;;:::o;20940:313::-;21053:4;21091:2;21080:9;21076:18;21068:26;;21140:9;21134:4;21130:20;21126:1;21115:9;21111:17;21104:47;21168:78;21241:4;21232:6;21168:78;:::i;:::-;21160:86;;20940:313;;;;:::o;21259:419::-;21425:4;21463:2;21452:9;21448:18;21440:26;;21512:9;21506:4;21502:20;21498:1;21487:9;21483:17;21476:47;21540:131;21666:4;21540:131;:::i;:::-;21532:139;;21259:419;;;:::o;21684:::-;21850:4;21888:2;21877:9;21873:18;21865:26;;21937:9;21931:4;21927:20;21923:1;21912:9;21908:17;21901:47;21965:131;22091:4;21965:131;:::i;:::-;21957:139;;21684:419;;;:::o;22109:::-;22275:4;22313:2;22302:9;22298:18;22290:26;;22362:9;22356:4;22352:20;22348:1;22337:9;22333:17;22326:47;22390:131;22516:4;22390:131;:::i;:::-;22382:139;;22109:419;;;:::o;22534:::-;22700:4;22738:2;22727:9;22723:18;22715:26;;22787:9;22781:4;22777:20;22773:1;22762:9;22758:17;22751:47;22815:131;22941:4;22815:131;:::i;:::-;22807:139;;22534:419;;;:::o;22959:::-;23125:4;23163:2;23152:9;23148:18;23140:26;;23212:9;23206:4;23202:20;23198:1;23187:9;23183:17;23176:47;23240:131;23366:4;23240:131;:::i;:::-;23232:139;;22959:419;;;:::o;23384:::-;23550:4;23588:2;23577:9;23573:18;23565:26;;23637:9;23631:4;23627:20;23623:1;23612:9;23608:17;23601:47;23665:131;23791:4;23665:131;:::i;:::-;23657:139;;23384:419;;;:::o;23809:::-;23975:4;24013:2;24002:9;23998:18;23990:26;;24062:9;24056:4;24052:20;24048:1;24037:9;24033:17;24026:47;24090:131;24216:4;24090:131;:::i;:::-;24082:139;;23809:419;;;:::o;24234:::-;24400:4;24438:2;24427:9;24423:18;24415:26;;24487:9;24481:4;24477:20;24473:1;24462:9;24458:17;24451:47;24515:131;24641:4;24515:131;:::i;:::-;24507:139;;24234:419;;;:::o;24659:::-;24825:4;24863:2;24852:9;24848:18;24840:26;;24912:9;24906:4;24902:20;24898:1;24887:9;24883:17;24876:47;24940:131;25066:4;24940:131;:::i;:::-;24932:139;;24659:419;;;:::o;25084:::-;25250:4;25288:2;25277:9;25273:18;25265:26;;25337:9;25331:4;25327:20;25323:1;25312:9;25308:17;25301:47;25365:131;25491:4;25365:131;:::i;:::-;25357:139;;25084:419;;;:::o;25509:::-;25675:4;25713:2;25702:9;25698:18;25690:26;;25762:9;25756:4;25752:20;25748:1;25737:9;25733:17;25726:47;25790:131;25916:4;25790:131;:::i;:::-;25782:139;;25509:419;;;:::o;25934:::-;26100:4;26138:2;26127:9;26123:18;26115:26;;26187:9;26181:4;26177:20;26173:1;26162:9;26158:17;26151:47;26215:131;26341:4;26215:131;:::i;:::-;26207:139;;25934:419;;;:::o;26359:::-;26525:4;26563:2;26552:9;26548:18;26540:26;;26612:9;26606:4;26602:20;26598:1;26587:9;26583:17;26576:47;26640:131;26766:4;26640:131;:::i;:::-;26632:139;;26359:419;;;:::o;26784:::-;26950:4;26988:2;26977:9;26973:18;26965:26;;27037:9;27031:4;27027:20;27023:1;27012:9;27008:17;27001:47;27065:131;27191:4;27065:131;:::i;:::-;27057:139;;26784:419;;;:::o;27209:::-;27375:4;27413:2;27402:9;27398:18;27390:26;;27462:9;27456:4;27452:20;27448:1;27437:9;27433:17;27426:47;27490:131;27616:4;27490:131;:::i;:::-;27482:139;;27209:419;;;:::o;27634:::-;27800:4;27838:2;27827:9;27823:18;27815:26;;27887:9;27881:4;27877:20;27873:1;27862:9;27858:17;27851:47;27915:131;28041:4;27915:131;:::i;:::-;27907:139;;27634:419;;;:::o;28059:::-;28225:4;28263:2;28252:9;28248:18;28240:26;;28312:9;28306:4;28302:20;28298:1;28287:9;28283:17;28276:47;28340:131;28466:4;28340:131;:::i;:::-;28332:139;;28059:419;;;:::o;28484:::-;28650:4;28688:2;28677:9;28673:18;28665:26;;28737:9;28731:4;28727:20;28723:1;28712:9;28708:17;28701:47;28765:131;28891:4;28765:131;:::i;:::-;28757:139;;28484:419;;;:::o;28909:222::-;29002:4;29040:2;29029:9;29025:18;29017:26;;29053:71;29121:1;29110:9;29106:17;29097:6;29053:71;:::i;:::-;28909:222;;;;:::o;29137:129::-;29171:6;29198:20;;:::i;:::-;29188:30;;29227:33;29255:4;29247:6;29227:33;:::i;:::-;29137:129;;;:::o;29272:75::-;29305:6;29338:2;29332:9;29322:19;;29272:75;:::o;29353:307::-;29414:4;29504:18;29496:6;29493:30;29490:56;;;29526:18;;:::i;:::-;29490:56;29564:29;29586:6;29564:29;:::i;:::-;29556:37;;29648:4;29642;29638:15;29630:23;;29353:307;;;:::o;29666:308::-;29728:4;29818:18;29810:6;29807:30;29804:56;;;29840:18;;:::i;:::-;29804:56;29878:29;29900:6;29878:29;:::i;:::-;29870:37;;29962:4;29956;29952:15;29944:23;;29666:308;;;:::o;29980:132::-;30047:4;30070:3;30062:11;;30100:4;30095:3;30091:14;30083:22;;29980:132;;;:::o;30118:141::-;30167:4;30190:3;30182:11;;30213:3;30210:1;30203:14;30247:4;30244:1;30234:18;30226:26;;30118:141;;;:::o;30265:114::-;30332:6;30366:5;30360:12;30350:22;;30265:114;;;:::o;30385:98::-;30436:6;30470:5;30464:12;30454:22;;30385:98;;;:::o;30489:99::-;30541:6;30575:5;30569:12;30559:22;;30489:99;;;:::o;30594:113::-;30664:4;30696;30691:3;30687:14;30679:22;;30594:113;;;:::o;30713:184::-;30812:11;30846:6;30841:3;30834:19;30886:4;30881:3;30877:14;30862:29;;30713:184;;;;:::o;30903:168::-;30986:11;31020:6;31015:3;31008:19;31060:4;31055:3;31051:14;31036:29;;30903:168;;;;:::o;31077:147::-;31178:11;31215:3;31200:18;;31077:147;;;;:::o;31230:169::-;31314:11;31348:6;31343:3;31336:19;31388:4;31383:3;31379:14;31364:29;;31230:169;;;;:::o;31405:148::-;31507:11;31544:3;31529:18;;31405:148;;;;:::o;31559:305::-;31599:3;31618:20;31636:1;31618:20;:::i;:::-;31613:25;;31652:20;31670:1;31652:20;:::i;:::-;31647:25;;31806:1;31738:66;31734:74;31731:1;31728:81;31725:107;;;31812:18;;:::i;:::-;31725:107;31856:1;31853;31849:9;31842:16;;31559:305;;;;:::o;31870:185::-;31910:1;31927:20;31945:1;31927:20;:::i;:::-;31922:25;;31961:20;31979:1;31961:20;:::i;:::-;31956:25;;32000:1;31990:35;;32005:18;;:::i;:::-;31990:35;32047:1;32044;32040:9;32035:14;;31870:185;;;;:::o;32061:348::-;32101:7;32124:20;32142:1;32124:20;:::i;:::-;32119:25;;32158:20;32176:1;32158:20;:::i;:::-;32153:25;;32346:1;32278:66;32274:74;32271:1;32268:81;32263:1;32256:9;32249:17;32245:105;32242:131;;;32353:18;;:::i;:::-;32242:131;32401:1;32398;32394:9;32383:20;;32061:348;;;;:::o;32415:191::-;32455:4;32475:20;32493:1;32475:20;:::i;:::-;32470:25;;32509:20;32527:1;32509:20;:::i;:::-;32504:25;;32548:1;32545;32542:8;32539:34;;;32553:18;;:::i;:::-;32539:34;32598:1;32595;32591:9;32583:17;;32415:191;;;;:::o;32612:96::-;32649:7;32678:24;32696:5;32678:24;:::i;:::-;32667:35;;32612:96;;;:::o;32714:90::-;32748:7;32791:5;32784:13;32777:21;32766:32;;32714:90;;;:::o;32810:149::-;32846:7;32886:66;32879:5;32875:78;32864:89;;32810:149;;;:::o;32965:126::-;33002:7;33042:42;33035:5;33031:54;33020:65;;32965:126;;;:::o;33097:77::-;33134:7;33163:5;33152:16;;33097:77;;;:::o;33180:154::-;33264:6;33259:3;33254;33241:30;33326:1;33317:6;33312:3;33308:16;33301:27;33180:154;;;:::o;33340:307::-;33408:1;33418:113;33432:6;33429:1;33426:13;33418:113;;;33517:1;33512:3;33508:11;33502:18;33498:1;33493:3;33489:11;33482:39;33454:2;33451:1;33447:10;33442:15;;33418:113;;;33549:6;33546:1;33543:13;33540:101;;;33629:1;33620:6;33615:3;33611:16;33604:27;33540:101;33389:258;33340:307;;;:::o;33653:320::-;33697:6;33734:1;33728:4;33724:12;33714:22;;33781:1;33775:4;33771:12;33802:18;33792:81;;33858:4;33850:6;33846:17;33836:27;;33792:81;33920:2;33912:6;33909:14;33889:18;33886:38;33883:84;;;33939:18;;:::i;:::-;33883:84;33704:269;33653:320;;;:::o;33979:281::-;34062:27;34084:4;34062:27;:::i;:::-;34054:6;34050:40;34192:6;34180:10;34177:22;34156:18;34144:10;34141:34;34138:62;34135:88;;;34203:18;;:::i;:::-;34135:88;34243:10;34239:2;34232:22;34022:238;33979:281;;:::o;34266:233::-;34305:3;34328:24;34346:5;34328:24;:::i;:::-;34319:33;;34374:66;34367:5;34364:77;34361:103;;;34444:18;;:::i;:::-;34361:103;34491:1;34484:5;34480:13;34473:20;;34266:233;;;:::o;34505:176::-;34537:1;34554:20;34572:1;34554:20;:::i;:::-;34549:25;;34588:20;34606:1;34588:20;:::i;:::-;34583:25;;34627:1;34617:35;;34632:18;;:::i;:::-;34617:35;34673:1;34670;34666:9;34661:14;;34505:176;;;;:::o;34687:180::-;34735:77;34732:1;34725:88;34832:4;34829:1;34822:15;34856:4;34853:1;34846:15;34873:180;34921:77;34918:1;34911:88;35018:4;35015:1;35008:15;35042:4;35039:1;35032:15;35059:180;35107:77;35104:1;35097:88;35204:4;35201:1;35194:15;35228:4;35225:1;35218:15;35245:180;35293:77;35290:1;35283:88;35390:4;35387:1;35380:15;35414:4;35411:1;35404:15;35431:180;35479:77;35476:1;35469:88;35576:4;35573:1;35566:15;35600:4;35597:1;35590:15;35617:117;35726:1;35723;35716:12;35740:117;35849:1;35846;35839:12;35863:117;35972:1;35969;35962:12;35986:117;36095:1;36092;36085:12;36109:102;36150:6;36201:2;36197:7;36192:2;36185:5;36181:14;36177:28;36167:38;;36109:102;;;:::o;36217:237::-;36357:34;36353:1;36345:6;36341:14;36334:58;36426:20;36421:2;36413:6;36409:15;36402:45;36217:237;:::o;36460:225::-;36600:34;36596:1;36588:6;36584:14;36577:58;36669:8;36664:2;36656:6;36652:15;36645:33;36460:225;:::o;36691:224::-;36831:34;36827:1;36819:6;36815:14;36808:58;36900:7;36895:2;36887:6;36883:15;36876:32;36691:224;:::o;36921:178::-;37061:30;37057:1;37049:6;37045:14;37038:54;36921:178;:::o;37105:170::-;37245:22;37241:1;37233:6;37229:14;37222:46;37105:170;:::o;37281:223::-;37421:34;37417:1;37409:6;37405:14;37398:58;37490:6;37485:2;37477:6;37473:15;37466:31;37281:223;:::o;37510:175::-;37650:27;37646:1;37638:6;37634:14;37627:51;37510:175;:::o;37691:228::-;37831:34;37827:1;37819:6;37815:14;37808:58;37900:11;37895:2;37887:6;37883:15;37876:36;37691:228;:::o;37925:249::-;38065:34;38061:1;38053:6;38049:14;38042:58;38134:32;38129:2;38121:6;38117:15;38110:57;37925:249;:::o;38180:182::-;38320:34;38316:1;38308:6;38304:14;38297:58;38180:182;:::o;38368:::-;38508:34;38504:1;38496:6;38492:14;38485:58;38368:182;:::o;38556:173::-;38696:25;38692:1;38684:6;38680:14;38673:49;38556:173;:::o;38735:234::-;38875:34;38871:1;38863:6;38859:14;38852:58;38944:17;38939:2;38931:6;38927:15;38920:42;38735:234;:::o;38975:174::-;39115:26;39111:1;39103:6;39099:14;39092:50;38975:174;:::o;39155:220::-;39295:34;39291:1;39283:6;39279:14;39272:58;39364:3;39359:2;39351:6;39347:15;39340:28;39155:220;:::o;39381:114::-;;:::o;39501:170::-;39641:22;39637:1;39629:6;39625:14;39618:46;39501:170;:::o;39677:233::-;39817:34;39813:1;39805:6;39801:14;39794:58;39886:16;39881:2;39873:6;39869:15;39862:41;39677:233;:::o;39916:169::-;40056:21;40052:1;40044:6;40040:14;40033:45;39916:169;:::o;40091:122::-;40164:24;40182:5;40164:24;:::i;:::-;40157:5;40154:35;40144:63;;40203:1;40200;40193:12;40144:63;40091:122;:::o;40219:116::-;40289:21;40304:5;40289:21;:::i;:::-;40282:5;40279:32;40269:60;;40325:1;40322;40315:12;40269:60;40219:116;:::o;40341:120::-;40413:23;40430:5;40413:23;:::i;:::-;40406:5;40403:34;40393:62;;40451:1;40448;40441:12;40393:62;40341:120;:::o;40467:122::-;40540:24;40558:5;40540:24;:::i;:::-;40533:5;40530:35;40520:63;;40579:1;40576;40569:12;40520:63;40467:122;:::o

Swarm Source

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