Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0.00001 ETH
Eth Value
$0.03 (@ $3,295.76/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 28 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 14451699 | 1022 days ago | IN | 0 ETH | 0.00203188 | ||||
Mint | 14206730 | 1060 days ago | IN | 0 ETH | 0.03311134 | ||||
Mint | 14206721 | 1060 days ago | IN | 0 ETH | 0.01878079 | ||||
Mint | 14206712 | 1060 days ago | IN | 0 ETH | 0.00937244 | ||||
Mint | 14206709 | 1060 days ago | IN | 0 ETH | 0.00977529 | ||||
Mint | 14206706 | 1060 days ago | IN | 0 ETH | 0.00698302 | ||||
Mint | 14206705 | 1060 days ago | IN | 0 ETH | 0.00747081 | ||||
Mint | 14206701 | 1060 days ago | IN | 0 ETH | 0.00787511 | ||||
Mint | 14206696 | 1060 days ago | IN | 0 ETH | 0.01336693 | ||||
Mint | 14206693 | 1060 days ago | IN | 0 ETH | 0.01517342 | ||||
Mint | 14206689 | 1060 days ago | IN | 0 ETH | 0.01458784 | ||||
Mint | 14206688 | 1060 days ago | IN | 0 ETH | 0.00940691 | ||||
Mint | 14206686 | 1060 days ago | IN | 0 ETH | 0.0079776 | ||||
Mint | 14189863 | 1063 days ago | IN | 0.00001 ETH | 0.01140069 | ||||
Mint | 14187585 | 1063 days ago | IN | 0 ETH | 0.05074328 | ||||
Mint | 14182000 | 1064 days ago | IN | 0 ETH | 0.01235224 | ||||
Mint | 14181943 | 1064 days ago | IN | 0 ETH | 0.01330323 | ||||
Mint | 14181943 | 1064 days ago | IN | 0 ETH | 0.01306864 | ||||
Mint | 14181938 | 1064 days ago | IN | 0 ETH | 0.01436398 | ||||
Mint | 14181935 | 1064 days ago | IN | 0 ETH | 0.02267775 | ||||
Mint | 14181932 | 1064 days ago | IN | 0 ETH | 0.01521137 | ||||
Mint | 14181930 | 1064 days ago | IN | 0 ETH | 0.09863547 | ||||
Mint | 14181898 | 1064 days ago | IN | 0 ETH | 0.07663399 | ||||
Set Approval For... | 14111683 | 1075 days ago | IN | 0 ETH | 0.00455437 | ||||
Mint | 14111646 | 1075 days ago | IN | 0 ETH | 0.01375242 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
CryptoHeartz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-31 */ // File: 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: 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: 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); } } // File: 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: 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: 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: 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: 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: 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: 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: 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: 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: tests/CryptoHeartz.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.7; contract CryptoHeartz is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public notRevealedURI; string public baseExtension = ".json"; uint256 public cost = 0.00 ether; uint256 public maxSupply = 4257; uint256 public maxMintAmount = 20; bool public paused = false; bool private revealed = false; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedURI ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedURI); mint(msg.sender, 3); } // public function mint(address _to, uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); if (msg.sender != owner()) { //general public require(msg.value >= cost * _mintAmount); } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_to, supply + i); } } 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"); return revealed == true ? string(abi.encodePacked(baseURI, tokenId.toString(), baseExtension)) : notRevealedURI; } // set reveal to true function revealCollection() public onlyOwner{ revealed = true; } //only owner 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 pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } }
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":"string","name":"_initNotRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_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":"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":[{"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"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90805190602001906200005192919062000eb8565b506000600e556110a1600f5560146010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550348015620000a557600080fd5b5060405162005b4938038062005b498339818101604052810190620000cb91906200102f565b83838160009080519060200190620000e592919062000eb8565b508060019080519060200190620000fe92919062000eb8565b50505062000121620001156200016060201b60201c565b6200016860201b60201c565b62000132826200022e60201b60201c565b6200014381620002d960201b60201c565b620001563360036200038460201b60201c565b5050505062001863565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200023e6200016060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002646200049960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b4906200131f565b60405180910390fd5b80600b9080519060200190620002d592919062000eb8565b5050565b620002e96200016060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200030f6200049960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000368576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035f906200131f565b60405180910390fd5b80600c90805190602001906200038092919062000eb8565b5050565b600062000396620004c360201b60201c565b9050601160009054906101000a900460ff1615620003b357600080fd5b60008211620003c157600080fd5b601054821115620003d157600080fd5b600f548282620003e29190620013cd565b1115620003ee57600080fd5b620003fe6200049960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200044f5781600e546200044191906200142a565b3410156200044e57600080fd5b5b6000600190505b82811162000493576200047d848284620004719190620013cd565b620004d060201b60201c565b80806200048a90620015d2565b91505062000456565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600880549050905090565b620004f2828260405180602001604052806000815250620004f660201b60201c565b5050565b6200050883836200056460201b60201c565b6200051d60008484846200074a60201b60201c565b6200055f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005569062001297565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005ce90620012fd565b60405180910390fd5b620005e8816200090460201b60201c565b156200062b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062290620012b9565b60405180910390fd5b6200063f600083836200097060201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620006919190620013cd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620007788473ffffffffffffffffffffffffffffffffffffffff1662000ab760201b62001b7b1760201c565b15620008f7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007aa6200016060201b60201c565b8786866040518563ffffffff1660e01b8152600401620007ce949392919062001243565b602060405180830381600087803b158015620007e957600080fd5b505af19250505080156200081d57506040513d601f19601f820116820180604052508101906200081a919062000ffd565b60015b620008a6573d806000811462000850576040519150601f19603f3d011682016040523d82523d6000602084013e62000855565b606091505b506000815114156200089e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008959062001297565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620008fc565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6200098883838362000aca60201b62001b8e1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620009d557620009cf8162000acf60201b60201c565b62000a1d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000a1c5762000a1b838262000b1860201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a6a5762000a648162000c9560201b60201c565b62000ab2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000ab15762000ab0828262000d7160201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000b328462000dfd60201b620012a71760201c565b62000b3e91906200148b565b905060006007600084815260200190815260200160002054905081811462000c24576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000cab91906200148b565b905060006009600084815260200190815260200160002054905060006008838154811062000cde5762000cdd620016ad565b5b90600052602060002001549050806008838154811062000d035762000d02620016ad565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000d555762000d546200167e565b5b6001900381819060005260206000200160009055905550505050565b600062000d898362000dfd60201b620012a71760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000e71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e6890620012db565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000ec69062001566565b90600052602060002090601f01602090048101928262000eea576000855562000f36565b82601f1062000f0557805160ff191683800117855562000f36565b8280016001018555821562000f36579182015b8281111562000f3557825182559160200191906001019062000f18565b5b50905062000f45919062000f49565b5090565b5b8082111562000f6457600081600090555060010162000f4a565b5090565b600062000f7f62000f79846200136a565b62001341565b90508281526020810184848401111562000f9e5762000f9d62001710565b5b62000fab84828562001530565b509392505050565b60008151905062000fc48162001849565b92915050565b600082601f83011262000fe25762000fe16200170b565b5b815162000ff484826020860162000f68565b91505092915050565b6000602082840312156200101657620010156200171a565b5b6000620010268482850162000fb3565b91505092915050565b600080600080608085870312156200104c576200104b6200171a565b5b600085015167ffffffffffffffff8111156200106d576200106c62001715565b5b6200107b8782880162000fca565b945050602085015167ffffffffffffffff8111156200109f576200109e62001715565b5b620010ad8782880162000fca565b935050604085015167ffffffffffffffff811115620010d157620010d062001715565b5b620010df8782880162000fca565b925050606085015167ffffffffffffffff81111562001103576200110262001715565b5b620011118782880162000fca565b91505092959194509250565b6200112881620014c6565b82525050565b60006200113b82620013a0565b620011478185620013ab565b93506200115981856020860162001530565b62001164816200171f565b840191505092915050565b60006200117e603283620013bc565b91506200118b8262001730565b604082019050919050565b6000620011a5601c83620013bc565b9150620011b2826200177f565b602082019050919050565b6000620011cc602a83620013bc565b9150620011d982620017a8565b604082019050919050565b6000620011f3602083620013bc565b91506200120082620017f7565b602082019050919050565b60006200121a602083620013bc565b9150620012278262001820565b602082019050919050565b6200123d8162001526565b82525050565b60006080820190506200125a60008301876200111d565b6200126960208301866200111d565b62001278604083018562001232565b81810360608301526200128c81846200112e565b905095945050505050565b60006020820190508181036000830152620012b2816200116f565b9050919050565b60006020820190508181036000830152620012d48162001196565b9050919050565b60006020820190508181036000830152620012f681620011bd565b9050919050565b600060208201905081810360008301526200131881620011e4565b9050919050565b600060208201905081810360008301526200133a816200120b565b9050919050565b60006200134d62001360565b90506200135b82826200159c565b919050565b6000604051905090565b600067ffffffffffffffff821115620013885762001387620016dc565b5b62001393826200171f565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620013da8262001526565b9150620013e78362001526565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200141f576200141e62001620565b5b828201905092915050565b6000620014378262001526565b9150620014448362001526565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001480576200147f62001620565b5b828202905092915050565b6000620014988262001526565b9150620014a58362001526565b925082821015620014bb57620014ba62001620565b5b828203905092915050565b6000620014d38262001506565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200155057808201518184015260208101905062001533565b8381111562001560576000848401525b50505050565b600060028204905060018216806200157f57607f821691505b602082108114156200159657620015956200164f565b5b50919050565b620015a7826200171f565b810181811067ffffffffffffffff82111715620015c957620015c8620016dc565b5b80604052505050565b6000620015df8262001526565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562001615576200161462001620565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200185481620014da565b81146200186057600080fd5b50565b6142d680620018736000396000f3fe6080604052600436106102045760003560e01c806355f804b31161011857806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd14610727578063d5abeb0114610764578063e985e9c51461078f578063f2c4ce1e146107cc578063f2fde38b146107f557610204565b806395d89b411461067f578063a22cb465146106aa578063b88d4fde146106d3578063c6682862146106fc57610204565b806370a08231116100e757806370a08231146105ac578063715018a6146105e957806372250380146106005780637f00c7a61461062b5780638da5cb5b1461065457610204565b806355f804b3146104f05780635c975abb146105195780636352211e146105445780636c0360eb1461058157610204565b806323b872dd1161019b57806340d0b4a91161016a57806340d0b4a91461040d57806342842e0e14610424578063438b63001461044d57806344a0d68a1461048a5780634f6ccce7146104b357610204565b806323b872dd146103815780632f745c59146103aa5780633ccfd60b146103e757806340c10f19146103f157610204565b8063095ea7b3116101d7578063095ea7b3146102d757806313faede61461030057806318160ddd1461032b578063239c70ae1461035657610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612f9d565b61081e565b60405161023d91906135a9565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612f70565b610898565b005b34801561027b57600080fd5b50610284610931565b60405161029191906135c4565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190613040565b6109c3565b6040516102ce9190613520565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190612f30565b610a48565b005b34801561030c57600080fd5b50610315610b60565b6040516103229190613826565b60405180910390f35b34801561033757600080fd5b50610340610b66565b60405161034d9190613826565b60405180910390f35b34801561036257600080fd5b5061036b610b73565b6040516103789190613826565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190612e1a565b610b79565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190612f30565b610bd9565b6040516103de9190613826565b60405180910390f35b6103ef610c7e565b005b61040b60048036038101906104069190612f30565b610d73565b005b34801561041957600080fd5b50610422610e60565b005b34801561043057600080fd5b5061044b60048036038101906104469190612e1a565b610ef9565b005b34801561045957600080fd5b50610474600480360381019061046f9190612dad565b610f19565b6040516104819190613587565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190613040565b610fc7565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190613040565b61104d565b6040516104e79190613826565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190612ff7565b6110be565b005b34801561052557600080fd5b5061052e611154565b60405161053b91906135a9565b60405180910390f35b34801561055057600080fd5b5061056b60048036038101906105669190613040565b611167565b6040516105789190613520565b60405180910390f35b34801561058d57600080fd5b50610596611219565b6040516105a391906135c4565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190612dad565b6112a7565b6040516105e09190613826565b60405180910390f35b3480156105f557600080fd5b506105fe61135f565b005b34801561060c57600080fd5b506106156113e7565b60405161062291906135c4565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190613040565b611475565b005b34801561066057600080fd5b506106696114fb565b6040516106769190613520565b60405180910390f35b34801561068b57600080fd5b50610694611525565b6040516106a191906135c4565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190612ef0565b6115b7565b005b3480156106df57600080fd5b506106fa60048036038101906106f59190612e6d565b611738565b005b34801561070857600080fd5b5061071161179a565b60405161071e91906135c4565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190613040565b611828565b60405161075b91906135c4565b60405180910390f35b34801561077057600080fd5b50610779611953565b6040516107869190613826565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612dda565b611959565b6040516107c391906135a9565b60405180910390f35b3480156107d857600080fd5b506107f360048036038101906107ee9190612ff7565b6119ed565b005b34801561080157600080fd5b5061081c60048036038101906108179190612dad565b611a83565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610891575061089082611b93565b5b9050919050565b6108a0611c75565b73ffffffffffffffffffffffffffffffffffffffff166108be6114fb565b73ffffffffffffffffffffffffffffffffffffffff1614610914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090b90613766565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60606000805461094090613b2f565b80601f016020809104026020016040519081016040528092919081815260200182805461096c90613b2f565b80156109b95780601f1061098e576101008083540402835291602001916109b9565b820191906000526020600020905b81548152906001019060200180831161099c57829003601f168201915b5050505050905090565b60006109ce82611c7d565b610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490613746565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5382611167565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb906137c6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae3611c75565b73ffffffffffffffffffffffffffffffffffffffff161480610b125750610b1181610b0c611c75565b611959565b5b610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b48906136c6565b60405180910390fd5b610b5b8383611ce9565b505050565b600e5481565b6000600880549050905090565b60105481565b610b8a610b84611c75565b82611da2565b610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc0906137e6565b60405180910390fd5b610bd4838383611e80565b505050565b6000610be4836112a7565b8210610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c906135e6565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c86611c75565b73ffffffffffffffffffffffffffffffffffffffff16610ca46114fb565b73ffffffffffffffffffffffffffffffffffffffff1614610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf190613766565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d209061350b565b60006040518083038185875af1925050503d8060008114610d5d576040519150601f19603f3d011682016040523d82523d6000602084013e610d62565b606091505b5050905080610d7057600080fd5b50565b6000610d7d610b66565b9050601160009054906101000a900460ff1615610d9957600080fd5b60008211610da657600080fd5b601054821115610db557600080fd5b600f548282610dc49190613964565b1115610dcf57600080fd5b610dd76114fb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e245781600e54610e1791906139eb565b341015610e2357600080fd5b5b6000600190505b828111610e5a57610e47848284610e429190613964565b6120dc565b8080610e5290613b92565b915050610e2b565b50505050565b610e68611c75565b73ffffffffffffffffffffffffffffffffffffffff16610e866114fb565b73ffffffffffffffffffffffffffffffffffffffff1614610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390613766565b60405180910390fd5b6001601160016101000a81548160ff021916908315150217905550565b610f1483838360405180602001604052806000815250611738565b505050565b60606000610f26836112a7565b905060008167ffffffffffffffff811115610f4457610f43613cf7565b5b604051908082528060200260200182016040528015610f725781602001602082028036833780820191505090505b50905060005b82811015610fbc57610f8a8582610bd9565b828281518110610f9d57610f9c613cc8565b5b6020026020010181815250508080610fb490613b92565b915050610f78565b508092505050919050565b610fcf611c75565b73ffffffffffffffffffffffffffffffffffffffff16610fed6114fb565b73ffffffffffffffffffffffffffffffffffffffff1614611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90613766565b60405180910390fd5b80600e8190555050565b6000611057610b66565b8210611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90613806565b60405180910390fd5b600882815481106110ac576110ab613cc8565b5b90600052602060002001549050919050565b6110c6611c75565b73ffffffffffffffffffffffffffffffffffffffff166110e46114fb565b73ffffffffffffffffffffffffffffffffffffffff161461113a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113190613766565b60405180910390fd5b80600b9080519060200190611150929190612bc1565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790613706565b60405180910390fd5b80915050919050565b600b805461122690613b2f565b80601f016020809104026020016040519081016040528092919081815260200182805461125290613b2f565b801561129f5780601f106112745761010080835404028352916020019161129f565b820191906000526020600020905b81548152906001019060200180831161128257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f906136e6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611367611c75565b73ffffffffffffffffffffffffffffffffffffffff166113856114fb565b73ffffffffffffffffffffffffffffffffffffffff16146113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290613766565b60405180910390fd5b6113e560006120fa565b565b600c80546113f490613b2f565b80601f016020809104026020016040519081016040528092919081815260200182805461142090613b2f565b801561146d5780601f106114425761010080835404028352916020019161146d565b820191906000526020600020905b81548152906001019060200180831161145057829003601f168201915b505050505081565b61147d611c75565b73ffffffffffffffffffffffffffffffffffffffff1661149b6114fb565b73ffffffffffffffffffffffffffffffffffffffff16146114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e890613766565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461153490613b2f565b80601f016020809104026020016040519081016040528092919081815260200182805461156090613b2f565b80156115ad5780601f10611582576101008083540402835291602001916115ad565b820191906000526020600020905b81548152906001019060200180831161159057829003601f168201915b5050505050905090565b6115bf611c75565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490613686565b60405180910390fd5b806005600061163a611c75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116e7611c75565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161172c91906135a9565b60405180910390a35050565b611749611743611c75565b83611da2565b611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f906137e6565b60405180910390fd5b611794848484846121c0565b50505050565b600d80546117a790613b2f565b80601f01602080910402602001604051908101604052809291908181526020018280546117d390613b2f565b80156118205780601f106117f557610100808354040283529160200191611820565b820191906000526020600020905b81548152906001019060200180831161180357829003601f168201915b505050505081565b606061183382611c7d565b611872576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611869906137a6565b60405180910390fd5b60011515601160019054906101000a900460ff1615151461191d57600c805461189a90613b2f565b80601f01602080910402602001604051908101604052809291908181526020018280546118c690613b2f565b80156119135780601f106118e857610100808354040283529160200191611913565b820191906000526020600020905b8154815290600101906020018083116118f657829003601f168201915b505050505061194c565b600b6119288361221c565b600d60405160200161193c939291906134da565b6040516020818303038152906040525b9050919050565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119f5611c75565b73ffffffffffffffffffffffffffffffffffffffff16611a136114fb565b73ffffffffffffffffffffffffffffffffffffffff1614611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6090613766565b60405180910390fd5b80600c9080519060200190611a7f929190612bc1565b5050565b611a8b611c75565b73ffffffffffffffffffffffffffffffffffffffff16611aa96114fb565b73ffffffffffffffffffffffffffffffffffffffff1614611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690613766565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613626565b60405180910390fd5b611b78816120fa565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c5e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c6e5750611c6d8261237d565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d5c83611167565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dad82611c7d565b611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de3906136a6565b60405180910390fd5b6000611df783611167565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e6657508373ffffffffffffffffffffffffffffffffffffffff16611e4e846109c3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e775750611e768185611959565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ea082611167565b73ffffffffffffffffffffffffffffffffffffffff1614611ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eed90613786565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90613666565b60405180910390fd5b611f718383836123e7565b611f7c600082611ce9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fcc9190613a45565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120239190613964565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120f68282604051806020016040528060008152506124fb565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121cb848484611e80565b6121d784848484612556565b612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d90613606565b60405180910390fd5b50505050565b60606000821415612264576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612378565b600082905060005b6000821461229657808061227f90613b92565b915050600a8261228f91906139ba565b915061226c565b60008167ffffffffffffffff8111156122b2576122b1613cf7565b5b6040519080825280601f01601f1916602001820160405280156122e45781602001600182028036833780820191505090505b5090505b60008514612371576001826122fd9190613a45565b9150600a8561230c9190613bdb565b60306123189190613964565b60f81b81838151811061232e5761232d613cc8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561236a91906139ba565b94506122e8565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123f2838383611b8e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561243557612430816126ed565b612474565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612473576124728382612736565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124b7576124b2816128a3565b6124f6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124f5576124f48282612974565b5b5b505050565b61250583836129f3565b6125126000848484612556565b612551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254890613606565b60405180910390fd5b505050565b60006125778473ffffffffffffffffffffffffffffffffffffffff16611b7b565b156126e0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125a0611c75565b8786866040518563ffffffff1660e01b81526004016125c2949392919061353b565b602060405180830381600087803b1580156125dc57600080fd5b505af192505050801561260d57506040513d601f19601f8201168201806040525081019061260a9190612fca565b60015b612690573d806000811461263d576040519150601f19603f3d011682016040523d82523d6000602084013e612642565b606091505b50600081511415612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f90613606565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126e5565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612743846112a7565b61274d9190613a45565b9050600060076000848152602001908152602001600020549050818114612832576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128b79190613a45565b90506000600960008481526020019081526020016000205490506000600883815481106128e7576128e6613cc8565b5b90600052602060002001549050806008838154811061290957612908613cc8565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061295857612957613c99565b5b6001900381819060005260206000200160009055905550505050565b600061297f836112a7565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5a90613726565b60405180910390fd5b612a6c81611c7d565b15612aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa390613646565b60405180910390fd5b612ab8600083836123e7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b089190613964565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612bcd90613b2f565b90600052602060002090601f016020900481019282612bef5760008555612c36565b82601f10612c0857805160ff1916838001178555612c36565b82800160010185558215612c36579182015b82811115612c35578251825591602001919060010190612c1a565b5b509050612c439190612c47565b5090565b5b80821115612c60576000816000905550600101612c48565b5090565b6000612c77612c7284613866565b613841565b905082815260208101848484011115612c9357612c92613d2b565b5b612c9e848285613aed565b509392505050565b6000612cb9612cb484613897565b613841565b905082815260208101848484011115612cd557612cd4613d2b565b5b612ce0848285613aed565b509392505050565b600081359050612cf781614244565b92915050565b600081359050612d0c8161425b565b92915050565b600081359050612d2181614272565b92915050565b600081519050612d3681614272565b92915050565b600082601f830112612d5157612d50613d26565b5b8135612d61848260208601612c64565b91505092915050565b600082601f830112612d7f57612d7e613d26565b5b8135612d8f848260208601612ca6565b91505092915050565b600081359050612da781614289565b92915050565b600060208284031215612dc357612dc2613d35565b5b6000612dd184828501612ce8565b91505092915050565b60008060408385031215612df157612df0613d35565b5b6000612dff85828601612ce8565b9250506020612e1085828601612ce8565b9150509250929050565b600080600060608486031215612e3357612e32613d35565b5b6000612e4186828701612ce8565b9350506020612e5286828701612ce8565b9250506040612e6386828701612d98565b9150509250925092565b60008060008060808587031215612e8757612e86613d35565b5b6000612e9587828801612ce8565b9450506020612ea687828801612ce8565b9350506040612eb787828801612d98565b925050606085013567ffffffffffffffff811115612ed857612ed7613d30565b5b612ee487828801612d3c565b91505092959194509250565b60008060408385031215612f0757612f06613d35565b5b6000612f1585828601612ce8565b9250506020612f2685828601612cfd565b9150509250929050565b60008060408385031215612f4757612f46613d35565b5b6000612f5585828601612ce8565b9250506020612f6685828601612d98565b9150509250929050565b600060208284031215612f8657612f85613d35565b5b6000612f9484828501612cfd565b91505092915050565b600060208284031215612fb357612fb2613d35565b5b6000612fc184828501612d12565b91505092915050565b600060208284031215612fe057612fdf613d35565b5b6000612fee84828501612d27565b91505092915050565b60006020828403121561300d5761300c613d35565b5b600082013567ffffffffffffffff81111561302b5761302a613d30565b5b61303784828501612d6a565b91505092915050565b60006020828403121561305657613055613d35565b5b600061306484828501612d98565b91505092915050565b600061307983836134bc565b60208301905092915050565b61308e81613a79565b82525050565b600061309f826138ed565b6130a9818561391b565b93506130b4836138c8565b8060005b838110156130e55781516130cc888261306d565b97506130d78361390e565b9250506001810190506130b8565b5085935050505092915050565b6130fb81613a8b565b82525050565b600061310c826138f8565b613116818561392c565b9350613126818560208601613afc565b61312f81613d3a565b840191505092915050565b600061314582613903565b61314f8185613948565b935061315f818560208601613afc565b61316881613d3a565b840191505092915050565b600061317e82613903565b6131888185613959565b9350613198818560208601613afc565b80840191505092915050565b600081546131b181613b2f565b6131bb8186613959565b945060018216600081146131d657600181146131e75761321a565b60ff1983168652818601935061321a565b6131f0856138d8565b60005b83811015613212578154818901526001820191506020810190506131f3565b838801955050505b50505092915050565b6000613230602b83613948565b915061323b82613d4b565b604082019050919050565b6000613253603283613948565b915061325e82613d9a565b604082019050919050565b6000613276602683613948565b915061328182613de9565b604082019050919050565b6000613299601c83613948565b91506132a482613e38565b602082019050919050565b60006132bc602483613948565b91506132c782613e61565b604082019050919050565b60006132df601983613948565b91506132ea82613eb0565b602082019050919050565b6000613302602c83613948565b915061330d82613ed9565b604082019050919050565b6000613325603883613948565b915061333082613f28565b604082019050919050565b6000613348602a83613948565b915061335382613f77565b604082019050919050565b600061336b602983613948565b915061337682613fc6565b604082019050919050565b600061338e602083613948565b915061339982614015565b602082019050919050565b60006133b1602c83613948565b91506133bc8261403e565b604082019050919050565b60006133d4602083613948565b91506133df8261408d565b602082019050919050565b60006133f7602983613948565b9150613402826140b6565b604082019050919050565b600061341a602f83613948565b915061342582614105565b604082019050919050565b600061343d602183613948565b915061344882614154565b604082019050919050565b600061346060008361393d565b915061346b826141a3565b600082019050919050565b6000613483603183613948565b915061348e826141a6565b604082019050919050565b60006134a6602c83613948565b91506134b1826141f5565b604082019050919050565b6134c581613ae3565b82525050565b6134d481613ae3565b82525050565b60006134e682866131a4565b91506134f28285613173565b91506134fe82846131a4565b9150819050949350505050565b600061351682613453565b9150819050919050565b60006020820190506135356000830184613085565b92915050565b60006080820190506135506000830187613085565b61355d6020830186613085565b61356a60408301856134cb565b818103606083015261357c8184613101565b905095945050505050565b600060208201905081810360008301526135a18184613094565b905092915050565b60006020820190506135be60008301846130f2565b92915050565b600060208201905081810360008301526135de818461313a565b905092915050565b600060208201905081810360008301526135ff81613223565b9050919050565b6000602082019050818103600083015261361f81613246565b9050919050565b6000602082019050818103600083015261363f81613269565b9050919050565b6000602082019050818103600083015261365f8161328c565b9050919050565b6000602082019050818103600083015261367f816132af565b9050919050565b6000602082019050818103600083015261369f816132d2565b9050919050565b600060208201905081810360008301526136bf816132f5565b9050919050565b600060208201905081810360008301526136df81613318565b9050919050565b600060208201905081810360008301526136ff8161333b565b9050919050565b6000602082019050818103600083015261371f8161335e565b9050919050565b6000602082019050818103600083015261373f81613381565b9050919050565b6000602082019050818103600083015261375f816133a4565b9050919050565b6000602082019050818103600083015261377f816133c7565b9050919050565b6000602082019050818103600083015261379f816133ea565b9050919050565b600060208201905081810360008301526137bf8161340d565b9050919050565b600060208201905081810360008301526137df81613430565b9050919050565b600060208201905081810360008301526137ff81613476565b9050919050565b6000602082019050818103600083015261381f81613499565b9050919050565b600060208201905061383b60008301846134cb565b92915050565b600061384b61385c565b90506138578282613b61565b919050565b6000604051905090565b600067ffffffffffffffff82111561388157613880613cf7565b5b61388a82613d3a565b9050602081019050919050565b600067ffffffffffffffff8211156138b2576138b1613cf7565b5b6138bb82613d3a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061396f82613ae3565b915061397a83613ae3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139af576139ae613c0c565b5b828201905092915050565b60006139c582613ae3565b91506139d083613ae3565b9250826139e0576139df613c3b565b5b828204905092915050565b60006139f682613ae3565b9150613a0183613ae3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a3a57613a39613c0c565b5b828202905092915050565b6000613a5082613ae3565b9150613a5b83613ae3565b925082821015613a6e57613a6d613c0c565b5b828203905092915050565b6000613a8482613ac3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b1a578082015181840152602081019050613aff565b83811115613b29576000848401525b50505050565b60006002820490506001821680613b4757607f821691505b60208210811415613b5b57613b5a613c6a565b5b50919050565b613b6a82613d3a565b810181811067ffffffffffffffff82111715613b8957613b88613cf7565b5b80604052505050565b6000613b9d82613ae3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bd057613bcf613c0c565b5b600182019050919050565b6000613be682613ae3565b9150613bf183613ae3565b925082613c0157613c00613c3b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61424d81613a79565b811461425857600080fd5b50565b61426481613a8b565b811461426f57600080fd5b50565b61427b81613a97565b811461428657600080fd5b50565b61429281613ae3565b811461429d57600080fd5b5056fea2646970667358221220ba26ab0274b528d7c10ac9947dd209613177aa16ec7d990ab4f83b3429c3218664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000f43727970746f48656172747a4e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000648454152545a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e57724e53315a445a35513251315a6f5072515176316e715756693836424e78526f7547734d63596747387a2f000000000000000000000000000000000000000000000000000000000000000000000000000000000046697066733a2f2f516d64516a4d35776931655132797743625a717a7177723244696f70764d4148397477796678437a5763546d716f2f6e6f7452657665616c65642e6a736f6e0000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c806355f804b31161011857806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd14610727578063d5abeb0114610764578063e985e9c51461078f578063f2c4ce1e146107cc578063f2fde38b146107f557610204565b806395d89b411461067f578063a22cb465146106aa578063b88d4fde146106d3578063c6682862146106fc57610204565b806370a08231116100e757806370a08231146105ac578063715018a6146105e957806372250380146106005780637f00c7a61461062b5780638da5cb5b1461065457610204565b806355f804b3146104f05780635c975abb146105195780636352211e146105445780636c0360eb1461058157610204565b806323b872dd1161019b57806340d0b4a91161016a57806340d0b4a91461040d57806342842e0e14610424578063438b63001461044d57806344a0d68a1461048a5780634f6ccce7146104b357610204565b806323b872dd146103815780632f745c59146103aa5780633ccfd60b146103e757806340c10f19146103f157610204565b8063095ea7b3116101d7578063095ea7b3146102d757806313faede61461030057806318160ddd1461032b578063239c70ae1461035657610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612f9d565b61081e565b60405161023d91906135a9565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612f70565b610898565b005b34801561027b57600080fd5b50610284610931565b60405161029191906135c4565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190613040565b6109c3565b6040516102ce9190613520565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190612f30565b610a48565b005b34801561030c57600080fd5b50610315610b60565b6040516103229190613826565b60405180910390f35b34801561033757600080fd5b50610340610b66565b60405161034d9190613826565b60405180910390f35b34801561036257600080fd5b5061036b610b73565b6040516103789190613826565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190612e1a565b610b79565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190612f30565b610bd9565b6040516103de9190613826565b60405180910390f35b6103ef610c7e565b005b61040b60048036038101906104069190612f30565b610d73565b005b34801561041957600080fd5b50610422610e60565b005b34801561043057600080fd5b5061044b60048036038101906104469190612e1a565b610ef9565b005b34801561045957600080fd5b50610474600480360381019061046f9190612dad565b610f19565b6040516104819190613587565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190613040565b610fc7565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190613040565b61104d565b6040516104e79190613826565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190612ff7565b6110be565b005b34801561052557600080fd5b5061052e611154565b60405161053b91906135a9565b60405180910390f35b34801561055057600080fd5b5061056b60048036038101906105669190613040565b611167565b6040516105789190613520565b60405180910390f35b34801561058d57600080fd5b50610596611219565b6040516105a391906135c4565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190612dad565b6112a7565b6040516105e09190613826565b60405180910390f35b3480156105f557600080fd5b506105fe61135f565b005b34801561060c57600080fd5b506106156113e7565b60405161062291906135c4565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190613040565b611475565b005b34801561066057600080fd5b506106696114fb565b6040516106769190613520565b60405180910390f35b34801561068b57600080fd5b50610694611525565b6040516106a191906135c4565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190612ef0565b6115b7565b005b3480156106df57600080fd5b506106fa60048036038101906106f59190612e6d565b611738565b005b34801561070857600080fd5b5061071161179a565b60405161071e91906135c4565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190613040565b611828565b60405161075b91906135c4565b60405180910390f35b34801561077057600080fd5b50610779611953565b6040516107869190613826565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612dda565b611959565b6040516107c391906135a9565b60405180910390f35b3480156107d857600080fd5b506107f360048036038101906107ee9190612ff7565b6119ed565b005b34801561080157600080fd5b5061081c60048036038101906108179190612dad565b611a83565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610891575061089082611b93565b5b9050919050565b6108a0611c75565b73ffffffffffffffffffffffffffffffffffffffff166108be6114fb565b73ffffffffffffffffffffffffffffffffffffffff1614610914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090b90613766565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60606000805461094090613b2f565b80601f016020809104026020016040519081016040528092919081815260200182805461096c90613b2f565b80156109b95780601f1061098e576101008083540402835291602001916109b9565b820191906000526020600020905b81548152906001019060200180831161099c57829003601f168201915b5050505050905090565b60006109ce82611c7d565b610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490613746565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5382611167565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb906137c6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae3611c75565b73ffffffffffffffffffffffffffffffffffffffff161480610b125750610b1181610b0c611c75565b611959565b5b610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b48906136c6565b60405180910390fd5b610b5b8383611ce9565b505050565b600e5481565b6000600880549050905090565b60105481565b610b8a610b84611c75565b82611da2565b610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc0906137e6565b60405180910390fd5b610bd4838383611e80565b505050565b6000610be4836112a7565b8210610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c906135e6565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c86611c75565b73ffffffffffffffffffffffffffffffffffffffff16610ca46114fb565b73ffffffffffffffffffffffffffffffffffffffff1614610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf190613766565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d209061350b565b60006040518083038185875af1925050503d8060008114610d5d576040519150601f19603f3d011682016040523d82523d6000602084013e610d62565b606091505b5050905080610d7057600080fd5b50565b6000610d7d610b66565b9050601160009054906101000a900460ff1615610d9957600080fd5b60008211610da657600080fd5b601054821115610db557600080fd5b600f548282610dc49190613964565b1115610dcf57600080fd5b610dd76114fb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e245781600e54610e1791906139eb565b341015610e2357600080fd5b5b6000600190505b828111610e5a57610e47848284610e429190613964565b6120dc565b8080610e5290613b92565b915050610e2b565b50505050565b610e68611c75565b73ffffffffffffffffffffffffffffffffffffffff16610e866114fb565b73ffffffffffffffffffffffffffffffffffffffff1614610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390613766565b60405180910390fd5b6001601160016101000a81548160ff021916908315150217905550565b610f1483838360405180602001604052806000815250611738565b505050565b60606000610f26836112a7565b905060008167ffffffffffffffff811115610f4457610f43613cf7565b5b604051908082528060200260200182016040528015610f725781602001602082028036833780820191505090505b50905060005b82811015610fbc57610f8a8582610bd9565b828281518110610f9d57610f9c613cc8565b5b6020026020010181815250508080610fb490613b92565b915050610f78565b508092505050919050565b610fcf611c75565b73ffffffffffffffffffffffffffffffffffffffff16610fed6114fb565b73ffffffffffffffffffffffffffffffffffffffff1614611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90613766565b60405180910390fd5b80600e8190555050565b6000611057610b66565b8210611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90613806565b60405180910390fd5b600882815481106110ac576110ab613cc8565b5b90600052602060002001549050919050565b6110c6611c75565b73ffffffffffffffffffffffffffffffffffffffff166110e46114fb565b73ffffffffffffffffffffffffffffffffffffffff161461113a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113190613766565b60405180910390fd5b80600b9080519060200190611150929190612bc1565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790613706565b60405180910390fd5b80915050919050565b600b805461122690613b2f565b80601f016020809104026020016040519081016040528092919081815260200182805461125290613b2f565b801561129f5780601f106112745761010080835404028352916020019161129f565b820191906000526020600020905b81548152906001019060200180831161128257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f906136e6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611367611c75565b73ffffffffffffffffffffffffffffffffffffffff166113856114fb565b73ffffffffffffffffffffffffffffffffffffffff16146113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290613766565b60405180910390fd5b6113e560006120fa565b565b600c80546113f490613b2f565b80601f016020809104026020016040519081016040528092919081815260200182805461142090613b2f565b801561146d5780601f106114425761010080835404028352916020019161146d565b820191906000526020600020905b81548152906001019060200180831161145057829003601f168201915b505050505081565b61147d611c75565b73ffffffffffffffffffffffffffffffffffffffff1661149b6114fb565b73ffffffffffffffffffffffffffffffffffffffff16146114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e890613766565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461153490613b2f565b80601f016020809104026020016040519081016040528092919081815260200182805461156090613b2f565b80156115ad5780601f10611582576101008083540402835291602001916115ad565b820191906000526020600020905b81548152906001019060200180831161159057829003601f168201915b5050505050905090565b6115bf611c75565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490613686565b60405180910390fd5b806005600061163a611c75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116e7611c75565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161172c91906135a9565b60405180910390a35050565b611749611743611c75565b83611da2565b611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f906137e6565b60405180910390fd5b611794848484846121c0565b50505050565b600d80546117a790613b2f565b80601f01602080910402602001604051908101604052809291908181526020018280546117d390613b2f565b80156118205780601f106117f557610100808354040283529160200191611820565b820191906000526020600020905b81548152906001019060200180831161180357829003601f168201915b505050505081565b606061183382611c7d565b611872576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611869906137a6565b60405180910390fd5b60011515601160019054906101000a900460ff1615151461191d57600c805461189a90613b2f565b80601f01602080910402602001604051908101604052809291908181526020018280546118c690613b2f565b80156119135780601f106118e857610100808354040283529160200191611913565b820191906000526020600020905b8154815290600101906020018083116118f657829003601f168201915b505050505061194c565b600b6119288361221c565b600d60405160200161193c939291906134da565b6040516020818303038152906040525b9050919050565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119f5611c75565b73ffffffffffffffffffffffffffffffffffffffff16611a136114fb565b73ffffffffffffffffffffffffffffffffffffffff1614611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6090613766565b60405180910390fd5b80600c9080519060200190611a7f929190612bc1565b5050565b611a8b611c75565b73ffffffffffffffffffffffffffffffffffffffff16611aa96114fb565b73ffffffffffffffffffffffffffffffffffffffff1614611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690613766565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6690613626565b60405180910390fd5b611b78816120fa565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c5e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c6e5750611c6d8261237d565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d5c83611167565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dad82611c7d565b611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de3906136a6565b60405180910390fd5b6000611df783611167565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e6657508373ffffffffffffffffffffffffffffffffffffffff16611e4e846109c3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e775750611e768185611959565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ea082611167565b73ffffffffffffffffffffffffffffffffffffffff1614611ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eed90613786565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90613666565b60405180910390fd5b611f718383836123e7565b611f7c600082611ce9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fcc9190613a45565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120239190613964565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120f68282604051806020016040528060008152506124fb565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121cb848484611e80565b6121d784848484612556565b612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d90613606565b60405180910390fd5b50505050565b60606000821415612264576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612378565b600082905060005b6000821461229657808061227f90613b92565b915050600a8261228f91906139ba565b915061226c565b60008167ffffffffffffffff8111156122b2576122b1613cf7565b5b6040519080825280601f01601f1916602001820160405280156122e45781602001600182028036833780820191505090505b5090505b60008514612371576001826122fd9190613a45565b9150600a8561230c9190613bdb565b60306123189190613964565b60f81b81838151811061232e5761232d613cc8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561236a91906139ba565b94506122e8565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123f2838383611b8e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561243557612430816126ed565b612474565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612473576124728382612736565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124b7576124b2816128a3565b6124f6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124f5576124f48282612974565b5b5b505050565b61250583836129f3565b6125126000848484612556565b612551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254890613606565b60405180910390fd5b505050565b60006125778473ffffffffffffffffffffffffffffffffffffffff16611b7b565b156126e0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125a0611c75565b8786866040518563ffffffff1660e01b81526004016125c2949392919061353b565b602060405180830381600087803b1580156125dc57600080fd5b505af192505050801561260d57506040513d601f19601f8201168201806040525081019061260a9190612fca565b60015b612690573d806000811461263d576040519150601f19603f3d011682016040523d82523d6000602084013e612642565b606091505b50600081511415612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f90613606565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126e5565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612743846112a7565b61274d9190613a45565b9050600060076000848152602001908152602001600020549050818114612832576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128b79190613a45565b90506000600960008481526020019081526020016000205490506000600883815481106128e7576128e6613cc8565b5b90600052602060002001549050806008838154811061290957612908613cc8565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061295857612957613c99565b5b6001900381819060005260206000200160009055905550505050565b600061297f836112a7565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5a90613726565b60405180910390fd5b612a6c81611c7d565b15612aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa390613646565b60405180910390fd5b612ab8600083836123e7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b089190613964565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612bcd90613b2f565b90600052602060002090601f016020900481019282612bef5760008555612c36565b82601f10612c0857805160ff1916838001178555612c36565b82800160010185558215612c36579182015b82811115612c35578251825591602001919060010190612c1a565b5b509050612c439190612c47565b5090565b5b80821115612c60576000816000905550600101612c48565b5090565b6000612c77612c7284613866565b613841565b905082815260208101848484011115612c9357612c92613d2b565b5b612c9e848285613aed565b509392505050565b6000612cb9612cb484613897565b613841565b905082815260208101848484011115612cd557612cd4613d2b565b5b612ce0848285613aed565b509392505050565b600081359050612cf781614244565b92915050565b600081359050612d0c8161425b565b92915050565b600081359050612d2181614272565b92915050565b600081519050612d3681614272565b92915050565b600082601f830112612d5157612d50613d26565b5b8135612d61848260208601612c64565b91505092915050565b600082601f830112612d7f57612d7e613d26565b5b8135612d8f848260208601612ca6565b91505092915050565b600081359050612da781614289565b92915050565b600060208284031215612dc357612dc2613d35565b5b6000612dd184828501612ce8565b91505092915050565b60008060408385031215612df157612df0613d35565b5b6000612dff85828601612ce8565b9250506020612e1085828601612ce8565b9150509250929050565b600080600060608486031215612e3357612e32613d35565b5b6000612e4186828701612ce8565b9350506020612e5286828701612ce8565b9250506040612e6386828701612d98565b9150509250925092565b60008060008060808587031215612e8757612e86613d35565b5b6000612e9587828801612ce8565b9450506020612ea687828801612ce8565b9350506040612eb787828801612d98565b925050606085013567ffffffffffffffff811115612ed857612ed7613d30565b5b612ee487828801612d3c565b91505092959194509250565b60008060408385031215612f0757612f06613d35565b5b6000612f1585828601612ce8565b9250506020612f2685828601612cfd565b9150509250929050565b60008060408385031215612f4757612f46613d35565b5b6000612f5585828601612ce8565b9250506020612f6685828601612d98565b9150509250929050565b600060208284031215612f8657612f85613d35565b5b6000612f9484828501612cfd565b91505092915050565b600060208284031215612fb357612fb2613d35565b5b6000612fc184828501612d12565b91505092915050565b600060208284031215612fe057612fdf613d35565b5b6000612fee84828501612d27565b91505092915050565b60006020828403121561300d5761300c613d35565b5b600082013567ffffffffffffffff81111561302b5761302a613d30565b5b61303784828501612d6a565b91505092915050565b60006020828403121561305657613055613d35565b5b600061306484828501612d98565b91505092915050565b600061307983836134bc565b60208301905092915050565b61308e81613a79565b82525050565b600061309f826138ed565b6130a9818561391b565b93506130b4836138c8565b8060005b838110156130e55781516130cc888261306d565b97506130d78361390e565b9250506001810190506130b8565b5085935050505092915050565b6130fb81613a8b565b82525050565b600061310c826138f8565b613116818561392c565b9350613126818560208601613afc565b61312f81613d3a565b840191505092915050565b600061314582613903565b61314f8185613948565b935061315f818560208601613afc565b61316881613d3a565b840191505092915050565b600061317e82613903565b6131888185613959565b9350613198818560208601613afc565b80840191505092915050565b600081546131b181613b2f565b6131bb8186613959565b945060018216600081146131d657600181146131e75761321a565b60ff1983168652818601935061321a565b6131f0856138d8565b60005b83811015613212578154818901526001820191506020810190506131f3565b838801955050505b50505092915050565b6000613230602b83613948565b915061323b82613d4b565b604082019050919050565b6000613253603283613948565b915061325e82613d9a565b604082019050919050565b6000613276602683613948565b915061328182613de9565b604082019050919050565b6000613299601c83613948565b91506132a482613e38565b602082019050919050565b60006132bc602483613948565b91506132c782613e61565b604082019050919050565b60006132df601983613948565b91506132ea82613eb0565b602082019050919050565b6000613302602c83613948565b915061330d82613ed9565b604082019050919050565b6000613325603883613948565b915061333082613f28565b604082019050919050565b6000613348602a83613948565b915061335382613f77565b604082019050919050565b600061336b602983613948565b915061337682613fc6565b604082019050919050565b600061338e602083613948565b915061339982614015565b602082019050919050565b60006133b1602c83613948565b91506133bc8261403e565b604082019050919050565b60006133d4602083613948565b91506133df8261408d565b602082019050919050565b60006133f7602983613948565b9150613402826140b6565b604082019050919050565b600061341a602f83613948565b915061342582614105565b604082019050919050565b600061343d602183613948565b915061344882614154565b604082019050919050565b600061346060008361393d565b915061346b826141a3565b600082019050919050565b6000613483603183613948565b915061348e826141a6565b604082019050919050565b60006134a6602c83613948565b91506134b1826141f5565b604082019050919050565b6134c581613ae3565b82525050565b6134d481613ae3565b82525050565b60006134e682866131a4565b91506134f28285613173565b91506134fe82846131a4565b9150819050949350505050565b600061351682613453565b9150819050919050565b60006020820190506135356000830184613085565b92915050565b60006080820190506135506000830187613085565b61355d6020830186613085565b61356a60408301856134cb565b818103606083015261357c8184613101565b905095945050505050565b600060208201905081810360008301526135a18184613094565b905092915050565b60006020820190506135be60008301846130f2565b92915050565b600060208201905081810360008301526135de818461313a565b905092915050565b600060208201905081810360008301526135ff81613223565b9050919050565b6000602082019050818103600083015261361f81613246565b9050919050565b6000602082019050818103600083015261363f81613269565b9050919050565b6000602082019050818103600083015261365f8161328c565b9050919050565b6000602082019050818103600083015261367f816132af565b9050919050565b6000602082019050818103600083015261369f816132d2565b9050919050565b600060208201905081810360008301526136bf816132f5565b9050919050565b600060208201905081810360008301526136df81613318565b9050919050565b600060208201905081810360008301526136ff8161333b565b9050919050565b6000602082019050818103600083015261371f8161335e565b9050919050565b6000602082019050818103600083015261373f81613381565b9050919050565b6000602082019050818103600083015261375f816133a4565b9050919050565b6000602082019050818103600083015261377f816133c7565b9050919050565b6000602082019050818103600083015261379f816133ea565b9050919050565b600060208201905081810360008301526137bf8161340d565b9050919050565b600060208201905081810360008301526137df81613430565b9050919050565b600060208201905081810360008301526137ff81613476565b9050919050565b6000602082019050818103600083015261381f81613499565b9050919050565b600060208201905061383b60008301846134cb565b92915050565b600061384b61385c565b90506138578282613b61565b919050565b6000604051905090565b600067ffffffffffffffff82111561388157613880613cf7565b5b61388a82613d3a565b9050602081019050919050565b600067ffffffffffffffff8211156138b2576138b1613cf7565b5b6138bb82613d3a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061396f82613ae3565b915061397a83613ae3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139af576139ae613c0c565b5b828201905092915050565b60006139c582613ae3565b91506139d083613ae3565b9250826139e0576139df613c3b565b5b828204905092915050565b60006139f682613ae3565b9150613a0183613ae3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a3a57613a39613c0c565b5b828202905092915050565b6000613a5082613ae3565b9150613a5b83613ae3565b925082821015613a6e57613a6d613c0c565b5b828203905092915050565b6000613a8482613ac3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b1a578082015181840152602081019050613aff565b83811115613b29576000848401525b50505050565b60006002820490506001821680613b4757607f821691505b60208210811415613b5b57613b5a613c6a565b5b50919050565b613b6a82613d3a565b810181811067ffffffffffffffff82111715613b8957613b88613cf7565b5b80604052505050565b6000613b9d82613ae3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bd057613bcf613c0c565b5b600182019050919050565b6000613be682613ae3565b9150613bf183613ae3565b925082613c0157613c00613c3b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61424d81613a79565b811461425857600080fd5b50565b61426481613a8b565b811461426f57600080fd5b50565b61427b81613a97565b811461428657600080fd5b50565b61429281613ae3565b811461429d57600080fd5b5056fea2646970667358221220ba26ab0274b528d7c10ac9947dd209613177aa16ec7d990ab4f83b3429c3218664736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000f43727970746f48656172747a4e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000648454152545a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e57724e53315a445a35513251315a6f5072515176316e715756693836424e78526f7547734d63596747387a2f000000000000000000000000000000000000000000000000000000000000000000000000000000000046697066733a2f2f516d64516a4d35776931655132797743625a717a7177723244696f70764d4148397477796678437a5763546d716f2f6e6f7452657665616c65642e6a736f6e0000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): CryptoHeartzNFT
Arg [1] : _symbol (string): HEARTZ
Arg [2] : _initBaseURI (string): ipfs://QmNWrNS1ZDZ5Q2Q1ZoPrQQv1nqWVi86BNxRouGsMcYgG8z/
Arg [3] : _initNotRevealedURI (string): ipfs://QmdQjM5wi1eQ2ywCbZqzqwr2DiopvMAH9twyfxCzWcTmqo/notRevealed.json
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [5] : 43727970746f48656172747a4e46540000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 48454152545a0000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d4e57724e53315a445a35513251315a6f5072515176316e
Arg [10] : 715756693836424e78526f7547734d63596747387a2f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000046
Arg [12] : 697066733a2f2f516d64516a4d35776931655132797743625a717a7177723244
Arg [13] : 696f70764d4148397477796678437a5763546d716f2f6e6f7452657665616c65
Arg [14] : 642e6a736f6e0000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
45063:2836:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38553:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47617:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25723:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27416:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26939:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45262:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39356:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45339:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28475:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38937:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47704:192;;;:::i;:::-;;45780:533;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47043:78;;;;;;;;;;;;;:::i;:::-;;28922:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46321:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47147:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39546:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47505:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45379:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25330:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45155:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24973:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4573:94;;;;;;;;;;;;;:::i;:::-;;45183:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47241:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3922:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25892:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27796:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29178:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45218:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46689:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45301:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28194:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47371:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4822:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38553:300;38700:4;38757:35;38742:50;;;:11;:50;;;;:103;;;;38809:36;38833:11;38809:23;:36::i;:::-;38742:103;38722:123;;38553:300;;;:::o;47617:79::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47682:6:::1;47673;;:15;;;;;;;;;;;;;;;;;;47617:79:::0;:::o;25723:100::-;25777:13;25810:5;25803:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25723:100;:::o;27416:308::-;27537:7;27584:16;27592:7;27584;:16::i;:::-;27562:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;27692:15;:24;27708:7;27692:24;;;;;;;;;;;;;;;;;;;;;27685:31;;27416:308;;;:::o;26939:411::-;27020:13;27036:23;27051:7;27036:14;:23::i;:::-;27020:39;;27084:5;27078:11;;:2;:11;;;;27070:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27178:5;27162:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27187:37;27204:5;27211:12;:10;:12::i;:::-;27187:16;:37::i;:::-;27162:62;27140:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27321:21;27330:2;27334:7;27321:8;:21::i;:::-;27009:341;26939:411;;:::o;45262:32::-;;;;:::o;39356:113::-;39417:7;39444:10;:17;;;;39437:24;;39356:113;:::o;45339:33::-;;;;:::o;28475:376::-;28684:41;28703:12;:10;:12::i;:::-;28717:7;28684:18;:41::i;:::-;28662:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;28815:28;28825:4;28831:2;28835:7;28815:9;:28::i;:::-;28475:376;;;:::o;38937:343::-;39079:7;39134:23;39151:5;39134:16;:23::i;:::-;39126:5;:31;39104:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;39246:12;:19;39259:5;39246:19;;;;;;;;;;;;;;;:26;39266:5;39246:26;;;;;;;;;;;;39239:33;;38937:343;;;;:::o;47704:192::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47761:12:::1;47787:10;47779:24;;47825:21;47779:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47760:101;;;47880:7;47872:16;;;::::0;::::1;;47749:147;47704:192::o:0;45780:533::-;45854:14;45871:13;:11;:13::i;:::-;45854:30;;45904:6;;;;;;;;;;;45903:7;45895:16;;;;;;45944:1;45930:11;:15;45922:24;;;;;;45980:13;;45965:11;:28;;45957:37;;;;;;46037:9;;46022:11;46013:6;:20;;;;:::i;:::-;:33;;46005:42;;;;;;46078:7;:5;:7::i;:::-;46064:21;;:10;:21;;;46060:138;;46168:11;46161:4;;:18;;;;:::i;:::-;46148:9;:31;;46140:40;;;;;;46060:138;46215:9;46227:1;46215:13;;46210:96;46235:11;46230:1;:16;46210:96;;46268:26;46278:3;46292:1;46283:6;:10;;;;:::i;:::-;46268:9;:26::i;:::-;46248:3;;;;;:::i;:::-;;;;46210:96;;;;45843:470;45780:533;;:::o;47043:78::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47109:4:::1;47098:8;;:15;;;;;;;;;;;;;;;;;;47043:78::o:0;28922:185::-;29060:39;29077:4;29083:2;29087:7;29060:39;;;;;;;;;;;;:16;:39::i;:::-;28922:185;;;:::o;46321:360::-;46381:16;46410:23;46436:17;46446:6;46436:9;:17::i;:::-;46410:43;;46464:25;46506:15;46492:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46464:58;;46540:9;46535:113;46555:15;46551:1;:19;46535:113;;;46606:30;46626:6;46634:1;46606:19;:30::i;:::-;46592:8;46601:1;46592:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;46572:3;;;;;:::i;:::-;;;;46535:113;;;;46665:8;46658:15;;;;46321:360;;;:::o;47147:86::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47217:8:::1;47210:4;:15;;;;47147:86:::0;:::o;39546:320::-;39666:7;39721:30;:28;:30::i;:::-;39713:5;:38;39691:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;39841:10;39852:5;39841:17;;;;;;;;:::i;:::-;;;;;;;;;;39834:24;;39546:320;;;:::o;47505:104::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47590:11:::1;47580:7;:21;;;;;;;;;;;;:::i;:::-;;47505:104:::0;:::o;45379:26::-;;;;;;;;;;;;;:::o;25330:326::-;25447:7;25472:13;25488:7;:16;25496:7;25488:16;;;;;;;;;;;;;;;;;;;;;25472:32;;25554:1;25537:19;;:5;:19;;;;25515:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;25643:5;25636:12;;;25330:326;;;:::o;45155:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24973:295::-;25090:7;25154:1;25137:19;;:5;:19;;;;25115:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25244:9;:16;25254:5;25244:16;;;;;;;;;;;;;;;;25237:23;;24973:295;;;:::o;4573:94::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4638:21:::1;4656:1;4638:9;:21::i;:::-;4573:94::o:0;45183:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47241:122::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47338:17:::1;47322:13;:33;;;;47241:122:::0;:::o;3922:87::-;3968:7;3995:6;;;;;;;;;;;3988:13;;3922:87;:::o;25892:104::-;25948:13;25981:7;25974:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25892:104;:::o;27796:327::-;27943:12;:10;:12::i;:::-;27931:24;;:8;:24;;;;27923:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;28043:8;27998:18;:32;28017:12;:10;:12::i;:::-;27998:32;;;;;;;;;;;;;;;:42;28031:8;27998:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28096:8;28067:48;;28082:12;:10;:12::i;:::-;28067:48;;;28106:8;28067:48;;;;;;:::i;:::-;;;;;;;;27796:327;;:::o;29178:365::-;29367:41;29386:12;:10;:12::i;:::-;29400:7;29367:18;:41::i;:::-;29345:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;29496:39;29510:4;29516:2;29520:7;29529:5;29496:13;:39::i;:::-;29178:365;;;;:::o;45218:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46689:319::-;46762:13;46796:16;46804:7;46796;:16::i;:::-;46788:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;46894:4;46882:16;;:8;;;;;;;;;;;:16;;;:118;;46986:14;46882:118;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46939:7;46948:18;:7;:16;:18::i;:::-;46968:13;46922:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46882:118;46875:125;;46689:319;;;:::o;45301:31::-;;;;:::o;28194:214::-;28336:4;28365:18;:25;28384:5;28365:25;;;;;;;;;;;;;;;:35;28391:8;28365:35;;;;;;;;;;;;;;;;;;;;;;;;;28358:42;;28194:214;;;;:::o;47371:126::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47474:15:::1;47457:14;:32;;;;;;;;;;;;:::i;:::-;;47371:126:::0;:::o;4822:229::-;4153:12;:10;:12::i;:::-;4142:23;;:7;:5;:7::i;:::-;:23;;;4134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4945:1:::1;4925:22;;:8;:22;;;;4903:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;5024:19;5034:8;5024:9;:19::i;:::-;4822:229:::0;:::o;5991:387::-;6051:4;6259:12;6326:7;6314:20;6306:28;;6369:1;6362:4;:8;6355:15;;;5991:387;;;:::o;37504:126::-;;;;:::o;24554:355::-;24701:4;24758:25;24743:40;;;:11;:40;;;;:105;;;;24815:33;24800:48;;;:11;:48;;;;24743:105;:158;;;;24865:36;24889:11;24865:23;:36::i;:::-;24743:158;24723:178;;24554:355;;;:::o;2699:98::-;2752:7;2779:10;2772:17;;2699:98;:::o;31090:127::-;31155:4;31207:1;31179:30;;:7;:16;31187:7;31179:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31172:37;;31090:127;;;:::o;35213:174::-;35315:2;35288:15;:24;35304:7;35288:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35371:7;35367:2;35333:46;;35342:23;35357:7;35342:14;:23::i;:::-;35333:46;;;;;;;;;;;;35213:174;;:::o;31384:452::-;31513:4;31557:16;31565:7;31557;:16::i;:::-;31535:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31656:13;31672:23;31687:7;31672:14;:23::i;:::-;31656:39;;31725:5;31714:16;;:7;:16;;;:64;;;;31771:7;31747:31;;:20;31759:7;31747:11;:20::i;:::-;:31;;;31714:64;:113;;;;31795:32;31812:5;31819:7;31795:16;:32::i;:::-;31714:113;31706:122;;;31384:452;;;;:::o;34480:615::-;34653:4;34626:31;;:23;34641:7;34626:14;:23::i;:::-;:31;;;34604:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;34759:1;34745:16;;:2;:16;;;;34737:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34815:39;34836:4;34842:2;34846:7;34815:20;:39::i;:::-;34919:29;34936:1;34940:7;34919:8;:29::i;:::-;34980:1;34961:9;:15;34971:4;34961:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35009:1;34992:9;:13;35002:2;34992:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35040:2;35021:7;:16;35029:7;35021:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35079:7;35075:2;35060:27;;35069:4;35060:27;;;;;;;;;;;;34480:615;;;:::o;32178:110::-;32254:26;32264:2;32268:7;32254:26;;;;;;;;;;;;:9;:26::i;:::-;32178:110;;:::o;5059:173::-;5115:16;5134:6;;;;;;;;;;;5115:25;;5160:8;5151:6;;:17;;;;;;;;;;;;;;;;;;5215:8;5184:40;;5205:8;5184:40;;;;;;;;;;;;5104:128;5059:173;:::o;30425:352::-;30582:28;30592:4;30598:2;30602:7;30582:9;:28::i;:::-;30643:48;30666:4;30672:2;30676:7;30685:5;30643:22;:48::i;:::-;30621:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;30425:352;;;;:::o;297:723::-;353:13;583:1;574:5;:10;570:53;;;601:10;;;;;;;;;;;;;;;;;;;;;570:53;633:12;648:5;633:20;;664:14;689:78;704:1;696:4;:9;689:78;;722:8;;;;;:::i;:::-;;;;753:2;745:10;;;;;:::i;:::-;;;689:78;;;777:19;809:6;799:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;777:39;;827:154;843:1;834:5;:10;827:154;;871:1;861:11;;;;;:::i;:::-;;;938:2;930:5;:10;;;;:::i;:::-;917:2;:24;;;;:::i;:::-;904:39;;887:6;894;887:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;967:2;958:11;;;;;:::i;:::-;;;827:154;;;1005:6;991:21;;;;;297:723;;;;:::o;16356:207::-;16486:4;16530:25;16515:40;;;:11;:40;;;;16508:47;;16356:207;;;:::o;40479:589::-;40623:45;40650:4;40656:2;40660:7;40623:26;:45::i;:::-;40701:1;40685:18;;:4;:18;;;40681:187;;;40720:40;40752:7;40720:31;:40::i;:::-;40681:187;;;40790:2;40782:10;;:4;:10;;;40778:90;;40809:47;40842:4;40848:7;40809:32;:47::i;:::-;40778:90;40681:187;40896:1;40882:16;;:2;:16;;;40878:183;;;40915:45;40952:7;40915:36;:45::i;:::-;40878:183;;;40988:4;40982:10;;:2;:10;;;40978:83;;41009:40;41037:2;41041:7;41009:27;:40::i;:::-;40978:83;40878:183;40479:589;;;:::o;32515:321::-;32645:18;32651:2;32655:7;32645:5;:18::i;:::-;32696:54;32727:1;32731:2;32735:7;32744:5;32696:22;:54::i;:::-;32674:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32515:321;;;:::o;35952:980::-;36107:4;36128:15;:2;:13;;;:15::i;:::-;36124:801;;;36197:2;36181:36;;;36240:12;:10;:12::i;:::-;36275:4;36302:7;36332:5;36181:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36160:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36556:1;36539:6;:13;:18;36535:320;;;36582:108;;;;;;;;;;:::i;:::-;;;;;;;;36535:320;36805:6;36799:13;36790:6;36786:2;36782:15;36775:38;36160:710;36430:41;;;36420:51;;;:6;:51;;;;36413:58;;;;;36124:801;36909:4;36902:11;;35952:980;;;;;;;:::o;41791:164::-;41895:10;:17;;;;41868:15;:24;41884:7;41868:24;;;;;;;;;;;:44;;;;41923:10;41939:7;41923:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41791:164;:::o;42582:1002::-;42862:22;42912:1;42887:22;42904:4;42887:16;:22::i;:::-;:26;;;;:::i;:::-;42862:51;;42924:18;42945:17;:26;42963:7;42945:26;;;;;;;;;;;;42924:47;;43092:14;43078:10;:28;43074:328;;43123:19;43145:12;:18;43158:4;43145:18;;;;;;;;;;;;;;;:34;43164:14;43145:34;;;;;;;;;;;;43123:56;;43229:11;43196:12;:18;43209:4;43196:18;;;;;;;;;;;;;;;:30;43215:10;43196:30;;;;;;;;;;;:44;;;;43346:10;43313:17;:30;43331:11;43313:30;;;;;;;;;;;:43;;;;43108:294;43074:328;43498:17;:26;43516:7;43498:26;;;;;;;;;;;43491:33;;;43542:12;:18;43555:4;43542:18;;;;;;;;;;;;;;;:34;43561:14;43542:34;;;;;;;;;;;43535:41;;;42677:907;;42582:1002;;:::o;43879:1079::-;44132:22;44177:1;44157:10;:17;;;;:21;;;;:::i;:::-;44132:46;;44189:18;44210:15;:24;44226:7;44210:24;;;;;;;;;;;;44189:45;;44561:19;44583:10;44594:14;44583:26;;;;;;;;:::i;:::-;;;;;;;;;;44561:48;;44647:11;44622:10;44633;44622:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;44758:10;44727:15;:28;44743:11;44727:28;;;;;;;;;;;:41;;;;44899:15;:24;44915:7;44899:24;;;;;;;;;;;44892:31;;;44934:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43950:1008;;;43879:1079;:::o;41369:221::-;41454:14;41471:20;41488:2;41471:16;:20::i;:::-;41454:37;;41529:7;41502:12;:16;41515:2;41502:16;;;;;;;;;;;;;;;:24;41519:6;41502:24;;;;;;;;;;;:34;;;;41576:6;41547:17;:26;41565:7;41547:26;;;;;;;;;;;:35;;;;41443:147;41369:221;;:::o;33172:382::-;33266:1;33252:16;;:2;:16;;;;33244:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33325:16;33333:7;33325;:16::i;:::-;33324:17;33316:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33387:45;33416:1;33420:2;33424:7;33387:20;:45::i;:::-;33462:1;33445:9;:13;33455:2;33445:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33493:2;33474:7;:16;33482:7;33474:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33538:7;33534:2;33513:33;;33530:1;33513:33;;;;;;;;;;;;33172:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:398::-;16784:3;16805:83;16886:1;16881:3;16805:83;:::i;:::-;16798:90;;16897:93;16986:3;16897:93;:::i;:::-;17015:1;17010:3;17006:11;16999:18;;16625:398;;;:::o;17029:366::-;17171:3;17192:67;17256:2;17251:3;17192:67;:::i;:::-;17185:74;;17268:93;17357:3;17268:93;:::i;:::-;17386:2;17381:3;17377:12;17370:19;;17029:366;;;:::o;17401:::-;17543:3;17564:67;17628:2;17623:3;17564:67;:::i;:::-;17557:74;;17640:93;17729:3;17640:93;:::i;:::-;17758:2;17753:3;17749:12;17742:19;;17401:366;;;:::o;17773:108::-;17850:24;17868:5;17850:24;:::i;:::-;17845:3;17838:37;17773:108;;:::o;17887:118::-;17974:24;17992:5;17974:24;:::i;:::-;17969:3;17962:37;17887:118;;:::o;18011:583::-;18233:3;18255:92;18343:3;18334:6;18255:92;:::i;:::-;18248:99;;18364:95;18455:3;18446:6;18364:95;:::i;:::-;18357:102;;18476:92;18564:3;18555:6;18476:92;:::i;:::-;18469:99;;18585:3;18578:10;;18011:583;;;;;;:::o;18600:379::-;18784:3;18806:147;18949:3;18806:147;:::i;:::-;18799:154;;18970:3;18963:10;;18600:379;;;:::o;18985:222::-;19078:4;19116:2;19105:9;19101:18;19093:26;;19129:71;19197:1;19186:9;19182:17;19173:6;19129:71;:::i;:::-;18985:222;;;;:::o;19213:640::-;19408:4;19446:3;19435:9;19431:19;19423:27;;19460:71;19528:1;19517:9;19513:17;19504:6;19460:71;:::i;:::-;19541:72;19609:2;19598:9;19594:18;19585:6;19541:72;:::i;:::-;19623;19691:2;19680:9;19676:18;19667:6;19623:72;:::i;:::-;19742:9;19736:4;19732:20;19727:2;19716:9;19712:18;19705:48;19770:76;19841:4;19832:6;19770:76;:::i;:::-;19762:84;;19213:640;;;;;;;:::o;19859:373::-;20002:4;20040:2;20029:9;20025:18;20017:26;;20089:9;20083:4;20079:20;20075:1;20064:9;20060:17;20053:47;20117:108;20220:4;20211:6;20117:108;:::i;:::-;20109:116;;19859:373;;;;:::o;20238:210::-;20325:4;20363:2;20352:9;20348:18;20340:26;;20376:65;20438:1;20427:9;20423:17;20414:6;20376:65;:::i;:::-;20238:210;;;;:::o;20454:313::-;20567:4;20605:2;20594:9;20590:18;20582:26;;20654:9;20648:4;20644:20;20640:1;20629:9;20625:17;20618:47;20682:78;20755:4;20746:6;20682:78;:::i;:::-;20674:86;;20454:313;;;;:::o;20773:419::-;20939:4;20977:2;20966:9;20962:18;20954:26;;21026:9;21020:4;21016:20;21012:1;21001:9;20997:17;20990:47;21054:131;21180:4;21054:131;:::i;:::-;21046:139;;20773:419;;;:::o;21198:::-;21364:4;21402:2;21391:9;21387:18;21379:26;;21451:9;21445:4;21441:20;21437:1;21426:9;21422:17;21415:47;21479:131;21605:4;21479:131;:::i;:::-;21471:139;;21198:419;;;:::o;21623:::-;21789:4;21827:2;21816:9;21812:18;21804:26;;21876:9;21870:4;21866:20;21862:1;21851:9;21847:17;21840:47;21904:131;22030:4;21904:131;:::i;:::-;21896:139;;21623:419;;;:::o;22048:::-;22214:4;22252:2;22241:9;22237:18;22229:26;;22301:9;22295:4;22291:20;22287:1;22276:9;22272:17;22265:47;22329:131;22455:4;22329:131;:::i;:::-;22321:139;;22048:419;;;:::o;22473:::-;22639:4;22677:2;22666:9;22662:18;22654:26;;22726:9;22720:4;22716:20;22712:1;22701:9;22697:17;22690:47;22754:131;22880:4;22754:131;:::i;:::-;22746:139;;22473:419;;;:::o;22898:::-;23064:4;23102:2;23091:9;23087:18;23079:26;;23151:9;23145:4;23141:20;23137:1;23126:9;23122:17;23115:47;23179:131;23305:4;23179:131;:::i;:::-;23171:139;;22898:419;;;:::o;23323:::-;23489:4;23527:2;23516:9;23512:18;23504:26;;23576:9;23570:4;23566:20;23562:1;23551:9;23547:17;23540:47;23604:131;23730:4;23604:131;:::i;:::-;23596:139;;23323:419;;;:::o;23748:::-;23914:4;23952:2;23941:9;23937:18;23929:26;;24001:9;23995:4;23991:20;23987:1;23976:9;23972:17;23965:47;24029:131;24155:4;24029:131;:::i;:::-;24021:139;;23748:419;;;:::o;24173:::-;24339:4;24377:2;24366:9;24362:18;24354:26;;24426:9;24420:4;24416:20;24412:1;24401:9;24397:17;24390:47;24454:131;24580:4;24454:131;:::i;:::-;24446:139;;24173:419;;;:::o;24598:::-;24764:4;24802:2;24791:9;24787:18;24779:26;;24851:9;24845:4;24841:20;24837:1;24826:9;24822:17;24815:47;24879:131;25005:4;24879:131;:::i;:::-;24871:139;;24598:419;;;:::o;25023:::-;25189:4;25227:2;25216:9;25212:18;25204:26;;25276:9;25270:4;25266:20;25262:1;25251:9;25247:17;25240:47;25304:131;25430:4;25304:131;:::i;:::-;25296:139;;25023:419;;;:::o;25448:::-;25614:4;25652:2;25641:9;25637:18;25629:26;;25701:9;25695:4;25691:20;25687:1;25676:9;25672:17;25665:47;25729:131;25855:4;25729:131;:::i;:::-;25721:139;;25448:419;;;:::o;25873:::-;26039:4;26077:2;26066:9;26062:18;26054:26;;26126:9;26120:4;26116:20;26112:1;26101:9;26097:17;26090:47;26154:131;26280:4;26154:131;:::i;:::-;26146:139;;25873:419;;;:::o;26298:::-;26464:4;26502:2;26491:9;26487:18;26479:26;;26551:9;26545:4;26541:20;26537:1;26526:9;26522:17;26515:47;26579:131;26705:4;26579:131;:::i;:::-;26571:139;;26298:419;;;:::o;26723:::-;26889:4;26927:2;26916:9;26912:18;26904:26;;26976:9;26970:4;26966:20;26962:1;26951:9;26947:17;26940:47;27004:131;27130:4;27004:131;:::i;:::-;26996:139;;26723:419;;;:::o;27148:::-;27314:4;27352:2;27341:9;27337:18;27329:26;;27401:9;27395:4;27391:20;27387:1;27376:9;27372:17;27365:47;27429:131;27555:4;27429:131;:::i;:::-;27421:139;;27148:419;;;:::o;27573:::-;27739:4;27777:2;27766:9;27762:18;27754:26;;27826:9;27820:4;27816:20;27812:1;27801:9;27797:17;27790:47;27854:131;27980:4;27854:131;:::i;:::-;27846:139;;27573:419;;;:::o;27998:::-;28164:4;28202:2;28191:9;28187:18;28179:26;;28251:9;28245:4;28241:20;28237:1;28226:9;28222:17;28215:47;28279:131;28405:4;28279:131;:::i;:::-;28271:139;;27998:419;;;:::o;28423:222::-;28516:4;28554:2;28543:9;28539:18;28531:26;;28567:71;28635:1;28624:9;28620:17;28611:6;28567:71;:::i;:::-;28423:222;;;;:::o;28651:129::-;28685:6;28712:20;;:::i;:::-;28702:30;;28741:33;28769:4;28761:6;28741:33;:::i;:::-;28651:129;;;:::o;28786:75::-;28819:6;28852:2;28846:9;28836:19;;28786:75;:::o;28867:307::-;28928:4;29018:18;29010:6;29007:30;29004:56;;;29040:18;;:::i;:::-;29004:56;29078:29;29100:6;29078:29;:::i;:::-;29070:37;;29162:4;29156;29152:15;29144:23;;28867:307;;;:::o;29180:308::-;29242:4;29332:18;29324:6;29321:30;29318:56;;;29354:18;;:::i;:::-;29318:56;29392:29;29414:6;29392:29;:::i;:::-;29384:37;;29476:4;29470;29466:15;29458:23;;29180:308;;;:::o;29494:132::-;29561:4;29584:3;29576:11;;29614:4;29609:3;29605:14;29597:22;;29494:132;;;:::o;29632:141::-;29681:4;29704:3;29696:11;;29727:3;29724:1;29717:14;29761:4;29758:1;29748:18;29740:26;;29632:141;;;:::o;29779:114::-;29846:6;29880:5;29874:12;29864:22;;29779:114;;;:::o;29899:98::-;29950:6;29984:5;29978:12;29968:22;;29899:98;;;:::o;30003:99::-;30055:6;30089:5;30083:12;30073:22;;30003:99;;;:::o;30108:113::-;30178:4;30210;30205:3;30201:14;30193:22;;30108:113;;;:::o;30227:184::-;30326:11;30360:6;30355:3;30348:19;30400:4;30395:3;30391:14;30376:29;;30227:184;;;;:::o;30417:168::-;30500:11;30534:6;30529:3;30522:19;30574:4;30569:3;30565:14;30550:29;;30417:168;;;;:::o;30591:147::-;30692:11;30729:3;30714:18;;30591:147;;;;:::o;30744:169::-;30828:11;30862:6;30857:3;30850:19;30902:4;30897:3;30893:14;30878:29;;30744:169;;;;:::o;30919:148::-;31021:11;31058:3;31043:18;;30919:148;;;;:::o;31073:305::-;31113:3;31132:20;31150:1;31132:20;:::i;:::-;31127:25;;31166:20;31184:1;31166:20;:::i;:::-;31161:25;;31320:1;31252:66;31248:74;31245:1;31242:81;31239:107;;;31326:18;;:::i;:::-;31239:107;31370:1;31367;31363:9;31356:16;;31073:305;;;;:::o;31384:185::-;31424:1;31441:20;31459:1;31441:20;:::i;:::-;31436:25;;31475:20;31493:1;31475:20;:::i;:::-;31470:25;;31514:1;31504:35;;31519:18;;:::i;:::-;31504:35;31561:1;31558;31554:9;31549:14;;31384:185;;;;:::o;31575:348::-;31615:7;31638:20;31656:1;31638:20;:::i;:::-;31633:25;;31672:20;31690:1;31672:20;:::i;:::-;31667:25;;31860:1;31792:66;31788:74;31785:1;31782:81;31777:1;31770:9;31763:17;31759:105;31756:131;;;31867:18;;:::i;:::-;31756:131;31915:1;31912;31908:9;31897:20;;31575:348;;;;:::o;31929:191::-;31969:4;31989:20;32007:1;31989:20;:::i;:::-;31984:25;;32023:20;32041:1;32023:20;:::i;:::-;32018:25;;32062:1;32059;32056:8;32053:34;;;32067:18;;:::i;:::-;32053:34;32112:1;32109;32105:9;32097:17;;31929:191;;;;:::o;32126:96::-;32163:7;32192:24;32210:5;32192:24;:::i;:::-;32181:35;;32126:96;;;:::o;32228:90::-;32262:7;32305:5;32298:13;32291:21;32280:32;;32228:90;;;:::o;32324:149::-;32360:7;32400:66;32393:5;32389:78;32378:89;;32324:149;;;:::o;32479:126::-;32516:7;32556:42;32549:5;32545:54;32534:65;;32479:126;;;:::o;32611:77::-;32648:7;32677:5;32666:16;;32611:77;;;:::o;32694:154::-;32778:6;32773:3;32768;32755:30;32840:1;32831:6;32826:3;32822:16;32815:27;32694:154;;;:::o;32854:307::-;32922:1;32932:113;32946:6;32943:1;32940:13;32932:113;;;33031:1;33026:3;33022:11;33016:18;33012:1;33007:3;33003:11;32996:39;32968:2;32965:1;32961:10;32956:15;;32932:113;;;33063:6;33060:1;33057:13;33054:101;;;33143:1;33134:6;33129:3;33125:16;33118:27;33054:101;32903:258;32854:307;;;:::o;33167:320::-;33211:6;33248:1;33242:4;33238:12;33228:22;;33295:1;33289:4;33285:12;33316:18;33306:81;;33372:4;33364:6;33360:17;33350:27;;33306:81;33434:2;33426:6;33423:14;33403:18;33400:38;33397:84;;;33453:18;;:::i;:::-;33397:84;33218:269;33167:320;;;:::o;33493:281::-;33576:27;33598:4;33576:27;:::i;:::-;33568:6;33564:40;33706:6;33694:10;33691:22;33670:18;33658:10;33655:34;33652:62;33649:88;;;33717:18;;:::i;:::-;33649:88;33757:10;33753:2;33746:22;33536:238;33493:281;;:::o;33780:233::-;33819:3;33842:24;33860:5;33842:24;:::i;:::-;33833:33;;33888:66;33881:5;33878:77;33875:103;;;33958:18;;:::i;:::-;33875:103;34005:1;33998:5;33994:13;33987:20;;33780:233;;;:::o;34019:176::-;34051:1;34068:20;34086:1;34068:20;:::i;:::-;34063:25;;34102:20;34120:1;34102:20;:::i;:::-;34097:25;;34141:1;34131:35;;34146:18;;:::i;:::-;34131:35;34187:1;34184;34180:9;34175:14;;34019:176;;;;:::o;34201:180::-;34249:77;34246:1;34239:88;34346:4;34343:1;34336:15;34370:4;34367:1;34360:15;34387:180;34435:77;34432:1;34425:88;34532:4;34529:1;34522:15;34556:4;34553:1;34546:15;34573:180;34621:77;34618:1;34611:88;34718:4;34715:1;34708:15;34742:4;34739:1;34732:15;34759:180;34807:77;34804:1;34797:88;34904:4;34901:1;34894:15;34928:4;34925:1;34918:15;34945:180;34993:77;34990:1;34983:88;35090:4;35087:1;35080:15;35114:4;35111:1;35104:15;35131:180;35179:77;35176:1;35169:88;35276:4;35273:1;35266:15;35300:4;35297:1;35290:15;35317:117;35426:1;35423;35416:12;35440:117;35549:1;35546;35539:12;35563:117;35672:1;35669;35662:12;35686:117;35795:1;35792;35785:12;35809:102;35850:6;35901:2;35897:7;35892:2;35885:5;35881:14;35877:28;35867:38;;35809:102;;;:::o;35917:230::-;36057:34;36053:1;36045:6;36041:14;36034:58;36126:13;36121:2;36113:6;36109:15;36102:38;35917:230;:::o;36153:237::-;36293:34;36289:1;36281:6;36277:14;36270:58;36362:20;36357:2;36349:6;36345:15;36338:45;36153:237;:::o;36396:225::-;36536:34;36532:1;36524:6;36520:14;36513:58;36605:8;36600:2;36592:6;36588:15;36581:33;36396:225;:::o;36627:178::-;36767:30;36763:1;36755:6;36751:14;36744:54;36627:178;:::o;36811:223::-;36951:34;36947:1;36939:6;36935:14;36928:58;37020:6;37015:2;37007:6;37003:15;36996:31;36811:223;:::o;37040:175::-;37180:27;37176:1;37168:6;37164:14;37157:51;37040:175;:::o;37221:231::-;37361:34;37357:1;37349:6;37345:14;37338:58;37430:14;37425:2;37417:6;37413:15;37406:39;37221:231;:::o;37458:243::-;37598:34;37594:1;37586:6;37582:14;37575:58;37667:26;37662:2;37654:6;37650:15;37643:51;37458:243;:::o;37707:229::-;37847:34;37843:1;37835:6;37831:14;37824:58;37916:12;37911:2;37903:6;37899:15;37892:37;37707:229;:::o;37942:228::-;38082:34;38078:1;38070:6;38066:14;38059:58;38151:11;38146:2;38138:6;38134:15;38127:36;37942:228;:::o;38176:182::-;38316:34;38312:1;38304:6;38300:14;38293:58;38176:182;:::o;38364:231::-;38504:34;38500:1;38492:6;38488:14;38481:58;38573:14;38568:2;38560:6;38556:15;38549:39;38364:231;:::o;38601:182::-;38741:34;38737:1;38729:6;38725:14;38718:58;38601:182;:::o;38789:228::-;38929:34;38925:1;38917:6;38913:14;38906:58;38998:11;38993:2;38985:6;38981:15;38974:36;38789:228;:::o;39023:234::-;39163:34;39159:1;39151:6;39147:14;39140:58;39232:17;39227:2;39219:6;39215:15;39208:42;39023:234;:::o;39263:220::-;39403:34;39399:1;39391:6;39387:14;39380:58;39472:3;39467:2;39459:6;39455:15;39448:28;39263:220;:::o;39489:114::-;;:::o;39609:236::-;39749:34;39745:1;39737:6;39733:14;39726:58;39818:19;39813:2;39805:6;39801:15;39794:44;39609:236;:::o;39851:231::-;39991:34;39987:1;39979:6;39975:14;39968:58;40060:14;40055:2;40047:6;40043:15;40036:39;39851:231;:::o;40088:122::-;40161:24;40179:5;40161:24;:::i;:::-;40154:5;40151:35;40141:63;;40200:1;40197;40190:12;40141:63;40088:122;:::o;40216:116::-;40286:21;40301:5;40286:21;:::i;:::-;40279:5;40276:32;40266:60;;40322:1;40319;40312:12;40266:60;40216:116;:::o;40338:120::-;40410:23;40427:5;40410:23;:::i;:::-;40403:5;40400:34;40390:62;;40448:1;40445;40438:12;40390:62;40338:120;:::o;40464:122::-;40537:24;40555:5;40537:24;:::i;:::-;40530:5;40527:35;40517:63;;40576:1;40573;40566:12;40517:63;40464:122;:::o
Swarm Source
ipfs://ba26ab0274b528d7c10ac9947dd209613177aa16ec7d990ab4f83b3429c32186
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,295.76 | 0.00001 | $0.032958 |
Loading...
Loading
[ 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.