ETH Price: $2,618.77 (-0.28%)

Token

IkigaiCollection (IKG)
 

Overview

Max Total Supply

67 IKG

Holders

33

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
newNFT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-19
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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.5.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: balance query for the zero address");
        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: owner query for nonexistent token");
        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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        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: transfer caller is not 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: transfer caller is not 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) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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 a {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 a {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 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 {
                    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/SMARTCONTRACT.sol



pragma solidity >=0.8.9 <0.9.0;




contract newNFT is ERC721, Ownable {
  using Strings for uint;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public baseURI = "";
  string public baseExtension = ".json";
  string public hiddenMetadataUri;
  
  uint public cost = 0.075 ether;
  uint public whitelistCost = 0.07 ether;
  uint public maxSupply = 3000;
  uint public maxWhitelist = 2;

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

  mapping(address => bool) public whitelistedAddresses;  

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initHiddenMetadataUri
  ) ERC721(_name, _symbol) {
    setHiddenMetadataUri(_initHiddenMetadataUri);
  }

// --------------------- Whitelist functions ---------------------
  function newWhitlists(address[] memory _newWhitelist) public onlyOwner {
      for(uint i = 0; i < _newWhitelist.length; i++){
        address _whitelist = _newWhitelist[i];
        whitelistedAddresses[_whitelist] = true;
      }
  }

  function checkWhitelist(address _address) public view returns(bool) {
    return whitelistedAddresses[_address];
  }

// --------------------- Mint functions ---------------------
  modifier mintCompliance(uint _mintAmount) {
    require(_mintAmount > 0, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

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

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

    _mintLoop(msg.sender, _mintAmount);
  }

  function whitelistMint(uint _mintAmount) public payable mintCompliance(_mintAmount) {
    uint ownerBalance = balanceOf(msg.sender);
    require(!paused, "The contract is paused!");
    require(whitelistSaleLive == true);
    require(whitelistedAddresses[msg.sender] == true, "Address not whitelisted");
    require(ownerBalance + _mintAmount <= maxWhitelist, "Invalid mint amount!");
    require(msg.value >= whitelistCost * _mintAmount, "Insufficient funds!");

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

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

// --------------------- Check functions ---------------------
  function walletOfOwner(address _owner)
    public
    view
    returns (uint[] memory)
  {
    uint ownerTokenCount = balanceOf(_owner);
    uint[] memory ownedTokenIds = new uint[](ownerTokenCount);
    uint currentTokenId = 1;
    uint ownedTokenIndex = 0;

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

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint _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(), baseExtension))
        : "";
  }

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

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

  function setMaxWhitelist(uint _maxWhitelist) public onlyOwner {
    maxWhitelist = _maxWhitelist;
  }

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

  function setBaseURI(string memory _newURI) public onlyOwner {
    baseURI = _newURI;
  }

  function setBaseExtension(string memory _baseExtension) public onlyOwner {
    baseExtension = _baseExtension;
  }

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

  function setPublicSaleState(bool _state) public onlyOwner {
    publicSaleLive = _state;
  }

  function setWhitelistSaleState(bool _state) public onlyOwner {
    whitelistSaleLive = _state;
  }

  function withdraw() public onlyOwner {
    payable(msg.sender).transfer(address(this).balance);
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initHiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelist","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":[{"internalType":"address[]","name":"_newWhitelist","type":"address[]"}],"name":"newWhitlists","outputs":[],"stateMutability":"nonpayable","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":"publicSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWhitelist","type":"uint256"}],"name":"setMaxWhitelist","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":"setPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistSaleState","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b9291906200034e565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060099080519060200190620000799291906200034e565b5067010a741a46278000600b5566f8b0a10e470000600c55610bb8600d556002600e556001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506000600f60026101000a81548160ff0219169083151502179055506000600f60036101000a81548160ff0219169083151502179055503480156200011557600080fd5b506040516200516a3803806200516a83398181016040528101906200013b91906200059b565b82828160009080519060200190620001559291906200034e565b5080600190805190602001906200016e9291906200034e565b5050506200019162000185620001ab60201b60201c565b620001b360201b60201c565b620001a2816200027960201b60201c565b5050506200073b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000289620001ab60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002af6200032460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000308576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ff90620006b5565b60405180910390fd5b80600a9080519060200190620003209291906200034e565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035c9062000706565b90600052602060002090601f016020900481019282620003805760008555620003cc565b82601f106200039b57805160ff1916838001178555620003cc565b82800160010185558215620003cc579182015b82811115620003cb578251825591602001919060010190620003ae565b5b509050620003db9190620003df565b5090565b5b80821115620003fa576000816000905550600101620003e0565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000467826200041c565b810181811067ffffffffffffffff821117156200048957620004886200042d565b5b80604052505050565b60006200049e620003fe565b9050620004ac82826200045c565b919050565b600067ffffffffffffffff821115620004cf57620004ce6200042d565b5b620004da826200041c565b9050602081019050919050565b60005b8381101562000507578082015181840152602081019050620004ea565b8381111562000517576000848401525b50505050565b6000620005346200052e84620004b1565b62000492565b90508281526020810184848401111562000553576200055262000417565b5b62000560848285620004e7565b509392505050565b600082601f83011262000580576200057f62000412565b5b8151620005928482602086016200051d565b91505092915050565b600080600060608486031215620005b757620005b662000408565b5b600084015167ffffffffffffffff811115620005d857620005d76200040d565b5b620005e68682870162000568565b935050602084015167ffffffffffffffff8111156200060a57620006096200040d565b5b620006188682870162000568565b925050604084015167ffffffffffffffff8111156200063c576200063b6200040d565b5b6200064a8682870162000568565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200069d60208362000654565b9150620006aa8262000665565b602082019050919050565b60006020820190508181036000830152620006d0816200068e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200071f57607f821691505b602082108103620007355762000734620006d7565b5b50919050565b614a1f806200074b6000396000f3fe6080604052600436106102725760003560e01c80636c0360eb1161014f578063a803df83116100c1578063da3ef23f1161007a578063da3ef23f14610934578063e0a808531461095d578063e7b99ec714610986578063e985e9c5146109b1578063efbd73f4146109ee578063f2fde38b14610a1757610272565b8063a803df8314610824578063b88d4fde1461084d578063bf0d96c314610876578063c6682862146108a1578063c87b56dd146108cc578063d5abeb011461090957610272565b80638da5cb5b116101135780638da5cb5b146107355780639293a5c71461076057806395d89b4114610789578063a0712d68146107b4578063a22cb465146107d0578063a45ba8e7146107f957610272565b80636c0360eb1461067157806370a082311461069c578063715018a6146106d957806372d9eb1e146106f0578063868ff4a21461071957610272565b806326d93800116101e85780634eebbb3b116101ac5780634eebbb3b146105615780634fdd43cb1461058c57806351830227146105b557806355f804b3146105e05780635c975abb146106095780636352211e1461063457610272565b806326d93800146104905780633ccfd60b146104bb57806342842e0e146104d2578063438b6300146104fb57806344a0d68a1461053857610272565b80630c4dc29c1161023a5780630c4dc29c1461038257806313faede6146103ab57806316c38b3c146103d657806318160ddd146103ff5780631950c2181461042a57806323b872dd1461046757610272565b806301ffc9a71461027757806306c933d8146102b457806306fdde03146102f1578063081812fc1461031c578063095ea7b314610359575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613247565b610a40565b6040516102ab919061328f565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190613308565b610b22565b6040516102e8919061328f565b60405180910390f35b3480156102fd57600080fd5b50610306610b42565b60405161031391906133ce565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613426565b610bd4565b6040516103509190613462565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b919061347d565b610c59565b005b34801561038e57600080fd5b506103a960048036038101906103a491906134e9565b610d70565b005b3480156103b757600080fd5b506103c0610e09565b6040516103cd9190613525565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f891906134e9565b610e0f565b005b34801561040b57600080fd5b50610414610ea8565b6040516104219190613525565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190613308565b610eb9565b60405161045e919061328f565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190613540565b610f0f565b005b34801561049c57600080fd5b506104a5610f6f565b6040516104b2919061328f565b60405180910390f35b3480156104c757600080fd5b506104d0610f82565b005b3480156104de57600080fd5b506104f960048036038101906104f49190613540565b611047565b005b34801561050757600080fd5b50610522600480360381019061051d9190613308565b611067565b60405161052f9190613651565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a9190613426565b611171565b005b34801561056d57600080fd5b506105766111f7565b604051610583919061328f565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae91906137a8565b61120a565b005b3480156105c157600080fd5b506105ca6112a0565b6040516105d7919061328f565b60405180910390f35b3480156105ec57600080fd5b50610607600480360381019061060291906137a8565b6112b3565b005b34801561061557600080fd5b5061061e611349565b60405161062b919061328f565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613426565b61135c565b6040516106689190613462565b60405180910390f35b34801561067d57600080fd5b5061068661140d565b60405161069391906133ce565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190613308565b61149b565b6040516106d09190613525565b60405180910390f35b3480156106e557600080fd5b506106ee611552565b005b3480156106fc57600080fd5b5061071760048036038101906107129190613426565b6115da565b005b610733600480360381019061072e9190613426565b611660565b005b34801561074157600080fd5b5061074a6118bc565b6040516107579190613462565b60405180910390f35b34801561076c57600080fd5b50610787600480360381019061078291906134e9565b6118e6565b005b34801561079557600080fd5b5061079e61197f565b6040516107ab91906133ce565b60405180910390f35b6107ce60048036038101906107c99190613426565b611a11565b005b3480156107dc57600080fd5b506107f760048036038101906107f291906137f1565b611b7c565b005b34801561080557600080fd5b5061080e611b92565b60405161081b91906133ce565b60405180910390f35b34801561083057600080fd5b5061084b600480360381019061084691906138f9565b611c20565b005b34801561085957600080fd5b50610874600480360381019061086f91906139e3565b611d37565b005b34801561088257600080fd5b5061088b611d99565b6040516108989190613525565b60405180910390f35b3480156108ad57600080fd5b506108b6611d9f565b6040516108c391906133ce565b60405180910390f35b3480156108d857600080fd5b506108f360048036038101906108ee9190613426565b611e2d565b60405161090091906133ce565b60405180910390f35b34801561091557600080fd5b5061091e611f85565b60405161092b9190613525565b60405180910390f35b34801561094057600080fd5b5061095b600480360381019061095691906137a8565b611f8b565b005b34801561096957600080fd5b50610984600480360381019061097f91906134e9565b612021565b005b34801561099257600080fd5b5061099b6120ba565b6040516109a89190613525565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d39190613a66565b6120c0565b6040516109e5919061328f565b60405180910390f35b3480156109fa57600080fd5b50610a156004803603810190610a109190613aa6565b612154565b005b348015610a2357600080fd5b50610a3e6004803603810190610a399190613308565b61227c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1b5750610b1a82612373565b5b9050919050565b60106020528060005260406000206000915054906101000a900460ff1681565b606060008054610b5190613b15565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7d90613b15565b8015610bca5780601f10610b9f57610100808354040283529160200191610bca565b820191906000526020600020905b815481529060010190602001808311610bad57829003601f168201915b5050505050905090565b6000610bdf826123dd565b610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590613bb8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c648261135c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb90613c4a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf3612449565b73ffffffffffffffffffffffffffffffffffffffff161480610d225750610d2181610d1c612449565b6120c0565b5b610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5890613cdc565b60405180910390fd5b610d6b8383612451565b505050565b610d78612449565b73ffffffffffffffffffffffffffffffffffffffff16610d966118bc565b73ffffffffffffffffffffffffffffffffffffffff1614610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390613d48565b60405180910390fd5b80600f60036101000a81548160ff02191690831515021790555050565b600b5481565b610e17612449565b73ffffffffffffffffffffffffffffffffffffffff16610e356118bc565b73ffffffffffffffffffffffffffffffffffffffff1614610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290613d48565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610eb4600761250a565b905090565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610f20610f1a612449565b82612518565b610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5690613dda565b60405180910390fd5b610f6a8383836125f6565b505050565b600f60029054906101000a900460ff1681565b610f8a612449565b73ffffffffffffffffffffffffffffffffffffffff16610fa86118bc565b73ffffffffffffffffffffffffffffffffffffffff1614610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590613d48565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611044573d6000803e3d6000fd5b50565b61106283838360405180602001604052806000815250611d37565b505050565b606060006110748361149b565b905060008167ffffffffffffffff8111156110925761109161367d565b5b6040519080825280602002602001820160405280156110c05781602001602082028036833780820191505090505b50905060006001905060005b83811080156110dd5750600d548211155b156111655760006110ed8361135c565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611151578284838151811061113657611135613dfa565b5b602002602001018181525050818061114d90613e58565b9250505b828061115c90613e58565b935050506110cc565b82945050505050919050565b611179612449565b73ffffffffffffffffffffffffffffffffffffffff166111976118bc565b73ffffffffffffffffffffffffffffffffffffffff16146111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e490613d48565b60405180910390fd5b80600b8190555050565b600f60039054906101000a900460ff1681565b611212612449565b73ffffffffffffffffffffffffffffffffffffffff166112306118bc565b73ffffffffffffffffffffffffffffffffffffffff1614611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d90613d48565b60405180910390fd5b80600a908051906020019061129c929190613138565b5050565b600f60019054906101000a900460ff1681565b6112bb612449565b73ffffffffffffffffffffffffffffffffffffffff166112d96118bc565b73ffffffffffffffffffffffffffffffffffffffff161461132f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132690613d48565b60405180910390fd5b8060089080519060200190611345929190613138565b5050565b600f60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb90613f12565b60405180910390fd5b80915050919050565b6008805461141a90613b15565b80601f016020809104026020016040519081016040528092919081815260200182805461144690613b15565b80156114935780601f1061146857610100808354040283529160200191611493565b820191906000526020600020905b81548152906001019060200180831161147657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290613fa4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61155a612449565b73ffffffffffffffffffffffffffffffffffffffff166115786118bc565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590613d48565b60405180910390fd5b6115d8600061285c565b565b6115e2612449565b73ffffffffffffffffffffffffffffffffffffffff166116006118bc565b73ffffffffffffffffffffffffffffffffffffffff1614611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d90613d48565b60405180910390fd5b80600e8190555050565b80600081116116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90614010565b60405180910390fd5b600d54816116b2600761250a565b6116bc9190614030565b11156116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f4906140d2565b60405180910390fd5b60006117083361149b565b9050600f60009054906101000a900460ff161561175a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117519061413e565b60405180910390fd5b60011515600f60039054906101000a900460ff1615151461177a57600080fd5b60011515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461180d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611804906141aa565b60405180910390fd5b600e54838261181c9190614030565b111561185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490614010565b60405180910390fd5b82600c5461186b91906141ca565b3410156118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490614270565b60405180910390fd5b6118b73384612922565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118ee612449565b73ffffffffffffffffffffffffffffffffffffffff1661190c6118bc565b73ffffffffffffffffffffffffffffffffffffffff1614611962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195990613d48565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b60606001805461198e90613b15565b80601f01602080910402602001604051908101604052809291908181526020018280546119ba90613b15565b8015611a075780601f106119dc57610100808354040283529160200191611a07565b820191906000526020600020905b8154815290600101906020018083116119ea57829003601f168201915b5050505050905090565b8060008111611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90614010565b60405180910390fd5b600d5481611a63600761250a565b611a6d9190614030565b1115611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa5906140d2565b60405180910390fd5b600f60009054906101000a900460ff1615611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af59061413e565b60405180910390fd5b60011515600f60029054906101000a900460ff16151514611b1e57600080fd5b81600b54611b2c91906141ca565b341015611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6590614270565b60405180910390fd5b611b783383612922565b5050565b611b8e611b87612449565b8383612962565b5050565b600a8054611b9f90613b15565b80601f0160208091040260200160405190810160405280929190818152602001828054611bcb90613b15565b8015611c185780601f10611bed57610100808354040283529160200191611c18565b820191906000526020600020905b815481529060010190602001808311611bfb57829003601f168201915b505050505081565b611c28612449565b73ffffffffffffffffffffffffffffffffffffffff16611c466118bc565b73ffffffffffffffffffffffffffffffffffffffff1614611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9390613d48565b60405180910390fd5b60005b8151811015611d33576000828281518110611cbd57611cbc613dfa565b5b602002602001015190506001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611d2b90613e58565b915050611c9f565b5050565b611d48611d42612449565b83612518565b611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90613dda565b60405180910390fd5b611d9384848484612ace565b50505050565b600e5481565b60098054611dac90613b15565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd890613b15565b8015611e255780601f10611dfa57610100808354040283529160200191611e25565b820191906000526020600020905b815481529060010190602001808311611e0857829003601f168201915b505050505081565b6060611e38826123dd565b611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90614302565b60405180910390fd5b60001515600f60019054906101000a900460ff16151503611f2457600a8054611e9f90613b15565b80601f0160208091040260200160405190810160405280929190818152602001828054611ecb90613b15565b8015611f185780601f10611eed57610100808354040283529160200191611f18565b820191906000526020600020905b815481529060010190602001808311611efb57829003601f168201915b50505050509050611f80565b6000611f2e612b2a565b90506000815111611f4e5760405180602001604052806000815250611f7c565b80611f5884612bbc565b6009604051602001611f6c939291906143f2565b6040516020818303038152906040525b9150505b919050565b600d5481565b611f93612449565b73ffffffffffffffffffffffffffffffffffffffff16611fb16118bc565b73ffffffffffffffffffffffffffffffffffffffff1614612007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffe90613d48565b60405180910390fd5b806009908051906020019061201d929190613138565b5050565b612029612449565b73ffffffffffffffffffffffffffffffffffffffff166120476118bc565b73ffffffffffffffffffffffffffffffffffffffff161461209d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209490613d48565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111612198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218f90614010565b60405180910390fd5b600d54816121a6600761250a565b6121b09190614030565b11156121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e8906140d2565b60405180910390fd5b6121f9612449565b73ffffffffffffffffffffffffffffffffffffffff166122176118bc565b73ffffffffffffffffffffffffffffffffffffffff161461226d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226490613d48565b60405180910390fd5b6122778284612922565b505050565b612284612449565b73ffffffffffffffffffffffffffffffffffffffff166122a26118bc565b73ffffffffffffffffffffffffffffffffffffffff16146122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef90613d48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e90614495565b60405180910390fd5b6123708161285c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124c48361135c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612523826123dd565b612562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255990614527565b60405180910390fd5b600061256d8361135c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125dc57508373ffffffffffffffffffffffffffffffffffffffff166125c484610bd4565b73ffffffffffffffffffffffffffffffffffffffff16145b806125ed57506125ec81856120c0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126168261135c565b73ffffffffffffffffffffffffffffffffffffffff161461266c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612663906145b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d29061464b565b60405180910390fd5b6126e6838383612d1c565b6126f1600082612451565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612741919061466b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127989190614030565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612857838383612d21565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101561295d576129376007612d26565b61294a83612945600761250a565b612d3c565b808061295590613e58565b915050612925565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c7906146eb565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ac1919061328f565b60405180910390a3505050565b612ad98484846125f6565b612ae584848484612d5a565b612b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1b9061477d565b60405180910390fd5b50505050565b606060088054612b3990613b15565b80601f0160208091040260200160405190810160405280929190818152602001828054612b6590613b15565b8015612bb25780601f10612b8757610100808354040283529160200191612bb2565b820191906000526020600020905b815481529060010190602001808311612b9557829003601f168201915b5050505050905090565b606060008203612c03576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d17565b600082905060005b60008214612c35578080612c1e90613e58565b915050600a82612c2e91906147cc565b9150612c0b565b60008167ffffffffffffffff811115612c5157612c5061367d565b5b6040519080825280601f01601f191660200182016040528015612c835781602001600182028036833780820191505090505b5090505b60008514612d1057600182612c9c919061466b565b9150600a85612cab91906147fd565b6030612cb79190614030565b60f81b818381518110612ccd57612ccc613dfa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d0991906147cc565b9450612c87565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b612d56828260405180602001604052806000815250612ee1565b5050565b6000612d7b8473ffffffffffffffffffffffffffffffffffffffff16612f3c565b15612ed4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612da4612449565b8786866040518563ffffffff1660e01b8152600401612dc69493929190614883565b6020604051808303816000875af1925050508015612e0257506040513d601f19601f82011682018060405250810190612dff91906148e4565b60015b612e84573d8060008114612e32576040519150601f19603f3d011682016040523d82523d6000602084013e612e37565b606091505b506000815103612e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e739061477d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ed9565b600190505b949350505050565b612eeb8383612f5f565b612ef86000848484612d5a565b612f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2e9061477d565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc59061495d565b60405180910390fd5b612fd7816123dd565b15613017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300e906149c9565b60405180910390fd5b61302360008383612d1c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130739190614030565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461313460008383612d21565b5050565b82805461314490613b15565b90600052602060002090601f01602090048101928261316657600085556131ad565b82601f1061317f57805160ff19168380011785556131ad565b828001600101855582156131ad579182015b828111156131ac578251825591602001919060010190613191565b5b5090506131ba91906131be565b5090565b5b808211156131d75760008160009055506001016131bf565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613224816131ef565b811461322f57600080fd5b50565b6000813590506132418161321b565b92915050565b60006020828403121561325d5761325c6131e5565b5b600061326b84828501613232565b91505092915050565b60008115159050919050565b61328981613274565b82525050565b60006020820190506132a46000830184613280565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132d5826132aa565b9050919050565b6132e5816132ca565b81146132f057600080fd5b50565b600081359050613302816132dc565b92915050565b60006020828403121561331e5761331d6131e5565b5b600061332c848285016132f3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561336f578082015181840152602081019050613354565b8381111561337e576000848401525b50505050565b6000601f19601f8301169050919050565b60006133a082613335565b6133aa8185613340565b93506133ba818560208601613351565b6133c381613384565b840191505092915050565b600060208201905081810360008301526133e88184613395565b905092915050565b6000819050919050565b613403816133f0565b811461340e57600080fd5b50565b600081359050613420816133fa565b92915050565b60006020828403121561343c5761343b6131e5565b5b600061344a84828501613411565b91505092915050565b61345c816132ca565b82525050565b60006020820190506134776000830184613453565b92915050565b60008060408385031215613494576134936131e5565b5b60006134a2858286016132f3565b92505060206134b385828601613411565b9150509250929050565b6134c681613274565b81146134d157600080fd5b50565b6000813590506134e3816134bd565b92915050565b6000602082840312156134ff576134fe6131e5565b5b600061350d848285016134d4565b91505092915050565b61351f816133f0565b82525050565b600060208201905061353a6000830184613516565b92915050565b600080600060608486031215613559576135586131e5565b5b6000613567868287016132f3565b9350506020613578868287016132f3565b925050604061358986828701613411565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6135c8816133f0565b82525050565b60006135da83836135bf565b60208301905092915050565b6000602082019050919050565b60006135fe82613593565b613608818561359e565b9350613613836135af565b8060005b8381101561364457815161362b88826135ce565b9750613636836135e6565b925050600181019050613617565b5085935050505092915050565b6000602082019050818103600083015261366b81846135f3565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136b582613384565b810181811067ffffffffffffffff821117156136d4576136d361367d565b5b80604052505050565b60006136e76131db565b90506136f382826136ac565b919050565b600067ffffffffffffffff8211156137135761371261367d565b5b61371c82613384565b9050602081019050919050565b82818337600083830152505050565b600061374b613746846136f8565b6136dd565b90508281526020810184848401111561376757613766613678565b5b613772848285613729565b509392505050565b600082601f83011261378f5761378e613673565b5b813561379f848260208601613738565b91505092915050565b6000602082840312156137be576137bd6131e5565b5b600082013567ffffffffffffffff8111156137dc576137db6131ea565b5b6137e88482850161377a565b91505092915050565b60008060408385031215613808576138076131e5565b5b6000613816858286016132f3565b9250506020613827858286016134d4565b9150509250929050565b600067ffffffffffffffff82111561384c5761384b61367d565b5b602082029050602081019050919050565b600080fd5b600061387561387084613831565b6136dd565b905080838252602082019050602084028301858111156138985761389761385d565b5b835b818110156138c157806138ad88826132f3565b84526020840193505060208101905061389a565b5050509392505050565b600082601f8301126138e0576138df613673565b5b81356138f0848260208601613862565b91505092915050565b60006020828403121561390f5761390e6131e5565b5b600082013567ffffffffffffffff81111561392d5761392c6131ea565b5b613939848285016138cb565b91505092915050565b600067ffffffffffffffff82111561395d5761395c61367d565b5b61396682613384565b9050602081019050919050565b600061398661398184613942565b6136dd565b9050828152602081018484840111156139a2576139a1613678565b5b6139ad848285613729565b509392505050565b600082601f8301126139ca576139c9613673565b5b81356139da848260208601613973565b91505092915050565b600080600080608085870312156139fd576139fc6131e5565b5b6000613a0b878288016132f3565b9450506020613a1c878288016132f3565b9350506040613a2d87828801613411565b925050606085013567ffffffffffffffff811115613a4e57613a4d6131ea565b5b613a5a878288016139b5565b91505092959194509250565b60008060408385031215613a7d57613a7c6131e5565b5b6000613a8b858286016132f3565b9250506020613a9c858286016132f3565b9150509250929050565b60008060408385031215613abd57613abc6131e5565b5b6000613acb85828601613411565b9250506020613adc858286016132f3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b2d57607f821691505b602082108103613b4057613b3f613ae6565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613ba2602c83613340565b9150613bad82613b46565b604082019050919050565b60006020820190508181036000830152613bd181613b95565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c34602183613340565b9150613c3f82613bd8565b604082019050919050565b60006020820190508181036000830152613c6381613c27565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613cc6603883613340565b9150613cd182613c6a565b604082019050919050565b60006020820190508181036000830152613cf581613cb9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d32602083613340565b9150613d3d82613cfc565b602082019050919050565b60006020820190508181036000830152613d6181613d25565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613dc4603183613340565b9150613dcf82613d68565b604082019050919050565b60006020820190508181036000830152613df381613db7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e63826133f0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613e9557613e94613e29565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613efc602983613340565b9150613f0782613ea0565b604082019050919050565b60006020820190508181036000830152613f2b81613eef565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613f8e602a83613340565b9150613f9982613f32565b604082019050919050565b60006020820190508181036000830152613fbd81613f81565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613ffa601483613340565b915061400582613fc4565b602082019050919050565b6000602082019050818103600083015261402981613fed565b9050919050565b600061403b826133f0565b9150614046836133f0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561407b5761407a613e29565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006140bc601483613340565b91506140c782614086565b602082019050919050565b600060208201905081810360008301526140eb816140af565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000614128601783613340565b9150614133826140f2565b602082019050919050565b600060208201905081810360008301526141578161411b565b9050919050565b7f41646472657373206e6f742077686974656c6973746564000000000000000000600082015250565b6000614194601783613340565b915061419f8261415e565b602082019050919050565b600060208201905081810360008301526141c381614187565b9050919050565b60006141d5826133f0565b91506141e0836133f0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561421957614218613e29565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061425a601383613340565b915061426582614224565b602082019050919050565b600060208201905081810360008301526142898161424d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006142ec602f83613340565b91506142f782614290565b604082019050919050565b6000602082019050818103600083015261431b816142df565b9050919050565b600081905092915050565b600061433882613335565b6143428185614322565b9350614352818560208601613351565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461438081613b15565b61438a8186614322565b945060018216600081146143a557600181146143b6576143e9565b60ff198316865281860193506143e9565b6143bf8561435e565b60005b838110156143e1578154818901526001820191506020810190506143c2565b838801955050505b50505092915050565b60006143fe828661432d565b915061440a828561432d565b91506144168284614373565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061447f602683613340565b915061448a82614423565b604082019050919050565b600060208201905081810360008301526144ae81614472565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614511602c83613340565b915061451c826144b5565b604082019050919050565b6000602082019050818103600083015261454081614504565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006145a3602583613340565b91506145ae82614547565b604082019050919050565b600060208201905081810360008301526145d281614596565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614635602483613340565b9150614640826145d9565b604082019050919050565b6000602082019050818103600083015261466481614628565b9050919050565b6000614676826133f0565b9150614681836133f0565b92508282101561469457614693613e29565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006146d5601983613340565b91506146e08261469f565b602082019050919050565b60006020820190508181036000830152614704816146c8565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614767603283613340565b91506147728261470b565b604082019050919050565b600060208201905081810360008301526147968161475a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147d7826133f0565b91506147e2836133f0565b9250826147f2576147f161479d565b5b828204905092915050565b6000614808826133f0565b9150614813836133f0565b9250826148235761482261479d565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006148558261482e565b61485f8185614839565b935061486f818560208601613351565b61487881613384565b840191505092915050565b60006080820190506148986000830187613453565b6148a56020830186613453565b6148b26040830185613516565b81810360608301526148c4818461484a565b905095945050505050565b6000815190506148de8161321b565b92915050565b6000602082840312156148fa576148f96131e5565b5b6000614908848285016148cf565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614947602083613340565b915061495282614911565b602082019050919050565b600060208201905081810360008301526149768161493a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006149b3601c83613340565b91506149be8261497d565b602082019050919050565b600060208201905081810360008301526149e2816149a6565b905091905056fea2646970667358221220fa380645ced9b6f9f1691e7fa18e9b92c9ce3464051868a077661362ed23a75564736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000010496b69676169436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003494b4700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d636f5241455a563765473932724d417344445166545948594a724e38443137364a387637484b7a584a4277362f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636c0360eb1161014f578063a803df83116100c1578063da3ef23f1161007a578063da3ef23f14610934578063e0a808531461095d578063e7b99ec714610986578063e985e9c5146109b1578063efbd73f4146109ee578063f2fde38b14610a1757610272565b8063a803df8314610824578063b88d4fde1461084d578063bf0d96c314610876578063c6682862146108a1578063c87b56dd146108cc578063d5abeb011461090957610272565b80638da5cb5b116101135780638da5cb5b146107355780639293a5c71461076057806395d89b4114610789578063a0712d68146107b4578063a22cb465146107d0578063a45ba8e7146107f957610272565b80636c0360eb1461067157806370a082311461069c578063715018a6146106d957806372d9eb1e146106f0578063868ff4a21461071957610272565b806326d93800116101e85780634eebbb3b116101ac5780634eebbb3b146105615780634fdd43cb1461058c57806351830227146105b557806355f804b3146105e05780635c975abb146106095780636352211e1461063457610272565b806326d93800146104905780633ccfd60b146104bb57806342842e0e146104d2578063438b6300146104fb57806344a0d68a1461053857610272565b80630c4dc29c1161023a5780630c4dc29c1461038257806313faede6146103ab57806316c38b3c146103d657806318160ddd146103ff5780631950c2181461042a57806323b872dd1461046757610272565b806301ffc9a71461027757806306c933d8146102b457806306fdde03146102f1578063081812fc1461031c578063095ea7b314610359575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613247565b610a40565b6040516102ab919061328f565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190613308565b610b22565b6040516102e8919061328f565b60405180910390f35b3480156102fd57600080fd5b50610306610b42565b60405161031391906133ce565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613426565b610bd4565b6040516103509190613462565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b919061347d565b610c59565b005b34801561038e57600080fd5b506103a960048036038101906103a491906134e9565b610d70565b005b3480156103b757600080fd5b506103c0610e09565b6040516103cd9190613525565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f891906134e9565b610e0f565b005b34801561040b57600080fd5b50610414610ea8565b6040516104219190613525565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190613308565b610eb9565b60405161045e919061328f565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190613540565b610f0f565b005b34801561049c57600080fd5b506104a5610f6f565b6040516104b2919061328f565b60405180910390f35b3480156104c757600080fd5b506104d0610f82565b005b3480156104de57600080fd5b506104f960048036038101906104f49190613540565b611047565b005b34801561050757600080fd5b50610522600480360381019061051d9190613308565b611067565b60405161052f9190613651565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a9190613426565b611171565b005b34801561056d57600080fd5b506105766111f7565b604051610583919061328f565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae91906137a8565b61120a565b005b3480156105c157600080fd5b506105ca6112a0565b6040516105d7919061328f565b60405180910390f35b3480156105ec57600080fd5b50610607600480360381019061060291906137a8565b6112b3565b005b34801561061557600080fd5b5061061e611349565b60405161062b919061328f565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613426565b61135c565b6040516106689190613462565b60405180910390f35b34801561067d57600080fd5b5061068661140d565b60405161069391906133ce565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190613308565b61149b565b6040516106d09190613525565b60405180910390f35b3480156106e557600080fd5b506106ee611552565b005b3480156106fc57600080fd5b5061071760048036038101906107129190613426565b6115da565b005b610733600480360381019061072e9190613426565b611660565b005b34801561074157600080fd5b5061074a6118bc565b6040516107579190613462565b60405180910390f35b34801561076c57600080fd5b50610787600480360381019061078291906134e9565b6118e6565b005b34801561079557600080fd5b5061079e61197f565b6040516107ab91906133ce565b60405180910390f35b6107ce60048036038101906107c99190613426565b611a11565b005b3480156107dc57600080fd5b506107f760048036038101906107f291906137f1565b611b7c565b005b34801561080557600080fd5b5061080e611b92565b60405161081b91906133ce565b60405180910390f35b34801561083057600080fd5b5061084b600480360381019061084691906138f9565b611c20565b005b34801561085957600080fd5b50610874600480360381019061086f91906139e3565b611d37565b005b34801561088257600080fd5b5061088b611d99565b6040516108989190613525565b60405180910390f35b3480156108ad57600080fd5b506108b6611d9f565b6040516108c391906133ce565b60405180910390f35b3480156108d857600080fd5b506108f360048036038101906108ee9190613426565b611e2d565b60405161090091906133ce565b60405180910390f35b34801561091557600080fd5b5061091e611f85565b60405161092b9190613525565b60405180910390f35b34801561094057600080fd5b5061095b600480360381019061095691906137a8565b611f8b565b005b34801561096957600080fd5b50610984600480360381019061097f91906134e9565b612021565b005b34801561099257600080fd5b5061099b6120ba565b6040516109a89190613525565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d39190613a66565b6120c0565b6040516109e5919061328f565b60405180910390f35b3480156109fa57600080fd5b50610a156004803603810190610a109190613aa6565b612154565b005b348015610a2357600080fd5b50610a3e6004803603810190610a399190613308565b61227c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1b5750610b1a82612373565b5b9050919050565b60106020528060005260406000206000915054906101000a900460ff1681565b606060008054610b5190613b15565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7d90613b15565b8015610bca5780601f10610b9f57610100808354040283529160200191610bca565b820191906000526020600020905b815481529060010190602001808311610bad57829003601f168201915b5050505050905090565b6000610bdf826123dd565b610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590613bb8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c648261135c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb90613c4a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf3612449565b73ffffffffffffffffffffffffffffffffffffffff161480610d225750610d2181610d1c612449565b6120c0565b5b610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5890613cdc565b60405180910390fd5b610d6b8383612451565b505050565b610d78612449565b73ffffffffffffffffffffffffffffffffffffffff16610d966118bc565b73ffffffffffffffffffffffffffffffffffffffff1614610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390613d48565b60405180910390fd5b80600f60036101000a81548160ff02191690831515021790555050565b600b5481565b610e17612449565b73ffffffffffffffffffffffffffffffffffffffff16610e356118bc565b73ffffffffffffffffffffffffffffffffffffffff1614610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290613d48565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610eb4600761250a565b905090565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610f20610f1a612449565b82612518565b610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5690613dda565b60405180910390fd5b610f6a8383836125f6565b505050565b600f60029054906101000a900460ff1681565b610f8a612449565b73ffffffffffffffffffffffffffffffffffffffff16610fa86118bc565b73ffffffffffffffffffffffffffffffffffffffff1614610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590613d48565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611044573d6000803e3d6000fd5b50565b61106283838360405180602001604052806000815250611d37565b505050565b606060006110748361149b565b905060008167ffffffffffffffff8111156110925761109161367d565b5b6040519080825280602002602001820160405280156110c05781602001602082028036833780820191505090505b50905060006001905060005b83811080156110dd5750600d548211155b156111655760006110ed8361135c565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611151578284838151811061113657611135613dfa565b5b602002602001018181525050818061114d90613e58565b9250505b828061115c90613e58565b935050506110cc565b82945050505050919050565b611179612449565b73ffffffffffffffffffffffffffffffffffffffff166111976118bc565b73ffffffffffffffffffffffffffffffffffffffff16146111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e490613d48565b60405180910390fd5b80600b8190555050565b600f60039054906101000a900460ff1681565b611212612449565b73ffffffffffffffffffffffffffffffffffffffff166112306118bc565b73ffffffffffffffffffffffffffffffffffffffff1614611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d90613d48565b60405180910390fd5b80600a908051906020019061129c929190613138565b5050565b600f60019054906101000a900460ff1681565b6112bb612449565b73ffffffffffffffffffffffffffffffffffffffff166112d96118bc565b73ffffffffffffffffffffffffffffffffffffffff161461132f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132690613d48565b60405180910390fd5b8060089080519060200190611345929190613138565b5050565b600f60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb90613f12565b60405180910390fd5b80915050919050565b6008805461141a90613b15565b80601f016020809104026020016040519081016040528092919081815260200182805461144690613b15565b80156114935780601f1061146857610100808354040283529160200191611493565b820191906000526020600020905b81548152906001019060200180831161147657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290613fa4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61155a612449565b73ffffffffffffffffffffffffffffffffffffffff166115786118bc565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590613d48565b60405180910390fd5b6115d8600061285c565b565b6115e2612449565b73ffffffffffffffffffffffffffffffffffffffff166116006118bc565b73ffffffffffffffffffffffffffffffffffffffff1614611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d90613d48565b60405180910390fd5b80600e8190555050565b80600081116116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90614010565b60405180910390fd5b600d54816116b2600761250a565b6116bc9190614030565b11156116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f4906140d2565b60405180910390fd5b60006117083361149b565b9050600f60009054906101000a900460ff161561175a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117519061413e565b60405180910390fd5b60011515600f60039054906101000a900460ff1615151461177a57600080fd5b60011515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461180d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611804906141aa565b60405180910390fd5b600e54838261181c9190614030565b111561185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490614010565b60405180910390fd5b82600c5461186b91906141ca565b3410156118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490614270565b60405180910390fd5b6118b73384612922565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118ee612449565b73ffffffffffffffffffffffffffffffffffffffff1661190c6118bc565b73ffffffffffffffffffffffffffffffffffffffff1614611962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195990613d48565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b60606001805461198e90613b15565b80601f01602080910402602001604051908101604052809291908181526020018280546119ba90613b15565b8015611a075780601f106119dc57610100808354040283529160200191611a07565b820191906000526020600020905b8154815290600101906020018083116119ea57829003601f168201915b5050505050905090565b8060008111611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90614010565b60405180910390fd5b600d5481611a63600761250a565b611a6d9190614030565b1115611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa5906140d2565b60405180910390fd5b600f60009054906101000a900460ff1615611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af59061413e565b60405180910390fd5b60011515600f60029054906101000a900460ff16151514611b1e57600080fd5b81600b54611b2c91906141ca565b341015611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6590614270565b60405180910390fd5b611b783383612922565b5050565b611b8e611b87612449565b8383612962565b5050565b600a8054611b9f90613b15565b80601f0160208091040260200160405190810160405280929190818152602001828054611bcb90613b15565b8015611c185780601f10611bed57610100808354040283529160200191611c18565b820191906000526020600020905b815481529060010190602001808311611bfb57829003601f168201915b505050505081565b611c28612449565b73ffffffffffffffffffffffffffffffffffffffff16611c466118bc565b73ffffffffffffffffffffffffffffffffffffffff1614611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9390613d48565b60405180910390fd5b60005b8151811015611d33576000828281518110611cbd57611cbc613dfa565b5b602002602001015190506001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611d2b90613e58565b915050611c9f565b5050565b611d48611d42612449565b83612518565b611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90613dda565b60405180910390fd5b611d9384848484612ace565b50505050565b600e5481565b60098054611dac90613b15565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd890613b15565b8015611e255780601f10611dfa57610100808354040283529160200191611e25565b820191906000526020600020905b815481529060010190602001808311611e0857829003601f168201915b505050505081565b6060611e38826123dd565b611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90614302565b60405180910390fd5b60001515600f60019054906101000a900460ff16151503611f2457600a8054611e9f90613b15565b80601f0160208091040260200160405190810160405280929190818152602001828054611ecb90613b15565b8015611f185780601f10611eed57610100808354040283529160200191611f18565b820191906000526020600020905b815481529060010190602001808311611efb57829003601f168201915b50505050509050611f80565b6000611f2e612b2a565b90506000815111611f4e5760405180602001604052806000815250611f7c565b80611f5884612bbc565b6009604051602001611f6c939291906143f2565b6040516020818303038152906040525b9150505b919050565b600d5481565b611f93612449565b73ffffffffffffffffffffffffffffffffffffffff16611fb16118bc565b73ffffffffffffffffffffffffffffffffffffffff1614612007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffe90613d48565b60405180910390fd5b806009908051906020019061201d929190613138565b5050565b612029612449565b73ffffffffffffffffffffffffffffffffffffffff166120476118bc565b73ffffffffffffffffffffffffffffffffffffffff161461209d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209490613d48565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111612198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218f90614010565b60405180910390fd5b600d54816121a6600761250a565b6121b09190614030565b11156121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e8906140d2565b60405180910390fd5b6121f9612449565b73ffffffffffffffffffffffffffffffffffffffff166122176118bc565b73ffffffffffffffffffffffffffffffffffffffff161461226d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226490613d48565b60405180910390fd5b6122778284612922565b505050565b612284612449565b73ffffffffffffffffffffffffffffffffffffffff166122a26118bc565b73ffffffffffffffffffffffffffffffffffffffff16146122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef90613d48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e90614495565b60405180910390fd5b6123708161285c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124c48361135c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612523826123dd565b612562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255990614527565b60405180910390fd5b600061256d8361135c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125dc57508373ffffffffffffffffffffffffffffffffffffffff166125c484610bd4565b73ffffffffffffffffffffffffffffffffffffffff16145b806125ed57506125ec81856120c0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126168261135c565b73ffffffffffffffffffffffffffffffffffffffff161461266c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612663906145b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d29061464b565b60405180910390fd5b6126e6838383612d1c565b6126f1600082612451565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612741919061466b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127989190614030565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612857838383612d21565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101561295d576129376007612d26565b61294a83612945600761250a565b612d3c565b808061295590613e58565b915050612925565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c7906146eb565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ac1919061328f565b60405180910390a3505050565b612ad98484846125f6565b612ae584848484612d5a565b612b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1b9061477d565b60405180910390fd5b50505050565b606060088054612b3990613b15565b80601f0160208091040260200160405190810160405280929190818152602001828054612b6590613b15565b8015612bb25780601f10612b8757610100808354040283529160200191612bb2565b820191906000526020600020905b815481529060010190602001808311612b9557829003601f168201915b5050505050905090565b606060008203612c03576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d17565b600082905060005b60008214612c35578080612c1e90613e58565b915050600a82612c2e91906147cc565b9150612c0b565b60008167ffffffffffffffff811115612c5157612c5061367d565b5b6040519080825280601f01601f191660200182016040528015612c835781602001600182028036833780820191505090505b5090505b60008514612d1057600182612c9c919061466b565b9150600a85612cab91906147fd565b6030612cb79190614030565b60f81b818381518110612ccd57612ccc613dfa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d0991906147cc565b9450612c87565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b612d56828260405180602001604052806000815250612ee1565b5050565b6000612d7b8473ffffffffffffffffffffffffffffffffffffffff16612f3c565b15612ed4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612da4612449565b8786866040518563ffffffff1660e01b8152600401612dc69493929190614883565b6020604051808303816000875af1925050508015612e0257506040513d601f19601f82011682018060405250810190612dff91906148e4565b60015b612e84573d8060008114612e32576040519150601f19603f3d011682016040523d82523d6000602084013e612e37565b606091505b506000815103612e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e739061477d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ed9565b600190505b949350505050565b612eeb8383612f5f565b612ef86000848484612d5a565b612f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2e9061477d565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc59061495d565b60405180910390fd5b612fd7816123dd565b15613017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300e906149c9565b60405180910390fd5b61302360008383612d1c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130739190614030565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461313460008383612d21565b5050565b82805461314490613b15565b90600052602060002090601f01602090048101928261316657600085556131ad565b82601f1061317f57805160ff19168380011785556131ad565b828001600101855582156131ad579182015b828111156131ac578251825591602001919060010190613191565b5b5090506131ba91906131be565b5090565b5b808211156131d75760008160009055506001016131bf565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613224816131ef565b811461322f57600080fd5b50565b6000813590506132418161321b565b92915050565b60006020828403121561325d5761325c6131e5565b5b600061326b84828501613232565b91505092915050565b60008115159050919050565b61328981613274565b82525050565b60006020820190506132a46000830184613280565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132d5826132aa565b9050919050565b6132e5816132ca565b81146132f057600080fd5b50565b600081359050613302816132dc565b92915050565b60006020828403121561331e5761331d6131e5565b5b600061332c848285016132f3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561336f578082015181840152602081019050613354565b8381111561337e576000848401525b50505050565b6000601f19601f8301169050919050565b60006133a082613335565b6133aa8185613340565b93506133ba818560208601613351565b6133c381613384565b840191505092915050565b600060208201905081810360008301526133e88184613395565b905092915050565b6000819050919050565b613403816133f0565b811461340e57600080fd5b50565b600081359050613420816133fa565b92915050565b60006020828403121561343c5761343b6131e5565b5b600061344a84828501613411565b91505092915050565b61345c816132ca565b82525050565b60006020820190506134776000830184613453565b92915050565b60008060408385031215613494576134936131e5565b5b60006134a2858286016132f3565b92505060206134b385828601613411565b9150509250929050565b6134c681613274565b81146134d157600080fd5b50565b6000813590506134e3816134bd565b92915050565b6000602082840312156134ff576134fe6131e5565b5b600061350d848285016134d4565b91505092915050565b61351f816133f0565b82525050565b600060208201905061353a6000830184613516565b92915050565b600080600060608486031215613559576135586131e5565b5b6000613567868287016132f3565b9350506020613578868287016132f3565b925050604061358986828701613411565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6135c8816133f0565b82525050565b60006135da83836135bf565b60208301905092915050565b6000602082019050919050565b60006135fe82613593565b613608818561359e565b9350613613836135af565b8060005b8381101561364457815161362b88826135ce565b9750613636836135e6565b925050600181019050613617565b5085935050505092915050565b6000602082019050818103600083015261366b81846135f3565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136b582613384565b810181811067ffffffffffffffff821117156136d4576136d361367d565b5b80604052505050565b60006136e76131db565b90506136f382826136ac565b919050565b600067ffffffffffffffff8211156137135761371261367d565b5b61371c82613384565b9050602081019050919050565b82818337600083830152505050565b600061374b613746846136f8565b6136dd565b90508281526020810184848401111561376757613766613678565b5b613772848285613729565b509392505050565b600082601f83011261378f5761378e613673565b5b813561379f848260208601613738565b91505092915050565b6000602082840312156137be576137bd6131e5565b5b600082013567ffffffffffffffff8111156137dc576137db6131ea565b5b6137e88482850161377a565b91505092915050565b60008060408385031215613808576138076131e5565b5b6000613816858286016132f3565b9250506020613827858286016134d4565b9150509250929050565b600067ffffffffffffffff82111561384c5761384b61367d565b5b602082029050602081019050919050565b600080fd5b600061387561387084613831565b6136dd565b905080838252602082019050602084028301858111156138985761389761385d565b5b835b818110156138c157806138ad88826132f3565b84526020840193505060208101905061389a565b5050509392505050565b600082601f8301126138e0576138df613673565b5b81356138f0848260208601613862565b91505092915050565b60006020828403121561390f5761390e6131e5565b5b600082013567ffffffffffffffff81111561392d5761392c6131ea565b5b613939848285016138cb565b91505092915050565b600067ffffffffffffffff82111561395d5761395c61367d565b5b61396682613384565b9050602081019050919050565b600061398661398184613942565b6136dd565b9050828152602081018484840111156139a2576139a1613678565b5b6139ad848285613729565b509392505050565b600082601f8301126139ca576139c9613673565b5b81356139da848260208601613973565b91505092915050565b600080600080608085870312156139fd576139fc6131e5565b5b6000613a0b878288016132f3565b9450506020613a1c878288016132f3565b9350506040613a2d87828801613411565b925050606085013567ffffffffffffffff811115613a4e57613a4d6131ea565b5b613a5a878288016139b5565b91505092959194509250565b60008060408385031215613a7d57613a7c6131e5565b5b6000613a8b858286016132f3565b9250506020613a9c858286016132f3565b9150509250929050565b60008060408385031215613abd57613abc6131e5565b5b6000613acb85828601613411565b9250506020613adc858286016132f3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b2d57607f821691505b602082108103613b4057613b3f613ae6565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613ba2602c83613340565b9150613bad82613b46565b604082019050919050565b60006020820190508181036000830152613bd181613b95565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c34602183613340565b9150613c3f82613bd8565b604082019050919050565b60006020820190508181036000830152613c6381613c27565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613cc6603883613340565b9150613cd182613c6a565b604082019050919050565b60006020820190508181036000830152613cf581613cb9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d32602083613340565b9150613d3d82613cfc565b602082019050919050565b60006020820190508181036000830152613d6181613d25565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613dc4603183613340565b9150613dcf82613d68565b604082019050919050565b60006020820190508181036000830152613df381613db7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e63826133f0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613e9557613e94613e29565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613efc602983613340565b9150613f0782613ea0565b604082019050919050565b60006020820190508181036000830152613f2b81613eef565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613f8e602a83613340565b9150613f9982613f32565b604082019050919050565b60006020820190508181036000830152613fbd81613f81565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613ffa601483613340565b915061400582613fc4565b602082019050919050565b6000602082019050818103600083015261402981613fed565b9050919050565b600061403b826133f0565b9150614046836133f0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561407b5761407a613e29565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006140bc601483613340565b91506140c782614086565b602082019050919050565b600060208201905081810360008301526140eb816140af565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000614128601783613340565b9150614133826140f2565b602082019050919050565b600060208201905081810360008301526141578161411b565b9050919050565b7f41646472657373206e6f742077686974656c6973746564000000000000000000600082015250565b6000614194601783613340565b915061419f8261415e565b602082019050919050565b600060208201905081810360008301526141c381614187565b9050919050565b60006141d5826133f0565b91506141e0836133f0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561421957614218613e29565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061425a601383613340565b915061426582614224565b602082019050919050565b600060208201905081810360008301526142898161424d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006142ec602f83613340565b91506142f782614290565b604082019050919050565b6000602082019050818103600083015261431b816142df565b9050919050565b600081905092915050565b600061433882613335565b6143428185614322565b9350614352818560208601613351565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461438081613b15565b61438a8186614322565b945060018216600081146143a557600181146143b6576143e9565b60ff198316865281860193506143e9565b6143bf8561435e565b60005b838110156143e1578154818901526001820191506020810190506143c2565b838801955050505b50505092915050565b60006143fe828661432d565b915061440a828561432d565b91506144168284614373565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061447f602683613340565b915061448a82614423565b604082019050919050565b600060208201905081810360008301526144ae81614472565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614511602c83613340565b915061451c826144b5565b604082019050919050565b6000602082019050818103600083015261454081614504565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006145a3602583613340565b91506145ae82614547565b604082019050919050565b600060208201905081810360008301526145d281614596565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614635602483613340565b9150614640826145d9565b604082019050919050565b6000602082019050818103600083015261466481614628565b9050919050565b6000614676826133f0565b9150614681836133f0565b92508282101561469457614693613e29565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006146d5601983613340565b91506146e08261469f565b602082019050919050565b60006020820190508181036000830152614704816146c8565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614767603283613340565b91506147728261470b565b604082019050919050565b600060208201905081810360008301526147968161475a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147d7826133f0565b91506147e2836133f0565b9250826147f2576147f161479d565b5b828204905092915050565b6000614808826133f0565b9150614813836133f0565b9250826148235761482261479d565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006148558261482e565b61485f8185614839565b935061486f818560208601613351565b61487881613384565b840191505092915050565b60006080820190506148986000830187613453565b6148a56020830186613453565b6148b26040830185613516565b81810360608301526148c4818461484a565b905095945050505050565b6000815190506148de8161321b565b92915050565b6000602082840312156148fa576148f96131e5565b5b6000614908848285016148cf565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614947602083613340565b915061495282614911565b602082019050919050565b600060208201905081810360008301526149768161493a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006149b3601c83613340565b91506149be8261497d565b602082019050919050565b600060208201905081810360008301526149e2816149a6565b905091905056fea2646970667358221220fa380645ced9b6f9f1691e7fa18e9b92c9ce3464051868a077661362ed23a75564736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000010496b69676169436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003494b4700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d636f5241455a563765473932724d417344445166545948594a724e38443137364a387637484b7a584a4277362f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): IkigaiCollection
Arg [1] : _symbol (string): IKG
Arg [2] : _initHiddenMetadataUri (string): ipfs://QmcoRAEZV7eG92rMAsDDQfTYHYJrN8D176J8v7HKzXJBw6/hidden.json

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [4] : 496b69676169436f6c6c656374696f6e00000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 494b470000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [8] : 697066733a2f2f516d636f5241455a563765473932724d417344445166545948
Arg [9] : 594a724e38443137364a387637484b7a584a4277362f68696464656e2e6a736f
Arg [10] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

38773:5165:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25574:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39325:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26519:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28078:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27601:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43620:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39033:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43437:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40286:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39899:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28828:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39242:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43726:101;;;;;;;;;;;;;:::i;:::-;;29238:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41616:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42895:71;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39281:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43081:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39209:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43219:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39179:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26213:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38920:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25943:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6195:103;;;;;;;;;;;;;:::i;:::-;;42972;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40666:516;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5544:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43520:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26688:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40378:282;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28371:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38993:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39654:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29494:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39144:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38951:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42239:495;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39111:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43315:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42808:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39068:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28597:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41190:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6453:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25574:305;25676:4;25728:25;25713:40;;;:11;:40;;;;:105;;;;25785:33;25770:48;;;:11;:48;;;;25713:105;:158;;;;25835:36;25859:11;25835:23;:36::i;:::-;25713:158;25693:178;;25574:305;;;:::o;39325:52::-;;;;;;;;;;;;;;;;;;;;;;:::o;26519:100::-;26573:13;26606:5;26599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26519:100;:::o;28078:221::-;28154:7;28182:16;28190:7;28182;:16::i;:::-;28174:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28267:15;:24;28283:7;28267:24;;;;;;;;;;;;;;;;;;;;;28260:31;;28078:221;;;:::o;27601:411::-;27682:13;27698:23;27713:7;27698:14;:23::i;:::-;27682:39;;27746:5;27740:11;;:2;:11;;;27732:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27840:5;27824:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27849:37;27866:5;27873:12;:10;:12::i;:::-;27849:16;:37::i;:::-;27824:62;27802:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27983:21;27992:2;27996:7;27983:8;:21::i;:::-;27671:341;27601:411;;:::o;43620:100::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43708:6:::1;43688:17;;:26;;;;;;;;;;;;;;;;;;43620:100:::0;:::o;39033:30::-;;;;:::o;43437:77::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43502:6:::1;43493;;:15;;;;;;;;;;;;;;;;;;43437:77:::0;:::o;40286:86::-;40330:4;40350:16;:6;:14;:16::i;:::-;40343:23;;40286:86;:::o;39899:118::-;39961:4;39981:20;:30;40002:8;39981:30;;;;;;;;;;;;;;;;;;;;;;;;;39974:37;;39899:118;;;:::o;28828:339::-;29023:41;29042:12;:10;:12::i;:::-;29056:7;29023:18;:41::i;:::-;29015:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29131:28;29141:4;29147:2;29151:7;29131:9;:28::i;:::-;28828:339;;;:::o;39242:34::-;;;;;;;;;;;;;:::o;43726:101::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43778:10:::1;43770:28;;:51;43799:21;43770:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43726:101::o:0;29238:185::-;29376:39;29393:4;29399:2;29403:7;29376:39;;;;;;;;;;;;:16;:39::i;:::-;29238:185;;;:::o;41616:617::-;41691:13;41716:20;41739:17;41749:6;41739:9;:17::i;:::-;41716:40;;41763:27;41804:15;41793:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41763:57;;41827:19;41849:1;41827:23;;41857:20;41890:309;41915:15;41897;:33;:64;;;;;41952:9;;41934:14;:27;;41897:64;41890:309;;;41972:25;42000:23;42008:14;42000:7;:23::i;:::-;41972:51;;42059:6;42038:27;;:17;:27;;;42034:131;;42111:14;42078:13;42092:15;42078:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;42138:17;;;;;:::i;:::-;;;;42034:131;42175:16;;;;;:::i;:::-;;;;41963:236;41890:309;;;42214:13;42207:20;;;;;;41616:617;;;:::o;42895:71::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42955:5:::1;42948:4;:12;;;;42895:71:::0;:::o;39281:37::-;;;;;;;;;;;;;:::o;43081:132::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43189:18:::1;43169:17;:38;;;;;;;;;;;;:::i;:::-;;43081:132:::0;:::o;39209:28::-;;;;;;;;;;;;;:::o;43219:90::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43296:7:::1;43286;:17;;;;;;;;;;;;:::i;:::-;;43219:90:::0;:::o;39179:25::-;;;;;;;;;;;;;:::o;26213:239::-;26285:7;26305:13;26321:7;:16;26329:7;26321:16;;;;;;;;;;;;;;;;;;;;;26305:32;;26373:1;26356:19;;:5;:19;;;26348:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26439:5;26432:12;;;26213:239;;;:::o;38920:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25943:208::-;26015:7;26060:1;26043:19;;:5;:19;;;26035:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26127:9;:16;26137:5;26127:16;;;;;;;;;;;;;;;;26120:23;;25943:208;;;:::o;6195:103::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;42972:::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43056:13:::1;43041:12;:28;;;;42972:103:::0;:::o;40666:516::-;40737:11;40157:1;40143:11;:15;40135:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;40232:9;;40217:11;40198:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;40190:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;40757:17:::1;40777:21;40787:10;40777:9;:21::i;:::-;40757:41;;40814:6;;;;;;;;;;;40813:7;40805:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;40884:4;40863:25;;:17;;;;;;;;;;;:25;;;40855:34;;;::::0;::::1;;40940:4;40904:40;;:20;:32;40925:10;40904:32;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;40896:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;41017:12;;41002:11;40987:12;:26;;;;:::i;:::-;:42;;40979:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;41098:11;41082:13;;:27;;;;:::i;:::-;41069:9;:40;;41061:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;41142:34;41152:10;41164:11;41142:9;:34::i;:::-;40750:432;40666:516:::0;;:::o;5544:87::-;5590:7;5617:6;;;;;;;;;;;5610:13;;5544:87;:::o;43520:94::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43602:6:::1;43585:14;;:23;;;;;;;;;;;;;;;;;;43520:94:::0;:::o;26688:104::-;26744:13;26777:7;26770:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26688:104;:::o;40378:282::-;40440:11;40157:1;40143:11;:15;40135:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;40232:9;;40217:11;40198:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;40190:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;40469:6:::1;;;;;;;;;;;40468:7;40460:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;40536:4;40518:22;;:14;;;;;;;;;;;:22;;;40510:31;;;::::0;::::1;;40576:11;40569:4;;:18;;;;:::i;:::-;40556:9;:31;;40548:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40620:34;40630:10;40642:11;40620:9;:34::i;:::-;40378:282:::0;;:::o;28371:155::-;28466:52;28485:12;:10;:12::i;:::-;28499:8;28509;28466:18;:52::i;:::-;28371:155;;:::o;38993:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39654:239::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39738:6:::1;39734:154;39754:13;:20;39750:1;:24;39734:154;;;39791:18;39812:13;39826:1;39812:16;;;;;;;;:::i;:::-;;;;;;;;39791:37;;39874:4;39839:20;:32;39860:10;39839:32;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39780:108;39776:3;;;;;:::i;:::-;;;;39734:154;;;;39654:239:::0;:::o;29494:328::-;29669:41;29688:12;:10;:12::i;:::-;29702:7;29669:18;:41::i;:::-;29661:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29775:39;29789:4;29795:2;29799:7;29808:5;29775:13;:39::i;:::-;29494:328;;;;:::o;39144:28::-;;;;:::o;38951:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42239:495::-;42335:13;42376:17;42384:8;42376:7;:17::i;:::-;42360:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;42483:5;42471:17;;:8;;;;;;;;;;;:17;;;42467:64;;42506:17;42499:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42467:64;42539:28;42570:10;:8;:10::i;:::-;42539:41;;42625:1;42600:14;42594:28;:32;:134;;;;;;;;;;;;;;;;;42662:14;42678:19;:8;:17;:19::i;:::-;42699:13;42645:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42594:134;42587:141;;;42239:495;;;;:::o;39111:28::-;;;;:::o;43315:116::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43411:14:::1;43395:13;:30;;;;;;;;;;;;:::i;:::-;;43315:116:::0;:::o;42808:81::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42877:6:::1;42866:8;;:17;;;;;;;;;;;;;;;;;;42808:81:::0;:::o;39068:38::-;;;;:::o;28597:164::-;28694:4;28718:18;:25;28737:5;28718:25;;;;;;;;;;;;;;;:35;28744:8;28718:35;;;;;;;;;;;;;;;;;;;;;;;;;28711:42;;28597:164;;;;:::o;41190:152::-;41273:11;40157:1;40143:11;:15;40135:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;40232:9;;40217:11;40198:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;40190:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5775:12:::1;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41303:33:::2;41313:9;41324:11;41303:9;:33::i;:::-;41190:152:::0;;;:::o;6453:201::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6562:1:::1;6542:22;;:8;:22;;::::0;6534:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;18328:157::-;18413:4;18452:25;18437:40;;;:11;:40;;;;18430:47;;18328:157;;;:::o;31332:127::-;31397:4;31449:1;31421:30;;:7;:16;31429:7;31421:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31414:37;;31332:127;;;:::o;4268:98::-;4321:7;4348:10;4341:17;;4268:98;:::o;35478:174::-;35580:2;35553:15;:24;35569:7;35553:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35636:7;35632:2;35598:46;;35607:23;35622:7;35607:14;:23::i;:::-;35598:46;;;;;;;;;;;;35478:174;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;31626:348::-;31719:4;31744:16;31752:7;31744;:16::i;:::-;31736:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31820:13;31836:23;31851:7;31836:14;:23::i;:::-;31820:39;;31889:5;31878:16;;:7;:16;;;:51;;;;31922:7;31898:31;;:20;31910:7;31898:11;:20::i;:::-;:31;;;31878:51;:87;;;;31933:32;31950:5;31957:7;31933:16;:32::i;:::-;31878:87;31870:96;;;31626:348;;;;:::o;34735:625::-;34894:4;34867:31;;:23;34882:7;34867:14;:23::i;:::-;:31;;;34859:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34973:1;34959:16;;:2;:16;;;34951:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35029:39;35050:4;35056:2;35060:7;35029:20;:39::i;:::-;35133:29;35150:1;35154:7;35133:8;:29::i;:::-;35194:1;35175:9;:15;35185:4;35175:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35223:1;35206:9;:13;35216:2;35206:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35254:2;35235:7;:16;35243:7;35235:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35293:7;35289:2;35274:27;;35283:4;35274:27;;;;;;;;;;;;35314:38;35334:4;35340:2;35344:7;35314:19;:38::i;:::-;34735:625;;;:::o;6814:191::-;6888:16;6907:6;;;;;;;;;;;6888:25;;6933:8;6924:6;;:17;;;;;;;;;;;;;;;;;;6988:8;6957:40;;6978:8;6957:40;;;;;;;;;;;;6877:128;6814:191;:::o;41348:198::-;41425:6;41420:121;41441:11;41437:1;:15;41420:121;;;41468:18;:6;:16;:18::i;:::-;41495:38;41505:9;41516:16;:6;:14;:16::i;:::-;41495:9;:38::i;:::-;41454:3;;;;;:::i;:::-;;;;41420:121;;;;41348:198;;:::o;35794:315::-;35949:8;35940:17;;:5;:17;;;35932:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36036:8;35998:18;:25;36017:5;35998:25;;;;;;;;;;;;;;;:35;36024:8;35998:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36082:8;36060:41;;36075:5;36060:41;;;36092:8;36060:41;;;;;;:::i;:::-;;;;;;;;35794:315;;;:::o;30704:::-;30861:28;30871:4;30877:2;30881:7;30861:9;:28::i;:::-;30908:48;30931:4;30937:2;30941:7;30950:5;30908:22;:48::i;:::-;30900:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30704:315;;;;:::o;43833:102::-;43893:13;43922:7;43915:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43833:102;:::o;1830:723::-;1886:13;2116:1;2107:5;:10;2103:53;;2134:10;;;;;;;;;;;;;;;;;;;;;2103:53;2166:12;2181:5;2166:20;;2197:14;2222:78;2237:1;2229:4;:9;2222:78;;2255:8;;;;;:::i;:::-;;;;2286:2;2278:10;;;;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310:39;;2360:154;2376:1;2367:5;:10;2360:154;;2404:1;2394:11;;;;;:::i;:::-;;;2471:2;2463:5;:10;;;;:::i;:::-;2450:2;:24;;;;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2500:2;2491:11;;;;;:::i;:::-;;;2360:154;;;2538:6;2524:21;;;;;1830:723;;;;:::o;38045:126::-;;;;:::o;38556:125::-;;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;32316:110::-;32392:26;32402:2;32406:7;32392:26;;;;;;;;;;;;:9;:26::i;:::-;32316:110;;:::o;36674:799::-;36829:4;36850:15;:2;:13;;;:15::i;:::-;36846:620;;;36902:2;36886:36;;;36923:12;:10;:12::i;:::-;36937:4;36943:7;36952:5;36886:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36882:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37145:1;37128:6;:13;:18;37124:272;;37171:60;;;;;;;;;;:::i;:::-;;;;;;;;37124:272;37346:6;37340:13;37331:6;37327:2;37323:15;37316:38;36882:529;37019:41;;;37009:51;;;:6;:51;;;;37002:58;;;;;36846:620;37450:4;37443:11;;36674:799;;;;;;;:::o;32653:321::-;32783:18;32789:2;32793:7;32783:5;:18::i;:::-;32834:54;32865:1;32869:2;32873:7;32882:5;32834:22;:54::i;:::-;32812:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32653:321;;;:::o;8245:326::-;8305:4;8562:1;8540:7;:19;;;:23;8533:30;;8245:326;;;:::o;33310:439::-;33404:1;33390:16;;:2;:16;;;33382:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33463:16;33471:7;33463;:16::i;:::-;33462:17;33454:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33525:45;33554:1;33558:2;33562:7;33525:20;:45::i;:::-;33600:1;33583:9;:13;33593:2;33583:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33631:2;33612:7;:16;33620:7;33612:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33676:7;33672:2;33651:33;;33668:1;33651:33;;;;;;;;;;;;33697:44;33725:1;33729:2;33733:7;33697:19;:44::i;:::-;33310:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:329::-;2084:6;2133:2;2121:9;2112:7;2108:23;2104:32;2101:119;;;2139:79;;:::i;:::-;2101:119;2259:1;2284:53;2329:7;2320:6;2309:9;2305:22;2284:53;:::i;:::-;2274:63;;2230:117;2025:329;;;;:::o;2360:99::-;2412:6;2446:5;2440:12;2430:22;;2360:99;;;:::o;2465:169::-;2549:11;2583:6;2578:3;2571:19;2623:4;2618:3;2614:14;2599:29;;2465:169;;;;:::o;2640:307::-;2708:1;2718:113;2732:6;2729:1;2726:13;2718:113;;;2817:1;2812:3;2808:11;2802:18;2798:1;2793:3;2789:11;2782:39;2754:2;2751:1;2747:10;2742:15;;2718:113;;;2849:6;2846:1;2843:13;2840:101;;;2929:1;2920:6;2915:3;2911:16;2904:27;2840:101;2689:258;2640:307;;;:::o;2953:102::-;2994:6;3045:2;3041:7;3036:2;3029:5;3025:14;3021:28;3011:38;;2953:102;;;:::o;3061:364::-;3149:3;3177:39;3210:5;3177:39;:::i;:::-;3232:71;3296:6;3291:3;3232:71;:::i;:::-;3225:78;;3312:52;3357:6;3352:3;3345:4;3338:5;3334:16;3312:52;:::i;:::-;3389:29;3411:6;3389:29;:::i;:::-;3384:3;3380:39;3373:46;;3153:272;3061:364;;;;:::o;3431:313::-;3544:4;3582:2;3571:9;3567:18;3559:26;;3631:9;3625:4;3621:20;3617:1;3606:9;3602:17;3595:47;3659:78;3732:4;3723:6;3659:78;:::i;:::-;3651:86;;3431:313;;;;:::o;3750:77::-;3787:7;3816:5;3805:16;;3750:77;;;:::o;3833:122::-;3906:24;3924:5;3906:24;:::i;:::-;3899:5;3896:35;3886:63;;3945:1;3942;3935:12;3886:63;3833:122;:::o;3961:139::-;4007:5;4045:6;4032:20;4023:29;;4061:33;4088:5;4061:33;:::i;:::-;3961:139;;;;:::o;4106:329::-;4165:6;4214:2;4202:9;4193:7;4189:23;4185:32;4182:119;;;4220:79;;:::i;:::-;4182:119;4340:1;4365:53;4410:7;4401:6;4390:9;4386:22;4365:53;:::i;:::-;4355:63;;4311:117;4106:329;;;;:::o;4441:118::-;4528:24;4546:5;4528:24;:::i;:::-;4523:3;4516:37;4441:118;;:::o;4565:222::-;4658:4;4696:2;4685:9;4681:18;4673:26;;4709:71;4777:1;4766:9;4762:17;4753:6;4709:71;:::i;:::-;4565:222;;;;:::o;4793:474::-;4861:6;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;4793:474;;;;;:::o;5273:116::-;5343:21;5358:5;5343:21;:::i;:::-;5336:5;5333:32;5323:60;;5379:1;5376;5369:12;5323:60;5273:116;:::o;5395:133::-;5438:5;5476:6;5463:20;5454:29;;5492:30;5516:5;5492:30;:::i;:::-;5395:133;;;;:::o;5534:323::-;5590:6;5639:2;5627:9;5618:7;5614:23;5610:32;5607:119;;;5645:79;;:::i;:::-;5607:119;5765:1;5790:50;5832:7;5823:6;5812:9;5808:22;5790:50;:::i;:::-;5780:60;;5736:114;5534:323;;;;:::o;5863:118::-;5950:24;5968:5;5950:24;:::i;:::-;5945:3;5938:37;5863:118;;:::o;5987:222::-;6080:4;6118:2;6107:9;6103:18;6095:26;;6131:71;6199:1;6188:9;6184:17;6175:6;6131:71;:::i;:::-;5987:222;;;;:::o;6215:619::-;6292:6;6300;6308;6357:2;6345:9;6336:7;6332:23;6328:32;6325:119;;;6363:79;;:::i;:::-;6325:119;6483:1;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6454:117;6610:2;6636:53;6681:7;6672:6;6661:9;6657:22;6636:53;:::i;:::-;6626:63;;6581:118;6738:2;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6709:118;6215:619;;;;;:::o;6840:114::-;6907:6;6941:5;6935:12;6925:22;;6840:114;;;:::o;6960:184::-;7059:11;7093:6;7088:3;7081:19;7133:4;7128:3;7124:14;7109:29;;6960:184;;;;:::o;7150:132::-;7217:4;7240:3;7232:11;;7270:4;7265:3;7261:14;7253:22;;7150:132;;;:::o;7288:108::-;7365:24;7383:5;7365:24;:::i;:::-;7360:3;7353:37;7288:108;;:::o;7402:179::-;7471:10;7492:46;7534:3;7526:6;7492:46;:::i;:::-;7570:4;7565:3;7561:14;7547:28;;7402:179;;;;:::o;7587:113::-;7657:4;7689;7684:3;7680:14;7672:22;;7587:113;;;:::o;7736:732::-;7855:3;7884:54;7932:5;7884:54;:::i;:::-;7954:86;8033:6;8028:3;7954:86;:::i;:::-;7947:93;;8064:56;8114:5;8064:56;:::i;:::-;8143:7;8174:1;8159:284;8184:6;8181:1;8178:13;8159:284;;;8260:6;8254:13;8287:63;8346:3;8331:13;8287:63;:::i;:::-;8280:70;;8373:60;8426:6;8373:60;:::i;:::-;8363:70;;8219:224;8206:1;8203;8199:9;8194:14;;8159:284;;;8163:14;8459:3;8452:10;;7860:608;;;7736:732;;;;:::o;8474:373::-;8617:4;8655:2;8644:9;8640:18;8632:26;;8704:9;8698:4;8694:20;8690:1;8679:9;8675:17;8668:47;8732:108;8835:4;8826:6;8732:108;:::i;:::-;8724:116;;8474:373;;;;:::o;8853:117::-;8962:1;8959;8952:12;8976:117;9085:1;9082;9075:12;9099:180;9147:77;9144:1;9137:88;9244:4;9241:1;9234:15;9268:4;9265:1;9258:15;9285:281;9368:27;9390:4;9368:27;:::i;:::-;9360:6;9356:40;9498:6;9486:10;9483:22;9462:18;9450:10;9447:34;9444:62;9441:88;;;9509:18;;:::i;:::-;9441:88;9549:10;9545:2;9538:22;9328:238;9285:281;;:::o;9572:129::-;9606:6;9633:20;;:::i;:::-;9623:30;;9662:33;9690:4;9682:6;9662:33;:::i;:::-;9572:129;;;:::o;9707:308::-;9769:4;9859:18;9851:6;9848:30;9845:56;;;9881:18;;:::i;:::-;9845:56;9919:29;9941:6;9919:29;:::i;:::-;9911:37;;10003:4;9997;9993:15;9985:23;;9707:308;;;:::o;10021:154::-;10105:6;10100:3;10095;10082:30;10167:1;10158:6;10153:3;10149:16;10142:27;10021:154;;;:::o;10181:412::-;10259:5;10284:66;10300:49;10342:6;10300:49;:::i;:::-;10284:66;:::i;:::-;10275:75;;10373:6;10366:5;10359:21;10411:4;10404:5;10400:16;10449:3;10440:6;10435:3;10431:16;10428:25;10425:112;;;10456:79;;:::i;:::-;10425:112;10546:41;10580:6;10575:3;10570;10546:41;:::i;:::-;10265:328;10181:412;;;;;:::o;10613:340::-;10669:5;10718:3;10711:4;10703:6;10699:17;10695:27;10685:122;;10726:79;;:::i;:::-;10685:122;10843:6;10830:20;10868:79;10943:3;10935:6;10928:4;10920:6;10916:17;10868:79;:::i;:::-;10859:88;;10675:278;10613:340;;;;:::o;10959:509::-;11028:6;11077:2;11065:9;11056:7;11052:23;11048:32;11045:119;;;11083:79;;:::i;:::-;11045:119;11231:1;11220:9;11216:17;11203:31;11261:18;11253:6;11250:30;11247:117;;;11283:79;;:::i;:::-;11247:117;11388:63;11443:7;11434:6;11423:9;11419:22;11388:63;:::i;:::-;11378:73;;11174:287;10959:509;;;;:::o;11474:468::-;11539:6;11547;11596:2;11584:9;11575:7;11571:23;11567:32;11564:119;;;11602:79;;:::i;:::-;11564:119;11722:1;11747:53;11792:7;11783:6;11772:9;11768:22;11747:53;:::i;:::-;11737:63;;11693:117;11849:2;11875:50;11917:7;11908:6;11897:9;11893:22;11875:50;:::i;:::-;11865:60;;11820:115;11474:468;;;;;:::o;11948:311::-;12025:4;12115:18;12107:6;12104:30;12101:56;;;12137:18;;:::i;:::-;12101:56;12187:4;12179:6;12175:17;12167:25;;12247:4;12241;12237:15;12229:23;;11948:311;;;:::o;12265:117::-;12374:1;12371;12364:12;12405:710;12501:5;12526:81;12542:64;12599:6;12542:64;:::i;:::-;12526:81;:::i;:::-;12517:90;;12627:5;12656:6;12649:5;12642:21;12690:4;12683:5;12679:16;12672:23;;12743:4;12735:6;12731:17;12723:6;12719:30;12772:3;12764:6;12761:15;12758:122;;;12791:79;;:::i;:::-;12758:122;12906:6;12889:220;12923:6;12918:3;12915:15;12889:220;;;12998:3;13027:37;13060:3;13048:10;13027:37;:::i;:::-;13022:3;13015:50;13094:4;13089:3;13085:14;13078:21;;12965:144;12949:4;12944:3;12940:14;12933:21;;12889:220;;;12893:21;12507:608;;12405:710;;;;;:::o;13138:370::-;13209:5;13258:3;13251:4;13243:6;13239:17;13235:27;13225:122;;13266:79;;:::i;:::-;13225:122;13383:6;13370:20;13408:94;13498:3;13490:6;13483:4;13475:6;13471:17;13408:94;:::i;:::-;13399:103;;13215:293;13138:370;;;;:::o;13514:539::-;13598:6;13647:2;13635:9;13626:7;13622:23;13618:32;13615:119;;;13653:79;;:::i;:::-;13615:119;13801:1;13790:9;13786:17;13773:31;13831:18;13823:6;13820:30;13817:117;;;13853:79;;:::i;:::-;13817:117;13958:78;14028:7;14019:6;14008:9;14004:22;13958:78;:::i;:::-;13948:88;;13744:302;13514:539;;;;:::o;14059:307::-;14120:4;14210:18;14202:6;14199:30;14196:56;;;14232:18;;:::i;:::-;14196:56;14270:29;14292:6;14270:29;:::i;:::-;14262:37;;14354:4;14348;14344:15;14336:23;;14059:307;;;:::o;14372:410::-;14449:5;14474:65;14490:48;14531:6;14490:48;:::i;:::-;14474:65;:::i;:::-;14465:74;;14562:6;14555:5;14548:21;14600:4;14593:5;14589:16;14638:3;14629:6;14624:3;14620:16;14617:25;14614:112;;;14645:79;;:::i;:::-;14614:112;14735:41;14769:6;14764:3;14759;14735:41;:::i;:::-;14455:327;14372:410;;;;;:::o;14801:338::-;14856:5;14905:3;14898:4;14890:6;14886:17;14882:27;14872:122;;14913:79;;:::i;:::-;14872:122;15030:6;15017:20;15055:78;15129:3;15121:6;15114:4;15106:6;15102:17;15055:78;:::i;:::-;15046:87;;14862:277;14801:338;;;;:::o;15145:943::-;15240:6;15248;15256;15264;15313:3;15301:9;15292:7;15288:23;15284:33;15281:120;;;15320:79;;:::i;:::-;15281:120;15440:1;15465:53;15510:7;15501:6;15490:9;15486:22;15465:53;:::i;:::-;15455:63;;15411:117;15567:2;15593:53;15638:7;15629:6;15618:9;15614:22;15593:53;:::i;:::-;15583:63;;15538:118;15695:2;15721:53;15766:7;15757:6;15746:9;15742:22;15721:53;:::i;:::-;15711:63;;15666:118;15851:2;15840:9;15836:18;15823:32;15882:18;15874:6;15871:30;15868:117;;;15904:79;;:::i;:::-;15868:117;16009:62;16063:7;16054:6;16043:9;16039:22;16009:62;:::i;:::-;15999:72;;15794:287;15145:943;;;;;;;:::o;16094:474::-;16162:6;16170;16219:2;16207:9;16198:7;16194:23;16190:32;16187:119;;;16225:79;;:::i;:::-;16187:119;16345:1;16370:53;16415:7;16406:6;16395:9;16391:22;16370:53;:::i;:::-;16360:63;;16316:117;16472:2;16498:53;16543:7;16534:6;16523:9;16519:22;16498:53;:::i;:::-;16488:63;;16443:118;16094:474;;;;;:::o;16574:::-;16642:6;16650;16699:2;16687:9;16678:7;16674:23;16670:32;16667:119;;;16705:79;;:::i;:::-;16667:119;16825:1;16850:53;16895:7;16886:6;16875:9;16871:22;16850:53;:::i;:::-;16840:63;;16796:117;16952:2;16978:53;17023:7;17014:6;17003:9;16999:22;16978:53;:::i;:::-;16968:63;;16923:118;16574:474;;;;;:::o;17054:180::-;17102:77;17099:1;17092:88;17199:4;17196:1;17189:15;17223:4;17220:1;17213:15;17240:320;17284:6;17321:1;17315:4;17311:12;17301:22;;17368:1;17362:4;17358:12;17389:18;17379:81;;17445:4;17437:6;17433:17;17423:27;;17379:81;17507:2;17499:6;17496:14;17476:18;17473:38;17470:84;;17526:18;;:::i;:::-;17470:84;17291:269;17240:320;;;:::o;17566:231::-;17706:34;17702:1;17694:6;17690:14;17683:58;17775:14;17770:2;17762:6;17758:15;17751:39;17566:231;:::o;17803:366::-;17945:3;17966:67;18030:2;18025:3;17966:67;:::i;:::-;17959:74;;18042:93;18131:3;18042:93;:::i;:::-;18160:2;18155:3;18151:12;18144:19;;17803:366;;;:::o;18175:419::-;18341:4;18379:2;18368:9;18364:18;18356:26;;18428:9;18422:4;18418:20;18414:1;18403:9;18399:17;18392:47;18456:131;18582:4;18456:131;:::i;:::-;18448:139;;18175:419;;;:::o;18600:220::-;18740:34;18736:1;18728:6;18724:14;18717:58;18809:3;18804:2;18796:6;18792:15;18785:28;18600:220;:::o;18826:366::-;18968:3;18989:67;19053:2;19048:3;18989:67;:::i;:::-;18982:74;;19065:93;19154:3;19065:93;:::i;:::-;19183:2;19178:3;19174:12;19167:19;;18826:366;;;:::o;19198:419::-;19364:4;19402:2;19391:9;19387:18;19379:26;;19451:9;19445:4;19441:20;19437:1;19426:9;19422:17;19415:47;19479:131;19605:4;19479:131;:::i;:::-;19471:139;;19198:419;;;:::o;19623:243::-;19763:34;19759:1;19751:6;19747:14;19740:58;19832:26;19827:2;19819:6;19815:15;19808:51;19623:243;:::o;19872:366::-;20014:3;20035:67;20099:2;20094:3;20035:67;:::i;:::-;20028:74;;20111:93;20200:3;20111:93;:::i;:::-;20229:2;20224:3;20220:12;20213:19;;19872:366;;;:::o;20244:419::-;20410:4;20448:2;20437:9;20433:18;20425:26;;20497:9;20491:4;20487:20;20483:1;20472:9;20468:17;20461:47;20525:131;20651:4;20525:131;:::i;:::-;20517:139;;20244:419;;;:::o;20669:182::-;20809:34;20805:1;20797:6;20793:14;20786:58;20669:182;:::o;20857:366::-;20999:3;21020:67;21084:2;21079:3;21020:67;:::i;:::-;21013:74;;21096:93;21185:3;21096:93;:::i;:::-;21214:2;21209:3;21205:12;21198:19;;20857:366;;;:::o;21229:419::-;21395:4;21433:2;21422:9;21418:18;21410:26;;21482:9;21476:4;21472:20;21468:1;21457:9;21453:17;21446:47;21510:131;21636:4;21510:131;:::i;:::-;21502:139;;21229:419;;;:::o;21654:236::-;21794:34;21790:1;21782:6;21778:14;21771:58;21863:19;21858:2;21850:6;21846:15;21839:44;21654:236;:::o;21896:366::-;22038:3;22059:67;22123:2;22118:3;22059:67;:::i;:::-;22052:74;;22135:93;22224:3;22135:93;:::i;:::-;22253:2;22248:3;22244:12;22237:19;;21896:366;;;:::o;22268:419::-;22434:4;22472:2;22461:9;22457:18;22449:26;;22521:9;22515:4;22511:20;22507:1;22496:9;22492:17;22485:47;22549:131;22675:4;22549:131;:::i;:::-;22541:139;;22268:419;;;:::o;22693:180::-;22741:77;22738:1;22731:88;22838:4;22835:1;22828:15;22862:4;22859:1;22852:15;22879:180;22927:77;22924:1;22917:88;23024:4;23021:1;23014:15;23048:4;23045:1;23038:15;23065:233;23104:3;23127:24;23145:5;23127:24;:::i;:::-;23118:33;;23173:66;23166:5;23163:77;23160:103;;23243:18;;:::i;:::-;23160:103;23290:1;23283:5;23279:13;23272:20;;23065:233;;;:::o;23304:228::-;23444:34;23440:1;23432:6;23428:14;23421:58;23513:11;23508:2;23500:6;23496:15;23489:36;23304:228;:::o;23538:366::-;23680:3;23701:67;23765:2;23760:3;23701:67;:::i;:::-;23694:74;;23777:93;23866:3;23777:93;:::i;:::-;23895:2;23890:3;23886:12;23879:19;;23538:366;;;:::o;23910:419::-;24076:4;24114:2;24103:9;24099:18;24091:26;;24163:9;24157:4;24153:20;24149:1;24138:9;24134:17;24127:47;24191:131;24317:4;24191:131;:::i;:::-;24183:139;;23910:419;;;:::o;24335:229::-;24475:34;24471:1;24463:6;24459:14;24452:58;24544:12;24539:2;24531:6;24527:15;24520:37;24335:229;:::o;24570:366::-;24712:3;24733:67;24797:2;24792:3;24733:67;:::i;:::-;24726:74;;24809:93;24898:3;24809:93;:::i;:::-;24927:2;24922:3;24918:12;24911:19;;24570:366;;;:::o;24942:419::-;25108:4;25146:2;25135:9;25131:18;25123:26;;25195:9;25189:4;25185:20;25181:1;25170:9;25166:17;25159:47;25223:131;25349:4;25223:131;:::i;:::-;25215:139;;24942:419;;;:::o;25367:170::-;25507:22;25503:1;25495:6;25491:14;25484:46;25367:170;:::o;25543:366::-;25685:3;25706:67;25770:2;25765:3;25706:67;:::i;:::-;25699:74;;25782:93;25871:3;25782:93;:::i;:::-;25900:2;25895:3;25891:12;25884:19;;25543:366;;;:::o;25915:419::-;26081:4;26119:2;26108:9;26104:18;26096:26;;26168:9;26162:4;26158:20;26154:1;26143:9;26139:17;26132:47;26196:131;26322:4;26196:131;:::i;:::-;26188:139;;25915:419;;;:::o;26340:305::-;26380:3;26399:20;26417:1;26399:20;:::i;:::-;26394:25;;26433:20;26451:1;26433:20;:::i;:::-;26428:25;;26587:1;26519:66;26515:74;26512:1;26509:81;26506:107;;;26593:18;;:::i;:::-;26506:107;26637:1;26634;26630:9;26623:16;;26340:305;;;;:::o;26651:170::-;26791:22;26787:1;26779:6;26775:14;26768:46;26651:170;:::o;26827:366::-;26969:3;26990:67;27054:2;27049:3;26990:67;:::i;:::-;26983:74;;27066:93;27155:3;27066:93;:::i;:::-;27184:2;27179:3;27175:12;27168:19;;26827:366;;;:::o;27199:419::-;27365:4;27403:2;27392:9;27388:18;27380:26;;27452:9;27446:4;27442:20;27438:1;27427:9;27423:17;27416:47;27480:131;27606:4;27480:131;:::i;:::-;27472:139;;27199:419;;;:::o;27624:173::-;27764:25;27760:1;27752:6;27748:14;27741:49;27624:173;:::o;27803:366::-;27945:3;27966:67;28030:2;28025:3;27966:67;:::i;:::-;27959:74;;28042:93;28131:3;28042:93;:::i;:::-;28160:2;28155:3;28151:12;28144:19;;27803:366;;;:::o;28175:419::-;28341:4;28379:2;28368:9;28364:18;28356:26;;28428:9;28422:4;28418:20;28414:1;28403:9;28399:17;28392:47;28456:131;28582:4;28456:131;:::i;:::-;28448:139;;28175:419;;;:::o;28600:173::-;28740:25;28736:1;28728:6;28724:14;28717:49;28600:173;:::o;28779:366::-;28921:3;28942:67;29006:2;29001:3;28942:67;:::i;:::-;28935:74;;29018:93;29107:3;29018:93;:::i;:::-;29136:2;29131:3;29127:12;29120:19;;28779:366;;;:::o;29151:419::-;29317:4;29355:2;29344:9;29340:18;29332:26;;29404:9;29398:4;29394:20;29390:1;29379:9;29375:17;29368:47;29432:131;29558:4;29432:131;:::i;:::-;29424:139;;29151:419;;;:::o;29576:348::-;29616:7;29639:20;29657:1;29639:20;:::i;:::-;29634:25;;29673:20;29691:1;29673:20;:::i;:::-;29668:25;;29861:1;29793:66;29789:74;29786:1;29783:81;29778:1;29771:9;29764:17;29760:105;29757:131;;;29868:18;;:::i;:::-;29757:131;29916:1;29913;29909:9;29898:20;;29576:348;;;;:::o;29930:169::-;30070:21;30066:1;30058:6;30054:14;30047:45;29930:169;:::o;30105:366::-;30247:3;30268:67;30332:2;30327:3;30268:67;:::i;:::-;30261:74;;30344:93;30433:3;30344:93;:::i;:::-;30462:2;30457:3;30453:12;30446:19;;30105:366;;;:::o;30477:419::-;30643:4;30681:2;30670:9;30666:18;30658:26;;30730:9;30724:4;30720:20;30716:1;30705:9;30701:17;30694:47;30758:131;30884:4;30758:131;:::i;:::-;30750:139;;30477:419;;;:::o;30902:234::-;31042:34;31038:1;31030:6;31026:14;31019:58;31111:17;31106:2;31098:6;31094:15;31087:42;30902:234;:::o;31142:366::-;31284:3;31305:67;31369:2;31364:3;31305:67;:::i;:::-;31298:74;;31381:93;31470:3;31381:93;:::i;:::-;31499:2;31494:3;31490:12;31483:19;;31142:366;;;:::o;31514:419::-;31680:4;31718:2;31707:9;31703:18;31695:26;;31767:9;31761:4;31757:20;31753:1;31742:9;31738:17;31731:47;31795:131;31921:4;31795:131;:::i;:::-;31787:139;;31514:419;;;:::o;31939:148::-;32041:11;32078:3;32063:18;;31939:148;;;;:::o;32093:377::-;32199:3;32227:39;32260:5;32227:39;:::i;:::-;32282:89;32364:6;32359:3;32282:89;:::i;:::-;32275:96;;32380:52;32425:6;32420:3;32413:4;32406:5;32402:16;32380:52;:::i;:::-;32457:6;32452:3;32448:16;32441:23;;32203:267;32093:377;;;;:::o;32476:141::-;32525:4;32548:3;32540:11;;32571:3;32568:1;32561:14;32605:4;32602:1;32592:18;32584:26;;32476:141;;;:::o;32647:845::-;32750:3;32787:5;32781:12;32816:36;32842:9;32816:36;:::i;:::-;32868:89;32950:6;32945:3;32868:89;:::i;:::-;32861:96;;32988:1;32977:9;32973:17;33004:1;32999:137;;;;33150:1;33145:341;;;;32966:520;;32999:137;33083:4;33079:9;33068;33064:25;33059:3;33052:38;33119:6;33114:3;33110:16;33103:23;;32999:137;;33145:341;33212:38;33244:5;33212:38;:::i;:::-;33272:1;33286:154;33300:6;33297:1;33294:13;33286:154;;;33374:7;33368:14;33364:1;33359:3;33355:11;33348:35;33424:1;33415:7;33411:15;33400:26;;33322:4;33319:1;33315:12;33310:17;;33286:154;;;33469:6;33464:3;33460:16;33453:23;;33152:334;;32966:520;;32754:738;;32647:845;;;;:::o;33498:589::-;33723:3;33745:95;33836:3;33827:6;33745:95;:::i;:::-;33738:102;;33857:95;33948:3;33939:6;33857:95;:::i;:::-;33850:102;;33969:92;34057:3;34048:6;33969:92;:::i;:::-;33962:99;;34078:3;34071:10;;33498:589;;;;;;:::o;34093:225::-;34233:34;34229:1;34221:6;34217:14;34210:58;34302:8;34297:2;34289:6;34285:15;34278:33;34093:225;:::o;34324:366::-;34466:3;34487:67;34551:2;34546:3;34487:67;:::i;:::-;34480:74;;34563:93;34652:3;34563:93;:::i;:::-;34681:2;34676:3;34672:12;34665:19;;34324:366;;;:::o;34696:419::-;34862:4;34900:2;34889:9;34885:18;34877:26;;34949:9;34943:4;34939:20;34935:1;34924:9;34920:17;34913:47;34977:131;35103:4;34977:131;:::i;:::-;34969:139;;34696:419;;;:::o;35121:231::-;35261:34;35257:1;35249:6;35245:14;35238:58;35330:14;35325:2;35317:6;35313:15;35306:39;35121:231;:::o;35358:366::-;35500:3;35521:67;35585:2;35580:3;35521:67;:::i;:::-;35514:74;;35597:93;35686:3;35597:93;:::i;:::-;35715:2;35710:3;35706:12;35699:19;;35358:366;;;:::o;35730:419::-;35896:4;35934:2;35923:9;35919:18;35911:26;;35983:9;35977:4;35973:20;35969:1;35958:9;35954:17;35947:47;36011:131;36137:4;36011:131;:::i;:::-;36003:139;;35730:419;;;:::o;36155:224::-;36295:34;36291:1;36283:6;36279:14;36272:58;36364:7;36359:2;36351:6;36347:15;36340:32;36155:224;:::o;36385:366::-;36527:3;36548:67;36612:2;36607:3;36548:67;:::i;:::-;36541:74;;36624:93;36713:3;36624:93;:::i;:::-;36742:2;36737:3;36733:12;36726:19;;36385:366;;;:::o;36757:419::-;36923:4;36961:2;36950:9;36946:18;36938:26;;37010:9;37004:4;37000:20;36996:1;36985:9;36981:17;36974:47;37038:131;37164:4;37038:131;:::i;:::-;37030:139;;36757:419;;;:::o;37182:223::-;37322:34;37318:1;37310:6;37306:14;37299:58;37391:6;37386:2;37378:6;37374:15;37367:31;37182:223;:::o;37411:366::-;37553:3;37574:67;37638:2;37633:3;37574:67;:::i;:::-;37567:74;;37650:93;37739:3;37650:93;:::i;:::-;37768:2;37763:3;37759:12;37752:19;;37411:366;;;:::o;37783:419::-;37949:4;37987:2;37976:9;37972:18;37964:26;;38036:9;38030:4;38026:20;38022:1;38011:9;38007:17;38000:47;38064:131;38190:4;38064:131;:::i;:::-;38056:139;;37783:419;;;:::o;38208:191::-;38248:4;38268:20;38286:1;38268:20;:::i;:::-;38263:25;;38302:20;38320:1;38302:20;:::i;:::-;38297:25;;38341:1;38338;38335:8;38332:34;;;38346:18;;:::i;:::-;38332:34;38391:1;38388;38384:9;38376:17;;38208:191;;;;:::o;38405:175::-;38545:27;38541:1;38533:6;38529:14;38522:51;38405:175;:::o;38586:366::-;38728:3;38749:67;38813:2;38808:3;38749:67;:::i;:::-;38742:74;;38825:93;38914:3;38825:93;:::i;:::-;38943:2;38938:3;38934:12;38927:19;;38586:366;;;:::o;38958:419::-;39124:4;39162:2;39151:9;39147:18;39139:26;;39211:9;39205:4;39201:20;39197:1;39186:9;39182:17;39175:47;39239:131;39365:4;39239:131;:::i;:::-;39231:139;;38958:419;;;:::o;39383:237::-;39523:34;39519:1;39511:6;39507:14;39500:58;39592:20;39587:2;39579:6;39575:15;39568:45;39383:237;:::o;39626:366::-;39768:3;39789:67;39853:2;39848:3;39789:67;:::i;:::-;39782:74;;39865:93;39954:3;39865:93;:::i;:::-;39983:2;39978:3;39974:12;39967:19;;39626:366;;;:::o;39998:419::-;40164:4;40202:2;40191:9;40187:18;40179:26;;40251:9;40245:4;40241:20;40237:1;40226:9;40222:17;40215:47;40279:131;40405:4;40279:131;:::i;:::-;40271:139;;39998:419;;;:::o;40423:180::-;40471:77;40468:1;40461:88;40568:4;40565:1;40558:15;40592:4;40589:1;40582:15;40609:185;40649:1;40666:20;40684:1;40666:20;:::i;:::-;40661:25;;40700:20;40718:1;40700:20;:::i;:::-;40695:25;;40739:1;40729:35;;40744:18;;:::i;:::-;40729:35;40786:1;40783;40779:9;40774:14;;40609:185;;;;:::o;40800:176::-;40832:1;40849:20;40867:1;40849:20;:::i;:::-;40844:25;;40883:20;40901:1;40883:20;:::i;:::-;40878:25;;40922:1;40912:35;;40927:18;;:::i;:::-;40912:35;40968:1;40965;40961:9;40956:14;;40800:176;;;;:::o;40982:98::-;41033:6;41067:5;41061:12;41051:22;;40982:98;;;:::o;41086:168::-;41169:11;41203:6;41198:3;41191:19;41243:4;41238:3;41234:14;41219:29;;41086:168;;;;:::o;41260:360::-;41346:3;41374:38;41406:5;41374:38;:::i;:::-;41428:70;41491:6;41486:3;41428:70;:::i;:::-;41421:77;;41507:52;41552:6;41547:3;41540:4;41533:5;41529:16;41507:52;:::i;:::-;41584:29;41606:6;41584:29;:::i;:::-;41579:3;41575:39;41568:46;;41350:270;41260:360;;;;:::o;41626:640::-;41821:4;41859:3;41848:9;41844:19;41836:27;;41873:71;41941:1;41930:9;41926:17;41917:6;41873:71;:::i;:::-;41954:72;42022:2;42011:9;42007:18;41998:6;41954:72;:::i;:::-;42036;42104:2;42093:9;42089:18;42080:6;42036:72;:::i;:::-;42155:9;42149:4;42145:20;42140:2;42129:9;42125:18;42118:48;42183:76;42254:4;42245:6;42183:76;:::i;:::-;42175:84;;41626:640;;;;;;;:::o;42272:141::-;42328:5;42359:6;42353:13;42344:22;;42375:32;42401:5;42375:32;:::i;:::-;42272:141;;;;:::o;42419:349::-;42488:6;42537:2;42525:9;42516:7;42512:23;42508:32;42505:119;;;42543:79;;:::i;:::-;42505:119;42663:1;42688:63;42743:7;42734:6;42723:9;42719:22;42688:63;:::i;:::-;42678:73;;42634:127;42419:349;;;;:::o;42774:182::-;42914:34;42910:1;42902:6;42898:14;42891:58;42774:182;:::o;42962:366::-;43104:3;43125:67;43189:2;43184:3;43125:67;:::i;:::-;43118:74;;43201:93;43290:3;43201:93;:::i;:::-;43319:2;43314:3;43310:12;43303:19;;42962:366;;;:::o;43334:419::-;43500:4;43538:2;43527:9;43523:18;43515:26;;43587:9;43581:4;43577:20;43573:1;43562:9;43558:17;43551:47;43615:131;43741:4;43615:131;:::i;:::-;43607:139;;43334:419;;;:::o;43759:178::-;43899:30;43895:1;43887:6;43883:14;43876:54;43759:178;:::o;43943:366::-;44085:3;44106:67;44170:2;44165:3;44106:67;:::i;:::-;44099:74;;44182:93;44271:3;44182:93;:::i;:::-;44300:2;44295:3;44291:12;44284:19;;43943:366;;;:::o;44315:419::-;44481:4;44519:2;44508:9;44504:18;44496:26;;44568:9;44562:4;44558:20;44554:1;44543:9;44539:17;44532:47;44596:131;44722:4;44596:131;:::i;:::-;44588:139;;44315:419;;;:::o

Swarm Source

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