Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 77 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 14697236 | 916 days ago | IN | 0 ETH | 0.00308292 | ||||
Set Approval For... | 14643717 | 925 days ago | IN | 0 ETH | 0.00061665 | ||||
Withdraw | 14604007 | 931 days ago | IN | 0 ETH | 0.00168993 | ||||
Set Approval For... | 14603796 | 931 days ago | IN | 0 ETH | 0.00184697 | ||||
Set Approval For... | 14603786 | 931 days ago | IN | 0 ETH | 0.00135325 | ||||
Summon Friends | 14603784 | 931 days ago | IN | 0.009 ETH | 0.00145148 | ||||
Summon Friends | 14603777 | 931 days ago | IN | 0.09 ETH | 0.00975642 | ||||
Summon Friends | 14603774 | 931 days ago | IN | 0.009 ETH | 0.00186629 | ||||
Set Approval For... | 14603774 | 931 days ago | IN | 0 ETH | 0.00155911 | ||||
Summon Friends | 14603761 | 931 days ago | IN | 0.018 ETH | 0.00282966 | ||||
Summon Friends | 14603761 | 931 days ago | IN | 0.018 ETH | 0.00282966 | ||||
Set Approval For... | 14603756 | 931 days ago | IN | 0 ETH | 0.00162819 | ||||
Summon Friends | 14603754 | 931 days ago | IN | 0.009 ETH | 0.00183617 | ||||
Summon Friends | 14603754 | 931 days ago | IN | 0.018 ETH | 0.00264127 | ||||
Summon Friends | 14603743 | 931 days ago | IN | 0.009 ETH | 0.00248337 | ||||
Set Approval For... | 14603734 | 931 days ago | IN | 0 ETH | 0.00230886 | ||||
Summon Friends | 14603728 | 931 days ago | IN | 0.009 ETH | 0.00145148 | ||||
Summon Friends | 14603727 | 931 days ago | IN | 0.018 ETH | 0.00188253 | ||||
Summon Friends | 14603727 | 931 days ago | IN | 0.009 ETH | 0.00131486 | ||||
Summon Friends | 14603723 | 931 days ago | IN | 0.009 ETH | 0.00130008 | ||||
Summon Friends | 14603719 | 931 days ago | IN | 0.09 ETH | 0.00656759 | ||||
Summon Friends | 14603711 | 931 days ago | IN | 0.09 ETH | 0.0076009 | ||||
Summon Friends | 14603711 | 931 days ago | IN | 0.09 ETH | 0.0076009 | ||||
Summon Friends | 14603711 | 931 days ago | IN | 0.09 ETH | 0.0076009 | ||||
Summon Friends | 14603711 | 931 days ago | IN | 0.09 ETH | 0.0076009 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
14604007 | 931 days ago | 3.825 ETH |
Loading...
Loading
Contract Name:
VisibleFriends
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-17 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File: @openzeppelin/contracts/utils/cryptography/draft-EIP712.sol // OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens 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 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: ERC721SmallFriend.sol pragma solidity ^0.8.9; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension and the Enumerable extensions. * * This implementation is called `Slim` because the gas usage is extremely saved in the minting, transfer operations. * But as a drawback, those view functions like balanceOf and any functions from IERC721Enumerable * will be costly because it needs heavy iterations over the array that stores the token array. */ abstract contract ERC721SmallFriend is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; uint256 private _burntTokens = 0; address[] private _tokenOwners; mapping(uint256 => address) _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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721SmallFriend: balance query for the zero address" ); uint256 balance = 0; for (uint256 i = 0; i < _tokenOwners.length; i++) { if (_tokenOwners[i] == owner) { balance++; } } return balance; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721SmallFriend: owner query for nonexistent token" ); address owner = _tokenOwners[tokenId]; require( owner != address(0), "ERC721SmallFriend: 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" ); return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721SmallFriend.ownerOf(tokenId); require(to != owner, "ERC721SmallFriend: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721SmallFriend: 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), "ERC721SmallFriend: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721SmallFriend: 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), "ERC721SmallFriend: 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), "ERC721SmallFriend: 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 tokenId < _tokenOwners.length && _tokenOwners[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), "ERC721SmallFriend: operator query for nonexistent token" ); address owner = ERC721SmallFriend.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` in batch and transfers it to `to`. * * Requirements: * * - `to` must not be a zero address. * - `amount` must not be zero */ function _safeBatchMint(address to, uint256 amount) internal returns (uint256 startId) { require( to != address(0), "ERC721SmallFriend: mint to the zero address" ); require(amount > 0, "ERC721SmallFriend: mint nothing"); startId = _tokenOwners.length; for (uint256 i = 0; i < amount; i++) { _tokenOwners.push(to); emit Transfer(address(0), to, _tokenOwners.length - 1); } require( _checkOnERC721Received(address(0), to, startId, ""), "ERC721SmallFriend: transfer to non ERC721Receiver implementer" ); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - 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) internal virtual { _safeMint(to, ""); } /** * @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, bytes memory _data) internal virtual { uint256 tokenId = _mint(to); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721SmallFriend: 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: * * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to) internal virtual returns (uint256) { require( to != address(0), "ERC721SmallFriend: mint to the zero address" ); uint256 tokenId = _tokenOwners.length; _tokenOwners.push(to); emit Transfer(address(0), to, tokenId); return 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 = ERC721SmallFriend.ownerOf(tokenId); _tokenOwners[tokenId] = address(0); delete _tokenApprovals[tokenId]; _burntTokens++; emit Approval(owner, address(0), 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( ERC721SmallFriend.ownerOf(tokenId) == from, "ERC721SmallFriend: transfer from incorrect owner" ); require( to != address(0), "ERC721SmallFriend: transfer to the zero address" ); _tokenOwners[tokenId] = to; _tokenApprovals[tokenId] = address(0); emit Approval(from, address(0), tokenId); 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(_tokenOwners[tokenId], to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721SmallFriend: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721SmallFriend: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } // ======================================== // IERC721Enumerable implementations // ======================================== /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() public view override returns (uint256) { return _tokenOwners.length - _burntTokens; } /** * @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) { uint256 _totalSupply = _tokenOwners.length; for (uint256 i = 0; i < _totalSupply; i++) { if (_tokenOwners[i] != owner) continue; if (index == 0) { return i; } index--; } revert("ERC721SmallFriend: owner index out of bounds"); } /** * @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) { require( index < _tokenOwners.length, "ERC721SmallFriend: global index out of bounds" ); // Adjusted token orders by skipping burnt tokens uint256 burntTokens = 0; for (uint256 i = 0; i < _tokenOwners.length; i++) { if (_tokenOwners[i] == address(0)) { burntTokens++; } if (i == index + burntTokens) return i; } revert("ERC721SmallFriend: global index out of bounds"); } // ======================================== // Miscellaneous functions // ======================================== /** * @dev Returns the total amount of tokens stored by the contract. */ function _totalMinted() internal view returns (uint256) { return _tokenOwners.length; } } // File: VisibleFriends.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.9; contract VisibleFriends is ERC721SmallFriend, EIP712, Ownable, ReentrancyGuard { using Strings for uint256; uint256 public constant PRICE = 0.009 ether; struct Config { uint16 maxSupply; uint16 summonLimit; bool saleStarted; } Config public _config; string public _baseURI; constructor(Config memory config, string memory baseURI) ERC721SmallFriend("VisibleFriends", "VFRI") EIP712("VisibleFriends", "1") { _config = config; _baseURI = baseURI; } function summonFriends(uint256 amount) external payable nonReentrant { Config memory config = _config; require(config.saleStarted, "VisibleFriends: sale is not started"); require( amount <= config.summonLimit, "VisibleFriends: exceed summon per time" ); uint256 totalMinted = _totalMinted(); require( totalMinted + amount <= config.maxSupply, "VisibleFriends: exceed public supply" ); require( msg.value >= PRICE * amount, "VisibleFriends: insufficient fund" ); _safeBatchMint(msg.sender, amount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ApeZuki: URI query for nonexistent token"); return string(abi.encodePacked(_baseURI, tokenId.toString())); } function bal() external view returns(uint256) { return address(this).balance; } // ------- Admin Operations ------- function setBaseURI(string calldata baseURI) external onlyOwner { _baseURI = baseURI; } function flipSaleState() external onlyOwner { _config.saleStarted = !_config.saleStarted; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; Address.sendValue(payable(msg.sender), balance); } function removeOtherERC20Tokens(address _tokenAddress, address _to) external onlyOwner { ERC20 erc20Token = ERC20(_tokenAddress); require( erc20Token.transfer(_to, erc20Token.balanceOf(address(this))), "ERC20 Token transfer failed" ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"components":[{"internalType":"uint16","name":"maxSupply","type":"uint16"},{"internalType":"uint16","name":"summonLimit","type":"uint16"},{"internalType":"bool","name":"saleStarted","type":"bool"}],"internalType":"struct VisibleFriends.Config","name":"config","type":"tuple"},{"internalType":"string","name":"baseURI","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":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_config","outputs":[{"internalType":"uint16","name":"maxSupply","type":"uint16"},{"internalType":"uint16","name":"summonLimit","type":"uint16"},{"internalType":"bool","name":"saleStarted","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"removeOtherERC20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"summonFriends","outputs":[],"stateMutability":"payable","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":"tokenId","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61014060405260006002553480156200001757600080fd5b5060405162004b8838038062004b8883398181016040528101906200003d9190620006f7565b6040518060400160405280600e81526020017f56697369626c65467269656e64730000000000000000000000000000000000008152506040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600e81526020017f56697369626c65467269656e64730000000000000000000000000000000000008152506040518060400160405280600481526020017f564652490000000000000000000000000000000000000000000000000000000081525081600090805190602001906200012d929190620003ba565b50806001908051906020019062000146929190620003ba565b50505060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001b2818484620002b060201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff168152505080610120818152505050505050506200021b6200020f620002ec60201b60201c565b620002f460201b60201c565b600160078190555081600860008201518160000160006101000a81548161ffff021916908361ffff16021790555060208201518160000160026101000a81548161ffff021916908361ffff16021790555060408201518160000160046101000a81548160ff0219169083151502179055509050508060099080519060200190620002a7929190620003ba565b5050506200089a565b60008383834630604051602001620002cd959493929190620007d8565b6040516020818303038152906040528051906020012090509392505050565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003c89062000864565b90600052602060002090601f016020900481019282620003ec576000855562000438565b82601f106200040757805160ff191683800117855562000438565b8280016001018555821562000438579182015b82811115620004375782518255916020019190600101906200041a565b5b5090506200044791906200044b565b5090565b5b80821115620004665760008160009055506001016200044c565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004ce8262000483565b810181811067ffffffffffffffff82111715620004f057620004ef62000494565b5b80604052505050565b6000620005056200046a565b9050620005138282620004c3565b919050565b600061ffff82169050919050565b620005318162000518565b81146200053d57600080fd5b50565b600081519050620005518162000526565b92915050565b60008115159050919050565b6200056e8162000557565b81146200057a57600080fd5b50565b6000815190506200058e8162000563565b92915050565b600060608284031215620005ad57620005ac6200047e565b5b620005b96060620004f9565b90506000620005cb8482850162000540565b6000830152506020620005e18482850162000540565b6020830152506040620005f7848285016200057d565b60408301525092915050565b600080fd5b600080fd5b600067ffffffffffffffff8211156200062b576200062a62000494565b5b620006368262000483565b9050602081019050919050565b60005b838110156200066357808201518184015260208101905062000646565b8381111562000673576000848401525b50505050565b6000620006906200068a846200060d565b620004f9565b905082815260208101848484011115620006af57620006ae62000608565b5b620006bc84828562000643565b509392505050565b600082601f830112620006dc57620006db62000603565b5b8151620006ee84826020860162000679565b91505092915050565b6000806080838503121562000711576200071062000474565b5b6000620007218582860162000594565b925050606083015167ffffffffffffffff81111562000745576200074462000479565b5b6200075385828601620006c4565b9150509250929050565b6000819050919050565b62000772816200075d565b82525050565b6000819050919050565b6200078d8162000778565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007c08262000793565b9050919050565b620007d281620007b3565b82525050565b600060a082019050620007ef600083018862000767565b620007fe602083018762000767565b6200080d604083018662000767565b6200081c606083018562000782565b6200082b6080830184620007c7565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200087d57607f821691505b6020821081141562000894576200089362000835565b5b50919050565b60805160a05160c05160e05161010051610120516142b0620008d86000396000505060005050600050506000505060005050600050506142b06000f3fe6080604052600436106101b75760003560e01c80636352211e116100ec57806395d89b411161008a578063c87b56dd11610064578063c87b56dd146105e8578063e985e9c514610625578063f2fde38b14610662578063f31eb8f51461068b576101b7565b806395d89b411461056b578063a22cb46514610596578063b88d4fde146105bf576101b7565b8063743976a0116100c6578063743976a0146104c15780638d859f3e146104ec5780638da5cb5b14610517578063917c854d14610542576101b7565b80636352211e1461043057806370a082311461046d578063715018a6146104aa576101b7565b80632f745c59116101595780633d79d1c8116101335780633d79d1c81461037657806342842e0e146103a15780634f6ccce7146103ca57806355f804b314610407576101b7565b80632f745c591461030b57806334918dfd146103485780633ccfd60b1461035f576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780632ed42bf7146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612875565b6106a7565b6040516101f091906128bd565b60405180910390f35b34801561020557600080fd5b5061020e6107f1565b60405161021b9190612971565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906129c9565b610883565b6040516102589190612a37565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612a7e565b610908565b005b34801561029657600080fd5b5061029f610a20565b6040516102ac9190612acd565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612ae8565b610a3a565b005b3480156102ea57600080fd5b506102f3610a9a565b60405161030293929190612b58565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190612a7e565b610adb565b60405161033f9190612acd565b60405180910390f35b34801561035457600080fd5b5061035d610bde565b005b34801561036b57600080fd5b50610374610c8c565b005b34801561038257600080fd5b5061038b610d1a565b6040516103989190612acd565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190612ae8565b610d22565b005b3480156103d657600080fd5b506103f160048036038101906103ec91906129c9565b610d42565b6040516103fe9190612acd565b60405180910390f35b34801561041357600080fd5b5061042e60048036038101906104299190612bf4565b610e8f565b005b34801561043c57600080fd5b50610457600480360381019061045291906129c9565b610f21565b6040516104649190612a37565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190612c41565b611027565b6040516104a19190612acd565b60405180910390f35b3480156104b657600080fd5b506104bf611147565b005b3480156104cd57600080fd5b506104d66111cf565b6040516104e39190612971565b60405180910390f35b3480156104f857600080fd5b5061050161125d565b60405161050e9190612acd565b60405180910390f35b34801561052357600080fd5b5061052c611268565b6040516105399190612a37565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190612c6e565b611292565b005b34801561057757600080fd5b5061058061146c565b60405161058d9190612971565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190612cda565b6114fe565b005b3480156105cb57600080fd5b506105e660048036038101906105e19190612e4a565b611514565b005b3480156105f457600080fd5b5061060f600480360381019061060a91906129c9565b611576565b60405161061c9190612971565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190612c6e565b6115f2565b60405161065991906128bd565b60405180910390f35b34801561066e57600080fd5b5061068960048036038101906106849190612c41565b611686565b005b6106a560048036038101906106a091906129c9565b61177e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107da57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ea57506107e982611996565b5b9050919050565b60606000805461080090612efc565b80601f016020809104026020016040519081016040528092919081815260200182805461082c90612efc565b80156108795780601f1061084e57610100808354040283529160200191610879565b820191906000526020600020905b81548152906001019060200180831161085c57829003601f168201915b5050505050905090565b600061088e82611a00565b6108cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c490612fa0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091382610f21565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b90613032565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a3611a88565b73ffffffffffffffffffffffffffffffffffffffff1614806109d257506109d1816109cc611a88565b6115f2565b5b610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a08906130ea565b60405180910390fd5b610a1b8383611a90565b505050565b6000600254600380549050610a359190613139565b905090565b610a4b610a45611a88565b82611b7f565b610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a81906131df565b60405180910390fd5b610a95838383611c5d565b505050565b60088060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16908060000160049054906101000a900460ff16905083565b600080600380549050905060005b81811015610b9c578473ffffffffffffffffffffffffffffffffffffffff1660038281548110610b1c57610b1b6131ff565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b6757610b89565b6000841415610b7a578092505050610bd8565b8380610b859061322e565b9450505b8080610b9490613258565b915050610ae9565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf90613313565b60405180910390fd5b92915050565b610be6611a88565b73ffffffffffffffffffffffffffffffffffffffff16610c04611268565b73ffffffffffffffffffffffffffffffffffffffff1614610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c519061337f565b60405180910390fd5b600860000160049054906101000a900460ff1615600860000160046101000a81548160ff021916908315150217905550565b610c94611a88565b73ffffffffffffffffffffffffffffffffffffffff16610cb2611268565b73ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff9061337f565b60405180910390fd5b6000479050610d173382611eaf565b50565b600047905090565b610d3d83838360405180602001604052806000815250611514565b505050565b60006003805490508210610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290613411565b60405180910390fd5b6000805b600380549050811015610e4e57600073ffffffffffffffffffffffffffffffffffffffff1660038281548110610dc857610dc76131ff565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e1e578180610e1a90613258565b9250505b8184610e2a9190613431565b811415610e3b578092505050610e8a565b8080610e4690613258565b915050610d8f565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190613411565b60405180910390fd5b919050565b610e97611a88565b73ffffffffffffffffffffffffffffffffffffffff16610eb5611268565b73ffffffffffffffffffffffffffffffffffffffff1614610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f029061337f565b60405180910390fd5b818160099190610f1c929190612766565b505050565b6000610f2c82611a00565b610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f62906134f9565b60405180910390fd5b600060038381548110610f8157610f806131ff565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561101e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611015906134f9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f9061358b565b60405180910390fd5b6000805b60038054905081101561113d578373ffffffffffffffffffffffffffffffffffffffff16600382815481106110d4576110d36131ff565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561112a57818061112690613258565b9250505b808061113590613258565b91505061109c565b5080915050919050565b61114f611a88565b73ffffffffffffffffffffffffffffffffffffffff1661116d611268565b73ffffffffffffffffffffffffffffffffffffffff16146111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba9061337f565b60405180910390fd5b6111cd6000611fa3565b565b600980546111dc90612efc565b80601f016020809104026020016040519081016040528092919081815260200182805461120890612efc565b80156112555780601f1061122a57610100808354040283529160200191611255565b820191906000526020600020905b81548152906001019060200180831161123857829003601f168201915b505050505081565b661ff973cafa800081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61129a611a88565b73ffffffffffffffffffffffffffffffffffffffff166112b8611268565b73ffffffffffffffffffffffffffffffffffffffff161461130e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113059061337f565b60405180910390fd5b60008290508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113699190612a37565b60206040518083038186803b15801561138157600080fd5b505afa158015611395573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b991906135c0565b6040518363ffffffff1660e01b81526004016113d69291906135ed565b602060405180830381600087803b1580156113f057600080fd5b505af1158015611404573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611428919061362b565b611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e906136a4565b60405180910390fd5b505050565b60606001805461147b90612efc565b80601f01602080910402602001604051908101604052809291908181526020018280546114a790612efc565b80156114f45780601f106114c9576101008083540402835291602001916114f4565b820191906000526020600020905b8154815290600101906020018083116114d757829003601f168201915b5050505050905090565b611510611509611a88565b8383612069565b5050565b61152561151f611a88565b83611b7f565b611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b906131df565b60405180910390fd5b611570848484846121d6565b50505050565b606061158182611a00565b6115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790613736565b60405180910390fd5b60096115cb83612232565b6040516020016115dc929190613826565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61168e611a88565b73ffffffffffffffffffffffffffffffffffffffff166116ac611268565b73ffffffffffffffffffffffffffffffffffffffff1614611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f99061337f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611772576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611769906138bc565b60405180910390fd5b61177b81611fa3565b50565b600260075414156117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb90613928565b60405180910390fd5b6002600781905550600060086040518060600160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900461ffff1661ffff1661ffff1681526020016000820160049054906101000a900460ff1615151515815250509050806040015161187c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611873906139ba565b60405180910390fd5b806020015161ffff168211156118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90613a4c565b60405180910390fd5b60006118d1612393565b9050816000015161ffff1683826118e89190613431565b1115611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090613ade565b60405180910390fd5b82661ff973cafa800061193c9190613afe565b34101561197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613bca565b60405180910390fd5b61198833846123a0565b505050600160078190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060038054905082108015611a815750600073ffffffffffffffffffffffffffffffffffffffff1660038381548110611a3d57611a3c6131ff565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1660038381548110611b0e57611b0d6131ff565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b8a82611a00565b611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc090613c5c565b60405180910390fd5b6000611bd483610f21565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c4357508373ffffffffffffffffffffffffffffffffffffffff16611c2b84610883565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c545750611c5381856115f2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c7d82610f21565b73ffffffffffffffffffffffffffffffffffffffff1614611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca90613cee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a90613d80565b60405180910390fd5b8160038281548110611d5857611d576131ff565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990613dec565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611f1890613e3d565b60006040518083038185875af1925050503d8060008114611f55576040519150601f19603f3d011682016040523d82523d6000602084013e611f5a565b606091505b5050905080611f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9590613ec4565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf90613f56565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121c991906128bd565b60405180910390a3505050565b6121e1848484611c5d565b6121ed848484846125ac565b61222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222390613fe8565b60405180910390fd5b50505050565b6060600082141561227a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061238e565b600082905060005b600082146122ac57808061229590613258565b915050600a826122a59190614037565b9150612282565b60008167ffffffffffffffff8111156122c8576122c7612d1f565b5b6040519080825280601f01601f1916602001820160405280156122fa5781602001600182028036833780820191505090505b5090505b60008514612387576001826123139190613139565b9150600a856123229190614068565b603061232e9190613431565b60f81b818381518110612344576123436131ff565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123809190614037565b94506122fe565b8093505050505b919050565b6000600380549050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612411576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124089061410b565b60405180910390fd5b60008211612454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244b90614177565b60405180910390fd5b600380549050905060005b8281101561254a576003849080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016003805490506124dc9190613139565b8473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808061254290613258565b91505061245f565b5061256760008483604051806020016040528060008152506125ac565b6125a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259d90613fe8565b60405180910390fd5b92915050565b60006125cd8473ffffffffffffffffffffffffffffffffffffffff16612743565b15612736578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125f6611a88565b8786866040518563ffffffff1660e01b815260040161261894939291906141ec565b602060405180830381600087803b15801561263257600080fd5b505af192505050801561266357506040513d601f19601f82011682018060405250810190612660919061424d565b60015b6126e6573d8060008114612693576040519150601f19603f3d011682016040523d82523d6000602084013e612698565b606091505b506000815114156126de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d590613fe8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061273b565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461277290612efc565b90600052602060002090601f01602090048101928261279457600085556127db565b82601f106127ad57803560ff19168380011785556127db565b828001600101855582156127db579182015b828111156127da5782358255916020019190600101906127bf565b5b5090506127e891906127ec565b5090565b5b808211156128055760008160009055506001016127ed565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128528161281d565b811461285d57600080fd5b50565b60008135905061286f81612849565b92915050565b60006020828403121561288b5761288a612813565b5b600061289984828501612860565b91505092915050565b60008115159050919050565b6128b7816128a2565b82525050565b60006020820190506128d260008301846128ae565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129125780820151818401526020810190506128f7565b83811115612921576000848401525b50505050565b6000601f19601f8301169050919050565b6000612943826128d8565b61294d81856128e3565b935061295d8185602086016128f4565b61296681612927565b840191505092915050565b6000602082019050818103600083015261298b8184612938565b905092915050565b6000819050919050565b6129a681612993565b81146129b157600080fd5b50565b6000813590506129c38161299d565b92915050565b6000602082840312156129df576129de612813565b5b60006129ed848285016129b4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a21826129f6565b9050919050565b612a3181612a16565b82525050565b6000602082019050612a4c6000830184612a28565b92915050565b612a5b81612a16565b8114612a6657600080fd5b50565b600081359050612a7881612a52565b92915050565b60008060408385031215612a9557612a94612813565b5b6000612aa385828601612a69565b9250506020612ab4858286016129b4565b9150509250929050565b612ac781612993565b82525050565b6000602082019050612ae26000830184612abe565b92915050565b600080600060608486031215612b0157612b00612813565b5b6000612b0f86828701612a69565b9350506020612b2086828701612a69565b9250506040612b31868287016129b4565b9150509250925092565b600061ffff82169050919050565b612b5281612b3b565b82525050565b6000606082019050612b6d6000830186612b49565b612b7a6020830185612b49565b612b8760408301846128ae565b949350505050565b600080fd5b600080fd5b600080fd5b60008083601f840112612bb457612bb3612b8f565b5b8235905067ffffffffffffffff811115612bd157612bd0612b94565b5b602083019150836001820283011115612bed57612bec612b99565b5b9250929050565b60008060208385031215612c0b57612c0a612813565b5b600083013567ffffffffffffffff811115612c2957612c28612818565b5b612c3585828601612b9e565b92509250509250929050565b600060208284031215612c5757612c56612813565b5b6000612c6584828501612a69565b91505092915050565b60008060408385031215612c8557612c84612813565b5b6000612c9385828601612a69565b9250506020612ca485828601612a69565b9150509250929050565b612cb7816128a2565b8114612cc257600080fd5b50565b600081359050612cd481612cae565b92915050565b60008060408385031215612cf157612cf0612813565b5b6000612cff85828601612a69565b9250506020612d1085828601612cc5565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d5782612927565b810181811067ffffffffffffffff82111715612d7657612d75612d1f565b5b80604052505050565b6000612d89612809565b9050612d958282612d4e565b919050565b600067ffffffffffffffff821115612db557612db4612d1f565b5b612dbe82612927565b9050602081019050919050565b82818337600083830152505050565b6000612ded612de884612d9a565b612d7f565b905082815260208101848484011115612e0957612e08612d1a565b5b612e14848285612dcb565b509392505050565b600082601f830112612e3157612e30612b8f565b5b8135612e41848260208601612dda565b91505092915050565b60008060008060808587031215612e6457612e63612813565b5b6000612e7287828801612a69565b9450506020612e8387828801612a69565b9350506040612e94878288016129b4565b925050606085013567ffffffffffffffff811115612eb557612eb4612818565b5b612ec187828801612e1c565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f1457607f821691505b60208210811415612f2857612f27612ecd565b5b50919050565b7f455243373231536d616c6c467269656e643a20617070726f766564207175657260008201527f7920666f72206e6f6e6578697374656e7420746f6b656e000000000000000000602082015250565b6000612f8a6037836128e3565b9150612f9582612f2e565b604082019050919050565b60006020820190508181036000830152612fb981612f7d565b9050919050565b7f455243373231536d616c6c467269656e643a20617070726f76616c20746f206360008201527f757272656e74206f776e65720000000000000000000000000000000000000000602082015250565b600061301c602c836128e3565b915061302782612fc0565b604082019050919050565b6000602082019050818103600083015261304b8161300f565b9050919050565b7f455243373231536d616c6c467269656e643a20617070726f76652063616c6c6560008201527f72206973206e6f74206f776e6572206e6f7220617070726f76656420666f722060208201527f616c6c0000000000000000000000000000000000000000000000000000000000604082015250565b60006130d46043836128e3565b91506130df82613052565b606082019050919050565b60006020820190508181036000830152613103816130c7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061314482612993565b915061314f83612993565b9250828210156131625761316161310a565b5b828203905092915050565b7f455243373231536d616c6c467269656e643a207472616e736665722063616c6c60008201527f6572206973206e6f74206f776e6572206e6f7220617070726f76656400000000602082015250565b60006131c9603c836128e3565b91506131d48261316d565b604082019050919050565b600060208201905081810360008301526131f8816131bc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061323982612993565b9150600082141561324d5761324c61310a565b5b600182039050919050565b600061326382612993565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132965761329561310a565b5b600182019050919050565b7f455243373231536d616c6c467269656e643a206f776e657220696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006132fd602c836128e3565b9150613308826132a1565b604082019050919050565b6000602082019050818103600083015261332c816132f0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133696020836128e3565b915061337482613333565b602082019050919050565b600060208201905081810360008301526133988161335c565b9050919050565b7f455243373231536d616c6c467269656e643a20676c6f62616c20696e6465782060008201527f6f7574206f6620626f756e647300000000000000000000000000000000000000602082015250565b60006133fb602d836128e3565b91506134068261339f565b604082019050919050565b6000602082019050818103600083015261342a816133ee565b9050919050565b600061343c82612993565b915061344783612993565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561347c5761347b61310a565b5b828201905092915050565b7f455243373231536d616c6c467269656e643a206f776e6572207175657279206660008201527f6f72206e6f6e6578697374656e7420746f6b656e000000000000000000000000602082015250565b60006134e36034836128e3565b91506134ee82613487565b604082019050919050565b60006020820190508181036000830152613512816134d6565b9050919050565b7f455243373231536d616c6c467269656e643a2062616c616e636520717565727960008201527f20666f7220746865207a65726f20616464726573730000000000000000000000602082015250565b60006135756035836128e3565b915061358082613519565b604082019050919050565b600060208201905081810360008301526135a481613568565b9050919050565b6000815190506135ba8161299d565b92915050565b6000602082840312156135d6576135d5612813565b5b60006135e4848285016135ab565b91505092915050565b60006040820190506136026000830185612a28565b61360f6020830184612abe565b9392505050565b60008151905061362581612cae565b92915050565b60006020828403121561364157613640612813565b5b600061364f84828501613616565b91505092915050565b7f455243323020546f6b656e207472616e73666572206661696c65640000000000600082015250565b600061368e601b836128e3565b915061369982613658565b602082019050919050565b600060208201905081810360008301526136bd81613681565b9050919050565b7f4170655a756b693a2055524920717565727920666f72206e6f6e65786973746560008201527f6e7420746f6b656e000000000000000000000000000000000000000000000000602082015250565b60006137206028836128e3565b915061372b826136c4565b604082019050919050565b6000602082019050818103600083015261374f81613713565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461378381612efc565b61378d8186613756565b945060018216600081146137a857600181146137b9576137ec565b60ff198316865281860193506137ec565b6137c285613761565b60005b838110156137e4578154818901526001820191506020810190506137c5565b838801955050505b50505092915050565b6000613800826128d8565b61380a8185613756565b935061381a8185602086016128f4565b80840191505092915050565b60006138328285613776565b915061383e82846137f5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138a66026836128e3565b91506138b18261384a565b604082019050919050565b600060208201905081810360008301526138d581613899565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613912601f836128e3565b915061391d826138dc565b602082019050919050565b6000602082019050818103600083015261394181613905565b9050919050565b7f56697369626c65467269656e64733a2073616c65206973206e6f74207374617260008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b60006139a46023836128e3565b91506139af82613948565b604082019050919050565b600060208201905081810360008301526139d381613997565b9050919050565b7f56697369626c65467269656e64733a206578636565642073756d6d6f6e20706560008201527f722074696d650000000000000000000000000000000000000000000000000000602082015250565b6000613a366026836128e3565b9150613a41826139da565b604082019050919050565b60006020820190508181036000830152613a6581613a29565b9050919050565b7f56697369626c65467269656e64733a20657863656564207075626c696320737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b6000613ac86024836128e3565b9150613ad382613a6c565b604082019050919050565b60006020820190508181036000830152613af781613abb565b9050919050565b6000613b0982612993565b9150613b1483612993565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b4d57613b4c61310a565b5b828202905092915050565b7f56697369626c65467269656e64733a20696e73756666696369656e742066756e60008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bb46021836128e3565b9150613bbf82613b58565b604082019050919050565b60006020820190508181036000830152613be381613ba7565b9050919050565b7f455243373231536d616c6c467269656e643a206f70657261746f72207175657260008201527f7920666f72206e6f6e6578697374656e7420746f6b656e000000000000000000602082015250565b6000613c466037836128e3565b9150613c5182613bea565b604082019050919050565b60006020820190508181036000830152613c7581613c39565b9050919050565b7f455243373231536d616c6c467269656e643a207472616e736665722066726f6d60008201527f20696e636f7272656374206f776e657200000000000000000000000000000000602082015250565b6000613cd86030836128e3565b9150613ce382613c7c565b604082019050919050565b60006020820190508181036000830152613d0781613ccb565b9050919050565b7f455243373231536d616c6c467269656e643a207472616e7366657220746f207460008201527f6865207a65726f20616464726573730000000000000000000000000000000000602082015250565b6000613d6a602f836128e3565b9150613d7582613d0e565b604082019050919050565b60006020820190508181036000830152613d9981613d5d565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613dd6601d836128e3565b9150613de182613da0565b602082019050919050565b60006020820190508181036000830152613e0581613dc9565b9050919050565b600081905092915050565b50565b6000613e27600083613e0c565b9150613e3282613e17565b600082019050919050565b6000613e4882613e1a565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613eae603a836128e3565b9150613eb982613e52565b604082019050919050565b60006020820190508181036000830152613edd81613ea1565b9050919050565b7f455243373231536d616c6c467269656e643a20617070726f766520746f20636160008201527f6c6c657200000000000000000000000000000000000000000000000000000000602082015250565b6000613f406024836128e3565b9150613f4b82613ee4565b604082019050919050565b60006020820190508181036000830152613f6f81613f33565b9050919050565b7f455243373231536d616c6c467269656e643a207472616e7366657220746f206e60008201527f6f6e20455243373231526563656976657220696d706c656d656e746572000000602082015250565b6000613fd2603d836128e3565b9150613fdd82613f76565b604082019050919050565b6000602082019050818103600083015261400181613fc5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061404282612993565b915061404d83612993565b92508261405d5761405c614008565b5b828204905092915050565b600061407382612993565b915061407e83612993565b92508261408e5761408d614008565b5b828206905092915050565b7f455243373231536d616c6c467269656e643a206d696e7420746f20746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006140f5602b836128e3565b915061410082614099565b604082019050919050565b60006020820190508181036000830152614124816140e8565b9050919050565b7f455243373231536d616c6c467269656e643a206d696e74206e6f7468696e6700600082015250565b6000614161601f836128e3565b915061416c8261412b565b602082019050919050565b6000602082019050818103600083015261419081614154565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006141be82614197565b6141c881856141a2565b93506141d88185602086016128f4565b6141e181612927565b840191505092915050565b60006080820190506142016000830187612a28565b61420e6020830186612a28565b61421b6040830185612abe565b818103606083015261422d81846141b3565b905095945050505050565b60008151905061424781612849565b92915050565b60006020828403121561426357614262612813565b5b600061427184828501614238565b9150509291505056fea264697066735822122096957c6b7776f49d864b46a6bee4e4b03cdfb220d9294363a2b85f7147c1570964736f6c634300080900330000000000000000000000000000000000000000000000000000000000000d05000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f697666732e6e656f73706163652e6d6f6e737465722f6e6674732f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80636352211e116100ec57806395d89b411161008a578063c87b56dd11610064578063c87b56dd146105e8578063e985e9c514610625578063f2fde38b14610662578063f31eb8f51461068b576101b7565b806395d89b411461056b578063a22cb46514610596578063b88d4fde146105bf576101b7565b8063743976a0116100c6578063743976a0146104c15780638d859f3e146104ec5780638da5cb5b14610517578063917c854d14610542576101b7565b80636352211e1461043057806370a082311461046d578063715018a6146104aa576101b7565b80632f745c59116101595780633d79d1c8116101335780633d79d1c81461037657806342842e0e146103a15780634f6ccce7146103ca57806355f804b314610407576101b7565b80632f745c591461030b57806334918dfd146103485780633ccfd60b1461035f576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780632ed42bf7146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612875565b6106a7565b6040516101f091906128bd565b60405180910390f35b34801561020557600080fd5b5061020e6107f1565b60405161021b9190612971565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906129c9565b610883565b6040516102589190612a37565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612a7e565b610908565b005b34801561029657600080fd5b5061029f610a20565b6040516102ac9190612acd565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612ae8565b610a3a565b005b3480156102ea57600080fd5b506102f3610a9a565b60405161030293929190612b58565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190612a7e565b610adb565b60405161033f9190612acd565b60405180910390f35b34801561035457600080fd5b5061035d610bde565b005b34801561036b57600080fd5b50610374610c8c565b005b34801561038257600080fd5b5061038b610d1a565b6040516103989190612acd565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190612ae8565b610d22565b005b3480156103d657600080fd5b506103f160048036038101906103ec91906129c9565b610d42565b6040516103fe9190612acd565b60405180910390f35b34801561041357600080fd5b5061042e60048036038101906104299190612bf4565b610e8f565b005b34801561043c57600080fd5b50610457600480360381019061045291906129c9565b610f21565b6040516104649190612a37565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190612c41565b611027565b6040516104a19190612acd565b60405180910390f35b3480156104b657600080fd5b506104bf611147565b005b3480156104cd57600080fd5b506104d66111cf565b6040516104e39190612971565b60405180910390f35b3480156104f857600080fd5b5061050161125d565b60405161050e9190612acd565b60405180910390f35b34801561052357600080fd5b5061052c611268565b6040516105399190612a37565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190612c6e565b611292565b005b34801561057757600080fd5b5061058061146c565b60405161058d9190612971565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190612cda565b6114fe565b005b3480156105cb57600080fd5b506105e660048036038101906105e19190612e4a565b611514565b005b3480156105f457600080fd5b5061060f600480360381019061060a91906129c9565b611576565b60405161061c9190612971565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190612c6e565b6115f2565b60405161065991906128bd565b60405180910390f35b34801561066e57600080fd5b5061068960048036038101906106849190612c41565b611686565b005b6106a560048036038101906106a091906129c9565b61177e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107da57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ea57506107e982611996565b5b9050919050565b60606000805461080090612efc565b80601f016020809104026020016040519081016040528092919081815260200182805461082c90612efc565b80156108795780601f1061084e57610100808354040283529160200191610879565b820191906000526020600020905b81548152906001019060200180831161085c57829003601f168201915b5050505050905090565b600061088e82611a00565b6108cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c490612fa0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091382610f21565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b90613032565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a3611a88565b73ffffffffffffffffffffffffffffffffffffffff1614806109d257506109d1816109cc611a88565b6115f2565b5b610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a08906130ea565b60405180910390fd5b610a1b8383611a90565b505050565b6000600254600380549050610a359190613139565b905090565b610a4b610a45611a88565b82611b7f565b610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a81906131df565b60405180910390fd5b610a95838383611c5d565b505050565b60088060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16908060000160049054906101000a900460ff16905083565b600080600380549050905060005b81811015610b9c578473ffffffffffffffffffffffffffffffffffffffff1660038281548110610b1c57610b1b6131ff565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b6757610b89565b6000841415610b7a578092505050610bd8565b8380610b859061322e565b9450505b8080610b9490613258565b915050610ae9565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf90613313565b60405180910390fd5b92915050565b610be6611a88565b73ffffffffffffffffffffffffffffffffffffffff16610c04611268565b73ffffffffffffffffffffffffffffffffffffffff1614610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c519061337f565b60405180910390fd5b600860000160049054906101000a900460ff1615600860000160046101000a81548160ff021916908315150217905550565b610c94611a88565b73ffffffffffffffffffffffffffffffffffffffff16610cb2611268565b73ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff9061337f565b60405180910390fd5b6000479050610d173382611eaf565b50565b600047905090565b610d3d83838360405180602001604052806000815250611514565b505050565b60006003805490508210610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290613411565b60405180910390fd5b6000805b600380549050811015610e4e57600073ffffffffffffffffffffffffffffffffffffffff1660038281548110610dc857610dc76131ff565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e1e578180610e1a90613258565b9250505b8184610e2a9190613431565b811415610e3b578092505050610e8a565b8080610e4690613258565b915050610d8f565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190613411565b60405180910390fd5b919050565b610e97611a88565b73ffffffffffffffffffffffffffffffffffffffff16610eb5611268565b73ffffffffffffffffffffffffffffffffffffffff1614610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f029061337f565b60405180910390fd5b818160099190610f1c929190612766565b505050565b6000610f2c82611a00565b610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f62906134f9565b60405180910390fd5b600060038381548110610f8157610f806131ff565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561101e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611015906134f9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f9061358b565b60405180910390fd5b6000805b60038054905081101561113d578373ffffffffffffffffffffffffffffffffffffffff16600382815481106110d4576110d36131ff565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561112a57818061112690613258565b9250505b808061113590613258565b91505061109c565b5080915050919050565b61114f611a88565b73ffffffffffffffffffffffffffffffffffffffff1661116d611268565b73ffffffffffffffffffffffffffffffffffffffff16146111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba9061337f565b60405180910390fd5b6111cd6000611fa3565b565b600980546111dc90612efc565b80601f016020809104026020016040519081016040528092919081815260200182805461120890612efc565b80156112555780601f1061122a57610100808354040283529160200191611255565b820191906000526020600020905b81548152906001019060200180831161123857829003601f168201915b505050505081565b661ff973cafa800081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61129a611a88565b73ffffffffffffffffffffffffffffffffffffffff166112b8611268565b73ffffffffffffffffffffffffffffffffffffffff161461130e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113059061337f565b60405180910390fd5b60008290508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113699190612a37565b60206040518083038186803b15801561138157600080fd5b505afa158015611395573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b991906135c0565b6040518363ffffffff1660e01b81526004016113d69291906135ed565b602060405180830381600087803b1580156113f057600080fd5b505af1158015611404573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611428919061362b565b611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e906136a4565b60405180910390fd5b505050565b60606001805461147b90612efc565b80601f01602080910402602001604051908101604052809291908181526020018280546114a790612efc565b80156114f45780601f106114c9576101008083540402835291602001916114f4565b820191906000526020600020905b8154815290600101906020018083116114d757829003601f168201915b5050505050905090565b611510611509611a88565b8383612069565b5050565b61152561151f611a88565b83611b7f565b611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b906131df565b60405180910390fd5b611570848484846121d6565b50505050565b606061158182611a00565b6115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790613736565b60405180910390fd5b60096115cb83612232565b6040516020016115dc929190613826565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61168e611a88565b73ffffffffffffffffffffffffffffffffffffffff166116ac611268565b73ffffffffffffffffffffffffffffffffffffffff1614611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f99061337f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611772576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611769906138bc565b60405180910390fd5b61177b81611fa3565b50565b600260075414156117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb90613928565b60405180910390fd5b6002600781905550600060086040518060600160405290816000820160009054906101000a900461ffff1661ffff1661ffff1681526020016000820160029054906101000a900461ffff1661ffff1661ffff1681526020016000820160049054906101000a900460ff1615151515815250509050806040015161187c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611873906139ba565b60405180910390fd5b806020015161ffff168211156118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90613a4c565b60405180910390fd5b60006118d1612393565b9050816000015161ffff1683826118e89190613431565b1115611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090613ade565b60405180910390fd5b82661ff973cafa800061193c9190613afe565b34101561197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613bca565b60405180910390fd5b61198833846123a0565b505050600160078190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060038054905082108015611a815750600073ffffffffffffffffffffffffffffffffffffffff1660038381548110611a3d57611a3c6131ff565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1660038381548110611b0e57611b0d6131ff565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b8a82611a00565b611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc090613c5c565b60405180910390fd5b6000611bd483610f21565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c4357508373ffffffffffffffffffffffffffffffffffffffff16611c2b84610883565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c545750611c5381856115f2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c7d82610f21565b73ffffffffffffffffffffffffffffffffffffffff1614611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca90613cee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a90613d80565b60405180910390fd5b8160038281548110611d5857611d576131ff565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990613dec565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611f1890613e3d565b60006040518083038185875af1925050503d8060008114611f55576040519150601f19603f3d011682016040523d82523d6000602084013e611f5a565b606091505b5050905080611f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9590613ec4565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf90613f56565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121c991906128bd565b60405180910390a3505050565b6121e1848484611c5d565b6121ed848484846125ac565b61222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222390613fe8565b60405180910390fd5b50505050565b6060600082141561227a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061238e565b600082905060005b600082146122ac57808061229590613258565b915050600a826122a59190614037565b9150612282565b60008167ffffffffffffffff8111156122c8576122c7612d1f565b5b6040519080825280601f01601f1916602001820160405280156122fa5781602001600182028036833780820191505090505b5090505b60008514612387576001826123139190613139565b9150600a856123229190614068565b603061232e9190613431565b60f81b818381518110612344576123436131ff565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123809190614037565b94506122fe565b8093505050505b919050565b6000600380549050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612411576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124089061410b565b60405180910390fd5b60008211612454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244b90614177565b60405180910390fd5b600380549050905060005b8281101561254a576003849080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016003805490506124dc9190613139565b8473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808061254290613258565b91505061245f565b5061256760008483604051806020016040528060008152506125ac565b6125a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259d90613fe8565b60405180910390fd5b92915050565b60006125cd8473ffffffffffffffffffffffffffffffffffffffff16612743565b15612736578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125f6611a88565b8786866040518563ffffffff1660e01b815260040161261894939291906141ec565b602060405180830381600087803b15801561263257600080fd5b505af192505050801561266357506040513d601f19601f82011682018060405250810190612660919061424d565b60015b6126e6573d8060008114612693576040519150601f19603f3d011682016040523d82523d6000602084013e612698565b606091505b506000815114156126de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d590613fe8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061273b565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461277290612efc565b90600052602060002090601f01602090048101928261279457600085556127db565b82601f106127ad57803560ff19168380011785556127db565b828001600101855582156127db579182015b828111156127da5782358255916020019190600101906127bf565b5b5090506127e891906127ec565b5090565b5b808211156128055760008160009055506001016127ed565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128528161281d565b811461285d57600080fd5b50565b60008135905061286f81612849565b92915050565b60006020828403121561288b5761288a612813565b5b600061289984828501612860565b91505092915050565b60008115159050919050565b6128b7816128a2565b82525050565b60006020820190506128d260008301846128ae565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129125780820151818401526020810190506128f7565b83811115612921576000848401525b50505050565b6000601f19601f8301169050919050565b6000612943826128d8565b61294d81856128e3565b935061295d8185602086016128f4565b61296681612927565b840191505092915050565b6000602082019050818103600083015261298b8184612938565b905092915050565b6000819050919050565b6129a681612993565b81146129b157600080fd5b50565b6000813590506129c38161299d565b92915050565b6000602082840312156129df576129de612813565b5b60006129ed848285016129b4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a21826129f6565b9050919050565b612a3181612a16565b82525050565b6000602082019050612a4c6000830184612a28565b92915050565b612a5b81612a16565b8114612a6657600080fd5b50565b600081359050612a7881612a52565b92915050565b60008060408385031215612a9557612a94612813565b5b6000612aa385828601612a69565b9250506020612ab4858286016129b4565b9150509250929050565b612ac781612993565b82525050565b6000602082019050612ae26000830184612abe565b92915050565b600080600060608486031215612b0157612b00612813565b5b6000612b0f86828701612a69565b9350506020612b2086828701612a69565b9250506040612b31868287016129b4565b9150509250925092565b600061ffff82169050919050565b612b5281612b3b565b82525050565b6000606082019050612b6d6000830186612b49565b612b7a6020830185612b49565b612b8760408301846128ae565b949350505050565b600080fd5b600080fd5b600080fd5b60008083601f840112612bb457612bb3612b8f565b5b8235905067ffffffffffffffff811115612bd157612bd0612b94565b5b602083019150836001820283011115612bed57612bec612b99565b5b9250929050565b60008060208385031215612c0b57612c0a612813565b5b600083013567ffffffffffffffff811115612c2957612c28612818565b5b612c3585828601612b9e565b92509250509250929050565b600060208284031215612c5757612c56612813565b5b6000612c6584828501612a69565b91505092915050565b60008060408385031215612c8557612c84612813565b5b6000612c9385828601612a69565b9250506020612ca485828601612a69565b9150509250929050565b612cb7816128a2565b8114612cc257600080fd5b50565b600081359050612cd481612cae565b92915050565b60008060408385031215612cf157612cf0612813565b5b6000612cff85828601612a69565b9250506020612d1085828601612cc5565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d5782612927565b810181811067ffffffffffffffff82111715612d7657612d75612d1f565b5b80604052505050565b6000612d89612809565b9050612d958282612d4e565b919050565b600067ffffffffffffffff821115612db557612db4612d1f565b5b612dbe82612927565b9050602081019050919050565b82818337600083830152505050565b6000612ded612de884612d9a565b612d7f565b905082815260208101848484011115612e0957612e08612d1a565b5b612e14848285612dcb565b509392505050565b600082601f830112612e3157612e30612b8f565b5b8135612e41848260208601612dda565b91505092915050565b60008060008060808587031215612e6457612e63612813565b5b6000612e7287828801612a69565b9450506020612e8387828801612a69565b9350506040612e94878288016129b4565b925050606085013567ffffffffffffffff811115612eb557612eb4612818565b5b612ec187828801612e1c565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f1457607f821691505b60208210811415612f2857612f27612ecd565b5b50919050565b7f455243373231536d616c6c467269656e643a20617070726f766564207175657260008201527f7920666f72206e6f6e6578697374656e7420746f6b656e000000000000000000602082015250565b6000612f8a6037836128e3565b9150612f9582612f2e565b604082019050919050565b60006020820190508181036000830152612fb981612f7d565b9050919050565b7f455243373231536d616c6c467269656e643a20617070726f76616c20746f206360008201527f757272656e74206f776e65720000000000000000000000000000000000000000602082015250565b600061301c602c836128e3565b915061302782612fc0565b604082019050919050565b6000602082019050818103600083015261304b8161300f565b9050919050565b7f455243373231536d616c6c467269656e643a20617070726f76652063616c6c6560008201527f72206973206e6f74206f776e6572206e6f7220617070726f76656420666f722060208201527f616c6c0000000000000000000000000000000000000000000000000000000000604082015250565b60006130d46043836128e3565b91506130df82613052565b606082019050919050565b60006020820190508181036000830152613103816130c7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061314482612993565b915061314f83612993565b9250828210156131625761316161310a565b5b828203905092915050565b7f455243373231536d616c6c467269656e643a207472616e736665722063616c6c60008201527f6572206973206e6f74206f776e6572206e6f7220617070726f76656400000000602082015250565b60006131c9603c836128e3565b91506131d48261316d565b604082019050919050565b600060208201905081810360008301526131f8816131bc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061323982612993565b9150600082141561324d5761324c61310a565b5b600182039050919050565b600061326382612993565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132965761329561310a565b5b600182019050919050565b7f455243373231536d616c6c467269656e643a206f776e657220696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006132fd602c836128e3565b9150613308826132a1565b604082019050919050565b6000602082019050818103600083015261332c816132f0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133696020836128e3565b915061337482613333565b602082019050919050565b600060208201905081810360008301526133988161335c565b9050919050565b7f455243373231536d616c6c467269656e643a20676c6f62616c20696e6465782060008201527f6f7574206f6620626f756e647300000000000000000000000000000000000000602082015250565b60006133fb602d836128e3565b91506134068261339f565b604082019050919050565b6000602082019050818103600083015261342a816133ee565b9050919050565b600061343c82612993565b915061344783612993565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561347c5761347b61310a565b5b828201905092915050565b7f455243373231536d616c6c467269656e643a206f776e6572207175657279206660008201527f6f72206e6f6e6578697374656e7420746f6b656e000000000000000000000000602082015250565b60006134e36034836128e3565b91506134ee82613487565b604082019050919050565b60006020820190508181036000830152613512816134d6565b9050919050565b7f455243373231536d616c6c467269656e643a2062616c616e636520717565727960008201527f20666f7220746865207a65726f20616464726573730000000000000000000000602082015250565b60006135756035836128e3565b915061358082613519565b604082019050919050565b600060208201905081810360008301526135a481613568565b9050919050565b6000815190506135ba8161299d565b92915050565b6000602082840312156135d6576135d5612813565b5b60006135e4848285016135ab565b91505092915050565b60006040820190506136026000830185612a28565b61360f6020830184612abe565b9392505050565b60008151905061362581612cae565b92915050565b60006020828403121561364157613640612813565b5b600061364f84828501613616565b91505092915050565b7f455243323020546f6b656e207472616e73666572206661696c65640000000000600082015250565b600061368e601b836128e3565b915061369982613658565b602082019050919050565b600060208201905081810360008301526136bd81613681565b9050919050565b7f4170655a756b693a2055524920717565727920666f72206e6f6e65786973746560008201527f6e7420746f6b656e000000000000000000000000000000000000000000000000602082015250565b60006137206028836128e3565b915061372b826136c4565b604082019050919050565b6000602082019050818103600083015261374f81613713565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461378381612efc565b61378d8186613756565b945060018216600081146137a857600181146137b9576137ec565b60ff198316865281860193506137ec565b6137c285613761565b60005b838110156137e4578154818901526001820191506020810190506137c5565b838801955050505b50505092915050565b6000613800826128d8565b61380a8185613756565b935061381a8185602086016128f4565b80840191505092915050565b60006138328285613776565b915061383e82846137f5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138a66026836128e3565b91506138b18261384a565b604082019050919050565b600060208201905081810360008301526138d581613899565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613912601f836128e3565b915061391d826138dc565b602082019050919050565b6000602082019050818103600083015261394181613905565b9050919050565b7f56697369626c65467269656e64733a2073616c65206973206e6f74207374617260008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b60006139a46023836128e3565b91506139af82613948565b604082019050919050565b600060208201905081810360008301526139d381613997565b9050919050565b7f56697369626c65467269656e64733a206578636565642073756d6d6f6e20706560008201527f722074696d650000000000000000000000000000000000000000000000000000602082015250565b6000613a366026836128e3565b9150613a41826139da565b604082019050919050565b60006020820190508181036000830152613a6581613a29565b9050919050565b7f56697369626c65467269656e64733a20657863656564207075626c696320737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b6000613ac86024836128e3565b9150613ad382613a6c565b604082019050919050565b60006020820190508181036000830152613af781613abb565b9050919050565b6000613b0982612993565b9150613b1483612993565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b4d57613b4c61310a565b5b828202905092915050565b7f56697369626c65467269656e64733a20696e73756666696369656e742066756e60008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bb46021836128e3565b9150613bbf82613b58565b604082019050919050565b60006020820190508181036000830152613be381613ba7565b9050919050565b7f455243373231536d616c6c467269656e643a206f70657261746f72207175657260008201527f7920666f72206e6f6e6578697374656e7420746f6b656e000000000000000000602082015250565b6000613c466037836128e3565b9150613c5182613bea565b604082019050919050565b60006020820190508181036000830152613c7581613c39565b9050919050565b7f455243373231536d616c6c467269656e643a207472616e736665722066726f6d60008201527f20696e636f7272656374206f776e657200000000000000000000000000000000602082015250565b6000613cd86030836128e3565b9150613ce382613c7c565b604082019050919050565b60006020820190508181036000830152613d0781613ccb565b9050919050565b7f455243373231536d616c6c467269656e643a207472616e7366657220746f207460008201527f6865207a65726f20616464726573730000000000000000000000000000000000602082015250565b6000613d6a602f836128e3565b9150613d7582613d0e565b604082019050919050565b60006020820190508181036000830152613d9981613d5d565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613dd6601d836128e3565b9150613de182613da0565b602082019050919050565b60006020820190508181036000830152613e0581613dc9565b9050919050565b600081905092915050565b50565b6000613e27600083613e0c565b9150613e3282613e17565b600082019050919050565b6000613e4882613e1a565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613eae603a836128e3565b9150613eb982613e52565b604082019050919050565b60006020820190508181036000830152613edd81613ea1565b9050919050565b7f455243373231536d616c6c467269656e643a20617070726f766520746f20636160008201527f6c6c657200000000000000000000000000000000000000000000000000000000602082015250565b6000613f406024836128e3565b9150613f4b82613ee4565b604082019050919050565b60006020820190508181036000830152613f6f81613f33565b9050919050565b7f455243373231536d616c6c467269656e643a207472616e7366657220746f206e60008201527f6f6e20455243373231526563656976657220696d706c656d656e746572000000602082015250565b6000613fd2603d836128e3565b9150613fdd82613f76565b604082019050919050565b6000602082019050818103600083015261400181613fc5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061404282612993565b915061404d83612993565b92508261405d5761405c614008565b5b828204905092915050565b600061407382612993565b915061407e83612993565b92508261408e5761408d614008565b5b828206905092915050565b7f455243373231536d616c6c467269656e643a206d696e7420746f20746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006140f5602b836128e3565b915061410082614099565b604082019050919050565b60006020820190508181036000830152614124816140e8565b9050919050565b7f455243373231536d616c6c467269656e643a206d696e74206e6f7468696e6700600082015250565b6000614161601f836128e3565b915061416c8261412b565b602082019050919050565b6000602082019050818103600083015261419081614154565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006141be82614197565b6141c881856141a2565b93506141d88185602086016128f4565b6141e181612927565b840191505092915050565b60006080820190506142016000830187612a28565b61420e6020830186612a28565b61421b6040830185612abe565b818103606083015261422d81846141b3565b905095945050505050565b60008151905061424781612849565b92915050565b60006020828403121561426357614262612813565b5b600061427184828501614238565b9150509291505056fea264697066735822122096957c6b7776f49d864b46a6bee4e4b03cdfb220d9294363a2b85f7147c1570964736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000d05000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f697666732e6e656f73706163652e6d6f6e737465722f6e6674732f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : config (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [1] : baseURI (string): https://ivfs.neospace.monster/nfts/
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000d05
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [5] : 68747470733a2f2f697666732e6e656f73706163652e6d6f6e737465722f6e66
Arg [6] : 74732f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
74355:2409:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58705:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60282:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61488:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60978:444;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72342:122;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62418:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74640:21;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;72652:478;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76168:105;;;;;;;;;;;;;:::i;:::-;;76281:155;;;;;;;;;;;;;:::i;:::-;;75915:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62823:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73311:597;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76059:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59744:471;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59191:491;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38209:103;;;;;;;;;;;;;:::i;:::-;;74668:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74475:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37558:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76444:317;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60451:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61879:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63079:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75609:298;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62137:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38467:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74925:676;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58705:422;58852:4;58909:25;58894:40;;;:11;:40;;;;:105;;;;58966:33;58951:48;;;:11;:48;;;;58894:105;:172;;;;59031:35;59016:50;;;:11;:50;;;;58894:172;:225;;;;59083:36;59107:11;59083:23;:36::i;:::-;58894:225;58874:245;;58705:422;;;:::o;60282:100::-;60336:13;60369:5;60362:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60282:100;:::o;61488:319::-;61609:7;61656:16;61664:7;61656;:16::i;:::-;61634:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;61775:15;:24;61791:7;61775:24;;;;;;;;;;;;;;;;;;;;;61768:31;;61488:319;;;:::o;60978:444::-;61059:13;61075:34;61101:7;61075:25;:34::i;:::-;61059:50;;61134:5;61128:11;;:2;:11;;;;61120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61239:5;61223:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;61248:37;61265:5;61272:12;:10;:12::i;:::-;61248:16;:37::i;:::-;61223:62;61201:179;;;;;;;;;;;;:::i;:::-;;;;;;;;;61393:21;61402:2;61406:7;61393:8;:21::i;:::-;61048:374;60978:444;;:::o;72342:122::-;72395:7;72444:12;;72422;:19;;;;:34;;;;:::i;:::-;72415:41;;72342:122;:::o;62418:334::-;62574:41;62593:12;:10;:12::i;:::-;62607:7;62574:18;:41::i;:::-;62552:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;62716:28;62726:4;62732:2;62736:7;62716:9;:28::i;:::-;62418:334;;;:::o;74640:21::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72652:478::-;72761:15;72794:20;72817:12;:19;;;;72794:42;;72854:9;72849:207;72873:12;72869:1;:16;72849:207;;;72930:5;72911:24;;:12;72924:1;72911:15;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:24;;;72907:38;;72937:8;;72907:38;72975:1;72966:5;:10;72962:59;;;73004:1;72997:8;;;;;;72962:59;73037:7;;;;;:::i;:::-;;;;72849:207;72887:3;;;;;:::i;:::-;;;;72849:207;;;;73068:54;;;;;;;;;;:::i;:::-;;;;;;;;72652:478;;;;;:::o;76168:105::-;37789:12;:10;:12::i;:::-;37778:23;;:7;:5;:7::i;:::-;:23;;;37770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76246:7:::1;:19;;;;;;;;;;;;76245:20;76223:7;:19;;;:42;;;;;;;;;;;;;;;;;;76168:105::o:0;76281:155::-;37789:12;:10;:12::i;:::-;37778:23;;:7;:5;:7::i;:::-;:23;;;37770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76331:15:::1;76349:21;76331:39;;76381:47;76407:10;76420:7;76381:17;:47::i;:::-;76320:116;76281:155::o:0;75915:93::-;75952:7;75979:21;75972:28;;75915:93;:::o;62823:185::-;62961:39;62978:4;62984:2;62988:7;62961:39;;;;;;;;;;;;:16;:39::i;:::-;62823:185;;;:::o;73311:597::-;73371:7;73421:12;:19;;;;73413:5;:27;73391:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;73585:19;73624:9;73619:214;73643:12;:19;;;;73639:1;:23;73619:214;;;73715:1;73688:29;;:12;73701:1;73688:15;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:29;;;73684:83;;;73738:13;;;;;:::i;:::-;;;;73684:83;73800:11;73792:5;:19;;;;:::i;:::-;73787:1;:24;73783:38;;;73820:1;73813:8;;;;;;73783:38;73664:3;;;;;:::i;:::-;;;;73619:214;;;;73845:55;;;;;;;;;;:::i;:::-;;;;;;;;73311:597;;;;:::o;76059:101::-;37789:12;:10;:12::i;:::-;37778:23;;:7;:5;:7::i;:::-;:23;;;37770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76145:7:::1;;76134:8;:18;;;;;;;:::i;:::-;;76059:101:::0;;:::o;59744:471::-;59861:7;59908:16;59916:7;59908;:16::i;:::-;59886:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;60015:13;60031:12;60044:7;60031:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;60015:37;;60102:1;60085:19;;:5;:19;;;;60063:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;60202:5;60195:12;;;59744:471;;;:::o;59191:491::-;59308:7;59372:1;59355:19;;:5;:19;;;;59333:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;59468:15;59503:9;59498:150;59522:12;:19;;;;59518:1;:23;59498:150;;;59586:5;59567:24;;:12;59580:1;59567:15;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:24;;;59563:74;;;59612:9;;;;;:::i;:::-;;;;59563:74;59543:3;;;;;:::i;:::-;;;;59498:150;;;;59667:7;59660:14;;;59191:491;;;:::o;38209:103::-;37789:12;:10;:12::i;:::-;37778:23;;:7;:5;:7::i;:::-;:23;;;37770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38274:30:::1;38301:1;38274:18;:30::i;:::-;38209:103::o:0;74668:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;74475:43::-;74507:11;74475:43;:::o;37558:87::-;37604:7;37631:6;;;;;;;;;;;37624:13;;37558:87;:::o;76444:317::-;37789:12;:10;:12::i;:::-;37778:23;;:7;:5;:7::i;:::-;:23;;;37770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76565:16:::1;76590:13;76565:39;;76637:10;:19;;;76657:3;76662:10;:20;;;76691:4;76662:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;76637:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;76615:138;;;;;;;;;;;;:::i;:::-;;;;;;;;;76554:207;76444:317:::0;;:::o;60451:104::-;60507:13;60540:7;60533:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60451:104;:::o;61879:187::-;62006:52;62025:12;:10;:12::i;:::-;62039:8;62049;62006:18;:52::i;:::-;61879:187;;:::o;63079:376::-;63268:41;63287:12;:10;:12::i;:::-;63301:7;63268:18;:41::i;:::-;63246:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;63408:39;63422:4;63428:2;63432:7;63441:5;63408:13;:39::i;:::-;63079:376;;;;:::o;75609:298::-;75727:13;75766:16;75774:7;75766;:16::i;:::-;75758:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;75869:8;75879:18;:7;:16;:18::i;:::-;75852:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75838:61;;75609:298;;;:::o;62137:214::-;62279:4;62308:18;:25;62327:5;62308:25;;;;;;;;;;;;;;;:35;62334:8;62308:35;;;;;;;;;;;;;;;;;;;;;;;;;62301:42;;62137:214;;;;:::o;38467:201::-;37789:12;:10;:12::i;:::-;37778:23;;:7;:5;:7::i;:::-;:23;;;37770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38576:1:::1;38556:22;;:8;:22;;;;38548:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38632:28;38651:8;38632:18;:28::i;:::-;38467:201:::0;:::o;74925:676::-;5426:1;6024:7;;:19;;6016:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5426:1;6157:7;:18;;;;75005:20:::1;75028:7;75005:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;75054:6;:18;;;75046:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;75155:6;:18;;;75145:28;;:6;:28;;75123:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;75252:19;75274:14;:12;:14::i;:::-;75252:36;;75345:6;:16;;;75321:40;;75335:6;75321:11;:20;;;;:::i;:::-;:40;;75299:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;75479:6;74507:11;75471:14;;;;:::i;:::-;75458:9;:27;;75436:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;75559:34;75574:10;75586:6;75559:14;:34::i;:::-;;74994:607;;5382:1:::0;6336:7;:22;;;;74925:676;:::o;50342:157::-;50427:4;50466:25;50451:40;;;:11;:40;;;;50444:47;;50342:157;;;:::o;65013:191::-;65078:4;65125:12;:19;;;;65115:7;:29;:81;;;;;65194:1;65161:35;;:12;65174:7;65161:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:35;;;;65115:81;65095:101;;65013:191;;;:::o;23341:98::-;23394:7;23421:10;23414:17;;23341:98;:::o;69903:172::-;70005:2;69978:15;:24;69994:7;69978:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;70059:7;70055:2;70023:44;;70032:12;70045:7;70032:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;70023:44;;;;;;;;;;;;69903:172;;:::o;65371:474::-;65500:4;65544:16;65552:7;65544;:16::i;:::-;65522:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;65654:13;65670:34;65696:7;65670:25;:34::i;:::-;65654:50;;65734:5;65723:16;;:7;:16;;;:64;;;;65780:7;65756:31;;:20;65768:7;65756:11;:20::i;:::-;:31;;;65723:64;:113;;;;65804:32;65821:5;65828:7;65804:16;:32::i;:::-;65723:113;65715:122;;;65371:474;;;;:::o;69206:579::-;69390:4;69352:42;;:34;69378:7;69352:25;:34::i;:::-;:42;;;69330:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;69517:1;69503:16;;:2;:16;;;;69481:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;69631:2;69607:12;69620:7;69607:21;;;;;;;;:::i;:::-;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;69679:1;69644:15;:24;69660:7;69644:24;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;69726:7;69722:1;69699:35;;69708:4;69699:35;;;;;;;;;;;;69769:7;69765:2;69750:27;;69759:4;69750:27;;;;;;;;;;;;69206:579;;;:::o;41520:317::-;41635:6;41610:21;:31;;41602:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41689:12;41707:9;:14;;41729:6;41707:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41688:52;;;41759:7;41751:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;41591:246;41520:317;;:::o;38828:191::-;38902:16;38921:6;;;;;;;;;;;38902:25;;38947:8;38938:6;;:17;;;;;;;;;;;;;;;;;;39002:8;38971:40;;38992:8;38971:40;;;;;;;;;;;;38891:128;38828:191;:::o;70217:326::-;70372:8;70363:17;;:5;:17;;;;70355:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;70470:8;70432:18;:25;70451:5;70432:25;;;;;;;;;;;;;;;:35;70458:8;70432:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;70516:8;70494:41;;70509:5;70494:41;;;70526:8;70494:41;;;;;;:::i;:::-;;;;;;;;70217:326;;;:::o;64337:363::-;64494:28;64504:4;64510:2;64514:7;64494:9;:28::i;:::-;64555:48;64578:4;64584:2;64588:7;64597:5;64555:22;:48::i;:::-;64533:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;64337:363;;;;:::o;6738:723::-;6794:13;7024:1;7015:5;:10;7011:53;;;7042:10;;;;;;;;;;;;;;;;;;;;;7011:53;7074:12;7089:5;7074:20;;7105:14;7130:78;7145:1;7137:4;:9;7130:78;;7163:8;;;;;:::i;:::-;;;;7194:2;7186:10;;;;;:::i;:::-;;;7130:78;;;7218:19;7250:6;7240:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7218:39;;7268:154;7284:1;7275:5;:10;7268:154;;7312:1;7302:11;;;;;:::i;:::-;;;7379:2;7371:5;:10;;;;:::i;:::-;7358:2;:24;;;;:::i;:::-;7345:39;;7328:6;7335;7328:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;7408:2;7399:11;;;;;:::i;:::-;;;7268:154;;;7446:6;7432:21;;;;;6738:723;;;;:::o;74141:101::-;74188:7;74215:12;:19;;;;74208:26;;74141:101;:::o;66059:686::-;66147:15;66216:1;66202:16;;:2;:16;;;;66180:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;66317:1;66308:6;:10;66300:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;66375:12;:19;;;;66365:29;;66412:9;66407:156;66431:6;66427:1;:10;66407:156;;;66459:12;66477:2;66459:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66549:1;66527:12;:19;;;;:23;;;;:::i;:::-;66523:2;66502:49;;66519:1;66502:49;;;;;;;;;;;;66439:3;;;;;:::i;:::-;;;;66407:156;;;;66597:51;66628:1;66632:2;66636:7;66597:51;;;;;;;;;;;;:22;:51::i;:::-;66575:162;;;;;;;;;;;;:::i;:::-;;;;;;;;;66059:686;;;;:::o;71108:991::-;71263:4;71284:15;:2;:13;;;:15::i;:::-;71280:812;;;71353:2;71337:36;;;71396:12;:10;:12::i;:::-;71431:4;71458:7;71488:5;71337:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;71316:721;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71712:1;71695:6;:13;:18;71691:331;;;71738:119;;;;;;;;;;:::i;:::-;;;;;;;;71691:331;71972:6;71966:13;71957:6;71953:2;71949:15;71942:38;71316:721;71586:41;;;71576:51;;;:6;:51;;;;71569:58;;;;;71280:812;72076:4;72069:11;;71108:991;;;;;;;:::o;40259:326::-;40319:4;40576:1;40554:7;:19;;;:23;40547:30;;40259:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:89::-;5951:7;5991:6;5984:5;5980:18;5969:29;;5915:89;;;:::o;6010:115::-;6095:23;6112:5;6095:23;:::i;:::-;6090:3;6083:36;6010:115;;:::o;6131:422::-;6270:4;6308:2;6297:9;6293:18;6285:26;;6321:69;6387:1;6376:9;6372:17;6363:6;6321:69;:::i;:::-;6400:70;6466:2;6455:9;6451:18;6442:6;6400:70;:::i;:::-;6480:66;6542:2;6531:9;6527:18;6518:6;6480:66;:::i;:::-;6131:422;;;;;;:::o;6559:117::-;6668:1;6665;6658:12;6682:117;6791:1;6788;6781:12;6805:117;6914:1;6911;6904:12;6942:553;7000:8;7010:6;7060:3;7053:4;7045:6;7041:17;7037:27;7027:122;;7068:79;;:::i;:::-;7027:122;7181:6;7168:20;7158:30;;7211:18;7203:6;7200:30;7197:117;;;7233:79;;:::i;:::-;7197:117;7347:4;7339:6;7335:17;7323:29;;7401:3;7393:4;7385:6;7381:17;7371:8;7367:32;7364:41;7361:128;;;7408:79;;:::i;:::-;7361:128;6942:553;;;;;:::o;7501:529::-;7572:6;7580;7629:2;7617:9;7608:7;7604:23;7600:32;7597:119;;;7635:79;;:::i;:::-;7597:119;7783:1;7772:9;7768:17;7755:31;7813:18;7805:6;7802:30;7799:117;;;7835:79;;:::i;:::-;7799:117;7948:65;8005:7;7996:6;7985:9;7981:22;7948:65;:::i;:::-;7930:83;;;;7726:297;7501:529;;;;;:::o;8036:329::-;8095:6;8144:2;8132:9;8123:7;8119:23;8115:32;8112:119;;;8150:79;;:::i;:::-;8112:119;8270:1;8295:53;8340:7;8331:6;8320:9;8316:22;8295:53;:::i;:::-;8285:63;;8241:117;8036:329;;;;:::o;8371:474::-;8439:6;8447;8496:2;8484:9;8475:7;8471:23;8467:32;8464:119;;;8502:79;;:::i;:::-;8464:119;8622:1;8647:53;8692:7;8683:6;8672:9;8668:22;8647:53;:::i;:::-;8637:63;;8593:117;8749:2;8775:53;8820:7;8811:6;8800:9;8796:22;8775:53;:::i;:::-;8765:63;;8720:118;8371:474;;;;;:::o;8851:116::-;8921:21;8936:5;8921:21;:::i;:::-;8914:5;8911:32;8901:60;;8957:1;8954;8947:12;8901:60;8851:116;:::o;8973:133::-;9016:5;9054:6;9041:20;9032:29;;9070:30;9094:5;9070:30;:::i;:::-;8973:133;;;;:::o;9112:468::-;9177:6;9185;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9487:2;9513:50;9555:7;9546:6;9535:9;9531:22;9513:50;:::i;:::-;9503:60;;9458:115;9112:468;;;;;:::o;9586:117::-;9695:1;9692;9685:12;9709:180;9757:77;9754:1;9747:88;9854:4;9851:1;9844:15;9878:4;9875:1;9868:15;9895:281;9978:27;10000:4;9978:27;:::i;:::-;9970:6;9966:40;10108:6;10096:10;10093:22;10072:18;10060:10;10057:34;10054:62;10051:88;;;10119:18;;:::i;:::-;10051:88;10159:10;10155:2;10148:22;9938:238;9895:281;;:::o;10182:129::-;10216:6;10243:20;;:::i;:::-;10233:30;;10272:33;10300:4;10292:6;10272:33;:::i;:::-;10182:129;;;:::o;10317:307::-;10378:4;10468:18;10460:6;10457:30;10454:56;;;10490:18;;:::i;:::-;10454:56;10528:29;10550:6;10528:29;:::i;:::-;10520:37;;10612:4;10606;10602:15;10594:23;;10317:307;;;:::o;10630:154::-;10714:6;10709:3;10704;10691:30;10776:1;10767:6;10762:3;10758:16;10751:27;10630:154;;;:::o;10790:410::-;10867:5;10892:65;10908:48;10949:6;10908:48;:::i;:::-;10892:65;:::i;:::-;10883:74;;10980:6;10973:5;10966:21;11018:4;11011:5;11007:16;11056:3;11047:6;11042:3;11038:16;11035:25;11032:112;;;11063:79;;:::i;:::-;11032:112;11153:41;11187:6;11182:3;11177;11153:41;:::i;:::-;10873:327;10790:410;;;;;:::o;11219:338::-;11274:5;11323:3;11316:4;11308:6;11304:17;11300:27;11290:122;;11331:79;;:::i;:::-;11290:122;11448:6;11435:20;11473:78;11547:3;11539:6;11532:4;11524:6;11520:17;11473:78;:::i;:::-;11464:87;;11280:277;11219:338;;;;:::o;11563:943::-;11658:6;11666;11674;11682;11731:3;11719:9;11710:7;11706:23;11702:33;11699:120;;;11738:79;;:::i;:::-;11699:120;11858:1;11883:53;11928:7;11919:6;11908:9;11904:22;11883:53;:::i;:::-;11873:63;;11829:117;11985:2;12011:53;12056:7;12047:6;12036:9;12032:22;12011:53;:::i;:::-;12001:63;;11956:118;12113:2;12139:53;12184:7;12175:6;12164:9;12160:22;12139:53;:::i;:::-;12129:63;;12084:118;12269:2;12258:9;12254:18;12241:32;12300:18;12292:6;12289:30;12286:117;;;12322:79;;:::i;:::-;12286:117;12427:62;12481:7;12472:6;12461:9;12457:22;12427:62;:::i;:::-;12417:72;;12212:287;11563:943;;;;;;;:::o;12512:180::-;12560:77;12557:1;12550:88;12657:4;12654:1;12647:15;12681:4;12678:1;12671:15;12698:320;12742:6;12779:1;12773:4;12769:12;12759:22;;12826:1;12820:4;12816:12;12847:18;12837:81;;12903:4;12895:6;12891:17;12881:27;;12837:81;12965:2;12957:6;12954:14;12934:18;12931:38;12928:84;;;12984:18;;:::i;:::-;12928:84;12749:269;12698:320;;;:::o;13024:242::-;13164:34;13160:1;13152:6;13148:14;13141:58;13233:25;13228:2;13220:6;13216:15;13209:50;13024:242;:::o;13272:366::-;13414:3;13435:67;13499:2;13494:3;13435:67;:::i;:::-;13428:74;;13511:93;13600:3;13511:93;:::i;:::-;13629:2;13624:3;13620:12;13613:19;;13272:366;;;:::o;13644:419::-;13810:4;13848:2;13837:9;13833:18;13825:26;;13897:9;13891:4;13887:20;13883:1;13872:9;13868:17;13861:47;13925:131;14051:4;13925:131;:::i;:::-;13917:139;;13644:419;;;:::o;14069:231::-;14209:34;14205:1;14197:6;14193:14;14186:58;14278:14;14273:2;14265:6;14261:15;14254:39;14069:231;:::o;14306:366::-;14448:3;14469:67;14533:2;14528:3;14469:67;:::i;:::-;14462:74;;14545:93;14634:3;14545:93;:::i;:::-;14663:2;14658:3;14654:12;14647:19;;14306:366;;;:::o;14678:419::-;14844:4;14882:2;14871:9;14867:18;14859:26;;14931:9;14925:4;14921:20;14917:1;14906:9;14902:17;14895:47;14959:131;15085:4;14959:131;:::i;:::-;14951:139;;14678:419;;;:::o;15103:291::-;15243:34;15239:1;15231:6;15227:14;15220:58;15312:34;15307:2;15299:6;15295:15;15288:59;15381:5;15376:2;15368:6;15364:15;15357:30;15103:291;:::o;15400:366::-;15542:3;15563:67;15627:2;15622:3;15563:67;:::i;:::-;15556:74;;15639:93;15728:3;15639:93;:::i;:::-;15757:2;15752:3;15748:12;15741:19;;15400:366;;;:::o;15772:419::-;15938:4;15976:2;15965:9;15961:18;15953:26;;16025:9;16019:4;16015:20;16011:1;16000:9;15996:17;15989:47;16053:131;16179:4;16053:131;:::i;:::-;16045:139;;15772:419;;;:::o;16197:180::-;16245:77;16242:1;16235:88;16342:4;16339:1;16332:15;16366:4;16363:1;16356:15;16383:191;16423:4;16443:20;16461:1;16443:20;:::i;:::-;16438:25;;16477:20;16495:1;16477:20;:::i;:::-;16472:25;;16516:1;16513;16510:8;16507:34;;;16521:18;;:::i;:::-;16507:34;16566:1;16563;16559:9;16551:17;;16383:191;;;;:::o;16580:247::-;16720:34;16716:1;16708:6;16704:14;16697:58;16789:30;16784:2;16776:6;16772:15;16765:55;16580:247;:::o;16833:366::-;16975:3;16996:67;17060:2;17055:3;16996:67;:::i;:::-;16989:74;;17072:93;17161:3;17072:93;:::i;:::-;17190:2;17185:3;17181:12;17174:19;;16833:366;;;:::o;17205:419::-;17371:4;17409:2;17398:9;17394:18;17386:26;;17458:9;17452:4;17448:20;17444:1;17433:9;17429:17;17422:47;17486:131;17612:4;17486:131;:::i;:::-;17478:139;;17205:419;;;:::o;17630:180::-;17678:77;17675:1;17668:88;17775:4;17772:1;17765:15;17799:4;17796:1;17789:15;17816:171;17855:3;17878:24;17896:5;17878:24;:::i;:::-;17869:33;;17924:4;17917:5;17914:15;17911:41;;;17932:18;;:::i;:::-;17911:41;17979:1;17972:5;17968:13;17961:20;;17816:171;;;:::o;17993:233::-;18032:3;18055:24;18073:5;18055:24;:::i;:::-;18046:33;;18101:66;18094:5;18091:77;18088:103;;;18171:18;;:::i;:::-;18088:103;18218:1;18211:5;18207:13;18200:20;;17993:233;;;:::o;18232:231::-;18372:34;18368:1;18360:6;18356:14;18349:58;18441:14;18436:2;18428:6;18424:15;18417:39;18232:231;:::o;18469:366::-;18611:3;18632:67;18696:2;18691:3;18632:67;:::i;:::-;18625:74;;18708:93;18797:3;18708:93;:::i;:::-;18826:2;18821:3;18817:12;18810:19;;18469:366;;;:::o;18841:419::-;19007:4;19045:2;19034:9;19030:18;19022:26;;19094:9;19088:4;19084:20;19080:1;19069:9;19065:17;19058:47;19122:131;19248:4;19122:131;:::i;:::-;19114:139;;18841:419;;;:::o;19266:182::-;19406:34;19402:1;19394:6;19390:14;19383:58;19266:182;:::o;19454:366::-;19596:3;19617:67;19681:2;19676:3;19617:67;:::i;:::-;19610:74;;19693:93;19782:3;19693:93;:::i;:::-;19811:2;19806:3;19802:12;19795:19;;19454:366;;;:::o;19826:419::-;19992:4;20030:2;20019:9;20015:18;20007:26;;20079:9;20073:4;20069:20;20065:1;20054:9;20050:17;20043:47;20107:131;20233:4;20107:131;:::i;:::-;20099:139;;19826:419;;;:::o;20251:232::-;20391:34;20387:1;20379:6;20375:14;20368:58;20460:15;20455:2;20447:6;20443:15;20436:40;20251:232;:::o;20489:366::-;20631:3;20652:67;20716:2;20711:3;20652:67;:::i;:::-;20645:74;;20728:93;20817:3;20728:93;:::i;:::-;20846:2;20841:3;20837:12;20830:19;;20489:366;;;:::o;20861:419::-;21027:4;21065:2;21054:9;21050:18;21042:26;;21114:9;21108:4;21104:20;21100:1;21089:9;21085:17;21078:47;21142:131;21268:4;21142:131;:::i;:::-;21134:139;;20861:419;;;:::o;21286:305::-;21326:3;21345:20;21363:1;21345:20;:::i;:::-;21340:25;;21379:20;21397:1;21379:20;:::i;:::-;21374:25;;21533:1;21465:66;21461:74;21458:1;21455:81;21452:107;;;21539:18;;:::i;:::-;21452:107;21583:1;21580;21576:9;21569:16;;21286:305;;;;:::o;21597:239::-;21737:34;21733:1;21725:6;21721:14;21714:58;21806:22;21801:2;21793:6;21789:15;21782:47;21597:239;:::o;21842:366::-;21984:3;22005:67;22069:2;22064:3;22005:67;:::i;:::-;21998:74;;22081:93;22170:3;22081:93;:::i;:::-;22199:2;22194:3;22190:12;22183:19;;21842:366;;;:::o;22214:419::-;22380:4;22418:2;22407:9;22403:18;22395:26;;22467:9;22461:4;22457:20;22453:1;22442:9;22438:17;22431:47;22495:131;22621:4;22495:131;:::i;:::-;22487:139;;22214:419;;;:::o;22639:240::-;22779:34;22775:1;22767:6;22763:14;22756:58;22848:23;22843:2;22835:6;22831:15;22824:48;22639:240;:::o;22885:366::-;23027:3;23048:67;23112:2;23107:3;23048:67;:::i;:::-;23041:74;;23124:93;23213:3;23124:93;:::i;:::-;23242:2;23237:3;23233:12;23226:19;;22885:366;;;:::o;23257:419::-;23423:4;23461:2;23450:9;23446:18;23438:26;;23510:9;23504:4;23500:20;23496:1;23485:9;23481:17;23474:47;23538:131;23664:4;23538:131;:::i;:::-;23530:139;;23257:419;;;:::o;23682:143::-;23739:5;23770:6;23764:13;23755:22;;23786:33;23813:5;23786:33;:::i;:::-;23682:143;;;;:::o;23831:351::-;23901:6;23950:2;23938:9;23929:7;23925:23;23921:32;23918:119;;;23956:79;;:::i;:::-;23918:119;24076:1;24101:64;24157:7;24148:6;24137:9;24133:22;24101:64;:::i;:::-;24091:74;;24047:128;23831:351;;;;:::o;24188:332::-;24309:4;24347:2;24336:9;24332:18;24324:26;;24360:71;24428:1;24417:9;24413:17;24404:6;24360:71;:::i;:::-;24441:72;24509:2;24498:9;24494:18;24485:6;24441:72;:::i;:::-;24188:332;;;;;:::o;24526:137::-;24580:5;24611:6;24605:13;24596:22;;24627:30;24651:5;24627:30;:::i;:::-;24526:137;;;;:::o;24669:345::-;24736:6;24785:2;24773:9;24764:7;24760:23;24756:32;24753:119;;;24791:79;;:::i;:::-;24753:119;24911:1;24936:61;24989:7;24980:6;24969:9;24965:22;24936:61;:::i;:::-;24926:71;;24882:125;24669:345;;;;:::o;25020:177::-;25160:29;25156:1;25148:6;25144:14;25137:53;25020:177;:::o;25203:366::-;25345:3;25366:67;25430:2;25425:3;25366:67;:::i;:::-;25359:74;;25442:93;25531:3;25442:93;:::i;:::-;25560:2;25555:3;25551:12;25544:19;;25203:366;;;:::o;25575:419::-;25741:4;25779:2;25768:9;25764:18;25756:26;;25828:9;25822:4;25818:20;25814:1;25803:9;25799:17;25792:47;25856:131;25982:4;25856:131;:::i;:::-;25848:139;;25575:419;;;:::o;26000:227::-;26140:34;26136:1;26128:6;26124:14;26117:58;26209:10;26204:2;26196:6;26192:15;26185:35;26000:227;:::o;26233:366::-;26375:3;26396:67;26460:2;26455:3;26396:67;:::i;:::-;26389:74;;26472:93;26561:3;26472:93;:::i;:::-;26590:2;26585:3;26581:12;26574:19;;26233:366;;;:::o;26605:419::-;26771:4;26809:2;26798:9;26794:18;26786:26;;26858:9;26852:4;26848:20;26844:1;26833:9;26829:17;26822:47;26886:131;27012:4;26886:131;:::i;:::-;26878:139;;26605:419;;;:::o;27030:148::-;27132:11;27169:3;27154:18;;27030:148;;;;:::o;27184:141::-;27233:4;27256:3;27248:11;;27279:3;27276:1;27269:14;27313:4;27310:1;27300:18;27292:26;;27184:141;;;:::o;27355:845::-;27458:3;27495:5;27489:12;27524:36;27550:9;27524:36;:::i;:::-;27576:89;27658:6;27653:3;27576:89;:::i;:::-;27569:96;;27696:1;27685:9;27681:17;27712:1;27707:137;;;;27858:1;27853:341;;;;27674:520;;27707:137;27791:4;27787:9;27776;27772:25;27767:3;27760:38;27827:6;27822:3;27818:16;27811:23;;27707:137;;27853:341;27920:38;27952:5;27920:38;:::i;:::-;27980:1;27994:154;28008:6;28005:1;28002:13;27994:154;;;28082:7;28076:14;28072:1;28067:3;28063:11;28056:35;28132:1;28123:7;28119:15;28108:26;;28030:4;28027:1;28023:12;28018:17;;27994:154;;;28177:6;28172:3;28168:16;28161:23;;27860:334;;27674:520;;27462:738;;27355:845;;;;:::o;28206:377::-;28312:3;28340:39;28373:5;28340:39;:::i;:::-;28395:89;28477:6;28472:3;28395:89;:::i;:::-;28388:96;;28493:52;28538:6;28533:3;28526:4;28519:5;28515:16;28493:52;:::i;:::-;28570:6;28565:3;28561:16;28554:23;;28316:267;28206:377;;;;:::o;28589:429::-;28766:3;28788:92;28876:3;28867:6;28788:92;:::i;:::-;28781:99;;28897:95;28988:3;28979:6;28897:95;:::i;:::-;28890:102;;29009:3;29002:10;;28589:429;;;;;:::o;29024:225::-;29164:34;29160:1;29152:6;29148:14;29141:58;29233:8;29228:2;29220:6;29216:15;29209:33;29024:225;:::o;29255:366::-;29397:3;29418:67;29482:2;29477:3;29418:67;:::i;:::-;29411:74;;29494:93;29583:3;29494:93;:::i;:::-;29612:2;29607:3;29603:12;29596:19;;29255:366;;;:::o;29627:419::-;29793:4;29831:2;29820:9;29816:18;29808:26;;29880:9;29874:4;29870:20;29866:1;29855:9;29851:17;29844:47;29908:131;30034:4;29908:131;:::i;:::-;29900:139;;29627:419;;;:::o;30052:181::-;30192:33;30188:1;30180:6;30176:14;30169:57;30052:181;:::o;30239:366::-;30381:3;30402:67;30466:2;30461:3;30402:67;:::i;:::-;30395:74;;30478:93;30567:3;30478:93;:::i;:::-;30596:2;30591:3;30587:12;30580:19;;30239:366;;;:::o;30611:419::-;30777:4;30815:2;30804:9;30800:18;30792:26;;30864:9;30858:4;30854:20;30850:1;30839:9;30835:17;30828:47;30892:131;31018:4;30892:131;:::i;:::-;30884:139;;30611:419;;;:::o;31036:222::-;31176:34;31172:1;31164:6;31160:14;31153:58;31245:5;31240:2;31232:6;31228:15;31221:30;31036:222;:::o;31264:366::-;31406:3;31427:67;31491:2;31486:3;31427:67;:::i;:::-;31420:74;;31503:93;31592:3;31503:93;:::i;:::-;31621:2;31616:3;31612:12;31605:19;;31264:366;;;:::o;31636:419::-;31802:4;31840:2;31829:9;31825:18;31817:26;;31889:9;31883:4;31879:20;31875:1;31864:9;31860:17;31853:47;31917:131;32043:4;31917:131;:::i;:::-;31909:139;;31636:419;;;:::o;32061:225::-;32201:34;32197:1;32189:6;32185:14;32178:58;32270:8;32265:2;32257:6;32253:15;32246:33;32061:225;:::o;32292:366::-;32434:3;32455:67;32519:2;32514:3;32455:67;:::i;:::-;32448:74;;32531:93;32620:3;32531:93;:::i;:::-;32649:2;32644:3;32640:12;32633:19;;32292:366;;;:::o;32664:419::-;32830:4;32868:2;32857:9;32853:18;32845:26;;32917:9;32911:4;32907:20;32903:1;32892:9;32888:17;32881:47;32945:131;33071:4;32945:131;:::i;:::-;32937:139;;32664:419;;;:::o;33089:223::-;33229:34;33225:1;33217:6;33213:14;33206:58;33298:6;33293:2;33285:6;33281:15;33274:31;33089:223;:::o;33318:366::-;33460:3;33481:67;33545:2;33540:3;33481:67;:::i;:::-;33474:74;;33557:93;33646:3;33557:93;:::i;:::-;33675:2;33670:3;33666:12;33659:19;;33318:366;;;:::o;33690:419::-;33856:4;33894:2;33883:9;33879:18;33871:26;;33943:9;33937:4;33933:20;33929:1;33918:9;33914:17;33907:47;33971:131;34097:4;33971:131;:::i;:::-;33963:139;;33690:419;;;:::o;34115:348::-;34155:7;34178:20;34196:1;34178:20;:::i;:::-;34173:25;;34212:20;34230:1;34212:20;:::i;:::-;34207:25;;34400:1;34332:66;34328:74;34325:1;34322:81;34317:1;34310:9;34303:17;34299:105;34296:131;;;34407:18;;:::i;:::-;34296:131;34455:1;34452;34448:9;34437:20;;34115:348;;;;:::o;34469:220::-;34609:34;34605:1;34597:6;34593:14;34586:58;34678:3;34673:2;34665:6;34661:15;34654:28;34469:220;:::o;34695:366::-;34837:3;34858:67;34922:2;34917:3;34858:67;:::i;:::-;34851:74;;34934:93;35023:3;34934:93;:::i;:::-;35052:2;35047:3;35043:12;35036:19;;34695:366;;;:::o;35067:419::-;35233:4;35271:2;35260:9;35256:18;35248:26;;35320:9;35314:4;35310:20;35306:1;35295:9;35291:17;35284:47;35348:131;35474:4;35348:131;:::i;:::-;35340:139;;35067:419;;;:::o;35492:242::-;35632:34;35628:1;35620:6;35616:14;35609:58;35701:25;35696:2;35688:6;35684:15;35677:50;35492:242;:::o;35740:366::-;35882:3;35903:67;35967:2;35962:3;35903:67;:::i;:::-;35896:74;;35979:93;36068:3;35979:93;:::i;:::-;36097:2;36092:3;36088:12;36081:19;;35740:366;;;:::o;36112:419::-;36278:4;36316:2;36305:9;36301:18;36293:26;;36365:9;36359:4;36355:20;36351:1;36340:9;36336:17;36329:47;36393:131;36519:4;36393:131;:::i;:::-;36385:139;;36112:419;;;:::o;36537:235::-;36677:34;36673:1;36665:6;36661:14;36654:58;36746:18;36741:2;36733:6;36729:15;36722:43;36537:235;:::o;36778:366::-;36920:3;36941:67;37005:2;37000:3;36941:67;:::i;:::-;36934:74;;37017:93;37106:3;37017:93;:::i;:::-;37135:2;37130:3;37126:12;37119:19;;36778:366;;;:::o;37150:419::-;37316:4;37354:2;37343:9;37339:18;37331:26;;37403:9;37397:4;37393:20;37389:1;37378:9;37374:17;37367:47;37431:131;37557:4;37431:131;:::i;:::-;37423:139;;37150:419;;;:::o;37575:234::-;37715:34;37711:1;37703:6;37699:14;37692:58;37784:17;37779:2;37771:6;37767:15;37760:42;37575:234;:::o;37815:366::-;37957:3;37978:67;38042:2;38037:3;37978:67;:::i;:::-;37971:74;;38054:93;38143:3;38054:93;:::i;:::-;38172:2;38167:3;38163:12;38156:19;;37815:366;;;:::o;38187:419::-;38353:4;38391:2;38380:9;38376:18;38368:26;;38440:9;38434:4;38430:20;38426:1;38415:9;38411:17;38404:47;38468:131;38594:4;38468:131;:::i;:::-;38460:139;;38187:419;;;:::o;38612:179::-;38752:31;38748:1;38740:6;38736:14;38729:55;38612:179;:::o;38797:366::-;38939:3;38960:67;39024:2;39019:3;38960:67;:::i;:::-;38953:74;;39036:93;39125:3;39036:93;:::i;:::-;39154:2;39149:3;39145:12;39138:19;;38797:366;;;:::o;39169:419::-;39335:4;39373:2;39362:9;39358:18;39350:26;;39422:9;39416:4;39412:20;39408:1;39397:9;39393:17;39386:47;39450:131;39576:4;39450:131;:::i;:::-;39442:139;;39169:419;;;:::o;39594:147::-;39695:11;39732:3;39717:18;;39594:147;;;;:::o;39747:114::-;;:::o;39867:398::-;40026:3;40047:83;40128:1;40123:3;40047:83;:::i;:::-;40040:90;;40139:93;40228:3;40139:93;:::i;:::-;40257:1;40252:3;40248:11;40241:18;;39867:398;;;:::o;40271:379::-;40455:3;40477:147;40620:3;40477:147;:::i;:::-;40470:154;;40641:3;40634:10;;40271:379;;;:::o;40656:245::-;40796:34;40792:1;40784:6;40780:14;40773:58;40865:28;40860:2;40852:6;40848:15;40841:53;40656:245;:::o;40907:366::-;41049:3;41070:67;41134:2;41129:3;41070:67;:::i;:::-;41063:74;;41146:93;41235:3;41146:93;:::i;:::-;41264:2;41259:3;41255:12;41248:19;;40907:366;;;:::o;41279:419::-;41445:4;41483:2;41472:9;41468:18;41460:26;;41532:9;41526:4;41522:20;41518:1;41507:9;41503:17;41496:47;41560:131;41686:4;41560:131;:::i;:::-;41552:139;;41279:419;;;:::o;41704:223::-;41844:34;41840:1;41832:6;41828:14;41821:58;41913:6;41908:2;41900:6;41896:15;41889:31;41704:223;:::o;41933:366::-;42075:3;42096:67;42160:2;42155:3;42096:67;:::i;:::-;42089:74;;42172:93;42261:3;42172:93;:::i;:::-;42290:2;42285:3;42281:12;42274:19;;41933:366;;;:::o;42305:419::-;42471:4;42509:2;42498:9;42494:18;42486:26;;42558:9;42552:4;42548:20;42544:1;42533:9;42529:17;42522:47;42586:131;42712:4;42586:131;:::i;:::-;42578:139;;42305:419;;;:::o;42730:248::-;42870:34;42866:1;42858:6;42854:14;42847:58;42939:31;42934:2;42926:6;42922:15;42915:56;42730:248;:::o;42984:366::-;43126:3;43147:67;43211:2;43206:3;43147:67;:::i;:::-;43140:74;;43223:93;43312:3;43223:93;:::i;:::-;43341:2;43336:3;43332:12;43325:19;;42984:366;;;:::o;43356:419::-;43522:4;43560:2;43549:9;43545:18;43537:26;;43609:9;43603:4;43599:20;43595:1;43584:9;43580:17;43573:47;43637:131;43763:4;43637:131;:::i;:::-;43629:139;;43356:419;;;:::o;43781:180::-;43829:77;43826:1;43819:88;43926:4;43923:1;43916:15;43950:4;43947:1;43940:15;43967:185;44007:1;44024:20;44042:1;44024:20;:::i;:::-;44019:25;;44058:20;44076:1;44058:20;:::i;:::-;44053:25;;44097:1;44087:35;;44102:18;;:::i;:::-;44087:35;44144:1;44141;44137:9;44132:14;;43967:185;;;;:::o;44158:176::-;44190:1;44207:20;44225:1;44207:20;:::i;:::-;44202:25;;44241:20;44259:1;44241:20;:::i;:::-;44236:25;;44280:1;44270:35;;44285:18;;:::i;:::-;44270:35;44326:1;44323;44319:9;44314:14;;44158:176;;;;:::o;44340:230::-;44480:34;44476:1;44468:6;44464:14;44457:58;44549:13;44544:2;44536:6;44532:15;44525:38;44340:230;:::o;44576:366::-;44718:3;44739:67;44803:2;44798:3;44739:67;:::i;:::-;44732:74;;44815:93;44904:3;44815:93;:::i;:::-;44933:2;44928:3;44924:12;44917:19;;44576:366;;;:::o;44948:419::-;45114:4;45152:2;45141:9;45137:18;45129:26;;45201:9;45195:4;45191:20;45187:1;45176:9;45172:17;45165:47;45229:131;45355:4;45229:131;:::i;:::-;45221:139;;44948:419;;;:::o;45373:181::-;45513:33;45509:1;45501:6;45497:14;45490:57;45373:181;:::o;45560:366::-;45702:3;45723:67;45787:2;45782:3;45723:67;:::i;:::-;45716:74;;45799:93;45888:3;45799:93;:::i;:::-;45917:2;45912:3;45908:12;45901:19;;45560:366;;;:::o;45932:419::-;46098:4;46136:2;46125:9;46121:18;46113:26;;46185:9;46179:4;46175:20;46171:1;46160:9;46156:17;46149:47;46213:131;46339:4;46213:131;:::i;:::-;46205:139;;45932:419;;;:::o;46357:98::-;46408:6;46442:5;46436:12;46426:22;;46357:98;;;:::o;46461:168::-;46544:11;46578:6;46573:3;46566:19;46618:4;46613:3;46609:14;46594:29;;46461:168;;;;:::o;46635:360::-;46721:3;46749:38;46781:5;46749:38;:::i;:::-;46803:70;46866:6;46861:3;46803:70;:::i;:::-;46796:77;;46882:52;46927:6;46922:3;46915:4;46908:5;46904:16;46882:52;:::i;:::-;46959:29;46981:6;46959:29;:::i;:::-;46954:3;46950:39;46943:46;;46725:270;46635:360;;;;:::o;47001:640::-;47196:4;47234:3;47223:9;47219:19;47211:27;;47248:71;47316:1;47305:9;47301:17;47292:6;47248:71;:::i;:::-;47329:72;47397:2;47386:9;47382:18;47373:6;47329:72;:::i;:::-;47411;47479:2;47468:9;47464:18;47455:6;47411:72;:::i;:::-;47530:9;47524:4;47520:20;47515:2;47504:9;47500:18;47493:48;47558:76;47629:4;47620:6;47558:76;:::i;:::-;47550:84;;47001:640;;;;;;;:::o;47647:141::-;47703:5;47734:6;47728:13;47719:22;;47750:32;47776:5;47750:32;:::i;:::-;47647:141;;;;:::o;47794:349::-;47863:6;47912:2;47900:9;47891:7;47887:23;47883:32;47880:119;;;47918:79;;:::i;:::-;47880:119;48038:1;48063:63;48118:7;48109:6;48098:9;48094:22;48063:63;:::i;:::-;48053:73;;48009:127;47794:349;;;;:::o
Swarm Source
ipfs://96957c6b7776f49d864b46a6bee4e4b03cdfb220d9294363a2b85f7147c15709
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.