Overview
CRO Balance
0 CRO
CRO Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 875 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 15685011 | 35 days ago | IN | 0 CRO | 0.14987895 | ||||
Set Approval For... | 15539794 | 44 days ago | IN | 0 CRO | 0.14987895 | ||||
Set Approval For... | 13271491 | 193 days ago | IN | 0 CRO | 0.13573895 | ||||
Set Approval For... | 13271477 | 193 days ago | IN | 0 CRO | 0.14987895 | ||||
Set Approval For... | 13271476 | 193 days ago | IN | 0 CRO | 0.14987895 | ||||
Set Approval For... | 13187982 | 199 days ago | IN | 0 CRO | 0.14987895 | ||||
Approve | 13179907 | 199 days ago | IN | 0 CRO | 0.505 | ||||
Set Approval For... | 11255402 | 324 days ago | IN | 0 CRO | 0.21599617 | ||||
Set Approval For... | 11106523 | 334 days ago | IN | 0 CRO | 0.21630333 | ||||
Withdraw Payment... | 10192835 | 393 days ago | IN | 0 CRO | 0.14993531 | ||||
Set Approval For... | 9956256 | 409 days ago | IN | 0 CRO | 0.21873289 | ||||
Set Approval For... | 9626950 | 430 days ago | IN | 0 CRO | 0.11671212 | ||||
Set Approval For... | 9082696 | 466 days ago | IN | 0 CRO | 0.22066685 | ||||
Set Approval For... | 8396535 | 511 days ago | IN | 0 CRO | 0.22206756 | ||||
Set Approval For... | 8313112 | 516 days ago | IN | 0 CRO | 0.12772654 | ||||
Set Approval For... | 8313111 | 516 days ago | IN | 0 CRO | 0.12772654 | ||||
Set Approval For... | 8313110 | 516 days ago | IN | 0 CRO | 0.12772654 | ||||
Set Approval For... | 8313110 | 516 days ago | IN | 0 CRO | 0.22224732 | ||||
Set Approval For... | 8055511 | 533 days ago | IN | 0 CRO | 0.22280134 | ||||
Set Approval For... | 8006113 | 536 days ago | IN | 0 CRO | 0.22290706 | ||||
Set Approval For... | 7987056 | 538 days ago | IN | 0 CRO | 0.233955 | ||||
Set Approval For... | 7973752 | 538 days ago | IN | 0 CRO | 0.11859518 | ||||
Set Approval For... | 7973751 | 538 days ago | IN | 0 CRO | 0.11859518 | ||||
Set Approval For... | 7591407 | 563 days ago | IN | 0 CRO | 0.2237992 | ||||
Set Approval For... | 7510077 | 569 days ago | IN | 0 CRO | 0.22397414 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
3475444 | 833 days ago | 21,689 CRO | ||||
3245633 | 849 days ago | 104 CRO | ||||
3245479 | 849 days ago | 28 CRO | ||||
3245457 | 849 days ago | 26 CRO | ||||
3245428 | 849 days ago | 28 CRO | ||||
3245190 | 849 days ago | 48 CRO | ||||
3244881 | 849 days ago | 28 CRO | ||||
3244810 | 849 days ago | 28 CRO | ||||
3244741 | 849 days ago | 28 CRO | ||||
3244735 | 849 days ago | 56 CRO | ||||
3244728 | 849 days ago | 56 CRO | ||||
3244716 | 849 days ago | 140 CRO | ||||
3244716 | 849 days ago | 28 CRO | ||||
3243519 | 849 days ago | 56 CRO | ||||
3242255 | 849 days ago | 56 CRO | ||||
3242038 | 849 days ago | 28 CRO | ||||
3238105 | 849 days ago | 56 CRO | ||||
3238060 | 849 days ago | 28 CRO | ||||
3235555 | 849 days ago | 56 CRO | ||||
3235029 | 849 days ago | 56 CRO | ||||
3234907 | 849 days ago | 112 CRO | ||||
3233427 | 849 days ago | 28 CRO | ||||
3232304 | 849 days ago | 26 CRO | ||||
3225611 | 850 days ago | 28 CRO | ||||
3220506 | 850 days ago | 84 CRO |
Loading...
Loading
Contract Name:
Metaplanets
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-05-02 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/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/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/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/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/Address.sol pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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/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/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/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/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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //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); } /** * @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); } /** * @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 of token that is not own"); 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); } /** * @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 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 {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts v4.4.1 (utils/escrow/Escrow.sol) /** * @title Escrow * @dev Base escrow contract, holds funds designated for a payee until they * withdraw them. * * Intended usage: This contract (and derived escrow contracts) should be a * standalone contract, that only interacts with the contract that instantiated * it. That way, it is guaranteed that all Ether will be handled according to * the `Escrow` rules, and there is no need to check for payable functions or * transfers in the inheritance tree. The contract that uses the escrow as its * payment method should be its owner, and provide public methods redirecting * to the escrow's deposit and withdraw. */ contract Escrow is Ownable { using Address for address payable; event Deposited(address indexed payee, uint256 weiAmount); event Withdrawn(address indexed payee, uint256 weiAmount); mapping(address => uint256) private _deposits; function depositsOf(address payee) public view returns (uint256) { return _deposits[payee]; } /** * @dev Stores the sent amount as credit to be withdrawn. * @param payee The destination address of the funds. */ function deposit(address payee) public payable virtual onlyOwner { uint256 amount = msg.value; _deposits[payee] += amount; emit Deposited(payee, amount); } /** * @dev Withdraw accumulated balance for a payee, forwarding all gas to the * recipient. * * WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities. * Make sure you trust the recipient, or are either following the * checks-effects-interactions pattern or using {ReentrancyGuard}. * * @param payee The address whose funds will be withdrawn and transferred to. */ function withdraw(address payable payee) public virtual onlyOwner { uint256 payment = _deposits[payee]; _deposits[payee] = 0; payee.sendValue(payment); emit Withdrawn(payee, payment); } } // OpenZeppelin Contracts v4.4.1 (security/PullPayment.sol) /** * @dev Simple implementation of a * https://consensys.github.io/smart-contract-best-practices/recommendations/#favor-pull-over-push-for-external-calls[pull-payment] * strategy, where the paying contract doesn't interact directly with the * receiver account, which must withdraw its payments itself. * * Pull-payments are often considered the best practice when it comes to sending * Ether, security-wise. It prevents recipients from blocking execution, and * eliminates reentrancy concerns. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. * * To use, derive from the `PullPayment` contract, and use {_asyncTransfer} * instead of Solidity's `transfer` function. Payees can query their due * payments with {payments}, and retrieve them with {withdrawPayments}. */ abstract contract PullPayment { Escrow private immutable _escrow; constructor() { _escrow = new Escrow(); } /** * @dev Withdraw accumulated payments, forwarding all gas to the recipient. * * Note that _any_ account can call this function, not just the `payee`. * This means that contracts unaware of the `PullPayment` protocol can still * receive funds this way, by having a separate account call * {withdrawPayments}. * * WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities. * Make sure you trust the recipient, or are either following the * checks-effects-interactions pattern or using {ReentrancyGuard}. * * @param payee Whose payments will be withdrawn. */ function withdrawPayments(address payable payee) public virtual { _escrow.withdraw(payee); } /** * @dev Returns the payments owed to an address. * @param dest The creditor's address. */ function payments(address dest) public view returns (uint256) { return _escrow.depositsOf(dest); } /** * @dev Called by the payer to store the sent amount as credit to be pulled. * Funds sent in this way are stored in an intermediate {Escrow} contract, so * there is no danger of them being spent before withdrawal. * * @param dest The destination address of the funds. * @param amount The amount to transfer. */ function _asyncTransfer(address dest, uint256 amount) internal virtual { _escrow.deposit{value: amount}(dest); } } pragma solidity >=0.7.0 <0.9.0; interface NFTMasterchef { function getArrayTokenIDs(uint256 _pid, address _user) external view returns (uint256[] memory); } contract Metaplanets is ERC721Enumerable, Ownable, PullPayment { IERC721 public foundingMember = IERC721(0xCc9a4c16261745812d0c5ce7f4B5Ac66A4cf943c); using Strings for uint256; string baseURI; string public baseExtension = ".json"; uint256 public cost = 350 ether; uint256 public Wlcost = 300 ether; uint256 public nftFMPrice = 325 ether; uint256 public maxSupply = 600; uint256 public maxMintAmount = 10; NFTMasterchef public nftStaking; bool public paused = false; bool public revealed = true; bool public onlyWhitlielist = false; string public notRevealedUri; uint256 public cyborgswapFee = 8; address public cyborgswapWallet = 0x97E4ae563f5Ea9fe63DA7abaCaEE2C8Cd54C3FC0; uint16 public stakingPoolId = 0; mapping(address => uint8) private _allowList; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, NFTMasterchef _nftStaking ) ERC721(_name, _symbol) { nftStaking = _nftStaking; setBaseURI(_initBaseURI); } function setAllowList(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { _allowList[addresses[i]] = numAllowedToMint; } } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mintCost(address _address) public view returns (uint256) { uint256 userPrice = cost; if(foundingMember.balanceOf(_address) > 0){ userPrice = nftFMPrice; }else if(nftStaking.getArrayTokenIDs(stakingPoolId, _address).length > 0){ userPrice = nftFMPrice; } if(_allowList[_address] > 0){ userPrice = Wlcost; } return userPrice; } // public function mint(uint8 _mintAmount) public payable { uint256 supply = totalSupply(); uint256 userPrice = mintCost(msg.sender); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); if (msg.sender != owner()) { require(msg.value >= userPrice * _mintAmount, "Cro value sent is not correct"); uint256 amountFee = ((userPrice * _mintAmount) * cyborgswapFee) / 100; if(userPrice == Wlcost ){ require(_mintAmount <= _allowList[msg.sender], "Exceeded max available to purchase"); require(supply + _mintAmount <= maxSupply, "Purchase would exceed max tokens"); require(Wlcost * _mintAmount <= msg.value, "Cro value sent is not correct"); _allowList[msg.sender] -= _mintAmount; require(msg.value >= Wlcost * _mintAmount); } else if(userPrice == cost){ require(supply + _mintAmount <= maxSupply, "Purchase would exceed max tokens"); require(cost * _mintAmount <= msg.value, "Cro value sent is not correct"); require(msg.value >= cost * _mintAmount); } else if(userPrice == nftFMPrice){ require(supply + _mintAmount <= maxSupply, "Purchase would exceed max tokens"); require(nftFMPrice * _mintAmount <= msg.value, "Cro value sent is not correct"); require(msg.value >= nftFMPrice * _mintAmount); } _asyncTransfer(cyborgswapWallet, amountFee); } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } function setIsAllowListActive(bool _isAllowListActive) external onlyOwner { onlyWhitlielist = _isAllowListActive; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal() public onlyOwner { revealed = true; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner { (bool all, ) = payable(owner()).call{value: address(this).balance}(""); require(all); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"contract NFTMasterchef","name":"_nftStaking","type":"address"}],"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":[],"name":"Wlcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cyborgswapFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cyborgswapWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"foundingMember","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftFMPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftStaking","outputs":[{"internalType":"contract NFTMasterchef","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitlielist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dest","type":"address"}],"name":"payments","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"setAllowList","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingPoolId","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"payee","type":"address"}],"name":"withdrawPayments","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405273cc9a4c16261745812d0c5ce7f4b5ac66a4cf943c600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000a69291906200048c565b506812f939c99edab80000600e55681043561a8829300000600f5568119e47f21381f40000601055610258601155600a6012556000601360146101000a81548160ff0219169083151502179055506001601360156101000a81548160ff0219169083151502179055506000601360166101000a81548160ff02191690831515021790555060086015557397e4ae563f5ea9fe63da7abacaee2c8cd54c3fc0601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601660146101000a81548161ffff021916908361ffff160217905550348015620001af57600080fd5b5060405162006d5738038062006d578339818101604052810190620001d59190620005df565b83838160009080519060200190620001ef9291906200048c565b508060019080519060200190620002089291906200048c565b5050506200022b6200021f620002e960201b60201c565b620002f160201b60201c565b60405162000239906200051d565b604051809103906000f08015801562000256573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002df82620003b760201b60201c565b5050505062000917565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003c7620002e960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003ed6200046260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000446576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043d90620006d5565b60405180910390fd5b80600c90805190602001906200045e9291906200048c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200049a90620007e5565b90600052602060002090601f016020900481019282620004be57600085556200050a565b82601f10620004d957805160ff19168380011785556200050a565b828001600101855582156200050a579182015b8281111562000509578251825591602001919060010190620004ec565b5b5090506200051991906200052b565b5090565b610d16806200604183390190565b5b80821115620005465760008160009055506001016200052c565b5090565b6000620005616200055b8462000720565b620006f7565b90508281526020810184848401111562000580576200057f620008b4565b5b6200058d848285620007af565b509392505050565b600081519050620005a681620008fd565b92915050565b600082601f830112620005c457620005c3620008af565b5b8151620005d68482602086016200054a565b91505092915050565b60008060008060808587031215620005fc57620005fb620008be565b5b600085015167ffffffffffffffff8111156200061d576200061c620008b9565b5b6200062b87828801620005ac565b945050602085015167ffffffffffffffff8111156200064f576200064e620008b9565b5b6200065d87828801620005ac565b935050604085015167ffffffffffffffff811115620006815762000680620008b9565b5b6200068f87828801620005ac565b9250506060620006a28782880162000595565b91505092959194509250565b6000620006bd60208362000756565b9150620006ca82620008d4565b602082019050919050565b60006020820190508181036000830152620006f081620006ae565b9050919050565b60006200070362000716565b90506200071182826200081b565b919050565b6000604051905090565b600067ffffffffffffffff8211156200073e576200073d62000880565b5b6200074982620008c3565b9050602081019050919050565b600082825260208201905092915050565b600062000774826200078f565b9050919050565b6000620007888262000767565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620007cf578082015181840152602081019050620007b2565b83811115620007df576000848401525b50505050565b60006002820490506001821680620007fe57607f821691505b6020821081141562000815576200081462000851565b5b50919050565b6200082682620008c3565b810181811067ffffffffffffffff8211171562000848576200084762000880565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000908816200077b565b81146200091457600080fd5b50565b60805160601c6156fd6200094460003960008181611232015281816125e40152612dff01526156fd6000f3fe6080604052600436106102ae5760003560e01c80636ecd230611610175578063a475b5dd116100dc578063c87b56dd11610095578063e2982c211161006f578063e2982c2114610a72578063e985e9c514610aaf578063f2c4ce1e14610aec578063f2fde38b14610b15576102ae565b8063c87b56dd146109e1578063d5abeb0114610a1e578063da3ef23f14610a49576102ae565b8063a475b5dd146108f5578063b6881c7d1461090c578063b88d4fde14610937578063c34ea91014610960578063c4408c8a1461098b578063c6682862146109b6576102ae565b80638295784d1161012e5780638295784d146107f75780638a17b5f0146108205780638da5cb5b1461084b57806395d89b4114610876578063a22cb465146108a1578063a46c8505146108ca576102ae565b80636ecd23061461070a57806370a0823114610726578063715018a614610763578063718bc4af1461077a5780637e23866b146107a35780637f00c7a6146107ce576102ae565b80632f745c59116102195780634f6ccce7116101d25780634f6ccce7146105e6578063518302271461062357806355f804b31461064e5780635b69368c146106775780635c975abb146106a25780636352211e146106cd576102ae565b80632f745c59146104e757806331b3eb94146105245780633ccfd60b1461054d57806342842e0e14610557578063438b63001461058057806344a0d68a146105bd576102ae565b8063095ea7b31161026b578063095ea7b3146103d757806313faede61461040057806318160ddd1461042b578063239c70ae1461045657806323b872dd146104815780632acc659e146104aa576102ae565b806301ffc9a7146102b357806302329a29146102f05780630457d16b1461031957806306fdde0314610344578063081812fc1461036f578063081c8c44146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d59190614001565b610b3e565b6040516102e79190614736565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613fd4565b610bb8565b005b34801561032557600080fd5b5061032e610c51565b60405161033b9190614a8d565b60405180910390f35b34801561035057600080fd5b50610359610c57565b6040516103669190614787565b60405180910390f35b34801561037b57600080fd5b50610396600480360381019061039191906140a4565b610ce9565b6040516103a39190614692565b60405180910390f35b3480156103b857600080fd5b506103c1610d6e565b6040516103ce9190614787565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190613eeb565b610dfc565b005b34801561040c57600080fd5b50610415610f14565b6040516104229190614a8d565b60405180910390f35b34801561043757600080fd5b50610440610f1a565b60405161044d9190614a8d565b60405180910390f35b34801561046257600080fd5b5061046b610f27565b6040516104789190614a8d565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190613dd5565b610f2d565b005b3480156104b657600080fd5b506104d160048036038101906104cc9190613d3b565b610f8d565b6040516104de9190614a8d565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190613eeb565b61118b565b60405161051b9190614a8d565b60405180910390f35b34801561053057600080fd5b5061054b60048036038101906105469190613d68565b611230565b005b6105556112be565b005b34801561056357600080fd5b5061057e60048036038101906105799190613dd5565b6113ba565b005b34801561058c57600080fd5b506105a760048036038101906105a29190613d3b565b6113da565b6040516105b49190614714565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df91906140a4565b611488565b005b3480156105f257600080fd5b5061060d600480360381019061060891906140a4565b61150e565b60405161061a9190614a8d565b60405180910390f35b34801561062f57600080fd5b5061063861157f565b6040516106459190614736565b60405180910390f35b34801561065a57600080fd5b506106756004803603810190610670919061405b565b611592565b005b34801561068357600080fd5b5061068c611628565b6040516106999190614a8d565b60405180910390f35b3480156106ae57600080fd5b506106b761162e565b6040516106c49190614736565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef91906140a4565b611641565b6040516107019190614692565b60405180910390f35b610724600480360381019061071f91906140fe565b6116f3565b005b34801561073257600080fd5b5061074d60048036038101906107489190613d3b565b611c05565b60405161075a9190614a8d565b60405180910390f35b34801561076f57600080fd5b50610778611cbd565b005b34801561078657600080fd5b506107a1600480360381019061079c9190613fd4565b611d45565b005b3480156107af57600080fd5b506107b8611dde565b6040516107c59190614751565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f091906140a4565b611e04565b005b34801561080357600080fd5b5061081e60048036038101906108199190613f2b565b611e8a565b005b34801561082c57600080fd5b50610835611fac565b6040516108429190614692565b60405180910390f35b34801561085757600080fd5b50610860611fd2565b60405161086d9190614692565b60405180910390f35b34801561088257600080fd5b5061088b611ffc565b6040516108989190614787565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190613eab565b61208e565b005b3480156108d657600080fd5b506108df61220f565b6040516108ec9190614a49565b60405180910390f35b34801561090157600080fd5b5061090a612223565b005b34801561091857600080fd5b506109216122bc565b60405161092e9190614a8d565b60405180910390f35b34801561094357600080fd5b5061095e60048036038101906109599190613e28565b6122c2565b005b34801561096c57600080fd5b50610975612324565b6040516109829190614736565b60405180910390f35b34801561099757600080fd5b506109a0612337565b6040516109ad919061476c565b60405180910390f35b3480156109c257600080fd5b506109cb61235d565b6040516109d89190614787565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a0391906140a4565b6123eb565b604051610a159190614787565b60405180910390f35b348015610a2a57600080fd5b50610a33612544565b604051610a409190614a8d565b60405180910390f35b348015610a5557600080fd5b50610a706004803603810190610a6b919061405b565b61254a565b005b348015610a7e57600080fd5b50610a996004803603810190610a949190613d3b565b6125e0565b604051610aa69190614a8d565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad19190613d95565b612692565b604051610ae39190614736565b60405180910390f35b348015610af857600080fd5b50610b136004803603810190610b0e919061405b565b612726565b005b348015610b2157600080fd5b50610b3c6004803603810190610b379190613d3b565b6127bc565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bb15750610bb0826128b4565b5b9050919050565b610bc0612996565b73ffffffffffffffffffffffffffffffffffffffff16610bde611fd2565b73ffffffffffffffffffffffffffffffffffffffff1614610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90614969565b60405180910390fd5b80601360146101000a81548160ff02191690831515021790555050565b600f5481565b606060008054610c6690614e7d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9290614e7d565b8015610cdf5780601f10610cb457610100808354040283529160200191610cdf565b820191906000526020600020905b815481529060010190602001808311610cc257829003601f168201915b5050505050905090565b6000610cf48261299e565b610d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2a90614949565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60148054610d7b90614e7d565b80601f0160208091040260200160405190810160405280929190818152602001828054610da790614e7d565b8015610df45780601f10610dc957610100808354040283529160200191610df4565b820191906000526020600020905b815481529060010190602001808311610dd757829003601f168201915b505050505081565b6000610e0782611641565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f906149c9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e97612996565b73ffffffffffffffffffffffffffffffffffffffff161480610ec65750610ec581610ec0612996565b612692565b5b610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc906148a9565b60405180910390fd5b610f0f8383612a0a565b505050565b600e5481565b6000600880549050905090565b60125481565b610f3e610f38612996565b82612ac3565b610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490614a09565b60405180910390fd5b610f88838383612ba1565b505050565b600080600e5490506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401610ff29190614692565b60206040518083038186803b15801561100a57600080fd5b505afa15801561101e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104291906140d1565b1115611052576010549050611124565b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a71896dc601660149054906101000a900461ffff16866040518363ffffffff1660e01b81526004016110c1929190614a64565b60006040518083038186803b1580156110d957600080fd5b505afa1580156110ed573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906111169190613f8b565b5111156111235760105490505b5b6000601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16111561118257600f5490505b80915050919050565b600061119683611c05565b82106111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce906147a9565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166351cff8d9826040518263ffffffff1660e01b815260040161128991906146ad565b600060405180830381600087803b1580156112a357600080fd5b505af11580156112b7573d6000803e3d6000fd5b5050505050565b6112c6612996565b73ffffffffffffffffffffffffffffffffffffffff166112e4611fd2565b73ffffffffffffffffffffffffffffffffffffffff161461133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190614969565b60405180910390fd5b6000611344611fd2565b73ffffffffffffffffffffffffffffffffffffffff16476040516113679061467d565b60006040518083038185875af1925050503d80600081146113a4576040519150601f19603f3d011682016040523d82523d6000602084013e6113a9565b606091505b50509050806113b757600080fd5b50565b6113d5838383604051806020016040528060008152506122c2565b505050565b606060006113e783611c05565b905060008167ffffffffffffffff81111561140557611404615045565b5b6040519080825280602002602001820160405280156114335781602001602082028036833780820191505090505b50905060005b8281101561147d5761144b858261118b565b82828151811061145e5761145d615016565b5b602002602001018181525050808061147590614ee0565b915050611439565b508092505050919050565b611490612996565b73ffffffffffffffffffffffffffffffffffffffff166114ae611fd2565b73ffffffffffffffffffffffffffffffffffffffff1614611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb90614969565b60405180910390fd5b80600e8190555050565b6000611518610f1a565b8210611559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155090614a29565b60405180910390fd5b6008828154811061156d5761156c615016565b5b90600052602060002001549050919050565b601360159054906101000a900460ff1681565b61159a612996565b73ffffffffffffffffffffffffffffffffffffffff166115b8611fd2565b73ffffffffffffffffffffffffffffffffffffffff161461160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590614969565b60405180910390fd5b80600c9080519060200190611624929190613a1c565b5050565b60105481565b601360149054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e1906148e9565b60405180910390fd5b80915050919050565b60006116fd610f1a565b9050600061170a33610f8d565b9050601360149054906101000a900460ff161561172657600080fd5b60008360ff161161173657600080fd5b6012548360ff16111561174857600080fd5b6011548360ff168361175a9190614bf7565b111561176557600080fd5b61176d611fd2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611bc6578260ff16816117ae9190614c7e565b3410156117f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e790614909565b60405180910390fd5b600060646015548560ff16846118069190614c7e565b6118109190614c7e565b61181a9190614c4d565b9050600f548214156119f657601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168460ff1611156118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b2906149e9565b60405180910390fd5b6011548460ff16846118cd9190614bf7565b111561190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190590614809565b60405180910390fd5b348460ff16600f546119209190614c7e565b1115611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890614909565b60405180910390fd5b83601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166119bc9190614d0c565b92506101000a81548160ff021916908360ff1602179055508360ff16600f546119e59190614c7e565b3410156119f157600080fd5b611b98565b600e54821415611ac8576011548460ff1684611a129190614bf7565b1115611a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4a90614809565b60405180910390fd5b348460ff16600e54611a659190614c7e565b1115611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90614909565b60405180910390fd5b8360ff16600e54611ab79190614c7e565b341015611ac357600080fd5b611b97565b601054821415611b96576011548460ff1684611ae49190614bf7565b1115611b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1c90614809565b60405180910390fd5b348460ff16601054611b379190614c7e565b1115611b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6f90614909565b60405180910390fd5b8360ff16601054611b899190614c7e565b341015611b9557600080fd5b5b5b5b611bc4601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612dfd565b505b6000600190505b8360ff168111611bff57611bec338285611be79190614bf7565b612e8d565b8080611bf790614ee0565b915050611bcd565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6d906148c9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611cc5612996565b73ffffffffffffffffffffffffffffffffffffffff16611ce3611fd2565b73ffffffffffffffffffffffffffffffffffffffff1614611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090614969565b60405180910390fd5b611d436000612eab565b565b611d4d612996565b73ffffffffffffffffffffffffffffffffffffffff16611d6b611fd2565b73ffffffffffffffffffffffffffffffffffffffff1614611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db890614969565b60405180910390fd5b80601360166101000a81548160ff02191690831515021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611e0c612996565b73ffffffffffffffffffffffffffffffffffffffff16611e2a611fd2565b73ffffffffffffffffffffffffffffffffffffffff1614611e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7790614969565b60405180910390fd5b8060128190555050565b611e92612996565b73ffffffffffffffffffffffffffffffffffffffff16611eb0611fd2565b73ffffffffffffffffffffffffffffffffffffffff1614611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90614969565b60405180910390fd5b60005b83839050811015611fa6578160176000868685818110611f2c57611f2b615016565b5b9050602002016020810190611f419190613d3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080611f9e90614ee0565b915050611f09565b50505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461200b90614e7d565b80601f016020809104026020016040519081016040528092919081815260200182805461203790614e7d565b80156120845780601f1061205957610100808354040283529160200191612084565b820191906000526020600020905b81548152906001019060200180831161206757829003601f168201915b5050505050905090565b612096612996565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb90614869565b60405180910390fd5b8060056000612111612996565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121be612996565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122039190614736565b60405180910390a35050565b601660149054906101000a900461ffff1681565b61222b612996565b73ffffffffffffffffffffffffffffffffffffffff16612249611fd2565b73ffffffffffffffffffffffffffffffffffffffff161461229f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229690614969565b60405180910390fd5b6001601360156101000a81548160ff021916908315150217905550565b60155481565b6122d36122cd612996565b83612ac3565b612312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230990614a09565b60405180910390fd5b61231e84848484612f71565b50505050565b601360169054906101000a900460ff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d805461236a90614e7d565b80601f016020809104026020016040519081016040528092919081815260200182805461239690614e7d565b80156123e35780601f106123b8576101008083540402835291602001916123e3565b820191906000526020600020905b8154815290600101906020018083116123c657829003601f168201915b505050505081565b60606123f68261299e565b612435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242c906149a9565b60405180910390fd5b60001515601360159054906101000a900460ff16151514156124e3576014805461245e90614e7d565b80601f016020809104026020016040519081016040528092919081815260200182805461248a90614e7d565b80156124d75780601f106124ac576101008083540402835291602001916124d7565b820191906000526020600020905b8154815290600101906020018083116124ba57829003601f168201915b5050505050905061253f565b60006124ed612fcd565b9050600081511161250d576040518060200160405280600081525061253b565b806125178461305f565b600d60405160200161252b9392919061464c565b6040516020818303038152906040525b9150505b919050565b60115481565b612552612996565b73ffffffffffffffffffffffffffffffffffffffff16612570611fd2565b73ffffffffffffffffffffffffffffffffffffffff16146125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd90614969565b60405180910390fd5b80600d90805190602001906125dc929190613a1c565b5050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e3a9db1a836040518263ffffffff1660e01b815260040161263b9190614692565b60206040518083038186803b15801561265357600080fd5b505afa158015612667573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061268b91906140d1565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61272e612996565b73ffffffffffffffffffffffffffffffffffffffff1661274c611fd2565b73ffffffffffffffffffffffffffffffffffffffff16146127a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279990614969565b60405180910390fd5b80601490805190602001906127b8929190613a1c565b5050565b6127c4612996565b73ffffffffffffffffffffffffffffffffffffffff166127e2611fd2565b73ffffffffffffffffffffffffffffffffffffffff1614612838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282f90614969565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289f906147e9565b60405180910390fd5b6128b181612eab565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061297f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061298f575061298e826131c0565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a7d83611641565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ace8261299e565b612b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0490614889565b60405180910390fd5b6000612b1883611641565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b8757508373ffffffffffffffffffffffffffffffffffffffff16612b6f84610ce9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b985750612b978185612692565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612bc182611641565b73ffffffffffffffffffffffffffffffffffffffff1614612c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0e90614989565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7e90614849565b60405180910390fd5b612c9283838361322a565b612c9d600082612a0a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ced9190614cd8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d449190614bf7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f340fa0182846040518363ffffffff1660e01b8152600401612e579190614692565b6000604051808303818588803b158015612e7057600080fd5b505af1158015612e84573d6000803e3d6000fd5b50505050505050565b612ea782826040518060200160405280600081525061333e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f7c848484612ba1565b612f8884848484613399565b612fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbe906147c9565b60405180910390fd5b50505050565b6060600c8054612fdc90614e7d565b80601f016020809104026020016040519081016040528092919081815260200182805461300890614e7d565b80156130555780601f1061302a57610100808354040283529160200191613055565b820191906000526020600020905b81548152906001019060200180831161303857829003601f168201915b5050505050905090565b606060008214156130a7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131bb565b600082905060005b600082146130d95780806130c290614ee0565b915050600a826130d29190614c4d565b91506130af565b60008167ffffffffffffffff8111156130f5576130f4615045565b5b6040519080825280601f01601f1916602001820160405280156131275781602001600182028036833780820191505090505b5090505b600085146131b4576001826131409190614cd8565b9150600a8561314f9190614f29565b603061315b9190614bf7565b60f81b81838151811061317157613170615016565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131ad9190614c4d565b945061312b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613235838383613530565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132785761327381613535565b6132b7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132b6576132b5838261357e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132fa576132f5816136eb565b613339565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146133385761333782826137bc565b5b5b505050565b613348838361383b565b6133556000848484613399565b613394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338b906147c9565b60405180910390fd5b505050565b60006133ba8473ffffffffffffffffffffffffffffffffffffffff16613a09565b15613523578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133e3612996565b8786866040518563ffffffff1660e01b815260040161340594939291906146c8565b602060405180830381600087803b15801561341f57600080fd5b505af192505050801561345057506040513d601f19601f8201168201806040525081019061344d919061402e565b60015b6134d3573d8060008114613480576040519150601f19603f3d011682016040523d82523d6000602084013e613485565b606091505b506000815114156134cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c2906147c9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613528565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161358b84611c05565b6135959190614cd8565b905060006007600084815260200190815260200160002054905081811461367a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136ff9190614cd8565b905060006009600084815260200190815260200160002054905060006008838154811061372f5761372e615016565b5b90600052602060002001549050806008838154811061375157613750615016565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806137a05761379f614fe7565b5b6001900381819060005260206000200160009055905550505050565b60006137c783611c05565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a290614929565b60405180910390fd5b6138b48161299e565b156138f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138eb90614829565b60405180910390fd5b6139006000838361322a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139509190614bf7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613a2890614e7d565b90600052602060002090601f016020900481019282613a4a5760008555613a91565b82601f10613a6357805160ff1916838001178555613a91565b82800160010185558215613a91579182015b82811115613a90578251825591602001919060010190613a75565b5b509050613a9e9190613aa2565b5090565b5b80821115613abb576000816000905550600101613aa3565b5090565b6000613ad2613acd84614acd565b614aa8565b90508083825260208201905082856020860282011115613af557613af461507e565b5b60005b85811015613b255781613b0b8882613d11565b845260208401935060208301925050600181019050613af8565b5050509392505050565b6000613b42613b3d84614af9565b614aa8565b905082815260208101848484011115613b5e57613b5d615083565b5b613b69848285614e3b565b509392505050565b6000613b84613b7f84614b2a565b614aa8565b905082815260208101848484011115613ba057613b9f615083565b5b613bab848285614e3b565b509392505050565b600081359050613bc28161563d565b92915050565b600081359050613bd781615654565b92915050565b60008083601f840112613bf357613bf2615079565b5b8235905067ffffffffffffffff811115613c1057613c0f615074565b5b602083019150836020820283011115613c2c57613c2b61507e565b5b9250929050565b600082601f830112613c4857613c47615079565b5b8151613c58848260208601613abf565b91505092915050565b600081359050613c708161566b565b92915050565b600081359050613c8581615682565b92915050565b600081519050613c9a81615682565b92915050565b600082601f830112613cb557613cb4615079565b5b8135613cc5848260208601613b2f565b91505092915050565b600082601f830112613ce357613ce2615079565b5b8135613cf3848260208601613b71565b91505092915050565b600081359050613d0b81615699565b92915050565b600081519050613d2081615699565b92915050565b600081359050613d35816156b0565b92915050565b600060208284031215613d5157613d5061508d565b5b6000613d5f84828501613bb3565b91505092915050565b600060208284031215613d7e57613d7d61508d565b5b6000613d8c84828501613bc8565b91505092915050565b60008060408385031215613dac57613dab61508d565b5b6000613dba85828601613bb3565b9250506020613dcb85828601613bb3565b9150509250929050565b600080600060608486031215613dee57613ded61508d565b5b6000613dfc86828701613bb3565b9350506020613e0d86828701613bb3565b9250506040613e1e86828701613cfc565b9150509250925092565b60008060008060808587031215613e4257613e4161508d565b5b6000613e5087828801613bb3565b9450506020613e6187828801613bb3565b9350506040613e7287828801613cfc565b925050606085013567ffffffffffffffff811115613e9357613e92615088565b5b613e9f87828801613ca0565b91505092959194509250565b60008060408385031215613ec257613ec161508d565b5b6000613ed085828601613bb3565b9250506020613ee185828601613c61565b9150509250929050565b60008060408385031215613f0257613f0161508d565b5b6000613f1085828601613bb3565b9250506020613f2185828601613cfc565b9150509250929050565b600080600060408486031215613f4457613f4361508d565b5b600084013567ffffffffffffffff811115613f6257613f61615088565b5b613f6e86828701613bdd565b93509350506020613f8186828701613d26565b9150509250925092565b600060208284031215613fa157613fa061508d565b5b600082015167ffffffffffffffff811115613fbf57613fbe615088565b5b613fcb84828501613c33565b91505092915050565b600060208284031215613fea57613fe961508d565b5b6000613ff884828501613c61565b91505092915050565b6000602082840312156140175761401661508d565b5b600061402584828501613c76565b91505092915050565b6000602082840312156140445761404361508d565b5b600061405284828501613c8b565b91505092915050565b6000602082840312156140715761407061508d565b5b600082013567ffffffffffffffff81111561408f5761408e615088565b5b61409b84828501613cce565b91505092915050565b6000602082840312156140ba576140b961508d565b5b60006140c884828501613cfc565b91505092915050565b6000602082840312156140e7576140e661508d565b5b60006140f584828501613d11565b91505092915050565b6000602082840312156141145761411361508d565b5b600061412284828501613d26565b91505092915050565b6000614137838361462e565b60208301905092915050565b61414c81614d52565b82525050565b61415b81614d40565b82525050565b600061416c82614b80565b6141768185614bae565b935061418183614b5b565b8060005b838110156141b2578151614199888261412b565b97506141a483614ba1565b925050600181019050614185565b5085935050505092915050565b6141c881614d64565b82525050565b60006141d982614b8b565b6141e38185614bbf565b93506141f3818560208601614e4a565b6141fc81615092565b840191505092915050565b61421081614de1565b82525050565b61421f81614df3565b82525050565b600061423082614b96565b61423a8185614bdb565b935061424a818560208601614e4a565b61425381615092565b840191505092915050565b600061426982614b96565b6142738185614bec565b9350614283818560208601614e4a565b80840191505092915050565b6000815461429c81614e7d565b6142a68186614bec565b945060018216600081146142c157600181146142d257614305565b60ff19831686528186019350614305565b6142db85614b6b565b60005b838110156142fd578154818901526001820191506020810190506142de565b838801955050505b50505092915050565b600061431b602b83614bdb565b9150614326826150a3565b604082019050919050565b600061433e603283614bdb565b9150614349826150f2565b604082019050919050565b6000614361602683614bdb565b915061436c82615141565b604082019050919050565b6000614384602083614bdb565b915061438f82615190565b602082019050919050565b60006143a7601c83614bdb565b91506143b2826151b9565b602082019050919050565b60006143ca602483614bdb565b91506143d5826151e2565b604082019050919050565b60006143ed601983614bdb565b91506143f882615231565b602082019050919050565b6000614410602c83614bdb565b915061441b8261525a565b604082019050919050565b6000614433603883614bdb565b915061443e826152a9565b604082019050919050565b6000614456602a83614bdb565b9150614461826152f8565b604082019050919050565b6000614479602983614bdb565b915061448482615347565b604082019050919050565b600061449c601d83614bdb565b91506144a782615396565b602082019050919050565b60006144bf602083614bdb565b91506144ca826153bf565b602082019050919050565b60006144e2602c83614bdb565b91506144ed826153e8565b604082019050919050565b6000614505602083614bdb565b915061451082615437565b602082019050919050565b6000614528602983614bdb565b915061453382615460565b604082019050919050565b600061454b602f83614bdb565b9150614556826154af565b604082019050919050565b600061456e602183614bdb565b9150614579826154fe565b604082019050919050565b6000614591602283614bdb565b915061459c8261554d565b604082019050919050565b60006145b4600083614bd0565b91506145bf8261559c565b600082019050919050565b60006145d7603183614bdb565b91506145e28261559f565b604082019050919050565b60006145fa602c83614bdb565b9150614605826155ee565b604082019050919050565b61461981614d9c565b82525050565b61462881614e29565b82525050565b61463781614dca565b82525050565b61464681614dca565b82525050565b6000614658828661425e565b9150614664828561425e565b9150614670828461428f565b9150819050949350505050565b6000614688826145a7565b9150819050919050565b60006020820190506146a76000830184614152565b92915050565b60006020820190506146c26000830184614143565b92915050565b60006080820190506146dd6000830187614152565b6146ea6020830186614152565b6146f7604083018561463d565b818103606083015261470981846141ce565b905095945050505050565b6000602082019050818103600083015261472e8184614161565b905092915050565b600060208201905061474b60008301846141bf565b92915050565b60006020820190506147666000830184614207565b92915050565b60006020820190506147816000830184614216565b92915050565b600060208201905081810360008301526147a18184614225565b905092915050565b600060208201905081810360008301526147c28161430e565b9050919050565b600060208201905081810360008301526147e281614331565b9050919050565b6000602082019050818103600083015261480281614354565b9050919050565b6000602082019050818103600083015261482281614377565b9050919050565b600060208201905081810360008301526148428161439a565b9050919050565b60006020820190508181036000830152614862816143bd565b9050919050565b60006020820190508181036000830152614882816143e0565b9050919050565b600060208201905081810360008301526148a281614403565b9050919050565b600060208201905081810360008301526148c281614426565b9050919050565b600060208201905081810360008301526148e281614449565b9050919050565b600060208201905081810360008301526149028161446c565b9050919050565b600060208201905081810360008301526149228161448f565b9050919050565b60006020820190508181036000830152614942816144b2565b9050919050565b60006020820190508181036000830152614962816144d5565b9050919050565b60006020820190508181036000830152614982816144f8565b9050919050565b600060208201905081810360008301526149a28161451b565b9050919050565b600060208201905081810360008301526149c28161453e565b9050919050565b600060208201905081810360008301526149e281614561565b9050919050565b60006020820190508181036000830152614a0281614584565b9050919050565b60006020820190508181036000830152614a22816145ca565b9050919050565b60006020820190508181036000830152614a42816145ed565b9050919050565b6000602082019050614a5e6000830184614610565b92915050565b6000604082019050614a79600083018561461f565b614a866020830184614152565b9392505050565b6000602082019050614aa2600083018461463d565b92915050565b6000614ab2614ac3565b9050614abe8282614eaf565b919050565b6000604051905090565b600067ffffffffffffffff821115614ae857614ae7615045565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b1457614b13615045565b5b614b1d82615092565b9050602081019050919050565b600067ffffffffffffffff821115614b4557614b44615045565b5b614b4e82615092565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c0282614dca565b9150614c0d83614dca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c4257614c41614f5a565b5b828201905092915050565b6000614c5882614dca565b9150614c6383614dca565b925082614c7357614c72614f89565b5b828204905092915050565b6000614c8982614dca565b9150614c9483614dca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ccd57614ccc614f5a565b5b828202905092915050565b6000614ce382614dca565b9150614cee83614dca565b925082821015614d0157614d00614f5a565b5b828203905092915050565b6000614d1782614dd4565b9150614d2283614dd4565b925082821015614d3557614d34614f5a565b5b828203905092915050565b6000614d4b82614daa565b9050919050565b6000614d5d82614daa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614dec82614e05565b9050919050565b6000614dfe82614e05565b9050919050565b6000614e1082614e17565b9050919050565b6000614e2282614daa565b9050919050565b6000614e3482614d9c565b9050919050565b82818337600083830152505050565b60005b83811015614e68578082015181840152602081019050614e4d565b83811115614e77576000848401525b50505050565b60006002820490506001821680614e9557607f821691505b60208210811415614ea957614ea8614fb8565b5b50919050565b614eb882615092565b810181811067ffffffffffffffff82111715614ed757614ed6615045565b5b80604052505050565b6000614eeb82614dca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f1e57614f1d614f5a565b5b600182019050919050565b6000614f3482614dca565b9150614f3f83614dca565b925082614f4f57614f4e614f89565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f43726f2076616c75652073656e74206973206e6f7420636f7272656374000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61564681614d40565b811461565157600080fd5b50565b61565d81614d52565b811461566857600080fd5b50565b61567481614d64565b811461567f57600080fd5b50565b61568b81614d70565b811461569657600080fd5b50565b6156a281614dca565b81146156ad57600080fd5b50565b6156b981614dd4565b81146156c457600080fd5b5056fea2646970667358221220d1688e9e3b61273603008478914f571f4e7af65b893f93ce56fa2ca74db152a564736f6c63430008070033608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610c098061010d6000396000f3fe6080604052600436106100555760003560e01c806351cff8d91461005a578063715018a6146100835780638da5cb5b1461009a578063e3a9db1a146100c5578063f2fde38b14610102578063f340fa011461012b575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906107f9565b610147565b005b34801561008f57600080fd5b506100986102c7565b005b3480156100a657600080fd5b506100af61034f565b6040516100bc9190610908565b60405180910390f35b3480156100d157600080fd5b506100ec60048036038101906100e791906107cc565b610378565b6040516100f991906109a3565b60405180910390f35b34801561010e57600080fd5b50610129600480360381019061012491906107cc565b6103c1565b005b610145600480360381019061014091906107cc565b6104b9565b005b61014f6105e2565b73ffffffffffffffffffffffffffffffffffffffff1661016d61034f565b73ffffffffffffffffffffffffffffffffffffffff16146101c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101ba90610983565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610275818373ffffffffffffffffffffffffffffffffffffffff166105ea90919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5826040516102bb91906109a3565b60405180910390a25050565b6102cf6105e2565b73ffffffffffffffffffffffffffffffffffffffff166102ed61034f565b73ffffffffffffffffffffffffffffffffffffffff1614610343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161033a90610983565b60405180910390fd5b61034d60006106de565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6103c96105e2565b73ffffffffffffffffffffffffffffffffffffffff166103e761034f565b73ffffffffffffffffffffffffffffffffffffffff161461043d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043490610983565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156104ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a490610923565b60405180910390fd5b6104b6816106de565b50565b6104c16105e2565b73ffffffffffffffffffffffffffffffffffffffff166104df61034f565b73ffffffffffffffffffffffffffffffffffffffff1614610535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052c90610983565b60405180910390fd5b600034905080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461058991906109da565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c4826040516105d691906109a3565b60405180910390a25050565b600033905090565b8047101561062d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062490610963565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610653906108f3565b60006040518083038185875af1925050503d8060008114610690576040519150601f19603f3d011682016040523d82523d6000602084013e610695565b606091505b50509050806106d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d090610943565b60405180910390fd5b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000813590506107b181610ba5565b92915050565b6000813590506107c681610bbc565b92915050565b6000602082840312156107e2576107e1610aad565b5b60006107f0848285016107a2565b91505092915050565b60006020828403121561080f5761080e610aad565b5b600061081d848285016107b7565b91505092915050565b61082f81610a30565b82525050565b60006108426026836109c9565b915061084d82610ab2565b604082019050919050565b6000610865603a836109c9565b915061087082610b01565b604082019050919050565b6000610888601d836109c9565b915061089382610b50565b602082019050919050565b60006108ab6020836109c9565b91506108b682610b79565b602082019050919050565b60006108ce6000836109be565b91506108d982610ba2565b600082019050919050565b6108ed81610a74565b82525050565b60006108fe826108c1565b9150819050919050565b600060208201905061091d6000830184610826565b92915050565b6000602082019050818103600083015261093c81610835565b9050919050565b6000602082019050818103600083015261095c81610858565b9050919050565b6000602082019050818103600083015261097c8161087b565b9050919050565b6000602082019050818103600083015261099c8161089e565b9050919050565b60006020820190506109b860008301846108e4565b92915050565b600081905092915050565b600082825260208201905092915050565b60006109e582610a74565b91506109f083610a74565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610a2557610a24610a7e565b5b828201905092915050565b6000610a3b82610a54565b9050919050565b6000610a4d82610a54565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600080fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b610bae81610a30565b8114610bb957600080fd5b50565b610bc581610a42565b8114610bd057600080fd5b5056fea2646970667358221220c169fcd8fc695bda8755bfd583a1d1f6930d7dc5d394e94d6a3b22b4b76b241664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000002941d0ef38d74a4941c4fee75624b831898126a9000000000000000000000000000000000000000000000000000000000000000b4d657461506c616e65747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d504c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f6368726f6e6f737761702e6d7970696e6174612e636c6f75642f697066732f516d59616d334b5156537a3466694659656e4d42554d46434b366a624b4b37434a6f67626f5545397838596638532f00000000000000000000
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c80636ecd230611610175578063a475b5dd116100dc578063c87b56dd11610095578063e2982c211161006f578063e2982c2114610a72578063e985e9c514610aaf578063f2c4ce1e14610aec578063f2fde38b14610b15576102ae565b8063c87b56dd146109e1578063d5abeb0114610a1e578063da3ef23f14610a49576102ae565b8063a475b5dd146108f5578063b6881c7d1461090c578063b88d4fde14610937578063c34ea91014610960578063c4408c8a1461098b578063c6682862146109b6576102ae565b80638295784d1161012e5780638295784d146107f75780638a17b5f0146108205780638da5cb5b1461084b57806395d89b4114610876578063a22cb465146108a1578063a46c8505146108ca576102ae565b80636ecd23061461070a57806370a0823114610726578063715018a614610763578063718bc4af1461077a5780637e23866b146107a35780637f00c7a6146107ce576102ae565b80632f745c59116102195780634f6ccce7116101d25780634f6ccce7146105e6578063518302271461062357806355f804b31461064e5780635b69368c146106775780635c975abb146106a25780636352211e146106cd576102ae565b80632f745c59146104e757806331b3eb94146105245780633ccfd60b1461054d57806342842e0e14610557578063438b63001461058057806344a0d68a146105bd576102ae565b8063095ea7b31161026b578063095ea7b3146103d757806313faede61461040057806318160ddd1461042b578063239c70ae1461045657806323b872dd146104815780632acc659e146104aa576102ae565b806301ffc9a7146102b357806302329a29146102f05780630457d16b1461031957806306fdde0314610344578063081812fc1461036f578063081c8c44146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d59190614001565b610b3e565b6040516102e79190614736565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613fd4565b610bb8565b005b34801561032557600080fd5b5061032e610c51565b60405161033b9190614a8d565b60405180910390f35b34801561035057600080fd5b50610359610c57565b6040516103669190614787565b60405180910390f35b34801561037b57600080fd5b50610396600480360381019061039191906140a4565b610ce9565b6040516103a39190614692565b60405180910390f35b3480156103b857600080fd5b506103c1610d6e565b6040516103ce9190614787565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190613eeb565b610dfc565b005b34801561040c57600080fd5b50610415610f14565b6040516104229190614a8d565b60405180910390f35b34801561043757600080fd5b50610440610f1a565b60405161044d9190614a8d565b60405180910390f35b34801561046257600080fd5b5061046b610f27565b6040516104789190614a8d565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190613dd5565b610f2d565b005b3480156104b657600080fd5b506104d160048036038101906104cc9190613d3b565b610f8d565b6040516104de9190614a8d565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190613eeb565b61118b565b60405161051b9190614a8d565b60405180910390f35b34801561053057600080fd5b5061054b60048036038101906105469190613d68565b611230565b005b6105556112be565b005b34801561056357600080fd5b5061057e60048036038101906105799190613dd5565b6113ba565b005b34801561058c57600080fd5b506105a760048036038101906105a29190613d3b565b6113da565b6040516105b49190614714565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df91906140a4565b611488565b005b3480156105f257600080fd5b5061060d600480360381019061060891906140a4565b61150e565b60405161061a9190614a8d565b60405180910390f35b34801561062f57600080fd5b5061063861157f565b6040516106459190614736565b60405180910390f35b34801561065a57600080fd5b506106756004803603810190610670919061405b565b611592565b005b34801561068357600080fd5b5061068c611628565b6040516106999190614a8d565b60405180910390f35b3480156106ae57600080fd5b506106b761162e565b6040516106c49190614736565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef91906140a4565b611641565b6040516107019190614692565b60405180910390f35b610724600480360381019061071f91906140fe565b6116f3565b005b34801561073257600080fd5b5061074d60048036038101906107489190613d3b565b611c05565b60405161075a9190614a8d565b60405180910390f35b34801561076f57600080fd5b50610778611cbd565b005b34801561078657600080fd5b506107a1600480360381019061079c9190613fd4565b611d45565b005b3480156107af57600080fd5b506107b8611dde565b6040516107c59190614751565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f091906140a4565b611e04565b005b34801561080357600080fd5b5061081e60048036038101906108199190613f2b565b611e8a565b005b34801561082c57600080fd5b50610835611fac565b6040516108429190614692565b60405180910390f35b34801561085757600080fd5b50610860611fd2565b60405161086d9190614692565b60405180910390f35b34801561088257600080fd5b5061088b611ffc565b6040516108989190614787565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190613eab565b61208e565b005b3480156108d657600080fd5b506108df61220f565b6040516108ec9190614a49565b60405180910390f35b34801561090157600080fd5b5061090a612223565b005b34801561091857600080fd5b506109216122bc565b60405161092e9190614a8d565b60405180910390f35b34801561094357600080fd5b5061095e60048036038101906109599190613e28565b6122c2565b005b34801561096c57600080fd5b50610975612324565b6040516109829190614736565b60405180910390f35b34801561099757600080fd5b506109a0612337565b6040516109ad919061476c565b60405180910390f35b3480156109c257600080fd5b506109cb61235d565b6040516109d89190614787565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a0391906140a4565b6123eb565b604051610a159190614787565b60405180910390f35b348015610a2a57600080fd5b50610a33612544565b604051610a409190614a8d565b60405180910390f35b348015610a5557600080fd5b50610a706004803603810190610a6b919061405b565b61254a565b005b348015610a7e57600080fd5b50610a996004803603810190610a949190613d3b565b6125e0565b604051610aa69190614a8d565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad19190613d95565b612692565b604051610ae39190614736565b60405180910390f35b348015610af857600080fd5b50610b136004803603810190610b0e919061405b565b612726565b005b348015610b2157600080fd5b50610b3c6004803603810190610b379190613d3b565b6127bc565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bb15750610bb0826128b4565b5b9050919050565b610bc0612996565b73ffffffffffffffffffffffffffffffffffffffff16610bde611fd2565b73ffffffffffffffffffffffffffffffffffffffff1614610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90614969565b60405180910390fd5b80601360146101000a81548160ff02191690831515021790555050565b600f5481565b606060008054610c6690614e7d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9290614e7d565b8015610cdf5780601f10610cb457610100808354040283529160200191610cdf565b820191906000526020600020905b815481529060010190602001808311610cc257829003601f168201915b5050505050905090565b6000610cf48261299e565b610d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2a90614949565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60148054610d7b90614e7d565b80601f0160208091040260200160405190810160405280929190818152602001828054610da790614e7d565b8015610df45780601f10610dc957610100808354040283529160200191610df4565b820191906000526020600020905b815481529060010190602001808311610dd757829003601f168201915b505050505081565b6000610e0782611641565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f906149c9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e97612996565b73ffffffffffffffffffffffffffffffffffffffff161480610ec65750610ec581610ec0612996565b612692565b5b610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc906148a9565b60405180910390fd5b610f0f8383612a0a565b505050565b600e5481565b6000600880549050905090565b60125481565b610f3e610f38612996565b82612ac3565b610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490614a09565b60405180910390fd5b610f88838383612ba1565b505050565b600080600e5490506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401610ff29190614692565b60206040518083038186803b15801561100a57600080fd5b505afa15801561101e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104291906140d1565b1115611052576010549050611124565b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a71896dc601660149054906101000a900461ffff16866040518363ffffffff1660e01b81526004016110c1929190614a64565b60006040518083038186803b1580156110d957600080fd5b505afa1580156110ed573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906111169190613f8b565b5111156111235760105490505b5b6000601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16111561118257600f5490505b80915050919050565b600061119683611c05565b82106111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce906147a9565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b7f00000000000000000000000058778ec4c0041adf31665370c610a23d7a717a6873ffffffffffffffffffffffffffffffffffffffff166351cff8d9826040518263ffffffff1660e01b815260040161128991906146ad565b600060405180830381600087803b1580156112a357600080fd5b505af11580156112b7573d6000803e3d6000fd5b5050505050565b6112c6612996565b73ffffffffffffffffffffffffffffffffffffffff166112e4611fd2565b73ffffffffffffffffffffffffffffffffffffffff161461133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190614969565b60405180910390fd5b6000611344611fd2565b73ffffffffffffffffffffffffffffffffffffffff16476040516113679061467d565b60006040518083038185875af1925050503d80600081146113a4576040519150601f19603f3d011682016040523d82523d6000602084013e6113a9565b606091505b50509050806113b757600080fd5b50565b6113d5838383604051806020016040528060008152506122c2565b505050565b606060006113e783611c05565b905060008167ffffffffffffffff81111561140557611404615045565b5b6040519080825280602002602001820160405280156114335781602001602082028036833780820191505090505b50905060005b8281101561147d5761144b858261118b565b82828151811061145e5761145d615016565b5b602002602001018181525050808061147590614ee0565b915050611439565b508092505050919050565b611490612996565b73ffffffffffffffffffffffffffffffffffffffff166114ae611fd2565b73ffffffffffffffffffffffffffffffffffffffff1614611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb90614969565b60405180910390fd5b80600e8190555050565b6000611518610f1a565b8210611559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155090614a29565b60405180910390fd5b6008828154811061156d5761156c615016565b5b90600052602060002001549050919050565b601360159054906101000a900460ff1681565b61159a612996565b73ffffffffffffffffffffffffffffffffffffffff166115b8611fd2565b73ffffffffffffffffffffffffffffffffffffffff161461160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590614969565b60405180910390fd5b80600c9080519060200190611624929190613a1c565b5050565b60105481565b601360149054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e1906148e9565b60405180910390fd5b80915050919050565b60006116fd610f1a565b9050600061170a33610f8d565b9050601360149054906101000a900460ff161561172657600080fd5b60008360ff161161173657600080fd5b6012548360ff16111561174857600080fd5b6011548360ff168361175a9190614bf7565b111561176557600080fd5b61176d611fd2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611bc6578260ff16816117ae9190614c7e565b3410156117f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e790614909565b60405180910390fd5b600060646015548560ff16846118069190614c7e565b6118109190614c7e565b61181a9190614c4d565b9050600f548214156119f657601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168460ff1611156118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b2906149e9565b60405180910390fd5b6011548460ff16846118cd9190614bf7565b111561190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190590614809565b60405180910390fd5b348460ff16600f546119209190614c7e565b1115611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890614909565b60405180910390fd5b83601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166119bc9190614d0c565b92506101000a81548160ff021916908360ff1602179055508360ff16600f546119e59190614c7e565b3410156119f157600080fd5b611b98565b600e54821415611ac8576011548460ff1684611a129190614bf7565b1115611a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4a90614809565b60405180910390fd5b348460ff16600e54611a659190614c7e565b1115611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90614909565b60405180910390fd5b8360ff16600e54611ab79190614c7e565b341015611ac357600080fd5b611b97565b601054821415611b96576011548460ff1684611ae49190614bf7565b1115611b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1c90614809565b60405180910390fd5b348460ff16601054611b379190614c7e565b1115611b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6f90614909565b60405180910390fd5b8360ff16601054611b899190614c7e565b341015611b9557600080fd5b5b5b5b611bc4601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612dfd565b505b6000600190505b8360ff168111611bff57611bec338285611be79190614bf7565b612e8d565b8080611bf790614ee0565b915050611bcd565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6d906148c9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611cc5612996565b73ffffffffffffffffffffffffffffffffffffffff16611ce3611fd2565b73ffffffffffffffffffffffffffffffffffffffff1614611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090614969565b60405180910390fd5b611d436000612eab565b565b611d4d612996565b73ffffffffffffffffffffffffffffffffffffffff16611d6b611fd2565b73ffffffffffffffffffffffffffffffffffffffff1614611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db890614969565b60405180910390fd5b80601360166101000a81548160ff02191690831515021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611e0c612996565b73ffffffffffffffffffffffffffffffffffffffff16611e2a611fd2565b73ffffffffffffffffffffffffffffffffffffffff1614611e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7790614969565b60405180910390fd5b8060128190555050565b611e92612996565b73ffffffffffffffffffffffffffffffffffffffff16611eb0611fd2565b73ffffffffffffffffffffffffffffffffffffffff1614611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90614969565b60405180910390fd5b60005b83839050811015611fa6578160176000868685818110611f2c57611f2b615016565b5b9050602002016020810190611f419190613d3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080611f9e90614ee0565b915050611f09565b50505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461200b90614e7d565b80601f016020809104026020016040519081016040528092919081815260200182805461203790614e7d565b80156120845780601f1061205957610100808354040283529160200191612084565b820191906000526020600020905b81548152906001019060200180831161206757829003601f168201915b5050505050905090565b612096612996565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb90614869565b60405180910390fd5b8060056000612111612996565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121be612996565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122039190614736565b60405180910390a35050565b601660149054906101000a900461ffff1681565b61222b612996565b73ffffffffffffffffffffffffffffffffffffffff16612249611fd2565b73ffffffffffffffffffffffffffffffffffffffff161461229f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229690614969565b60405180910390fd5b6001601360156101000a81548160ff021916908315150217905550565b60155481565b6122d36122cd612996565b83612ac3565b612312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230990614a09565b60405180910390fd5b61231e84848484612f71565b50505050565b601360169054906101000a900460ff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d805461236a90614e7d565b80601f016020809104026020016040519081016040528092919081815260200182805461239690614e7d565b80156123e35780601f106123b8576101008083540402835291602001916123e3565b820191906000526020600020905b8154815290600101906020018083116123c657829003601f168201915b505050505081565b60606123f68261299e565b612435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242c906149a9565b60405180910390fd5b60001515601360159054906101000a900460ff16151514156124e3576014805461245e90614e7d565b80601f016020809104026020016040519081016040528092919081815260200182805461248a90614e7d565b80156124d75780601f106124ac576101008083540402835291602001916124d7565b820191906000526020600020905b8154815290600101906020018083116124ba57829003601f168201915b5050505050905061253f565b60006124ed612fcd565b9050600081511161250d576040518060200160405280600081525061253b565b806125178461305f565b600d60405160200161252b9392919061464c565b6040516020818303038152906040525b9150505b919050565b60115481565b612552612996565b73ffffffffffffffffffffffffffffffffffffffff16612570611fd2565b73ffffffffffffffffffffffffffffffffffffffff16146125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd90614969565b60405180910390fd5b80600d90805190602001906125dc929190613a1c565b5050565b60007f00000000000000000000000058778ec4c0041adf31665370c610a23d7a717a6873ffffffffffffffffffffffffffffffffffffffff1663e3a9db1a836040518263ffffffff1660e01b815260040161263b9190614692565b60206040518083038186803b15801561265357600080fd5b505afa158015612667573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061268b91906140d1565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61272e612996565b73ffffffffffffffffffffffffffffffffffffffff1661274c611fd2565b73ffffffffffffffffffffffffffffffffffffffff16146127a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279990614969565b60405180910390fd5b80601490805190602001906127b8929190613a1c565b5050565b6127c4612996565b73ffffffffffffffffffffffffffffffffffffffff166127e2611fd2565b73ffffffffffffffffffffffffffffffffffffffff1614612838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282f90614969565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289f906147e9565b60405180910390fd5b6128b181612eab565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061297f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061298f575061298e826131c0565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a7d83611641565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ace8261299e565b612b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0490614889565b60405180910390fd5b6000612b1883611641565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b8757508373ffffffffffffffffffffffffffffffffffffffff16612b6f84610ce9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b985750612b978185612692565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612bc182611641565b73ffffffffffffffffffffffffffffffffffffffff1614612c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0e90614989565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7e90614849565b60405180910390fd5b612c9283838361322a565b612c9d600082612a0a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ced9190614cd8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d449190614bf7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b7f00000000000000000000000058778ec4c0041adf31665370c610a23d7a717a6873ffffffffffffffffffffffffffffffffffffffff1663f340fa0182846040518363ffffffff1660e01b8152600401612e579190614692565b6000604051808303818588803b158015612e7057600080fd5b505af1158015612e84573d6000803e3d6000fd5b50505050505050565b612ea782826040518060200160405280600081525061333e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f7c848484612ba1565b612f8884848484613399565b612fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbe906147c9565b60405180910390fd5b50505050565b6060600c8054612fdc90614e7d565b80601f016020809104026020016040519081016040528092919081815260200182805461300890614e7d565b80156130555780601f1061302a57610100808354040283529160200191613055565b820191906000526020600020905b81548152906001019060200180831161303857829003601f168201915b5050505050905090565b606060008214156130a7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131bb565b600082905060005b600082146130d95780806130c290614ee0565b915050600a826130d29190614c4d565b91506130af565b60008167ffffffffffffffff8111156130f5576130f4615045565b5b6040519080825280601f01601f1916602001820160405280156131275781602001600182028036833780820191505090505b5090505b600085146131b4576001826131409190614cd8565b9150600a8561314f9190614f29565b603061315b9190614bf7565b60f81b81838151811061317157613170615016565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131ad9190614c4d565b945061312b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613235838383613530565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132785761327381613535565b6132b7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132b6576132b5838261357e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132fa576132f5816136eb565b613339565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146133385761333782826137bc565b5b5b505050565b613348838361383b565b6133556000848484613399565b613394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338b906147c9565b60405180910390fd5b505050565b60006133ba8473ffffffffffffffffffffffffffffffffffffffff16613a09565b15613523578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133e3612996565b8786866040518563ffffffff1660e01b815260040161340594939291906146c8565b602060405180830381600087803b15801561341f57600080fd5b505af192505050801561345057506040513d601f19601f8201168201806040525081019061344d919061402e565b60015b6134d3573d8060008114613480576040519150601f19603f3d011682016040523d82523d6000602084013e613485565b606091505b506000815114156134cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c2906147c9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613528565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161358b84611c05565b6135959190614cd8565b905060006007600084815260200190815260200160002054905081811461367a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136ff9190614cd8565b905060006009600084815260200190815260200160002054905060006008838154811061372f5761372e615016565b5b90600052602060002001549050806008838154811061375157613750615016565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806137a05761379f614fe7565b5b6001900381819060005260206000200160009055905550505050565b60006137c783611c05565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a290614929565b60405180910390fd5b6138b48161299e565b156138f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138eb90614829565b60405180910390fd5b6139006000838361322a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139509190614bf7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613a2890614e7d565b90600052602060002090601f016020900481019282613a4a5760008555613a91565b82601f10613a6357805160ff1916838001178555613a91565b82800160010185558215613a91579182015b82811115613a90578251825591602001919060010190613a75565b5b509050613a9e9190613aa2565b5090565b5b80821115613abb576000816000905550600101613aa3565b5090565b6000613ad2613acd84614acd565b614aa8565b90508083825260208201905082856020860282011115613af557613af461507e565b5b60005b85811015613b255781613b0b8882613d11565b845260208401935060208301925050600181019050613af8565b5050509392505050565b6000613b42613b3d84614af9565b614aa8565b905082815260208101848484011115613b5e57613b5d615083565b5b613b69848285614e3b565b509392505050565b6000613b84613b7f84614b2a565b614aa8565b905082815260208101848484011115613ba057613b9f615083565b5b613bab848285614e3b565b509392505050565b600081359050613bc28161563d565b92915050565b600081359050613bd781615654565b92915050565b60008083601f840112613bf357613bf2615079565b5b8235905067ffffffffffffffff811115613c1057613c0f615074565b5b602083019150836020820283011115613c2c57613c2b61507e565b5b9250929050565b600082601f830112613c4857613c47615079565b5b8151613c58848260208601613abf565b91505092915050565b600081359050613c708161566b565b92915050565b600081359050613c8581615682565b92915050565b600081519050613c9a81615682565b92915050565b600082601f830112613cb557613cb4615079565b5b8135613cc5848260208601613b2f565b91505092915050565b600082601f830112613ce357613ce2615079565b5b8135613cf3848260208601613b71565b91505092915050565b600081359050613d0b81615699565b92915050565b600081519050613d2081615699565b92915050565b600081359050613d35816156b0565b92915050565b600060208284031215613d5157613d5061508d565b5b6000613d5f84828501613bb3565b91505092915050565b600060208284031215613d7e57613d7d61508d565b5b6000613d8c84828501613bc8565b91505092915050565b60008060408385031215613dac57613dab61508d565b5b6000613dba85828601613bb3565b9250506020613dcb85828601613bb3565b9150509250929050565b600080600060608486031215613dee57613ded61508d565b5b6000613dfc86828701613bb3565b9350506020613e0d86828701613bb3565b9250506040613e1e86828701613cfc565b9150509250925092565b60008060008060808587031215613e4257613e4161508d565b5b6000613e5087828801613bb3565b9450506020613e6187828801613bb3565b9350506040613e7287828801613cfc565b925050606085013567ffffffffffffffff811115613e9357613e92615088565b5b613e9f87828801613ca0565b91505092959194509250565b60008060408385031215613ec257613ec161508d565b5b6000613ed085828601613bb3565b9250506020613ee185828601613c61565b9150509250929050565b60008060408385031215613f0257613f0161508d565b5b6000613f1085828601613bb3565b9250506020613f2185828601613cfc565b9150509250929050565b600080600060408486031215613f4457613f4361508d565b5b600084013567ffffffffffffffff811115613f6257613f61615088565b5b613f6e86828701613bdd565b93509350506020613f8186828701613d26565b9150509250925092565b600060208284031215613fa157613fa061508d565b5b600082015167ffffffffffffffff811115613fbf57613fbe615088565b5b613fcb84828501613c33565b91505092915050565b600060208284031215613fea57613fe961508d565b5b6000613ff884828501613c61565b91505092915050565b6000602082840312156140175761401661508d565b5b600061402584828501613c76565b91505092915050565b6000602082840312156140445761404361508d565b5b600061405284828501613c8b565b91505092915050565b6000602082840312156140715761407061508d565b5b600082013567ffffffffffffffff81111561408f5761408e615088565b5b61409b84828501613cce565b91505092915050565b6000602082840312156140ba576140b961508d565b5b60006140c884828501613cfc565b91505092915050565b6000602082840312156140e7576140e661508d565b5b60006140f584828501613d11565b91505092915050565b6000602082840312156141145761411361508d565b5b600061412284828501613d26565b91505092915050565b6000614137838361462e565b60208301905092915050565b61414c81614d52565b82525050565b61415b81614d40565b82525050565b600061416c82614b80565b6141768185614bae565b935061418183614b5b565b8060005b838110156141b2578151614199888261412b565b97506141a483614ba1565b925050600181019050614185565b5085935050505092915050565b6141c881614d64565b82525050565b60006141d982614b8b565b6141e38185614bbf565b93506141f3818560208601614e4a565b6141fc81615092565b840191505092915050565b61421081614de1565b82525050565b61421f81614df3565b82525050565b600061423082614b96565b61423a8185614bdb565b935061424a818560208601614e4a565b61425381615092565b840191505092915050565b600061426982614b96565b6142738185614bec565b9350614283818560208601614e4a565b80840191505092915050565b6000815461429c81614e7d565b6142a68186614bec565b945060018216600081146142c157600181146142d257614305565b60ff19831686528186019350614305565b6142db85614b6b565b60005b838110156142fd578154818901526001820191506020810190506142de565b838801955050505b50505092915050565b600061431b602b83614bdb565b9150614326826150a3565b604082019050919050565b600061433e603283614bdb565b9150614349826150f2565b604082019050919050565b6000614361602683614bdb565b915061436c82615141565b604082019050919050565b6000614384602083614bdb565b915061438f82615190565b602082019050919050565b60006143a7601c83614bdb565b91506143b2826151b9565b602082019050919050565b60006143ca602483614bdb565b91506143d5826151e2565b604082019050919050565b60006143ed601983614bdb565b91506143f882615231565b602082019050919050565b6000614410602c83614bdb565b915061441b8261525a565b604082019050919050565b6000614433603883614bdb565b915061443e826152a9565b604082019050919050565b6000614456602a83614bdb565b9150614461826152f8565b604082019050919050565b6000614479602983614bdb565b915061448482615347565b604082019050919050565b600061449c601d83614bdb565b91506144a782615396565b602082019050919050565b60006144bf602083614bdb565b91506144ca826153bf565b602082019050919050565b60006144e2602c83614bdb565b91506144ed826153e8565b604082019050919050565b6000614505602083614bdb565b915061451082615437565b602082019050919050565b6000614528602983614bdb565b915061453382615460565b604082019050919050565b600061454b602f83614bdb565b9150614556826154af565b604082019050919050565b600061456e602183614bdb565b9150614579826154fe565b604082019050919050565b6000614591602283614bdb565b915061459c8261554d565b604082019050919050565b60006145b4600083614bd0565b91506145bf8261559c565b600082019050919050565b60006145d7603183614bdb565b91506145e28261559f565b604082019050919050565b60006145fa602c83614bdb565b9150614605826155ee565b604082019050919050565b61461981614d9c565b82525050565b61462881614e29565b82525050565b61463781614dca565b82525050565b61464681614dca565b82525050565b6000614658828661425e565b9150614664828561425e565b9150614670828461428f565b9150819050949350505050565b6000614688826145a7565b9150819050919050565b60006020820190506146a76000830184614152565b92915050565b60006020820190506146c26000830184614143565b92915050565b60006080820190506146dd6000830187614152565b6146ea6020830186614152565b6146f7604083018561463d565b818103606083015261470981846141ce565b905095945050505050565b6000602082019050818103600083015261472e8184614161565b905092915050565b600060208201905061474b60008301846141bf565b92915050565b60006020820190506147666000830184614207565b92915050565b60006020820190506147816000830184614216565b92915050565b600060208201905081810360008301526147a18184614225565b905092915050565b600060208201905081810360008301526147c28161430e565b9050919050565b600060208201905081810360008301526147e281614331565b9050919050565b6000602082019050818103600083015261480281614354565b9050919050565b6000602082019050818103600083015261482281614377565b9050919050565b600060208201905081810360008301526148428161439a565b9050919050565b60006020820190508181036000830152614862816143bd565b9050919050565b60006020820190508181036000830152614882816143e0565b9050919050565b600060208201905081810360008301526148a281614403565b9050919050565b600060208201905081810360008301526148c281614426565b9050919050565b600060208201905081810360008301526148e281614449565b9050919050565b600060208201905081810360008301526149028161446c565b9050919050565b600060208201905081810360008301526149228161448f565b9050919050565b60006020820190508181036000830152614942816144b2565b9050919050565b60006020820190508181036000830152614962816144d5565b9050919050565b60006020820190508181036000830152614982816144f8565b9050919050565b600060208201905081810360008301526149a28161451b565b9050919050565b600060208201905081810360008301526149c28161453e565b9050919050565b600060208201905081810360008301526149e281614561565b9050919050565b60006020820190508181036000830152614a0281614584565b9050919050565b60006020820190508181036000830152614a22816145ca565b9050919050565b60006020820190508181036000830152614a42816145ed565b9050919050565b6000602082019050614a5e6000830184614610565b92915050565b6000604082019050614a79600083018561461f565b614a866020830184614152565b9392505050565b6000602082019050614aa2600083018461463d565b92915050565b6000614ab2614ac3565b9050614abe8282614eaf565b919050565b6000604051905090565b600067ffffffffffffffff821115614ae857614ae7615045565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b1457614b13615045565b5b614b1d82615092565b9050602081019050919050565b600067ffffffffffffffff821115614b4557614b44615045565b5b614b4e82615092565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c0282614dca565b9150614c0d83614dca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c4257614c41614f5a565b5b828201905092915050565b6000614c5882614dca565b9150614c6383614dca565b925082614c7357614c72614f89565b5b828204905092915050565b6000614c8982614dca565b9150614c9483614dca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ccd57614ccc614f5a565b5b828202905092915050565b6000614ce382614dca565b9150614cee83614dca565b925082821015614d0157614d00614f5a565b5b828203905092915050565b6000614d1782614dd4565b9150614d2283614dd4565b925082821015614d3557614d34614f5a565b5b828203905092915050565b6000614d4b82614daa565b9050919050565b6000614d5d82614daa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614dec82614e05565b9050919050565b6000614dfe82614e05565b9050919050565b6000614e1082614e17565b9050919050565b6000614e2282614daa565b9050919050565b6000614e3482614d9c565b9050919050565b82818337600083830152505050565b60005b83811015614e68578082015181840152602081019050614e4d565b83811115614e77576000848401525b50505050565b60006002820490506001821680614e9557607f821691505b60208210811415614ea957614ea8614fb8565b5b50919050565b614eb882615092565b810181811067ffffffffffffffff82111715614ed757614ed6615045565b5b80604052505050565b6000614eeb82614dca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f1e57614f1d614f5a565b5b600182019050919050565b6000614f3482614dca565b9150614f3f83614dca565b925082614f4f57614f4e614f89565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f43726f2076616c75652073656e74206973206e6f7420636f7272656374000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61564681614d40565b811461565157600080fd5b50565b61565d81614d52565b811461566857600080fd5b50565b61567481614d64565b811461567f57600080fd5b50565b61568b81614d70565b811461569657600080fd5b50565b6156a281614dca565b81146156ad57600080fd5b50565b6156b981614dd4565b81146156c457600080fd5b5056fea2646970667358221220d1688e9e3b61273603008478914f571f4e7af65b893f93ce56fa2ca74db152a564736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000002941d0ef38d74a4941c4fee75624b831898126a9000000000000000000000000000000000000000000000000000000000000000b4d657461506c616e65747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d504c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f6368726f6e6f737761702e6d7970696e6174612e636c6f75642f697066732f516d59616d334b5156537a3466694659656e4d42554d46434b366a624b4b37434a6f67626f5545397838596638532f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): MetaPlanets
Arg [1] : _symbol (string): MPL
Arg [2] : _initBaseURI (string): https://chronoswap.mypinata.cloud/ipfs/QmYam3KQVSz4fiFYenMBUMFCK6jbKK7CJogboUE9x8Yf8S/
Arg [3] : _nftStaking (address): 0x2941d0EF38d74a4941C4Fee75624b831898126A9
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000002941d0ef38d74a4941c4fee75624b831898126a9
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 4d657461506c616e657473000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4d504c0000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000056
Arg [9] : 68747470733a2f2f6368726f6e6f737761702e6d7970696e6174612e636c6f75
Arg [10] : 642f697066732f516d59616d334b5156537a3466694659656e4d42554d46434b
Arg [11] : 366a624b4b37434a6f67626f5545397838596638532f00000000000000000000
Deployed Bytecode Sourcemap
48020:5452:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34664:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53236:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48305:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22556:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24115:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48597:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23638:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48269:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35304:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48420:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25005:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49429:444;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34972:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47005:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53316:153;;;:::i;:::-;;25415:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51722:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52668:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35494:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48525:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53004:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48343:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48494:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22250:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49894:1683;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21980:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42453:94;;;;;;;;;;;;;:::i;:::-;;51587:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48088:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52754:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49086:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48667:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41802:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22725:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24408:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48752:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52595:65;;;;;;;;;;;;;:::i;:::-;;48630:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25671:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48557:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48458:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48227:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52076:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48385:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53108:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47235:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24774:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52878:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42702:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34664:224;34766:4;34805:35;34790:50;;;:11;:50;;;;:90;;;;34844:36;34868:11;34844:23;:36::i;:::-;34790:90;34783:97;;34664:224;;;:::o;53236:73::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53297:6:::1;53288;;:15;;;;;;;;;;;;;;;;;;53236:73:::0;:::o;48305:33::-;;;;:::o;22556:100::-;22610:13;22643:5;22636:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22556:100;:::o;24115:221::-;24191:7;24219:16;24227:7;24219;:16::i;:::-;24211:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24304:15;:24;24320:7;24304:24;;;;;;;;;;;;;;;;;;;;;24297:31;;24115:221;;;:::o;48597:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23638:411::-;23719:13;23735:23;23750:7;23735:14;:23::i;:::-;23719:39;;23783:5;23777:11;;:2;:11;;;;23769:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23877:5;23861:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23886:37;23903:5;23910:12;:10;:12::i;:::-;23886:16;:37::i;:::-;23861:62;23839:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24020:21;24029:2;24033:7;24020:8;:21::i;:::-;23708:341;23638:411;;:::o;48269:31::-;;;;:::o;35304:113::-;35365:7;35392:10;:17;;;;35385:24;;35304:113;:::o;48420:33::-;;;;:::o;25005:339::-;25200:41;25219:12;:10;:12::i;:::-;25233:7;25200:18;:41::i;:::-;25192:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25308:28;25318:4;25324:2;25328:7;25308:9;:28::i;:::-;25005:339;;;:::o;49429:444::-;49487:7;49506:17;49526:4;;49506:24;;49587:1;49550:14;;;;;;;;;;;:24;;;49575:8;49550:34;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;49547:211;;;49615:10;;49603:22;;49547:211;;;49707:1;49645:10;;;;;;;;;;;:27;;;49673:13;;;;;;;;;;;49688:8;49645:52;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:59;:63;49642:116;;;49736:10;;49724:22;;49642:116;49547:211;49794:1;49771:10;:20;49782:8;49771:20;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;49768:73;;;49823:6;;49811:18;;49768:73;49858:9;49851:16;;;49429:444;;;:::o;34972:256::-;35069:7;35105:23;35122:5;35105:16;:23::i;:::-;35097:5;:31;35089:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35194:12;:19;35207:5;35194:19;;;;;;;;;;;;;;;:26;35214:5;35194:26;;;;;;;;;;;;35187:33;;34972:256;;;;:::o;47005:106::-;47080:7;:16;;;47097:5;47080:23;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47005:106;:::o;53316:153::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53369:8:::1;53391:7;:5;:7::i;:::-;53383:21;;53412;53383:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53368:70;;;53453:3;53445:12;;;::::0;::::1;;53361:108;53316:153::o:0;25415:185::-;25553:39;25570:4;25576:2;25580:7;25553:39;;;;;;;;;;;;:16;:39::i;:::-;25415:185;;;:::o;51722:348::-;51797:16;51825:23;51851:17;51861:6;51851:9;:17::i;:::-;51825:43;;51875:25;51917:15;51903:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51875:58;;51945:9;51940:103;51960:15;51956:1;:19;51940:103;;;52005:30;52025:6;52033:1;52005:19;:30::i;:::-;51991:8;52000:1;51991:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;51977:3;;;;;:::i;:::-;;;;51940:103;;;;52056:8;52049:15;;;;51722:348;;;:::o;52668:80::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52734:8:::1;52727:4;:15;;;;52668:80:::0;:::o;35494:233::-;35569:7;35605:30;:28;:30::i;:::-;35597:5;:38;35589:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35702:10;35713:5;35702:17;;;;;;;;:::i;:::-;;;;;;;;;;35695:24;;35494:233;;;:::o;48525:27::-;;;;;;;;;;;;;:::o;53004:98::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53085:11:::1;53075:7;:21;;;;;;;;;;;;:::i;:::-;;53004:98:::0;:::o;48343:37::-;;;;:::o;48494:26::-;;;;;;;;;;;;;:::o;22250:239::-;22322:7;22342:13;22358:7;:16;22366:7;22358:16;;;;;;;;;;;;;;;;;;;;;22342:32;;22410:1;22393:19;;:5;:19;;;;22385:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22476:5;22469:12;;;22250:239;;;:::o;49894:1683::-;49949:14;49966:13;:11;:13::i;:::-;49949:30;;49986:17;50006:20;50015:10;50006:8;:20::i;:::-;49986:40;;50042:6;;;;;;;;;;;50041:7;50033:16;;;;;;50078:1;50064:11;:15;;;50056:24;;;;;;50110:13;;50095:11;:28;;;;50087:37;;;;;;50163:9;;50148:11;50139:20;;:6;:20;;;;:::i;:::-;:33;;50131:42;;;;;;50204:7;:5;:7::i;:::-;50190:21;;:10;:21;;;50186:1285;;50257:11;50245:23;;:9;:23;;;;:::i;:::-;50232:9;:36;;50224:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;50313:17;50379:3;50362:13;;50347:11;50335:23;;:9;:23;;;;:::i;:::-;50334:41;;;;:::i;:::-;50333:49;;;;:::i;:::-;50313:69;;50411:6;;50398:9;:19;50395:1015;;;50457:10;:22;50468:10;50457:22;;;;;;;;;;;;;;;;;;;;;;;;;50442:37;;:11;:37;;;;50434:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;50565:9;;50550:11;50541:20;;:6;:20;;;;:::i;:::-;:33;;50533:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;50658:9;50643:11;50634:20;;:6;;:20;;;;:::i;:::-;:33;;50626:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;50742:11;50716:10;:22;50727:10;50716:22;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50798:11;50789:20;;:6;;:20;;;;:::i;:::-;50776:9;:33;;50768:42;;;;;;50395:1015;;;50853:4;;50840:9;:17;50837:573;;;50905:9;;50890:11;50881:20;;:6;:20;;;;:::i;:::-;:33;;50873:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;50996:9;50981:11;50974:18;;:4;;:18;;;;:::i;:::-;:31;;50966:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51082:11;51075:18;;:4;;:18;;;;:::i;:::-;51062:9;:31;;51054:40;;;;;;50837:573;;;51138:10;;51125:9;:23;51122:288;;;51196:9;;51181:11;51172:20;;:6;:20;;;;:::i;:::-;:33;;51164:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;51293:9;51278:11;51265:24;;:10;;:24;;;;:::i;:::-;:37;;51257:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;51385:11;51372:24;;:10;;:24;;;;:::i;:::-;51359:9;:37;;51351:46;;;;;;51122:288;50837:573;50395:1015;51420:43;51435:16;;;;;;;;;;;51453:9;51420:14;:43::i;:::-;50213:1258;50186:1285;51484:9;51496:1;51484:13;;51479:93;51504:11;51499:16;;:1;:16;51479:93;;51531:33;51541:10;51562:1;51553:6;:10;;;;:::i;:::-;51531:9;:33::i;:::-;51517:3;;;;;:::i;:::-;;;;51479:93;;;;49942:1635;;49894:1683;:::o;21980:208::-;22052:7;22097:1;22080:19;;:5;:19;;;;22072:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22164:9;:16;22174:5;22164:16;;;;;;;;;;;;;;;;22157:23;;21980:208;;;:::o;42453:94::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42518:21:::1;42536:1;42518:9;:21::i;:::-;42453:94::o:0;51587:129::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51690:18:::1;51672:15;;:36;;;;;;;;;;;;;;;;;;51587:129:::0;:::o;48088:83::-;;;;;;;;;;;;;:::o;52754:116::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52847:17:::1;52831:13;:33;;;;52754:116:::0;:::o;49086:214::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49193:9:::1;49188:109;49212:9;;:16;;49208:1;:20;49188:109;;;49273:16;49246:10;:24;49257:9;;49267:1;49257:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;49246:24;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;49230:3;;;;;:::i;:::-;;;;49188:109;;;;49086:214:::0;;;:::o;48667:76::-;;;;;;;;;;;;;:::o;41802:87::-;41848:7;41875:6;;;;;;;;;;;41868:13;;41802:87;:::o;22725:104::-;22781:13;22814:7;22807:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22725:104;:::o;24408:295::-;24523:12;:10;:12::i;:::-;24511:24;;:8;:24;;;;24503:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24623:8;24578:18;:32;24597:12;:10;:12::i;:::-;24578:32;;;;;;;;;;;;;;;:42;24611:8;24578:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24676:8;24647:48;;24662:12;:10;:12::i;:::-;24647:48;;;24686:8;24647:48;;;;;;:::i;:::-;;;;;;;;24408:295;;:::o;48752:31::-;;;;;;;;;;;;;:::o;52595:65::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52650:4:::1;52639:8;;:15;;;;;;;;;;;;;;;;;;52595:65::o:0;48630:32::-;;;;:::o;25671:328::-;25846:41;25865:12;:10;:12::i;:::-;25879:7;25846:18;:41::i;:::-;25838:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25952:39;25966:4;25972:2;25976:7;25985:5;25952:13;:39::i;:::-;25671:328;;;;:::o;48557:35::-;;;;;;;;;;;;;:::o;48458:31::-;;;;;;;;;;;;;:::o;48227:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52076:497::-;52174:13;52215:16;52223:7;52215;:16::i;:::-;52199:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;52324:5;52312:17;;:8;;;;;;;;;;;:17;;;52309:62;;;52349:14;52342:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52309:62;52379:28;52410:10;:8;:10::i;:::-;52379:41;;52465:1;52440:14;52434:28;:32;:133;;;;;;;;;;;;;;;;;52502:14;52518:18;:7;:16;:18::i;:::-;52538:13;52485:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52434:133;52427:140;;;52076:497;;;;:::o;48385:30::-;;;;:::o;53108:122::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53207:17:::1;53191:13;:33;;;;;;;;;;;;:::i;:::-;;53108:122:::0;:::o;47235:112::-;47288:7;47315;:18;;;47334:4;47315:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47308:31;;47235:112;;;:::o;24774:164::-;24871:4;24895:18;:25;24914:5;24895:25;;;;;;;;;;;;;;;:35;24921:8;24895:35;;;;;;;;;;;;;;;;;;;;;;;;;24888:42;;24774:164;;;;:::o;52878:120::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52977:15:::1;52960:14;:32;;;;;;;;;;;;:::i;:::-;;52878:120:::0;:::o;42702:192::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42811:1:::1;42791:22;;:8;:22;;;;42783:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42867:19;42877:8;42867:9;:19::i;:::-;42702:192:::0;:::o;21611:305::-;21713:4;21765:25;21750:40;;;:11;:40;;;;:105;;;;21822:33;21807:48;;;:11;:48;;;;21750:105;:158;;;;21872:36;21896:11;21872:23;:36::i;:::-;21750:158;21730:178;;21611:305;;;:::o;20085:98::-;20138:7;20165:10;20158:17;;20085:98;:::o;27509:127::-;27574:4;27626:1;27598:30;;:7;:16;27606:7;27598:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27591:37;;27509:127;;;:::o;31491:174::-;31593:2;31566:15;:24;31582:7;31566:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31649:7;31645:2;31611:46;;31620:23;31635:7;31620:14;:23::i;:::-;31611:46;;;;;;;;;;;;31491:174;;:::o;27803:348::-;27896:4;27921:16;27929:7;27921;:16::i;:::-;27913:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27997:13;28013:23;28028:7;28013:14;:23::i;:::-;27997:39;;28066:5;28055:16;;:7;:16;;;:51;;;;28099:7;28075:31;;:20;28087:7;28075:11;:20::i;:::-;:31;;;28055:51;:87;;;;28110:32;28127:5;28134:7;28110:16;:32::i;:::-;28055:87;28047:96;;;27803:348;;;;:::o;30795:578::-;30954:4;30927:31;;:23;30942:7;30927:14;:23::i;:::-;:31;;;30919:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31037:1;31023:16;;:2;:16;;;;31015:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31093:39;31114:4;31120:2;31124:7;31093:20;:39::i;:::-;31197:29;31214:1;31218:7;31197:8;:29::i;:::-;31258:1;31239:9;:15;31249:4;31239:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31287:1;31270:9;:13;31280:2;31270:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31318:2;31299:7;:16;31307:7;31299:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31357:7;31353:2;31338:27;;31347:4;31338:27;;;;;;;;;;;;30795:578;;;:::o;47716:126::-;47798:7;:15;;;47821:6;47829:4;47798:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47716:126;;:::o;28493:110::-;28569:26;28579:2;28583:7;28569:26;;;;;;;;;;;;:9;:26::i;:::-;28493:110;;:::o;42902:173::-;42958:16;42977:6;;;;;;;;;;;42958:25;;43003:8;42994:6;;:17;;;;;;;;;;;;;;;;;;43058:8;43027:40;;43048:8;43027:40;;;;;;;;;;;;42947:128;42902:173;:::o;26881:315::-;27038:28;27048:4;27054:2;27058:7;27038:9;:28::i;:::-;27085:48;27108:4;27114:2;27118:7;27127:5;27085:22;:48::i;:::-;27077:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26881:315;;;;:::o;49321:102::-;49381:13;49410:7;49403:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49321:102;:::o;7917:723::-;7973:13;8203:1;8194:5;:10;8190:53;;;8221:10;;;;;;;;;;;;;;;;;;;;;8190:53;8253:12;8268:5;8253:20;;8284:14;8309:78;8324:1;8316:4;:9;8309:78;;8342:8;;;;;:::i;:::-;;;;8373:2;8365:10;;;;;:::i;:::-;;;8309:78;;;8397:19;8429:6;8419:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8397:39;;8447:154;8463:1;8454:5;:10;8447:154;;8491:1;8481:11;;;;;:::i;:::-;;;8558:2;8550:5;:10;;;;:::i;:::-;8537:2;:24;;;;:::i;:::-;8524:39;;8507:6;8514;8507:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8587:2;8578:11;;;;;:::i;:::-;;;8447:154;;;8625:6;8611:21;;;;;7917:723;;;;:::o;7442:157::-;7527:4;7566:25;7551:40;;;:11;:40;;;;7544:47;;7442:157;;;:::o;36340:589::-;36484:45;36511:4;36517:2;36521:7;36484:26;:45::i;:::-;36562:1;36546:18;;:4;:18;;;36542:187;;;36581:40;36613:7;36581:31;:40::i;:::-;36542:187;;;36651:2;36643:10;;:4;:10;;;36639:90;;36670:47;36703:4;36709:7;36670:32;:47::i;:::-;36639:90;36542:187;36757:1;36743:16;;:2;:16;;;36739:183;;;36776:45;36813:7;36776:36;:45::i;:::-;36739:183;;;36849:4;36843:10;;:2;:10;;;36839:83;;36870:40;36898:2;36902:7;36870:27;:40::i;:::-;36839:83;36739:183;36340:589;;;:::o;28830:321::-;28960:18;28966:2;28970:7;28960:5;:18::i;:::-;29011:54;29042:1;29046:2;29050:7;29059:5;29011:22;:54::i;:::-;28989:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28830:321;;;:::o;32230:799::-;32385:4;32406:15;:2;:13;;;:15::i;:::-;32402:620;;;32458:2;32442:36;;;32479:12;:10;:12::i;:::-;32493:4;32499:7;32508:5;32442:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32438:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32701:1;32684:6;:13;:18;32680:272;;;32727:60;;;;;;;;;;:::i;:::-;;;;;;;;32680:272;32902:6;32896:13;32887:6;32883:2;32879:15;32872:38;32438:529;32575:41;;;32565:51;;;:6;:51;;;;32558:58;;;;;32402:620;33006:4;32999:11;;32230:799;;;;;;;:::o;33601:126::-;;;;:::o;37652:164::-;37756:10;:17;;;;37729:15;:24;37745:7;37729:24;;;;;;;;;;;:44;;;;37784:10;37800:7;37784:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37652:164;:::o;38443:988::-;38709:22;38759:1;38734:22;38751:4;38734:16;:22::i;:::-;:26;;;;:::i;:::-;38709:51;;38771:18;38792:17;:26;38810:7;38792:26;;;;;;;;;;;;38771:47;;38939:14;38925:10;:28;38921:328;;38970:19;38992:12;:18;39005:4;38992:18;;;;;;;;;;;;;;;:34;39011:14;38992:34;;;;;;;;;;;;38970:56;;39076:11;39043:12;:18;39056:4;39043:18;;;;;;;;;;;;;;;:30;39062:10;39043:30;;;;;;;;;;;:44;;;;39193:10;39160:17;:30;39178:11;39160:30;;;;;;;;;;;:43;;;;38955:294;38921:328;39345:17;:26;39363:7;39345:26;;;;;;;;;;;39338:33;;;39389:12;:18;39402:4;39389:18;;;;;;;;;;;;;;;:34;39408:14;39389:34;;;;;;;;;;;39382:41;;;38524:907;;38443:988;;:::o;39726:1079::-;39979:22;40024:1;40004:10;:17;;;;:21;;;;:::i;:::-;39979:46;;40036:18;40057:15;:24;40073:7;40057:24;;;;;;;;;;;;40036:45;;40408:19;40430:10;40441:14;40430:26;;;;;;;;:::i;:::-;;;;;;;;;;40408:48;;40494:11;40469:10;40480;40469:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40605:10;40574:15;:28;40590:11;40574:28;;;;;;;;;;;:41;;;;40746:15;:24;40762:7;40746:24;;;;;;;;;;;40739:31;;;40781:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39797:1008;;;39726:1079;:::o;37230:221::-;37315:14;37332:20;37349:2;37332:16;:20::i;:::-;37315:37;;37390:7;37363:12;:16;37376:2;37363:16;;;;;;;;;;;;;;;:24;37380:6;37363:24;;;;;;;;;;;:34;;;;37437:6;37408:17;:26;37426:7;37408:26;;;;;;;;;;;:35;;;;37304:147;37230:221;;:::o;29487:382::-;29581:1;29567:16;;:2;:16;;;;29559:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29640:16;29648:7;29640;:16::i;:::-;29639:17;29631:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29702:45;29731:1;29735:2;29739:7;29702:20;:45::i;:::-;29777:1;29760:9;:13;29770:2;29760:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29808:2;29789:7;:16;29797:7;29789:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29853:7;29849:2;29828:33;;29845:1;29828:33;;;;;;;;;;;;29487:382;;:::o;10442:387::-;10502:4;10710:12;10777:7;10765:20;10757:28;;10820:1;10813:4;:8;10806:15;;;10442:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:744:1:-;131:5;156:81;172:64;229:6;172:64;:::i;:::-;156:81;:::i;:::-;147:90;;257:5;286:6;279:5;272:21;320:4;313:5;309:16;302:23;;346:6;396:3;388:4;380:6;376:17;371:3;367:27;364:36;361:143;;;415:79;;:::i;:::-;361:143;528:1;513:249;538:6;535:1;532:13;513:249;;;606:3;635:48;679:3;667:10;635:48;:::i;:::-;630:3;623:61;713:4;708:3;704:14;697:21;;747:4;742:3;738:14;731:21;;573:189;560:1;557;553:9;548:14;;513:249;;;517:14;137:631;;24:744;;;;;:::o;774:410::-;851:5;876:65;892:48;933:6;892:48;:::i;:::-;876:65;:::i;:::-;867:74;;964:6;957:5;950:21;1002:4;995:5;991:16;1040:3;1031:6;1026:3;1022:16;1019:25;1016:112;;;1047:79;;:::i;:::-;1016:112;1137:41;1171:6;1166:3;1161;1137:41;:::i;:::-;857:327;774:410;;;;;:::o;1190:412::-;1268:5;1293:66;1309:49;1351:6;1309:49;:::i;:::-;1293:66;:::i;:::-;1284:75;;1382:6;1375:5;1368:21;1420:4;1413:5;1409:16;1458:3;1449:6;1444:3;1440:16;1437:25;1434:112;;;1465:79;;:::i;:::-;1434:112;1555:41;1589:6;1584:3;1579;1555:41;:::i;:::-;1274:328;1190:412;;;;;:::o;1608:139::-;1654:5;1692:6;1679:20;1670:29;;1708:33;1735:5;1708:33;:::i;:::-;1608:139;;;;:::o;1753:155::-;1807:5;1845:6;1832:20;1823:29;;1861:41;1896:5;1861:41;:::i;:::-;1753:155;;;;:::o;1931:568::-;2004:8;2014:6;2064:3;2057:4;2049:6;2045:17;2041:27;2031:122;;2072:79;;:::i;:::-;2031:122;2185:6;2172:20;2162:30;;2215:18;2207:6;2204:30;2201:117;;;2237:79;;:::i;:::-;2201:117;2351:4;2343:6;2339:17;2327:29;;2405:3;2397:4;2389:6;2385:17;2375:8;2371:32;2368:41;2365:128;;;2412:79;;:::i;:::-;2365:128;1931:568;;;;;:::o;2522:385::-;2604:5;2653:3;2646:4;2638:6;2634:17;2630:27;2620:122;;2661:79;;:::i;:::-;2620:122;2771:6;2765:13;2796:105;2897:3;2889:6;2882:4;2874:6;2870:17;2796:105;:::i;:::-;2787:114;;2610:297;2522:385;;;;:::o;2913:133::-;2956:5;2994:6;2981:20;2972:29;;3010:30;3034:5;3010:30;:::i;:::-;2913:133;;;;:::o;3052:137::-;3097:5;3135:6;3122:20;3113:29;;3151:32;3177:5;3151:32;:::i;:::-;3052:137;;;;:::o;3195:141::-;3251:5;3282:6;3276:13;3267:22;;3298:32;3324:5;3298:32;:::i;:::-;3195:141;;;;:::o;3355:338::-;3410:5;3459:3;3452:4;3444:6;3440:17;3436:27;3426:122;;3467:79;;:::i;:::-;3426:122;3584:6;3571:20;3609:78;3683:3;3675:6;3668:4;3660:6;3656:17;3609:78;:::i;:::-;3600:87;;3416:277;3355:338;;;;:::o;3713:340::-;3769:5;3818:3;3811:4;3803:6;3799:17;3795:27;3785:122;;3826:79;;:::i;:::-;3785:122;3943:6;3930:20;3968:79;4043:3;4035:6;4028:4;4020:6;4016:17;3968:79;:::i;:::-;3959:88;;3775:278;3713:340;;;;:::o;4059:139::-;4105:5;4143:6;4130:20;4121:29;;4159:33;4186:5;4159:33;:::i;:::-;4059:139;;;;:::o;4204:143::-;4261:5;4292:6;4286:13;4277:22;;4308:33;4335:5;4308:33;:::i;:::-;4204:143;;;;:::o;4353:135::-;4397:5;4435:6;4422:20;4413:29;;4451:31;4476:5;4451:31;:::i;:::-;4353:135;;;;:::o;4494:329::-;4553:6;4602:2;4590:9;4581:7;4577:23;4573:32;4570:119;;;4608:79;;:::i;:::-;4570:119;4728:1;4753:53;4798:7;4789:6;4778:9;4774:22;4753:53;:::i;:::-;4743:63;;4699:117;4494:329;;;;:::o;4829:345::-;4896:6;4945:2;4933:9;4924:7;4920:23;4916:32;4913:119;;;4951:79;;:::i;:::-;4913:119;5071:1;5096:61;5149:7;5140:6;5129:9;5125:22;5096:61;:::i;:::-;5086:71;;5042:125;4829:345;;;;:::o;5180:474::-;5248:6;5256;5305:2;5293:9;5284:7;5280:23;5276:32;5273:119;;;5311:79;;:::i;:::-;5273:119;5431:1;5456:53;5501:7;5492:6;5481:9;5477:22;5456:53;:::i;:::-;5446:63;;5402:117;5558:2;5584:53;5629:7;5620:6;5609:9;5605:22;5584:53;:::i;:::-;5574:63;;5529:118;5180:474;;;;;:::o;5660:619::-;5737:6;5745;5753;5802:2;5790:9;5781:7;5777:23;5773:32;5770:119;;;5808:79;;:::i;:::-;5770:119;5928:1;5953:53;5998:7;5989:6;5978:9;5974:22;5953:53;:::i;:::-;5943:63;;5899:117;6055:2;6081:53;6126:7;6117:6;6106:9;6102:22;6081:53;:::i;:::-;6071:63;;6026:118;6183:2;6209:53;6254:7;6245:6;6234:9;6230:22;6209:53;:::i;:::-;6199:63;;6154:118;5660:619;;;;;:::o;6285:943::-;6380:6;6388;6396;6404;6453:3;6441:9;6432:7;6428:23;6424:33;6421:120;;;6460:79;;:::i;:::-;6421:120;6580:1;6605:53;6650:7;6641:6;6630:9;6626:22;6605:53;:::i;:::-;6595:63;;6551:117;6707:2;6733:53;6778:7;6769:6;6758:9;6754:22;6733:53;:::i;:::-;6723:63;;6678:118;6835:2;6861:53;6906:7;6897:6;6886:9;6882:22;6861:53;:::i;:::-;6851:63;;6806:118;6991:2;6980:9;6976:18;6963:32;7022:18;7014:6;7011:30;7008:117;;;7044:79;;:::i;:::-;7008:117;7149:62;7203:7;7194:6;7183:9;7179:22;7149:62;:::i;:::-;7139:72;;6934:287;6285:943;;;;;;;:::o;7234:468::-;7299:6;7307;7356:2;7344:9;7335:7;7331:23;7327:32;7324:119;;;7362:79;;:::i;:::-;7324:119;7482:1;7507:53;7552:7;7543:6;7532:9;7528:22;7507:53;:::i;:::-;7497:63;;7453:117;7609:2;7635:50;7677:7;7668:6;7657:9;7653:22;7635:50;:::i;:::-;7625:60;;7580:115;7234:468;;;;;:::o;7708:474::-;7776:6;7784;7833:2;7821:9;7812:7;7808:23;7804:32;7801:119;;;7839:79;;:::i;:::-;7801:119;7959:1;7984:53;8029:7;8020:6;8009:9;8005:22;7984:53;:::i;:::-;7974:63;;7930:117;8086:2;8112:53;8157:7;8148:6;8137:9;8133:22;8112:53;:::i;:::-;8102:63;;8057:118;7708:474;;;;;:::o;8188:700::-;8281:6;8289;8297;8346:2;8334:9;8325:7;8321:23;8317:32;8314:119;;;8352:79;;:::i;:::-;8314:119;8500:1;8489:9;8485:17;8472:31;8530:18;8522:6;8519:30;8516:117;;;8552:79;;:::i;:::-;8516:117;8665:80;8737:7;8728:6;8717:9;8713:22;8665:80;:::i;:::-;8647:98;;;;8443:312;8794:2;8820:51;8863:7;8854:6;8843:9;8839:22;8820:51;:::i;:::-;8810:61;;8765:116;8188:700;;;;;:::o;8894:554::-;8989:6;9038:2;9026:9;9017:7;9013:23;9009:32;9006:119;;;9044:79;;:::i;:::-;9006:119;9185:1;9174:9;9170:17;9164:24;9215:18;9207:6;9204:30;9201:117;;;9237:79;;:::i;:::-;9201:117;9342:89;9423:7;9414:6;9403:9;9399:22;9342:89;:::i;:::-;9332:99;;9135:306;8894:554;;;;:::o;9454:323::-;9510:6;9559:2;9547:9;9538:7;9534:23;9530:32;9527:119;;;9565:79;;:::i;:::-;9527:119;9685:1;9710:50;9752:7;9743:6;9732:9;9728:22;9710:50;:::i;:::-;9700:60;;9656:114;9454:323;;;;:::o;9783:327::-;9841:6;9890:2;9878:9;9869:7;9865:23;9861:32;9858:119;;;9896:79;;:::i;:::-;9858:119;10016:1;10041:52;10085:7;10076:6;10065:9;10061:22;10041:52;:::i;:::-;10031:62;;9987:116;9783:327;;;;:::o;10116:349::-;10185:6;10234:2;10222:9;10213:7;10209:23;10205:32;10202:119;;;10240:79;;:::i;:::-;10202:119;10360:1;10385:63;10440:7;10431:6;10420:9;10416:22;10385:63;:::i;:::-;10375:73;;10331:127;10116:349;;;;:::o;10471:509::-;10540:6;10589:2;10577:9;10568:7;10564:23;10560:32;10557:119;;;10595:79;;:::i;:::-;10557:119;10743:1;10732:9;10728:17;10715:31;10773:18;10765:6;10762:30;10759:117;;;10795:79;;:::i;:::-;10759:117;10900:63;10955:7;10946:6;10935:9;10931:22;10900:63;:::i;:::-;10890:73;;10686:287;10471:509;;;;:::o;10986:329::-;11045:6;11094:2;11082:9;11073:7;11069:23;11065:32;11062:119;;;11100:79;;:::i;:::-;11062:119;11220:1;11245:53;11290:7;11281:6;11270:9;11266:22;11245:53;:::i;:::-;11235:63;;11191:117;10986:329;;;;:::o;11321:351::-;11391:6;11440:2;11428:9;11419:7;11415:23;11411:32;11408:119;;;11446:79;;:::i;:::-;11408:119;11566:1;11591:64;11647:7;11638:6;11627:9;11623:22;11591:64;:::i;:::-;11581:74;;11537:128;11321:351;;;;:::o;11678:325::-;11735:6;11784:2;11772:9;11763:7;11759:23;11755:32;11752:119;;;11790:79;;:::i;:::-;11752:119;11910:1;11935:51;11978:7;11969:6;11958:9;11954:22;11935:51;:::i;:::-;11925:61;;11881:115;11678:325;;;;:::o;12009:179::-;12078:10;12099:46;12141:3;12133:6;12099:46;:::i;:::-;12177:4;12172:3;12168:14;12154:28;;12009:179;;;;:::o;12194:142::-;12297:32;12323:5;12297:32;:::i;:::-;12292:3;12285:45;12194:142;;:::o;12342:118::-;12429:24;12447:5;12429:24;:::i;:::-;12424:3;12417:37;12342:118;;:::o;12496:732::-;12615:3;12644:54;12692:5;12644:54;:::i;:::-;12714:86;12793:6;12788:3;12714:86;:::i;:::-;12707:93;;12824:56;12874:5;12824:56;:::i;:::-;12903:7;12934:1;12919:284;12944:6;12941:1;12938:13;12919:284;;;13020:6;13014:13;13047:63;13106:3;13091:13;13047:63;:::i;:::-;13040:70;;13133:60;13186:6;13133:60;:::i;:::-;13123:70;;12979:224;12966:1;12963;12959:9;12954:14;;12919:284;;;12923:14;13219:3;13212:10;;12620:608;;;12496:732;;;;:::o;13234:109::-;13315:21;13330:5;13315:21;:::i;:::-;13310:3;13303:34;13234:109;;:::o;13349:360::-;13435:3;13463:38;13495:5;13463:38;:::i;:::-;13517:70;13580:6;13575:3;13517:70;:::i;:::-;13510:77;;13596:52;13641:6;13636:3;13629:4;13622:5;13618:16;13596:52;:::i;:::-;13673:29;13695:6;13673:29;:::i;:::-;13668:3;13664:39;13657:46;;13439:270;13349:360;;;;:::o;13715:161::-;13817:52;13863:5;13817:52;:::i;:::-;13812:3;13805:65;13715:161;;:::o;13882:175::-;13991:59;14044:5;13991:59;:::i;:::-;13986:3;13979:72;13882:175;;:::o;14063:364::-;14151:3;14179:39;14212:5;14179:39;:::i;:::-;14234:71;14298:6;14293:3;14234:71;:::i;:::-;14227:78;;14314:52;14359:6;14354:3;14347:4;14340:5;14336:16;14314:52;:::i;:::-;14391:29;14413:6;14391:29;:::i;:::-;14386:3;14382:39;14375:46;;14155:272;14063:364;;;;:::o;14433:377::-;14539:3;14567:39;14600:5;14567:39;:::i;:::-;14622:89;14704:6;14699:3;14622:89;:::i;:::-;14615:96;;14720:52;14765:6;14760:3;14753:4;14746:5;14742:16;14720:52;:::i;:::-;14797:6;14792:3;14788:16;14781:23;;14543:267;14433:377;;;;:::o;14840:845::-;14943:3;14980:5;14974:12;15009:36;15035:9;15009:36;:::i;:::-;15061:89;15143:6;15138:3;15061:89;:::i;:::-;15054:96;;15181:1;15170:9;15166:17;15197:1;15192:137;;;;15343:1;15338:341;;;;15159:520;;15192:137;15276:4;15272:9;15261;15257:25;15252:3;15245:38;15312:6;15307:3;15303:16;15296:23;;15192:137;;15338:341;15405:38;15437:5;15405:38;:::i;:::-;15465:1;15479:154;15493:6;15490:1;15487:13;15479:154;;;15567:7;15561:14;15557:1;15552:3;15548:11;15541:35;15617:1;15608:7;15604:15;15593:26;;15515:4;15512:1;15508:12;15503:17;;15479:154;;;15662:6;15657:3;15653:16;15646:23;;15345:334;;15159:520;;14947:738;;14840:845;;;;:::o;15691:366::-;15833:3;15854:67;15918:2;15913:3;15854:67;:::i;:::-;15847:74;;15930:93;16019:3;15930:93;:::i;:::-;16048:2;16043:3;16039:12;16032:19;;15691:366;;;:::o;16063:::-;16205:3;16226:67;16290:2;16285:3;16226:67;:::i;:::-;16219:74;;16302:93;16391:3;16302:93;:::i;:::-;16420:2;16415:3;16411:12;16404:19;;16063:366;;;:::o;16435:::-;16577:3;16598:67;16662:2;16657:3;16598:67;:::i;:::-;16591:74;;16674:93;16763:3;16674:93;:::i;:::-;16792:2;16787:3;16783:12;16776:19;;16435:366;;;:::o;16807:::-;16949:3;16970:67;17034:2;17029:3;16970:67;:::i;:::-;16963:74;;17046:93;17135:3;17046:93;:::i;:::-;17164:2;17159:3;17155:12;17148:19;;16807:366;;;:::o;17179:::-;17321:3;17342:67;17406:2;17401:3;17342:67;:::i;:::-;17335:74;;17418:93;17507:3;17418:93;:::i;:::-;17536:2;17531:3;17527:12;17520:19;;17179:366;;;:::o;17551:::-;17693:3;17714:67;17778:2;17773:3;17714:67;:::i;:::-;17707:74;;17790:93;17879:3;17790:93;:::i;:::-;17908:2;17903:3;17899:12;17892:19;;17551:366;;;:::o;17923:::-;18065:3;18086:67;18150:2;18145:3;18086:67;:::i;:::-;18079:74;;18162:93;18251:3;18162:93;:::i;:::-;18280:2;18275:3;18271:12;18264:19;;17923:366;;;:::o;18295:::-;18437:3;18458:67;18522:2;18517:3;18458:67;:::i;:::-;18451:74;;18534:93;18623:3;18534:93;:::i;:::-;18652:2;18647:3;18643:12;18636:19;;18295:366;;;:::o;18667:::-;18809:3;18830:67;18894:2;18889:3;18830:67;:::i;:::-;18823:74;;18906:93;18995:3;18906:93;:::i;:::-;19024:2;19019:3;19015:12;19008:19;;18667:366;;;:::o;19039:::-;19181:3;19202:67;19266:2;19261:3;19202:67;:::i;:::-;19195:74;;19278:93;19367:3;19278:93;:::i;:::-;19396:2;19391:3;19387:12;19380:19;;19039:366;;;:::o;19411:::-;19553:3;19574:67;19638:2;19633:3;19574:67;:::i;:::-;19567:74;;19650:93;19739:3;19650:93;:::i;:::-;19768:2;19763:3;19759:12;19752:19;;19411:366;;;:::o;19783:::-;19925:3;19946:67;20010:2;20005:3;19946:67;:::i;:::-;19939:74;;20022:93;20111:3;20022:93;:::i;:::-;20140:2;20135:3;20131:12;20124:19;;19783:366;;;:::o;20155:::-;20297:3;20318:67;20382:2;20377:3;20318:67;:::i;:::-;20311:74;;20394:93;20483:3;20394:93;:::i;:::-;20512:2;20507:3;20503:12;20496:19;;20155:366;;;:::o;20527:::-;20669:3;20690:67;20754:2;20749:3;20690:67;:::i;:::-;20683:74;;20766:93;20855:3;20766:93;:::i;:::-;20884:2;20879:3;20875:12;20868:19;;20527:366;;;:::o;20899:::-;21041:3;21062:67;21126:2;21121:3;21062:67;:::i;:::-;21055:74;;21138:93;21227:3;21138:93;:::i;:::-;21256:2;21251:3;21247:12;21240:19;;20899:366;;;:::o;21271:::-;21413:3;21434:67;21498:2;21493:3;21434:67;:::i;:::-;21427:74;;21510:93;21599:3;21510:93;:::i;:::-;21628:2;21623:3;21619:12;21612:19;;21271:366;;;:::o;21643:::-;21785:3;21806:67;21870:2;21865:3;21806:67;:::i;:::-;21799:74;;21882:93;21971:3;21882:93;:::i;:::-;22000:2;21995:3;21991:12;21984:19;;21643:366;;;:::o;22015:::-;22157:3;22178:67;22242:2;22237:3;22178:67;:::i;:::-;22171:74;;22254:93;22343:3;22254:93;:::i;:::-;22372:2;22367:3;22363:12;22356:19;;22015:366;;;:::o;22387:::-;22529:3;22550:67;22614:2;22609:3;22550:67;:::i;:::-;22543:74;;22626:93;22715:3;22626:93;:::i;:::-;22744:2;22739:3;22735:12;22728:19;;22387:366;;;:::o;22759:398::-;22918:3;22939:83;23020:1;23015:3;22939:83;:::i;:::-;22932:90;;23031:93;23120:3;23031:93;:::i;:::-;23149:1;23144:3;23140:11;23133:18;;22759:398;;;:::o;23163:366::-;23305:3;23326:67;23390:2;23385:3;23326:67;:::i;:::-;23319:74;;23402:93;23491:3;23402:93;:::i;:::-;23520:2;23515:3;23511:12;23504:19;;23163:366;;;:::o;23535:::-;23677:3;23698:67;23762:2;23757:3;23698:67;:::i;:::-;23691:74;;23774:93;23863:3;23774:93;:::i;:::-;23892:2;23887:3;23883:12;23876:19;;23535:366;;;:::o;23907:115::-;23992:23;24009:5;23992:23;:::i;:::-;23987:3;23980:36;23907:115;;:::o;24028:129::-;24114:36;24144:5;24114:36;:::i;:::-;24109:3;24102:49;24028:129;;:::o;24163:108::-;24240:24;24258:5;24240:24;:::i;:::-;24235:3;24228:37;24163:108;;:::o;24277:118::-;24364:24;24382:5;24364:24;:::i;:::-;24359:3;24352:37;24277:118;;:::o;24401:589::-;24626:3;24648:95;24739:3;24730:6;24648:95;:::i;:::-;24641:102;;24760:95;24851:3;24842:6;24760:95;:::i;:::-;24753:102;;24872:92;24960:3;24951:6;24872:92;:::i;:::-;24865:99;;24981:3;24974:10;;24401:589;;;;;;:::o;24996:379::-;25180:3;25202:147;25345:3;25202:147;:::i;:::-;25195:154;;25366:3;25359:10;;24996:379;;;:::o;25381:222::-;25474:4;25512:2;25501:9;25497:18;25489:26;;25525:71;25593:1;25582:9;25578:17;25569:6;25525:71;:::i;:::-;25381:222;;;;:::o;25609:254::-;25718:4;25756:2;25745:9;25741:18;25733:26;;25769:87;25853:1;25842:9;25838:17;25829:6;25769:87;:::i;:::-;25609:254;;;;:::o;25869:640::-;26064:4;26102:3;26091:9;26087:19;26079:27;;26116:71;26184:1;26173:9;26169:17;26160:6;26116:71;:::i;:::-;26197:72;26265:2;26254:9;26250:18;26241:6;26197:72;:::i;:::-;26279;26347:2;26336:9;26332:18;26323:6;26279:72;:::i;:::-;26398:9;26392:4;26388:20;26383:2;26372:9;26368:18;26361:48;26426:76;26497:4;26488:6;26426:76;:::i;:::-;26418:84;;25869:640;;;;;;;:::o;26515:373::-;26658:4;26696:2;26685:9;26681:18;26673:26;;26745:9;26739:4;26735:20;26731:1;26720:9;26716:17;26709:47;26773:108;26876:4;26867:6;26773:108;:::i;:::-;26765:116;;26515:373;;;;:::o;26894:210::-;26981:4;27019:2;27008:9;27004:18;26996:26;;27032:65;27094:1;27083:9;27079:17;27070:6;27032:65;:::i;:::-;26894:210;;;;:::o;27110:252::-;27218:4;27256:2;27245:9;27241:18;27233:26;;27269:86;27352:1;27341:9;27337:17;27328:6;27269:86;:::i;:::-;27110:252;;;;:::o;27368:266::-;27483:4;27521:2;27510:9;27506:18;27498:26;;27534:93;27624:1;27613:9;27609:17;27600:6;27534:93;:::i;:::-;27368:266;;;;:::o;27640:313::-;27753:4;27791:2;27780:9;27776:18;27768:26;;27840:9;27834:4;27830:20;27826:1;27815:9;27811:17;27804:47;27868:78;27941:4;27932:6;27868:78;:::i;:::-;27860:86;;27640:313;;;;:::o;27959:419::-;28125:4;28163:2;28152:9;28148:18;28140:26;;28212:9;28206:4;28202:20;28198:1;28187:9;28183:17;28176:47;28240:131;28366:4;28240:131;:::i;:::-;28232:139;;27959:419;;;:::o;28384:::-;28550:4;28588:2;28577:9;28573:18;28565:26;;28637:9;28631:4;28627:20;28623:1;28612:9;28608:17;28601:47;28665:131;28791:4;28665:131;:::i;:::-;28657:139;;28384:419;;;:::o;28809:::-;28975:4;29013:2;29002:9;28998:18;28990:26;;29062:9;29056:4;29052:20;29048:1;29037:9;29033:17;29026:47;29090:131;29216:4;29090:131;:::i;:::-;29082:139;;28809:419;;;:::o;29234:::-;29400:4;29438:2;29427:9;29423:18;29415:26;;29487:9;29481:4;29477:20;29473:1;29462:9;29458:17;29451:47;29515:131;29641:4;29515:131;:::i;:::-;29507:139;;29234:419;;;:::o;29659:::-;29825:4;29863:2;29852:9;29848:18;29840:26;;29912:9;29906:4;29902:20;29898:1;29887:9;29883:17;29876:47;29940:131;30066:4;29940:131;:::i;:::-;29932:139;;29659:419;;;:::o;30084:::-;30250:4;30288:2;30277:9;30273:18;30265:26;;30337:9;30331:4;30327:20;30323:1;30312:9;30308:17;30301:47;30365:131;30491:4;30365:131;:::i;:::-;30357:139;;30084:419;;;:::o;30509:::-;30675:4;30713:2;30702:9;30698:18;30690:26;;30762:9;30756:4;30752:20;30748:1;30737:9;30733:17;30726:47;30790:131;30916:4;30790:131;:::i;:::-;30782:139;;30509:419;;;:::o;30934:::-;31100:4;31138:2;31127:9;31123:18;31115:26;;31187:9;31181:4;31177:20;31173:1;31162:9;31158:17;31151:47;31215:131;31341:4;31215:131;:::i;:::-;31207:139;;30934:419;;;:::o;31359:::-;31525:4;31563:2;31552:9;31548:18;31540:26;;31612:9;31606:4;31602:20;31598:1;31587:9;31583:17;31576:47;31640:131;31766:4;31640:131;:::i;:::-;31632:139;;31359:419;;;:::o;31784:::-;31950:4;31988:2;31977:9;31973:18;31965:26;;32037:9;32031:4;32027:20;32023:1;32012:9;32008:17;32001:47;32065:131;32191:4;32065:131;:::i;:::-;32057:139;;31784:419;;;:::o;32209:::-;32375:4;32413:2;32402:9;32398:18;32390:26;;32462:9;32456:4;32452:20;32448:1;32437:9;32433:17;32426:47;32490:131;32616:4;32490:131;:::i;:::-;32482:139;;32209:419;;;:::o;32634:::-;32800:4;32838:2;32827:9;32823:18;32815:26;;32887:9;32881:4;32877:20;32873:1;32862:9;32858:17;32851:47;32915:131;33041:4;32915:131;:::i;:::-;32907:139;;32634:419;;;:::o;33059:::-;33225:4;33263:2;33252:9;33248:18;33240:26;;33312:9;33306:4;33302:20;33298:1;33287:9;33283:17;33276:47;33340:131;33466:4;33340:131;:::i;:::-;33332:139;;33059:419;;;:::o;33484:::-;33650:4;33688:2;33677:9;33673:18;33665:26;;33737:9;33731:4;33727:20;33723:1;33712:9;33708:17;33701:47;33765:131;33891:4;33765:131;:::i;:::-;33757:139;;33484:419;;;:::o;33909:::-;34075:4;34113:2;34102:9;34098:18;34090:26;;34162:9;34156:4;34152:20;34148:1;34137:9;34133:17;34126:47;34190:131;34316:4;34190:131;:::i;:::-;34182:139;;33909:419;;;:::o;34334:::-;34500:4;34538:2;34527:9;34523:18;34515:26;;34587:9;34581:4;34577:20;34573:1;34562:9;34558:17;34551:47;34615:131;34741:4;34615:131;:::i;:::-;34607:139;;34334:419;;;:::o;34759:::-;34925:4;34963:2;34952:9;34948:18;34940:26;;35012:9;35006:4;35002:20;34998:1;34987:9;34983:17;34976:47;35040:131;35166:4;35040:131;:::i;:::-;35032:139;;34759:419;;;:::o;35184:::-;35350:4;35388:2;35377:9;35373:18;35365:26;;35437:9;35431:4;35427:20;35423:1;35412:9;35408:17;35401:47;35465:131;35591:4;35465:131;:::i;:::-;35457:139;;35184:419;;;:::o;35609:::-;35775:4;35813:2;35802:9;35798:18;35790:26;;35862:9;35856:4;35852:20;35848:1;35837:9;35833:17;35826:47;35890:131;36016:4;35890:131;:::i;:::-;35882:139;;35609:419;;;:::o;36034:::-;36200:4;36238:2;36227:9;36223:18;36215:26;;36287:9;36281:4;36277:20;36273:1;36262:9;36258:17;36251:47;36315:131;36441:4;36315:131;:::i;:::-;36307:139;;36034:419;;;:::o;36459:::-;36625:4;36663:2;36652:9;36648:18;36640:26;;36712:9;36706:4;36702:20;36698:1;36687:9;36683:17;36676:47;36740:131;36866:4;36740:131;:::i;:::-;36732:139;;36459:419;;;:::o;36884:218::-;36975:4;37013:2;37002:9;36998:18;36990:26;;37026:69;37092:1;37081:9;37077:17;37068:6;37026:69;:::i;:::-;36884:218;;;;:::o;37108:330::-;37228:4;37266:2;37255:9;37251:18;37243:26;;37279:70;37346:1;37335:9;37331:17;37322:6;37279:70;:::i;:::-;37359:72;37427:2;37416:9;37412:18;37403:6;37359:72;:::i;:::-;37108:330;;;;;:::o;37444:222::-;37537:4;37575:2;37564:9;37560:18;37552:26;;37588:71;37656:1;37645:9;37641:17;37632:6;37588:71;:::i;:::-;37444:222;;;;:::o;37672:129::-;37706:6;37733:20;;:::i;:::-;37723:30;;37762:33;37790:4;37782:6;37762:33;:::i;:::-;37672:129;;;:::o;37807:75::-;37840:6;37873:2;37867:9;37857:19;;37807:75;:::o;37888:311::-;37965:4;38055:18;38047:6;38044:30;38041:56;;;38077:18;;:::i;:::-;38041:56;38127:4;38119:6;38115:17;38107:25;;38187:4;38181;38177:15;38169:23;;37888:311;;;:::o;38205:307::-;38266:4;38356:18;38348:6;38345:30;38342:56;;;38378:18;;:::i;:::-;38342:56;38416:29;38438:6;38416:29;:::i;:::-;38408:37;;38500:4;38494;38490:15;38482:23;;38205:307;;;:::o;38518:308::-;38580:4;38670:18;38662:6;38659:30;38656:56;;;38692:18;;:::i;:::-;38656:56;38730:29;38752:6;38730:29;:::i;:::-;38722:37;;38814:4;38808;38804:15;38796:23;;38518:308;;;:::o;38832:132::-;38899:4;38922:3;38914:11;;38952:4;38947:3;38943:14;38935:22;;38832:132;;;:::o;38970:141::-;39019:4;39042:3;39034:11;;39065:3;39062:1;39055:14;39099:4;39096:1;39086:18;39078:26;;38970:141;;;:::o;39117:114::-;39184:6;39218:5;39212:12;39202:22;;39117:114;;;:::o;39237:98::-;39288:6;39322:5;39316:12;39306:22;;39237:98;;;:::o;39341:99::-;39393:6;39427:5;39421:12;39411:22;;39341:99;;;:::o;39446:113::-;39516:4;39548;39543:3;39539:14;39531:22;;39446:113;;;:::o;39565:184::-;39664:11;39698:6;39693:3;39686:19;39738:4;39733:3;39729:14;39714:29;;39565:184;;;;:::o;39755:168::-;39838:11;39872:6;39867:3;39860:19;39912:4;39907:3;39903:14;39888:29;;39755:168;;;;:::o;39929:147::-;40030:11;40067:3;40052:18;;39929:147;;;;:::o;40082:169::-;40166:11;40200:6;40195:3;40188:19;40240:4;40235:3;40231:14;40216:29;;40082:169;;;;:::o;40257:148::-;40359:11;40396:3;40381:18;;40257:148;;;;:::o;40411:305::-;40451:3;40470:20;40488:1;40470:20;:::i;:::-;40465:25;;40504:20;40522:1;40504:20;:::i;:::-;40499:25;;40658:1;40590:66;40586:74;40583:1;40580:81;40577:107;;;40664:18;;:::i;:::-;40577:107;40708:1;40705;40701:9;40694:16;;40411:305;;;;:::o;40722:185::-;40762:1;40779:20;40797:1;40779:20;:::i;:::-;40774:25;;40813:20;40831:1;40813:20;:::i;:::-;40808:25;;40852:1;40842:35;;40857:18;;:::i;:::-;40842:35;40899:1;40896;40892:9;40887:14;;40722:185;;;;:::o;40913:348::-;40953:7;40976:20;40994:1;40976:20;:::i;:::-;40971:25;;41010:20;41028:1;41010:20;:::i;:::-;41005:25;;41198:1;41130:66;41126:74;41123:1;41120:81;41115:1;41108:9;41101:17;41097:105;41094:131;;;41205:18;;:::i;:::-;41094:131;41253:1;41250;41246:9;41235:20;;40913:348;;;;:::o;41267:191::-;41307:4;41327:20;41345:1;41327:20;:::i;:::-;41322:25;;41361:20;41379:1;41361:20;:::i;:::-;41356:25;;41400:1;41397;41394:8;41391:34;;;41405:18;;:::i;:::-;41391:34;41450:1;41447;41443:9;41435:17;;41267:191;;;;:::o;41464:185::-;41502:4;41522:18;41538:1;41522:18;:::i;:::-;41517:23;;41554:18;41570:1;41554:18;:::i;:::-;41549:23;;41591:1;41588;41585:8;41582:34;;;41596:18;;:::i;:::-;41582:34;41641:1;41638;41634:9;41626:17;;41464:185;;;;:::o;41655:96::-;41692:7;41721:24;41739:5;41721:24;:::i;:::-;41710:35;;41655:96;;;:::o;41757:104::-;41802:7;41831:24;41849:5;41831:24;:::i;:::-;41820:35;;41757:104;;;:::o;41867:90::-;41901:7;41944:5;41937:13;41930:21;41919:32;;41867:90;;;:::o;41963:149::-;41999:7;42039:66;42032:5;42028:78;42017:89;;41963:149;;;:::o;42118:89::-;42154:7;42194:6;42187:5;42183:18;42172:29;;42118:89;;;:::o;42213:126::-;42250:7;42290:42;42283:5;42279:54;42268:65;;42213:126;;;:::o;42345:77::-;42382:7;42411:5;42400:16;;42345:77;;;:::o;42428:86::-;42463:7;42503:4;42496:5;42492:16;42481:27;;42428:86;;;:::o;42520:141::-;42585:9;42618:37;42649:5;42618:37;:::i;:::-;42605:50;;42520:141;;;:::o;42667:148::-;42739:9;42772:37;42803:5;42772:37;:::i;:::-;42759:50;;42667:148;;;:::o;42821:126::-;42871:9;42904:37;42935:5;42904:37;:::i;:::-;42891:50;;42821:126;;;:::o;42953:113::-;43003:9;43036:24;43054:5;43036:24;:::i;:::-;43023:37;;42953:113;;;:::o;43072:111::-;43121:9;43154:23;43171:5;43154:23;:::i;:::-;43141:36;;43072:111;;;:::o;43189:154::-;43273:6;43268:3;43263;43250:30;43335:1;43326:6;43321:3;43317:16;43310:27;43189:154;;;:::o;43349:307::-;43417:1;43427:113;43441:6;43438:1;43435:13;43427:113;;;43526:1;43521:3;43517:11;43511:18;43507:1;43502:3;43498:11;43491:39;43463:2;43460:1;43456:10;43451:15;;43427:113;;;43558:6;43555:1;43552:13;43549:101;;;43638:1;43629:6;43624:3;43620:16;43613:27;43549:101;43398:258;43349:307;;;:::o;43662:320::-;43706:6;43743:1;43737:4;43733:12;43723:22;;43790:1;43784:4;43780:12;43811:18;43801:81;;43867:4;43859:6;43855:17;43845:27;;43801:81;43929:2;43921:6;43918:14;43898:18;43895:38;43892:84;;;43948:18;;:::i;:::-;43892:84;43713:269;43662:320;;;:::o;43988:281::-;44071:27;44093:4;44071:27;:::i;:::-;44063:6;44059:40;44201:6;44189:10;44186:22;44165:18;44153:10;44150:34;44147:62;44144:88;;;44212:18;;:::i;:::-;44144:88;44252:10;44248:2;44241:22;44031:238;43988:281;;:::o;44275:233::-;44314:3;44337:24;44355:5;44337:24;:::i;:::-;44328:33;;44383:66;44376:5;44373:77;44370:103;;;44453:18;;:::i;:::-;44370:103;44500:1;44493:5;44489:13;44482:20;;44275:233;;;:::o;44514:176::-;44546:1;44563:20;44581:1;44563:20;:::i;:::-;44558:25;;44597:20;44615:1;44597:20;:::i;:::-;44592:25;;44636:1;44626:35;;44641:18;;:::i;:::-;44626:35;44682:1;44679;44675:9;44670:14;;44514:176;;;;:::o;44696:180::-;44744:77;44741:1;44734:88;44841:4;44838:1;44831:15;44865:4;44862:1;44855:15;44882:180;44930:77;44927:1;44920:88;45027:4;45024:1;45017:15;45051:4;45048:1;45041:15;45068:180;45116:77;45113:1;45106:88;45213:4;45210:1;45203:15;45237:4;45234:1;45227:15;45254:180;45302:77;45299:1;45292:88;45399:4;45396:1;45389:15;45423:4;45420:1;45413:15;45440:180;45488:77;45485:1;45478:88;45585:4;45582:1;45575:15;45609:4;45606:1;45599:15;45626:180;45674:77;45671:1;45664:88;45771:4;45768:1;45761:15;45795:4;45792:1;45785:15;45812:117;45921:1;45918;45911:12;45935:117;46044:1;46041;46034:12;46058:117;46167:1;46164;46157:12;46181:117;46290:1;46287;46280:12;46304:117;46413:1;46410;46403:12;46427:117;46536:1;46533;46526:12;46550:102;46591:6;46642:2;46638:7;46633:2;46626:5;46622:14;46618:28;46608:38;;46550:102;;;:::o;46658:230::-;46798:34;46794:1;46786:6;46782:14;46775:58;46867:13;46862:2;46854:6;46850:15;46843:38;46658:230;:::o;46894:237::-;47034:34;47030:1;47022:6;47018:14;47011:58;47103:20;47098:2;47090:6;47086:15;47079:45;46894:237;:::o;47137:225::-;47277:34;47273:1;47265:6;47261:14;47254:58;47346:8;47341:2;47333:6;47329:15;47322:33;47137:225;:::o;47368:182::-;47508:34;47504:1;47496:6;47492:14;47485:58;47368:182;:::o;47556:178::-;47696:30;47692:1;47684:6;47680:14;47673:54;47556:178;:::o;47740:223::-;47880:34;47876:1;47868:6;47864:14;47857:58;47949:6;47944:2;47936:6;47932:15;47925:31;47740:223;:::o;47969:175::-;48109:27;48105:1;48097:6;48093:14;48086:51;47969:175;:::o;48150:231::-;48290:34;48286:1;48278:6;48274:14;48267:58;48359:14;48354:2;48346:6;48342:15;48335:39;48150:231;:::o;48387:243::-;48527:34;48523:1;48515:6;48511:14;48504:58;48596:26;48591:2;48583:6;48579:15;48572:51;48387:243;:::o;48636:229::-;48776:34;48772:1;48764:6;48760:14;48753:58;48845:12;48840:2;48832:6;48828:15;48821:37;48636:229;:::o;48871:228::-;49011:34;49007:1;48999:6;48995:14;48988:58;49080:11;49075:2;49067:6;49063:15;49056:36;48871:228;:::o;49105:179::-;49245:31;49241:1;49233:6;49229:14;49222:55;49105:179;:::o;49290:182::-;49430:34;49426:1;49418:6;49414:14;49407:58;49290:182;:::o;49478:231::-;49618:34;49614:1;49606:6;49602:14;49595:58;49687:14;49682:2;49674:6;49670:15;49663:39;49478:231;:::o;49715:182::-;49855:34;49851:1;49843:6;49839:14;49832:58;49715:182;:::o;49903:228::-;50043:34;50039:1;50031:6;50027:14;50020:58;50112:11;50107:2;50099:6;50095:15;50088:36;49903:228;:::o;50137:234::-;50277:34;50273:1;50265:6;50261:14;50254:58;50346:17;50341:2;50333:6;50329:15;50322:42;50137:234;:::o;50377:220::-;50517:34;50513:1;50505:6;50501:14;50494:58;50586:3;50581:2;50573:6;50569:15;50562:28;50377:220;:::o;50603:221::-;50743:34;50739:1;50731:6;50727:14;50720:58;50812:4;50807:2;50799:6;50795:15;50788:29;50603:221;:::o;50830:114::-;;:::o;50950:236::-;51090:34;51086:1;51078:6;51074:14;51067:58;51159:19;51154:2;51146:6;51142:15;51135:44;50950:236;:::o;51192:231::-;51332:34;51328:1;51320:6;51316:14;51309:58;51401:14;51396:2;51388:6;51384:15;51377:39;51192:231;:::o;51429:122::-;51502:24;51520:5;51502:24;:::i;:::-;51495:5;51492:35;51482:63;;51541:1;51538;51531:12;51482:63;51429:122;:::o;51557:138::-;51638:32;51664:5;51638:32;:::i;:::-;51631:5;51628:43;51618:71;;51685:1;51682;51675:12;51618:71;51557:138;:::o;51701:116::-;51771:21;51786:5;51771:21;:::i;:::-;51764:5;51761:32;51751:60;;51807:1;51804;51797:12;51751:60;51701:116;:::o;51823:120::-;51895:23;51912:5;51895:23;:::i;:::-;51888:5;51885:34;51875:62;;51933:1;51930;51923:12;51875:62;51823:120;:::o;51949:122::-;52022:24;52040:5;52022:24;:::i;:::-;52015:5;52012:35;52002:63;;52061:1;52058;52051:12;52002:63;51949:122;:::o;52077:118::-;52148:22;52164:5;52148:22;:::i;:::-;52141:5;52138:33;52128:61;;52185:1;52182;52175:12;52128:61;52077:118;:::o
Swarm Source
ipfs://c169fcd8fc695bda8755bfd583a1d1f6930d7dc5d394e94d6a3b22b4b76b2416
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 27 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.