ERC-721
Overview
Max Total Supply
861 SLSTC
Holders
773
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SLSTCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SolsticeEris
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-06 */ /** *Submitted for verification at Etherscan.io on 2022-05-31 */ // SPDX-License-Identifier: MIT 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: ECDSA.sol // OpenZeppelin Contracts v4.4.1 (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: 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: Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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: Payment.sol // OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract Payment is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + totalReleased(); uint256 payment = _pendingPayment(account, totalReceived, released(account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } } // File: 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: 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: 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: 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: IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: 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: ERC721A.sol pragma solidity ^0.8.0; contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @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 override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.2; abstract contract ILLUMINATI { function ownerOf(uint256 tokenId) public virtual view returns (address); function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256); function balanceOf(address owner) external virtual view returns (uint256 balance); } contract SolsticeEris is ERC721A, Ownable { using Strings for uint256; string public baseURI; mapping(uint256 => bool) public claimTracker; mapping(address => bool) public claimTrackerAddress; ILLUMINATI private illuminati; bool public claimLive = false; address illuminatiContract = 0x26BAdF693F2b103B021c670c852262b379bBBE8A; constructor() ERC721A("SolsticeEris", "SLSTC") { illuminati = ILLUMINATI ( illuminatiContract ); } // Claim Ticket function claimTicket(uint256[] calldata illuminatiIDs) external { //initial checks uint256 illuminatis = illuminatiIDs.length; require(claimLive,"Claim Window is not live"); require(illuminatis > 0,"You must claim at least 1 token"); // you must claim require(claimTrackerAddress[msg.sender] == false, "Wallet already claimed"); // check wallet claimed // checks for(uint256 x = 0; x < illuminatis; x++) { require(illuminati.ownerOf(illuminatiIDs[x]) == msg.sender,"You do not own these Illuminati"); //check inputted balance require(claimTracker[illuminatiIDs[x]] == false,"An inputted token was already claimed"); //check if inputted tokens claimed claimTracker[illuminatiIDs[x]] = true; //track claims } claimTrackerAddress[msg.sender] = true; // set wallet claimed _safeMint(msg.sender, 1); //mint 1 ticket per wallet } function setMetadata(string memory uri) external onlyOwner { baseURI = uri; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId)); string memory uri = _baseURI(); return bytes(uri).length != 0 ? string(abi.encodePacked(uri, tokenId.toString())) : ''; } // enables claim function setClaimLive(bool _live) external onlyOwner { claimLive = _live; } //check claim by token function checkClaimed(uint256 tokenId) public view returns (bool) { return claimTracker[tokenId]; } //check claim by address function checkAddressClaimed(address addr) public view returns (bool) { return claimTrackerAddress[addr]; } //check Illuminati Tokens function checkIlluminatiTokens(address owner) public view returns (uint256[] memory){ uint256 tokenCount = illuminati.balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokenIds[i] = illuminati.tokenOfOwnerByIndex(owner, i); } return tokenIds; } //withdraw any funds function withdrawToOwner() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkAddressClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"checkClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"checkIlluminatiTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"illuminatiIDs","type":"uint256[]"}],"name":"claimTicket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimTracker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimTrackerAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"bool","name":"_live","type":"bool"}],"name":"setClaimLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawToOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600b805460ff60a01b19169055600c80546001600160a01b0319167326badf693f2b103b021c670c852262b379bbbe8a1790553480156200004457600080fd5b50604080518082018252600c81526b536f6c73746963654572697360a01b602080830191825283518085019094526005845264534c53544360d81b908401528151919291620000969160019162000147565b508051620000ac90600290602084019062000147565b505050620000c9620000c3620000f160201b60201c565b620000f5565b600c54600b80546001600160a01b0319166001600160a01b0390921691909117905562000229565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015590620001ed565b90600052602060002090601f016020900481019282620001795760008555620001c4565b82601f106200019457805160ff1916838001178555620001c4565b82800160010185558215620001c4579182015b82811115620001c4578251825591602001919060010190620001a7565b50620001d2929150620001d6565b5090565b5b80821115620001d25760008155600101620001d7565b600181811c908216806200020257607f821691505b6020821081036200022357634e487b7160e01b600052602260045260246000fd5b50919050565b612aa680620002396000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80636c0360eb1161010457806395d89b41116100a2578063c87b56dd11610071578063c87b56dd14610438578063dcc98eb31461044b578063e985e9c514610484578063f2fde38b146104cd57600080fd5b806395d89b41146103f7578063a22cb465146103ff578063a49a1e7d14610412578063b88d4fde1461042557600080fd5b80637270f7d7116100de5780637270f7d714610383578063783e1bab146103a35780638c0e2812146103b65780638da5cb5b146103d957600080fd5b80636c0360eb1461036057806370a0823114610368578063715018a61461037b57600080fd5b80632f745c591161017c57806342842e0e1161014b57806342842e0e146103045780634d449167146103175780634f6ccce71461033a5780636352211e1461034d57600080fd5b80632f745c59146102a157806330922d78146102b457806335a55caa146102d95780633cb40e16146102fc57600080fd5b8063095ea7b3116101b8578063095ea7b3146102545780631426135a1461026957806318160ddd1461027c57806323b872dd1461028e57600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed3660046123e8565b6104e0565b60405190151581526020015b60405180910390f35b61020f610611565b6040516101fe919061247b565b61022f61022a36600461248e565b6106a3565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101fe565b6102676102623660046124c9565b610750565b005b6102676102773660046124f5565b6108a9565b6000545b6040519081526020016101fe565b61026761029c36600461256a565b610c0e565b6102806102af3660046124c9565b610c19565b600b546101f29074010000000000000000000000000000000000000000900460ff1681565b6101f26102e736600461248e565b60009081526009602052604090205460ff1690565b610267610dd6565b61026761031236600461256a565b610e6c565b6101f261032536600461248e565b60096020526000908152604090205460ff1681565b61028061034836600461248e565b610e87565b61022f61035b36600461248e565b610f03565b61020f610f15565b6102806103763660046125ab565b610fa3565b610267611069565b6103966103913660046125ab565b6110dc565b6040516101fe91906125c8565b6102676103b1366004612621565b61129b565b6101f26103c43660046125ab565b600a6020526000908152604090205460ff1681565b60075473ffffffffffffffffffffffffffffffffffffffff1661022f565b61020f61134c565b61026761040d36600461263c565b61135b565b610267610420366004612734565b611457565b61026761043336600461277d565b6114d5565b61020f61044636600461248e565b611564565b6101f26104593660046125ab565b73ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205460ff1690565b6101f26104923660046127fd565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102676104db3660046125ab565b6115d6565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061057357507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105bf57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b8061060b57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606001805461062090612836565b80601f016020809104026020016040519081016040528092919081815260200182805461064c90612836565b80156106995780601f1061066e57610100808354040283529160200191610699565b820191906000526020600020905b81548152906001019060200180831161067c57829003601f168201915b5050505050905090565b60006106b0826000541190565b6107275760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061075b82610f03565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107fe5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f6572000000000000000000000000000000000000000000000000000000000000606482015260840161071e565b3373ffffffffffffffffffffffffffffffffffffffff8216148061082757506108278133610492565b6108995760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161071e565b6108a48383836116cf565b505050565b600b54819074010000000000000000000000000000000000000000900460ff166109155760405162461bcd60e51b815260206004820152601860248201527f436c61696d2057696e646f77206973206e6f74206c6976650000000000000000604482015260640161071e565b600081116109655760405162461bcd60e51b815260206004820152601f60248201527f596f75206d75737420636c61696d206174206c65617374203120746f6b656e00604482015260640161071e565b336000908152600a602052604090205460ff16156109c55760405162461bcd60e51b815260206004820152601660248201527f57616c6c657420616c726561647920636c61696d656400000000000000000000604482015260640161071e565b60005b81811015610bc857600b54339073ffffffffffffffffffffffffffffffffffffffff16636352211e868685818110610a0257610a02612889565b905060200201356040518263ffffffff1660e01b8152600401610a2791815260200190565b602060405180830381865afa158015610a44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6891906128b8565b73ffffffffffffffffffffffffffffffffffffffff1614610acb5760405162461bcd60e51b815260206004820152601f60248201527f596f7520646f206e6f74206f776e20746865736520496c6c756d696e61746900604482015260640161071e565b60096000858584818110610ae157610ae1612889565b602090810292909201358352508101919091526040016000205460ff1615610b715760405162461bcd60e51b815260206004820152602560248201527f416e20696e70757474656420746f6b656e2077617320616c726561647920636c60448201527f61696d6564000000000000000000000000000000000000000000000000000000606482015260840161071e565b600160096000868685818110610b8957610b89612889565b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610bc090612904565b9150506109c8565b50336000818152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556108a49190611750565b6108a483838361176a565b6000610c2483610fa3565b8210610c985760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f6473000000000000000000000000000000000000000000000000000000000000606482015260840161071e565b600080549080805b83811015610d675760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610d1157805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d5e57868403610d575750935061060b92505050565b6001909301925b50600101610ca0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e646578000000000000000000000000000000000000606482015260840161071e565b60075473ffffffffffffffffffffffffffffffffffffffff163314610e3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161071e565b60405133904780156108fc02916000818181858888f19350505050158015610e69573d6000803e3d6000fd5b50565b6108a4838383604051806020016040528060008152506114d5565b600080548210610eff5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e64730000000000000000000000000000000000000000000000000000000000606482015260840161071e565b5090565b6000610f0e82611b9c565b5192915050565b60088054610f2290612836565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4e90612836565b8015610f9b5780601f10610f7057610100808354040283529160200191610f9b565b820191906000526020600020905b815481529060010190602001808311610f7e57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff821661102e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f2061646472657373000000000000000000000000000000000000000000606482015260840161071e565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b60075473ffffffffffffffffffffffffffffffffffffffff1633146110d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161071e565b6110da6000611cc2565b565b600b546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301526060926000929116906370a0823190602401602060405180830381865afa158015611151573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611175919061293c565b905060008167ffffffffffffffff81111561119257611192612671565b6040519080825280602002602001820160405280156111bb578160200160208202803683370190505b50905060005b8281101561129357600b546040517f2f745c5900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff87811660048301526024820184905290911690632f745c5990604401602060405180830381865afa158015611240573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611264919061293c565b82828151811061127657611276612889565b60209081029190910101528061128b81612904565b9150506111c1565b509392505050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146113025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161071e565b600b805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60606002805461062090612836565b3373ffffffffffffffffffffffffffffffffffffffff8316036113c05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161071e565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146114be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161071e565b80516114d190600890602084019061232a565b5050565b6114e084848461176a565b6114ec84848484611d39565b61155e5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e74657200000000000000000000000000606482015260840161071e565b50505050565b6060611571826000541190565b61157a57600080fd5b6000611584611f13565b905080516000036115a457604051806020016040528060008152506115cf565b806115ae84611f22565b6040516020016115bf929190612955565b6040516020818303038152906040525b9392505050565b60075473ffffffffffffffffffffffffffffffffffffffff16331461163d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161071e565b73ffffffffffffffffffffffffffffffffffffffff81166116c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161071e565b610e6981611cc2565b60008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6114d1828260405180602001604052806000815250612057565b600061177582611b9c565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806117d35750336117bb846106a3565b73ffffffffffffffffffffffffffffffffffffffff16145b806117e5575081516117e59033610492565b90508061185a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161071e565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146118ff5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e65720000000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff84166119885760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161071e565b61199860008484600001516116cf565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff1602179055908601808352912054909116611b3857611ab5816000541190565b15611b38578251600082815260036020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff909316929092171790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611bbb826000541190565b611c2d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e00000000000000000000000000000000000000000000606482015260840161071e565b815b60008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215611c9a579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01611c2f565b6007805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15611f07576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611db0903390899088908890600401612984565b6020604051808303816000875af1925050508015611e09575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611e06918101906129cd565b60015b611ebc573d808015611e37576040519150601f19603f3d011682016040523d82523d6000602084013e611e3c565b606091505b508051600003611eb45760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e74657200000000000000000000000000606482015260840161071e565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611f0b565b5060015b949350505050565b60606008805461062090612836565b606081600003611f6557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611f8f5780611f7981612904565b9150611f889050600a83612a19565b9150611f69565b60008167ffffffffffffffff811115611faa57611faa612671565b6040519080825280601f01601f191660200182016040528015611fd4576020820181803683370190505b5090505b8415611f0b57611fe9600183612a2d565b9150611ff6600a86612a44565b612001906030612a58565b60f81b81838151811061201657612016612889565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612050600a86612a19565b9450611fd8565b6108a4838383600160005473ffffffffffffffffffffffffffffffffffffffff85166120eb5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161071e565b836000036121615760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e2030000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff8516600081815260046020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b8581101561232157604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315612315576122a36000888488611d39565b6123155760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e74657200000000000000000000000000606482015260840161071e565b60019182019101612243565b50600055611b95565b82805461233690612836565b90600052602060002090601f016020900481019282612358576000855561239e565b82601f1061237157805160ff191683800117855561239e565b8280016001018555821561239e579182015b8281111561239e578251825591602001919060010190612383565b50610eff9291505b80821115610eff57600081556001016123a6565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e6957600080fd5b6000602082840312156123fa57600080fd5b81356115cf816123ba565b60005b83811015612420578181015183820152602001612408565b8381111561155e5750506000910152565b60008151808452612449816020860160208601612405565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006115cf6020830184612431565b6000602082840312156124a057600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff81168114610e6957600080fd5b600080604083850312156124dc57600080fd5b82356124e7816124a7565b946020939093013593505050565b6000806020838503121561250857600080fd5b823567ffffffffffffffff8082111561252057600080fd5b818501915085601f83011261253457600080fd5b81358181111561254357600080fd5b8660208260051b850101111561255857600080fd5b60209290920196919550909350505050565b60008060006060848603121561257f57600080fd5b833561258a816124a7565b9250602084013561259a816124a7565b929592945050506040919091013590565b6000602082840312156125bd57600080fd5b81356115cf816124a7565b6020808252825182820181905260009190848201906040850190845b81811015612600578351835292840192918401916001016125e4565b50909695505050505050565b8035801515811461261c57600080fd5b919050565b60006020828403121561263357600080fd5b6115cf8261260c565b6000806040838503121561264f57600080fd5b823561265a816124a7565b91506126686020840161260c565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156126bb576126bb612671565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561270157612701612671565b8160405280935085815286868601111561271a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561274657600080fd5b813567ffffffffffffffff81111561275d57600080fd5b8201601f8101841361276e57600080fd5b611f0b848235602084016126a0565b6000806000806080858703121561279357600080fd5b843561279e816124a7565b935060208501356127ae816124a7565b925060408501359150606085013567ffffffffffffffff8111156127d157600080fd5b8501601f810187136127e257600080fd5b6127f1878235602084016126a0565b91505092959194509250565b6000806040838503121561281057600080fd5b823561281b816124a7565b9150602083013561282b816124a7565b809150509250929050565b600181811c9082168061284a57607f821691505b602082108103612883577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156128ca57600080fd5b81516115cf816124a7565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612935576129356128d5565b5060010190565b60006020828403121561294e57600080fd5b5051919050565b60008351612967818460208801612405565b83519083019061297b818360208801612405565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526129c36080830184612431565b9695505050505050565b6000602082840312156129df57600080fd5b81516115cf816123ba565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612a2857612a286129ea565b500490565b600082821015612a3f57612a3f6128d5565b500390565b600082612a5357612a536129ea565b500690565b60008219821115612a6b57612a6b6128d5565b50019056fea2646970667358221220bdb3505c068419e55d0dbac1547bd3f201d0411863aff9e52317347b76f7a67264736f6c634300080d0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80636c0360eb1161010457806395d89b41116100a2578063c87b56dd11610071578063c87b56dd14610438578063dcc98eb31461044b578063e985e9c514610484578063f2fde38b146104cd57600080fd5b806395d89b41146103f7578063a22cb465146103ff578063a49a1e7d14610412578063b88d4fde1461042557600080fd5b80637270f7d7116100de5780637270f7d714610383578063783e1bab146103a35780638c0e2812146103b65780638da5cb5b146103d957600080fd5b80636c0360eb1461036057806370a0823114610368578063715018a61461037b57600080fd5b80632f745c591161017c57806342842e0e1161014b57806342842e0e146103045780634d449167146103175780634f6ccce71461033a5780636352211e1461034d57600080fd5b80632f745c59146102a157806330922d78146102b457806335a55caa146102d95780633cb40e16146102fc57600080fd5b8063095ea7b3116101b8578063095ea7b3146102545780631426135a1461026957806318160ddd1461027c57806323b872dd1461028e57600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed3660046123e8565b6104e0565b60405190151581526020015b60405180910390f35b61020f610611565b6040516101fe919061247b565b61022f61022a36600461248e565b6106a3565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101fe565b6102676102623660046124c9565b610750565b005b6102676102773660046124f5565b6108a9565b6000545b6040519081526020016101fe565b61026761029c36600461256a565b610c0e565b6102806102af3660046124c9565b610c19565b600b546101f29074010000000000000000000000000000000000000000900460ff1681565b6101f26102e736600461248e565b60009081526009602052604090205460ff1690565b610267610dd6565b61026761031236600461256a565b610e6c565b6101f261032536600461248e565b60096020526000908152604090205460ff1681565b61028061034836600461248e565b610e87565b61022f61035b36600461248e565b610f03565b61020f610f15565b6102806103763660046125ab565b610fa3565b610267611069565b6103966103913660046125ab565b6110dc565b6040516101fe91906125c8565b6102676103b1366004612621565b61129b565b6101f26103c43660046125ab565b600a6020526000908152604090205460ff1681565b60075473ffffffffffffffffffffffffffffffffffffffff1661022f565b61020f61134c565b61026761040d36600461263c565b61135b565b610267610420366004612734565b611457565b61026761043336600461277d565b6114d5565b61020f61044636600461248e565b611564565b6101f26104593660046125ab565b73ffffffffffffffffffffffffffffffffffffffff166000908152600a602052604090205460ff1690565b6101f26104923660046127fd565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102676104db3660046125ab565b6115d6565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061057357507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105bf57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b8061060b57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606001805461062090612836565b80601f016020809104026020016040519081016040528092919081815260200182805461064c90612836565b80156106995780601f1061066e57610100808354040283529160200191610699565b820191906000526020600020905b81548152906001019060200180831161067c57829003601f168201915b5050505050905090565b60006106b0826000541190565b6107275760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061075b82610f03565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107fe5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f6572000000000000000000000000000000000000000000000000000000000000606482015260840161071e565b3373ffffffffffffffffffffffffffffffffffffffff8216148061082757506108278133610492565b6108995760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161071e565b6108a48383836116cf565b505050565b600b54819074010000000000000000000000000000000000000000900460ff166109155760405162461bcd60e51b815260206004820152601860248201527f436c61696d2057696e646f77206973206e6f74206c6976650000000000000000604482015260640161071e565b600081116109655760405162461bcd60e51b815260206004820152601f60248201527f596f75206d75737420636c61696d206174206c65617374203120746f6b656e00604482015260640161071e565b336000908152600a602052604090205460ff16156109c55760405162461bcd60e51b815260206004820152601660248201527f57616c6c657420616c726561647920636c61696d656400000000000000000000604482015260640161071e565b60005b81811015610bc857600b54339073ffffffffffffffffffffffffffffffffffffffff16636352211e868685818110610a0257610a02612889565b905060200201356040518263ffffffff1660e01b8152600401610a2791815260200190565b602060405180830381865afa158015610a44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6891906128b8565b73ffffffffffffffffffffffffffffffffffffffff1614610acb5760405162461bcd60e51b815260206004820152601f60248201527f596f7520646f206e6f74206f776e20746865736520496c6c756d696e61746900604482015260640161071e565b60096000858584818110610ae157610ae1612889565b602090810292909201358352508101919091526040016000205460ff1615610b715760405162461bcd60e51b815260206004820152602560248201527f416e20696e70757474656420746f6b656e2077617320616c726561647920636c60448201527f61696d6564000000000000000000000000000000000000000000000000000000606482015260840161071e565b600160096000868685818110610b8957610b89612889565b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610bc090612904565b9150506109c8565b50336000818152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556108a49190611750565b6108a483838361176a565b6000610c2483610fa3565b8210610c985760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f6473000000000000000000000000000000000000000000000000000000000000606482015260840161071e565b600080549080805b83811015610d675760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610d1157805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d5e57868403610d575750935061060b92505050565b6001909301925b50600101610ca0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e646578000000000000000000000000000000000000606482015260840161071e565b60075473ffffffffffffffffffffffffffffffffffffffff163314610e3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161071e565b60405133904780156108fc02916000818181858888f19350505050158015610e69573d6000803e3d6000fd5b50565b6108a4838383604051806020016040528060008152506114d5565b600080548210610eff5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e64730000000000000000000000000000000000000000000000000000000000606482015260840161071e565b5090565b6000610f0e82611b9c565b5192915050565b60088054610f2290612836565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4e90612836565b8015610f9b5780601f10610f7057610100808354040283529160200191610f9b565b820191906000526020600020905b815481529060010190602001808311610f7e57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff821661102e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f2061646472657373000000000000000000000000000000000000000000606482015260840161071e565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b60075473ffffffffffffffffffffffffffffffffffffffff1633146110d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161071e565b6110da6000611cc2565b565b600b546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301526060926000929116906370a0823190602401602060405180830381865afa158015611151573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611175919061293c565b905060008167ffffffffffffffff81111561119257611192612671565b6040519080825280602002602001820160405280156111bb578160200160208202803683370190505b50905060005b8281101561129357600b546040517f2f745c5900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff87811660048301526024820184905290911690632f745c5990604401602060405180830381865afa158015611240573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611264919061293c565b82828151811061127657611276612889565b60209081029190910101528061128b81612904565b9150506111c1565b509392505050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146113025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161071e565b600b805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60606002805461062090612836565b3373ffffffffffffffffffffffffffffffffffffffff8316036113c05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161071e565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146114be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161071e565b80516114d190600890602084019061232a565b5050565b6114e084848461176a565b6114ec84848484611d39565b61155e5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e74657200000000000000000000000000606482015260840161071e565b50505050565b6060611571826000541190565b61157a57600080fd5b6000611584611f13565b905080516000036115a457604051806020016040528060008152506115cf565b806115ae84611f22565b6040516020016115bf929190612955565b6040516020818303038152906040525b9392505050565b60075473ffffffffffffffffffffffffffffffffffffffff16331461163d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161071e565b73ffffffffffffffffffffffffffffffffffffffff81166116c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161071e565b610e6981611cc2565b60008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6114d1828260405180602001604052806000815250612057565b600061177582611b9c565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806117d35750336117bb846106a3565b73ffffffffffffffffffffffffffffffffffffffff16145b806117e5575081516117e59033610492565b90508061185a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161071e565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146118ff5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e65720000000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff84166119885760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161071e565b61199860008484600001516116cf565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff1602179055908601808352912054909116611b3857611ab5816000541190565b15611b38578251600082815260036020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff909316929092171790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611bbb826000541190565b611c2d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e00000000000000000000000000000000000000000000606482015260840161071e565b815b60008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215611c9a579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01611c2f565b6007805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15611f07576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611db0903390899088908890600401612984565b6020604051808303816000875af1925050508015611e09575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611e06918101906129cd565b60015b611ebc573d808015611e37576040519150601f19603f3d011682016040523d82523d6000602084013e611e3c565b606091505b508051600003611eb45760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e74657200000000000000000000000000606482015260840161071e565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611f0b565b5060015b949350505050565b60606008805461062090612836565b606081600003611f6557505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611f8f5780611f7981612904565b9150611f889050600a83612a19565b9150611f69565b60008167ffffffffffffffff811115611faa57611faa612671565b6040519080825280601f01601f191660200182016040528015611fd4576020820181803683370190505b5090505b8415611f0b57611fe9600183612a2d565b9150611ff6600a86612a44565b612001906030612a58565b60f81b81838151811061201657612016612889565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612050600a86612a19565b9450611fd8565b6108a4838383600160005473ffffffffffffffffffffffffffffffffffffffff85166120eb5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161071e565b836000036121615760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e2030000000000000000000000000000000000000000000000000606482015260840161071e565b73ffffffffffffffffffffffffffffffffffffffff8516600081815260046020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b8581101561232157604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315612315576122a36000888488611d39565b6123155760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e74657200000000000000000000000000606482015260840161071e565b60019182019101612243565b50600055611b95565b82805461233690612836565b90600052602060002090601f016020900481019282612358576000855561239e565b82601f1061237157805160ff191683800117855561239e565b8280016001018555821561239e579182015b8281111561239e578251825591602001919060010190612383565b50610eff9291505b80821115610eff57600081556001016123a6565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e6957600080fd5b6000602082840312156123fa57600080fd5b81356115cf816123ba565b60005b83811015612420578181015183820152602001612408565b8381111561155e5750506000910152565b60008151808452612449816020860160208601612405565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006115cf6020830184612431565b6000602082840312156124a057600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff81168114610e6957600080fd5b600080604083850312156124dc57600080fd5b82356124e7816124a7565b946020939093013593505050565b6000806020838503121561250857600080fd5b823567ffffffffffffffff8082111561252057600080fd5b818501915085601f83011261253457600080fd5b81358181111561254357600080fd5b8660208260051b850101111561255857600080fd5b60209290920196919550909350505050565b60008060006060848603121561257f57600080fd5b833561258a816124a7565b9250602084013561259a816124a7565b929592945050506040919091013590565b6000602082840312156125bd57600080fd5b81356115cf816124a7565b6020808252825182820181905260009190848201906040850190845b81811015612600578351835292840192918401916001016125e4565b50909695505050505050565b8035801515811461261c57600080fd5b919050565b60006020828403121561263357600080fd5b6115cf8261260c565b6000806040838503121561264f57600080fd5b823561265a816124a7565b91506126686020840161260c565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156126bb576126bb612671565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561270157612701612671565b8160405280935085815286868601111561271a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561274657600080fd5b813567ffffffffffffffff81111561275d57600080fd5b8201601f8101841361276e57600080fd5b611f0b848235602084016126a0565b6000806000806080858703121561279357600080fd5b843561279e816124a7565b935060208501356127ae816124a7565b925060408501359150606085013567ffffffffffffffff8111156127d157600080fd5b8501601f810187136127e257600080fd5b6127f1878235602084016126a0565b91505092959194509250565b6000806040838503121561281057600080fd5b823561281b816124a7565b9150602083013561282b816124a7565b809150509250929050565b600181811c9082168061284a57607f821691505b602082108103612883577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156128ca57600080fd5b81516115cf816124a7565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612935576129356128d5565b5060010190565b60006020828403121561294e57600080fd5b5051919050565b60008351612967818460208801612405565b83519083019061297b818360208801612405565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526129c36080830184612431565b9695505050505050565b6000602082840312156129df57600080fd5b81516115cf816123ba565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612a2857612a286129ea565b500490565b600082821015612a3f57612a3f6128d5565b500390565b600082612a5357612a536129ea565b500690565b60008219821115612a6b57612a6b6128d5565b50019056fea2646970667358221220bdb3505c068419e55d0dbac1547bd3f201d0411863aff9e52317347b76f7a67264736f6c634300080d0033
Deployed Bytecode Sourcemap
53877:2853:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40426:372;;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;40426:372:0;;;;;;;;42312:100;;;:::i;:::-;;;;;;;:::i;43874:214::-;;;;;;:::i;:::-;;:::i;:::-;;;1809:42:1;1797:55;;;1779:74;;1767:2;1752:18;43874:214:0;1633:226:1;43395:413:0;;;;;;:::i;:::-;;:::i;:::-;;54428:907;;;;;;:::i;:::-;;:::i;38683:100::-;38736:7;38763:12;38683:100;;;3109:25:1;;;3097:2;3082:18;38683:100:0;2963:177:1;44750:162:0;;;;;;:::i;:::-;;:::i;39347:1007::-;;;;;;:::i;:::-;;:::i;54124:29::-;;;;;;;;;;;;55957:104;;;;;;:::i;:::-;56017:4;56035:21;;;:12;:21;;;;;;;;;55957:104;56618:107;;;:::i;44983:177::-;;;;;;:::i;:::-;;:::i;53984:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;38860:187;;;;;;:::i;:::-;;:::i;42121:124::-;;;;;;:::i;:::-;;:::i;53957:21::-;;;:::i;40862:221::-;;;;;;:::i;:::-;;:::i;14013:94::-;;;:::i;56238:352::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;55847:80::-;;;;;;:::i;:::-;;:::i;54032:51::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;13362:87;13435:6;;;;13362:87;;42481:104;;;:::i;44160:288::-;;;;;;:::i;:::-;;:::i;55343:91::-;;;;;;:::i;:::-;;:::i;45231:355::-;;;;;;:::i;:::-;;:::i;55555:268::-;;;;;;:::i;:::-;;:::i;56093:112::-;;;;;;:::i;:::-;56175:25;;56157:4;56175:25;;;:19;:25;;;;;;;;;56093:112;44519:164;;;;;;:::i;:::-;44640:25;;;;44616:4;44640:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44519:164;14262:192;;;;;;:::i;:::-;;:::i;40426:372::-;40528:4;40565:40;;;40580:25;40565:40;;:105;;-1:-1:-1;40622:48:0;;;40637:33;40622:48;40565:105;:172;;;-1:-1:-1;40687:50:0;;;40702:35;40687:50;40565:172;:225;;;-1:-1:-1;30938:25:0;30923:40;;;;40754:36;40545:245;40426:372;-1:-1:-1;;40426:372:0:o;42312:100::-;42366:13;42399:5;42392:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42312:100;:::o;43874:214::-;43942:7;43970:16;43978:7;45898:4;45932:12;-1:-1:-1;45922:22:0;45841:111;43970:16;43962:74;;;;-1:-1:-1;;;43962:74:0;;8343:2:1;43962:74:0;;;8325:21:1;8382:2;8362:18;;;8355:30;8421:34;8401:18;;;8394:62;8492:15;8472:18;;;8465:43;8525:19;;43962:74:0;;;;;;;;;-1:-1:-1;44056:24:0;;;;:15;:24;;;;;;;;;43874:214::o;43395:413::-;43468:13;43484:24;43500:7;43484:15;:24::i;:::-;43468:40;;43533:5;43527:11;;:2;:11;;;43519:58;;;;-1:-1:-1;;;43519:58:0;;8757:2:1;43519:58:0;;;8739:21:1;8796:2;8776:18;;;8769:30;8835:34;8815:18;;;8808:62;8906:4;8886:18;;;8879:32;8928:19;;43519:58:0;8555:398:1;43519:58:0;12263:10;43612:21;;;;;:62;;-1:-1:-1;43637:37:0;43654:5;12263:10;44519:164;:::i;43637:37::-;43590:169;;;;-1:-1:-1;;;43590:169:0;;9160:2:1;43590:169:0;;;9142:21:1;9199:2;9179:18;;;9172:30;9238:34;9218:18;;;9211:62;9309:27;9289:18;;;9282:55;9354:19;;43590:169:0;8958:421:1;43590:169:0;43772:28;43781:2;43785:7;43794:5;43772:8;:28::i;:::-;43457:351;43395:413;;:::o;54428:907::-;54582:9;;54547:13;;54582:9;;;;;54574:45;;;;-1:-1:-1;;;54574:45:0;;9586:2:1;54574:45:0;;;9568:21:1;9625:2;9605:18;;;9598:30;9664:26;9644:18;;;9637:54;9708:18;;54574:45:0;9384:348:1;54574:45:0;54646:1;54632:11;:15;54624:58;;;;-1:-1:-1;;;54624:58:0;;9939:2:1;54624:58:0;;;9921:21:1;9978:2;9958:18;;;9951:30;10017:33;9997:18;;;9990:61;10068:18;;54624:58:0;9737:355:1;54624:58:0;54739:10;54719:31;;;;:19;:31;;;;;;;;:40;54711:75;;;;-1:-1:-1;;;54711:75:0;;10299:2:1;54711:75:0;;;10281:21:1;10338:2;10318:18;;;10311:30;10377:24;10357:18;;;10350:52;10419:18;;54711:75:0;10097:346:1;54711:75:0;54836:9;54832:361;54855:11;54851:1;:15;54832:361;;;54886:10;;54926;;54886:50;:10;:18;54905:13;;54919:1;54905:16;;;;;;;:::i;:::-;;;;;;;54886:36;;;;;;;;;;;;;3109:25:1;;3097:2;3082:18;;2963:177;54886:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:50;;;54878:93;;;;-1:-1:-1;;;54878:93:0;;11095:2:1;54878:93:0;;;11077:21:1;11134:2;11114:18;;;11107:30;11173:33;11153:18;;;11146:61;11224:18;;54878:93:0;10893:355:1;54878:93:0;55009:12;:30;55022:13;;55036:1;55022:16;;;;;;;:::i;:::-;;;;;;;;;;55009:30;;-1:-1:-1;55009:30:0;;;;;;;;-1:-1:-1;55009:30:0;;;;:39;55001:88;;;;-1:-1:-1;;;55001:88:0;;11455:2:1;55001:88:0;;;11437:21:1;11494:2;11474:18;;;11467:30;11533:34;11513:18;;;11506:62;11604:7;11584:18;;;11577:35;11629:19;;55001:88:0;11253:401:1;55001:88:0;55162:4;55129:12;:30;55142:13;;55156:1;55142:16;;;;;;;:::i;:::-;;;;;;;55129:30;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;54868:3;;;;;:::i;:::-;;;;54832:361;;;-1:-1:-1;55225:10:0;55205:31;;;;:19;:31;;;;;:38;;;;55239:4;55205:38;;;;;;55276:24;;55225:10;55276:9;:24::i;44750:162::-;44876:28;44886:4;44892:2;44896:7;44876:9;:28::i;39347:1007::-;39436:7;39472:16;39482:5;39472:9;:16::i;:::-;39464:5;:24;39456:71;;;;-1:-1:-1;;;39456:71:0;;12250:2:1;39456:71:0;;;12232:21:1;12289:2;12269:18;;;12262:30;12328:34;12308:18;;;12301:62;12399:4;12379:18;;;12372:32;12421:19;;39456:71:0;12048:398:1;39456:71:0;39538:22;38763:12;;;39538:22;;39801:466;39821:14;39817:1;:18;39801:466;;;39861:31;39895:14;;;:11;:14;;;;;;;;;39861:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;39932:28;39928:111;;40005:14;;;-1:-1:-1;39928:111:0;40082:5;40061:26;;:17;:26;;;40057:195;;40131:5;40116:11;:20;40112:85;;-1:-1:-1;40172:1:0;-1:-1:-1;40165:8:0;;-1:-1:-1;;;40165:8:0;40112:85;40219:13;;;;;40057:195;-1:-1:-1;39837:3:0;;39801:466;;;-1:-1:-1;40290:56:0;;-1:-1:-1;;;40290:56:0;;12653:2:1;40290:56:0;;;12635:21:1;12692:2;12672:18;;;12665:30;12731:34;12711:18;;;12704:62;12802:16;12782:18;;;12775:44;12836:19;;40290:56:0;12451:410:1;56618:107:0;13435:6;;13582:23;13435:6;12263:10;13582:23;13574:68;;;;-1:-1:-1;;;13574:68:0;;13068:2:1;13574:68:0;;;13050:21:1;;;13087:18;;;13080:30;13146:34;13126:18;;;13119:62;13198:18;;13574:68:0;12866:356:1;13574:68:0;56669:51:::1;::::0;56677:10:::1;::::0;56698:21:::1;56669:51:::0;::::1;;;::::0;::::1;::::0;;;56698:21;56677:10;56669:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;56618:107::o:0;44983:177::-;45113:39;45130:4;45136:2;45140:7;45113:39;;;;;;;;;;;;:16;:39::i;38860:187::-;38927:7;38763:12;;38955:5;:21;38947:69;;;;-1:-1:-1;;;38947:69:0;;13429:2:1;38947:69:0;;;13411:21:1;13468:2;13448:18;;;13441:30;13507:34;13487:18;;;13480:62;13578:5;13558:18;;;13551:33;13601:19;;38947:69:0;13227:399:1;38947:69:0;-1:-1:-1;39034:5:0;38860:187::o;42121:124::-;42185:7;42212:20;42224:7;42212:11;:20::i;:::-;:25;;42121:124;-1:-1:-1;;42121:124:0:o;53957:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40862:221::-;40926:7;40954:19;;;40946:75;;;;-1:-1:-1;;;40946:75:0;;13833:2:1;40946:75:0;;;13815:21:1;13872:2;13852:18;;;13845:30;13911:34;13891:18;;;13884:62;13982:13;13962:18;;;13955:41;14013:19;;40946:75:0;13631:407:1;40946:75:0;-1:-1:-1;41047:19:0;;;;;;:12;:19;;;;;:27;;;;40862:221::o;14013:94::-;13435:6;;13582:23;13435:6;12263:10;13582:23;13574:68;;;;-1:-1:-1;;;13574:68:0;;13068:2:1;13574:68:0;;;13050:21:1;;;13087:18;;;13080:30;13146:34;13126:18;;;13119:62;13198:18;;13574:68:0;12866:356:1;13574:68:0;14078:21:::1;14096:1;14078:9;:21::i;:::-;14013:94::o:0;56238:352::-;56348:10;;:27;;;;;:10;1797:55:1;;;56348:27:0;;;1779:74:1;56305:16:0;;56327:18;;56348:10;;;:20;;1752:18:1;;56348:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56327:48;;56380:25;56422:10;56408:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56408:25:0;;56380:53;;56449:9;56444:122;56468:10;56464:1;:14;56444:122;;;56514:10;;:40;;;;;:10;14424:55:1;;;56514:40:0;;;14406:74:1;14496:18;;;14489:34;;;56514:10:0;;;;:30;;14379:18:1;;56514:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56500:8;56509:1;56500:11;;;;;;;;:::i;:::-;;;;;;;;;;:54;56480:3;;;;:::i;:::-;;;;56444:122;;;-1:-1:-1;56577:8:0;56238:352;-1:-1:-1;;;56238:352:0:o;55847:80::-;13435:6;;13582:23;13435:6;12263:10;13582:23;13574:68;;;;-1:-1:-1;;;13574:68:0;;13068:2:1;13574:68:0;;;13050:21:1;;;13087:18;;;13080:30;13146:34;13126:18;;;13119:62;13198:18;;13574:68:0;12866:356:1;13574:68:0;55905:9:::1;:17:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;55847:80::o;42481:104::-;42537:13;42570:7;42563:14;;;;;:::i;44160:288::-;12263:10;44255:24;;;;44247:63;;;;-1:-1:-1;;;44247:63:0;;14736:2:1;44247:63:0;;;14718:21:1;14775:2;14755:18;;;14748:30;14814:28;14794:18;;;14787:56;14860:18;;44247:63:0;14534:350:1;44247:63:0;12263:10;44323:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;44392:48;;586:41:1;;;44323:42:0;;12263:10;44392:48;;559:18:1;44392:48:0;;;;;;;44160:288;;:::o;55343:91::-;13435:6;;13582:23;13435:6;12263:10;13582:23;13574:68;;;;-1:-1:-1;;;13574:68:0;;13068:2:1;13574:68:0;;;13050:21:1;;;13087:18;;;13080:30;13146:34;13126:18;;;13119:62;13198:18;;13574:68:0;12866:356:1;13574:68:0;55413:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55343:91:::0;:::o;45231:355::-;45390:28;45400:4;45406:2;45410:7;45390:9;:28::i;:::-;45451:48;45474:4;45480:2;45484:7;45493:5;45451:22;:48::i;:::-;45429:149;;;;-1:-1:-1;;;45429:149:0;;15091:2:1;45429:149:0;;;15073:21:1;15130:2;15110:18;;;15103:30;15169:34;15149:18;;;15142:62;15240:21;15220:18;;;15213:49;15279:19;;45429:149:0;14889:415:1;45429:149:0;45231:355;;;;:::o;55555:268::-;55628:13;55662:16;55670:7;45898:4;45932:12;-1:-1:-1;45922:22:0;45841:111;55662:16;55654:25;;;;;;55690:17;55710:10;:8;:10::i;:::-;55690:30;;55745:3;55739:17;55760:1;55739:22;:79;;;;;;;;;;;;;;;;;55788:3;55793:18;:7;:16;:18::i;:::-;55771:41;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55739:79;55732:86;55555:268;-1:-1:-1;;;55555:268:0:o;14262:192::-;13435:6;;13582:23;13435:6;12263:10;13582:23;13574:68;;;;-1:-1:-1;;;13574:68:0;;13068:2:1;13574:68:0;;;13050:21:1;;;13087:18;;;13080:30;13146:34;13126:18;;;13119:62;13198:18;;13574:68:0;12866:356:1;13574:68:0;14351:22:::1;::::0;::::1;14343:73;;;::::0;-1:-1:-1;;;14343:73:0;;15986:2:1;14343:73:0::1;::::0;::::1;15968:21:1::0;16025:2;16005:18;;;15998:30;16064:34;16044:18;;;16037:62;16135:8;16115:18;;;16108:36;16161:19;;14343:73:0::1;15784:402:1::0;14343:73:0::1;14427:19;14437:8;14427:9;:19::i;50761:196::-:0;50876:24;;;;:15;:24;;;;;;:29;;;;;;;;;;;;;;50921:28;;50876:24;;50921:28;;;;;;;50761:196;;;:::o;45960:104::-;46029:27;46039:2;46043:8;46029:27;;;;;;;;;;;;:9;:27::i;48641:2002::-;48756:35;48794:20;48806:7;48794:11;:20::i;:::-;48869:18;;48756:58;;-1:-1:-1;48827:22:0;;48853:34;;12263:10;48853:34;;;:87;;;-1:-1:-1;12263:10:0;48904:20;48916:7;48904:11;:20::i;:::-;:36;;;48853:87;:154;;;-1:-1:-1;48974:18:0;;48957:50;;12263:10;44519:164;:::i;48957:50::-;48827:181;;49029:17;49021:80;;;;-1:-1:-1;;;49021:80:0;;16393:2:1;49021:80:0;;;16375:21:1;16432:2;16412:18;;;16405:30;16471:34;16451:18;;;16444:62;16542:20;16522:18;;;16515:48;16580:19;;49021:80:0;16191:414:1;49021:80:0;49144:4;49122:26;;:13;:18;;;:26;;;49114:77;;;;-1:-1:-1;;;49114:77:0;;16812:2:1;49114:77:0;;;16794:21:1;16851:2;16831:18;;;16824:30;16890:34;16870:18;;;16863:62;16961:8;16941:18;;;16934:36;16987:19;;49114:77:0;16610:402:1;49114:77:0;49210:16;;;49202:66;;;;-1:-1:-1;;;49202:66:0;;17219:2:1;49202:66:0;;;17201:21:1;17258:2;17238:18;;;17231:30;17297:34;17277:18;;;17270:62;17368:7;17348:18;;;17341:35;17393:19;;49202:66:0;17017:401:1;49202:66:0;49389:49;49406:1;49410:7;49419:13;:18;;;49389:8;:49::i;:::-;49734:18;;;;;;;;:12;:18;;;;;;;;:31;;;;;;;;;;;;;;;;;;49780:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;49780:29:0;;;;;;;;;;;;;49826:20;;;:11;:20;;;;;;:30;;49871:61;;;;;;49916:15;49871:61;;;;;;50206:11;;;50236:24;;;;;:29;50206:11;;50236:29;50232:295;;50304:20;50312:11;45898:4;45932:12;-1:-1:-1;45922:22:0;45841:111;50304:20;50300:212;;;50381:18;;;50349:24;;;:11;:24;;;;;;;;:50;;50464:28;;;;50422:70;;;;;;;;50349:50;;;;50422:70;;;;;;;50300:212;49709:829;50574:7;50570:2;50555:27;;50564:4;50555:27;;;;;;;;;;;;50593:42;48745:1898;;48641:2002;;;:::o;41522:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;41625:16:0;41633:7;45898:4;45932:12;-1:-1:-1;45922:22:0;45841:111;41625:16;41617:71;;;;-1:-1:-1;;;41617:71:0;;17625:2:1;41617:71:0;;;17607:21:1;17664:2;17644:18;;;17637:30;17703:34;17683:18;;;17676:62;17774:12;17754:18;;;17747:40;17804:19;;41617:71:0;17423:406:1;41617:71:0;41746:7;41726:245;41793:31;41827:17;;;:11;:17;;;;;;;;;41793:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;41867:28;41863:93;;41927:9;41522:537;-1:-1:-1;;;41522:537:0:o;41863:93::-;-1:-1:-1;41766:6:0;;41726:245;;14462:173;14537:6;;;;14554:17;;;;;;;;;;;14587:40;;14537:6;;;14554:17;14537:6;;14587:40;;14518:16;;14587:40;14507:128;14462:173;:::o;51522:804::-;51677:4;51698:13;;;15699:20;15747:8;51694:625;;51734:72;;;;;:36;;;;;;:72;;12263:10;;51785:4;;51791:7;;51800:5;;51734:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51734:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51730:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51980:6;:13;51997:1;51980:18;51976:273;;52023:61;;-1:-1:-1;;;52023:61:0;;15091:2:1;52023:61:0;;;15073:21:1;15130:2;15110:18;;;15103:30;15169:34;15149:18;;;15142:62;15240:21;15220:18;;;15213:49;15279:19;;52023:61:0;14889:415:1;51976:273:0;52199:6;52193:13;52184:6;52180:2;52176:15;52169:38;51730:534;51857:55;;51867:45;51857:55;;-1:-1:-1;51850:62:0;;51694:625;-1:-1:-1;52303:4:0;51694:625;51522:804;;;;;;:::o;55442:108::-;55502:13;55535:7;55528:14;;;;;:::i;357:723::-;413:13;634:5;643:1;634:10;630:53;;-1:-1:-1;;661:10:0;;;;;;;;;;;;;;;;;;357:723::o;630:53::-;708:5;693:12;749:78;756:9;;749:78;;782:8;;;;:::i;:::-;;-1:-1:-1;805:10:0;;-1:-1:-1;813:2:0;805:10;;:::i;:::-;;;749:78;;;837:19;869:6;859:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;859:17:0;;837:39;;887:154;894:10;;887:154;;921:11;931:1;921:11;;:::i;:::-;;-1:-1:-1;990:10:0;998:2;990:5;:10;:::i;:::-;977:24;;:2;:24;:::i;:::-;964:39;;947:6;954;947:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1018:11:0;1027:2;1018:11;;:::i;:::-;;;887:154;;46427:163;46550:32;46556:2;46560:8;46570:5;46577:4;46988:20;47011:12;47042:16;;;47034:62;;;;-1:-1:-1;;;47034:62:0;;19917:2:1;47034:62:0;;;19899:21:1;19956:2;19936:18;;;19929:30;19995:34;19975:18;;;19968:62;20066:3;20046:18;;;20039:31;20087:19;;47034:62:0;19715:397:1;47034:62:0;47115:8;47127:1;47115:13;47107:66;;;;-1:-1:-1;;;47107:66:0;;20319:2:1;47107:66:0;;;20301:21:1;20358:2;20338:18;;;20331:30;20397:34;20377:18;;;20370:62;20468:10;20448:18;;;20441:38;20496:19;;47107:66:0;20117:404:1;47107:66:0;47525:16;;;;;;;:12;:16;;;;;;;;:45;;47585:50;47525:45;;;;;;;;;;;;;;47585:50;;;;;;;;;;;;;;47652:25;;;:11;:25;;;;;:35;;47702:66;;;;;;47752:15;47702:66;;;;;;;47652:25;;47837:415;47857:8;47853:1;:12;47837:415;;;47896:38;;47921:12;;47896:38;;;;47913:1;;47896:38;;47913:1;;47896:38;47957:4;47953:249;;;48020:59;48051:1;48055:2;48059:12;48073:5;48020:22;:59::i;:::-;47986:196;;;;-1:-1:-1;;;47986:196:0;;15091:2:1;47986:196:0;;;15073:21:1;15130:2;15110:18;;;15103:30;15169:34;15149:18;;;15142:62;15240:21;15220:18;;;15213:49;15279:19;;47986:196:0;14889:415:1;47986:196:0;48222:14;;;;;47867:3;47837:415;;;-1:-1:-1;48268:12:0;:27;48319:60;45231:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;1137:66;1116:88;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:1:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:1;;1448:180;-1:-1:-1;1448:180:1:o;1864:154::-;1950:42;1943:5;1939:54;1932:5;1929:65;1919:93;;2008:1;2005;1998:12;2023:315;2091:6;2099;2152:2;2140:9;2131:7;2127:23;2123:32;2120:52;;;2168:1;2165;2158:12;2120:52;2207:9;2194:23;2226:31;2251:5;2226:31;:::i;:::-;2276:5;2328:2;2313:18;;;;2300:32;;-1:-1:-1;;;2023:315:1:o;2343:615::-;2429:6;2437;2490:2;2478:9;2469:7;2465:23;2461:32;2458:52;;;2506:1;2503;2496:12;2458:52;2546:9;2533:23;2575:18;2616:2;2608:6;2605:14;2602:34;;;2632:1;2629;2622:12;2602:34;2670:6;2659:9;2655:22;2645:32;;2715:7;2708:4;2704:2;2700:13;2696:27;2686:55;;2737:1;2734;2727:12;2686:55;2777:2;2764:16;2803:2;2795:6;2792:14;2789:34;;;2819:1;2816;2809:12;2789:34;2872:7;2867:2;2857:6;2854:1;2850:14;2846:2;2842:23;2838:32;2835:45;2832:65;;;2893:1;2890;2883:12;2832:65;2924:2;2916:11;;;;;2946:6;;-1:-1:-1;2343:615:1;;-1:-1:-1;;;;2343:615:1:o;3145:456::-;3222:6;3230;3238;3291:2;3279:9;3270:7;3266:23;3262:32;3259:52;;;3307:1;3304;3297:12;3259:52;3346:9;3333:23;3365:31;3390:5;3365:31;:::i;:::-;3415:5;-1:-1:-1;3472:2:1;3457:18;;3444:32;3485:33;3444:32;3485:33;:::i;:::-;3145:456;;3537:7;;-1:-1:-1;;;3591:2:1;3576:18;;;;3563:32;;3145:456::o;3606:247::-;3665:6;3718:2;3706:9;3697:7;3693:23;3689:32;3686:52;;;3734:1;3731;3724:12;3686:52;3773:9;3760:23;3792:31;3817:5;3792:31;:::i;3858:632::-;4029:2;4081:21;;;4151:13;;4054:18;;;4173:22;;;4000:4;;4029:2;4252:15;;;;4226:2;4211:18;;;4000:4;4295:169;4309:6;4306:1;4303:13;4295:169;;;4370:13;;4358:26;;4439:15;;;;4404:12;;;;4331:1;4324:9;4295:169;;;-1:-1:-1;4481:3:1;;3858:632;-1:-1:-1;;;;;;3858:632:1:o;4495:160::-;4560:20;;4616:13;;4609:21;4599:32;;4589:60;;4645:1;4642;4635:12;4589:60;4495:160;;;:::o;4660:180::-;4716:6;4769:2;4757:9;4748:7;4744:23;4740:32;4737:52;;;4785:1;4782;4775:12;4737:52;4808:26;4824:9;4808:26;:::i;4845:315::-;4910:6;4918;4971:2;4959:9;4950:7;4946:23;4942:32;4939:52;;;4987:1;4984;4977:12;4939:52;5026:9;5013:23;5045:31;5070:5;5045:31;:::i;:::-;5095:5;-1:-1:-1;5119:35:1;5150:2;5135:18;;5119:35;:::i;:::-;5109:45;;4845:315;;;;;:::o;5165:184::-;5217:77;5214:1;5207:88;5314:4;5311:1;5304:15;5338:4;5335:1;5328:15;5354:691;5419:5;5449:18;5490:2;5482:6;5479:14;5476:40;;;5496:18;;:::i;:::-;5630:2;5624:9;5696:2;5684:15;;5535:66;5680:24;;;5706:2;5676:33;5672:42;5660:55;;;5730:18;;;5750:22;;;5727:46;5724:72;;;5776:18;;:::i;:::-;5816:10;5812:2;5805:22;5845:6;5836:15;;5875:6;5867;5860:22;5915:3;5906:6;5901:3;5897:16;5894:25;5891:45;;;5932:1;5929;5922:12;5891:45;5982:6;5977:3;5970:4;5962:6;5958:17;5945:44;6037:1;6030:4;6021:6;6013;6009:19;6005:30;5998:41;;;;5354:691;;;;;:::o;6050:451::-;6119:6;6172:2;6160:9;6151:7;6147:23;6143:32;6140:52;;;6188:1;6185;6178:12;6140:52;6228:9;6215:23;6261:18;6253:6;6250:30;6247:50;;;6293:1;6290;6283:12;6247:50;6316:22;;6369:4;6361:13;;6357:27;-1:-1:-1;6347:55:1;;6398:1;6395;6388:12;6347:55;6421:74;6487:7;6482:2;6469:16;6464:2;6460;6456:11;6421:74;:::i;6506:795::-;6601:6;6609;6617;6625;6678:3;6666:9;6657:7;6653:23;6649:33;6646:53;;;6695:1;6692;6685:12;6646:53;6734:9;6721:23;6753:31;6778:5;6753:31;:::i;:::-;6803:5;-1:-1:-1;6860:2:1;6845:18;;6832:32;6873:33;6832:32;6873:33;:::i;:::-;6925:7;-1:-1:-1;6979:2:1;6964:18;;6951:32;;-1:-1:-1;7034:2:1;7019:18;;7006:32;7061:18;7050:30;;7047:50;;;7093:1;7090;7083:12;7047:50;7116:22;;7169:4;7161:13;;7157:27;-1:-1:-1;7147:55:1;;7198:1;7195;7188:12;7147:55;7221:74;7287:7;7282:2;7269:16;7264:2;7260;7256:11;7221:74;:::i;:::-;7211:84;;;6506:795;;;;;;;:::o;7306:388::-;7374:6;7382;7435:2;7423:9;7414:7;7410:23;7406:32;7403:52;;;7451:1;7448;7441:12;7403:52;7490:9;7477:23;7509:31;7534:5;7509:31;:::i;:::-;7559:5;-1:-1:-1;7616:2:1;7601:18;;7588:32;7629:33;7588:32;7629:33;:::i;:::-;7681:7;7671:17;;;7306:388;;;;;:::o;7699:437::-;7778:1;7774:12;;;;7821;;;7842:61;;7896:4;7888:6;7884:17;7874:27;;7842:61;7949:2;7941:6;7938:14;7918:18;7915:38;7912:218;;7986:77;7983:1;7976:88;8087:4;8084:1;8077:15;8115:4;8112:1;8105:15;7912:218;;7699:437;;;:::o;10448:184::-;10500:77;10497:1;10490:88;10597:4;10594:1;10587:15;10621:4;10618:1;10611:15;10637:251;10707:6;10760:2;10748:9;10739:7;10735:23;10731:32;10728:52;;;10776:1;10773;10766:12;10728:52;10808:9;10802:16;10827:31;10852:5;10827:31;:::i;11659:184::-;11711:77;11708:1;11701:88;11808:4;11805:1;11798:15;11832:4;11829:1;11822:15;11848:195;11887:3;11918:66;11911:5;11908:77;11905:103;;11988:18;;:::i;:::-;-1:-1:-1;12035:1:1;12024:13;;11848:195::o;14043:184::-;14113:6;14166:2;14154:9;14145:7;14141:23;14137:32;14134:52;;;14182:1;14179;14172:12;14134:52;-1:-1:-1;14205:16:1;;14043:184;-1:-1:-1;14043:184:1:o;15309:470::-;15488:3;15526:6;15520:13;15542:53;15588:6;15583:3;15576:4;15568:6;15564:17;15542:53;:::i;:::-;15658:13;;15617:16;;;;15680:57;15658:13;15617:16;15714:4;15702:17;;15680:57;:::i;:::-;15753:20;;15309:470;-1:-1:-1;;;;15309:470:1:o;18250:512::-;18444:4;18473:42;18554:2;18546:6;18542:15;18531:9;18524:34;18606:2;18598:6;18594:15;18589:2;18578:9;18574:18;18567:43;;18646:6;18641:2;18630:9;18626:18;18619:34;18689:3;18684:2;18673:9;18669:18;18662:31;18710:46;18751:3;18740:9;18736:19;18728:6;18710:46;:::i;:::-;18702:54;18250:512;-1:-1:-1;;;;;;18250:512:1:o;18767:249::-;18836:6;18889:2;18877:9;18868:7;18864:23;18860:32;18857:52;;;18905:1;18902;18895:12;18857:52;18937:9;18931:16;18956:30;18980:5;18956:30;:::i;19021:184::-;19073:77;19070:1;19063:88;19170:4;19167:1;19160:15;19194:4;19191:1;19184:15;19210:120;19250:1;19276;19266:35;;19281:18;;:::i;:::-;-1:-1:-1;19315:9:1;;19210:120::o;19335:125::-;19375:4;19403:1;19400;19397:8;19394:34;;;19408:18;;:::i;:::-;-1:-1:-1;19445:9:1;;19335:125::o;19465:112::-;19497:1;19523;19513:35;;19528:18;;:::i;:::-;-1:-1:-1;19562:9:1;;19465:112::o;19582:128::-;19622:3;19653:1;19649:6;19646:1;19643:13;19640:39;;;19659:18;;:::i;:::-;-1:-1:-1;19695:9:1;;19582:128::o
Swarm Source
ipfs://bdb3505c068419e55d0dbac1547bd3f201d0411863aff9e52317347b76f7a672
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.