ERC-721
Overview
Max Total Supply
1,000 CATHODE
Holders
406
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 CATHODELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Cathode
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } 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; } } 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); } } 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); } 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; } } 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); } } pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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; } 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); } 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); } pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } pragma solidity ^0.8.0; contract Cathode is Ownable, ERC721 { event Mint(uint indexed _tokenId); uint public maxSupply = 1000; uint public totalSupply = 0; uint public limitPerAccount = 5; bool private saleState = false; uint256 constant public PRICE = 0.07 ether; address payable claimEthAddress; string private _baseURIextended = "https://artstart.mypinata.cloud/ipfs/Qmf9Y2Lfo3G5W2FNp1qbhrvbFnWUAKMgw3KTCtLjwQZNGD/Cathode%20%23"; mapping(address => uint) public mintCounts; // Amount minted per user mapping (uint256 => string) private _tokenURIs; constructor(address payable _claimEthAddress) payable ERC721("Cathode", "CATHODE") { claimEthAddress = _claimEthAddress; } function mint(address to, uint quantity) public payable { require(saleState == true , "Sale has not yet been unlocked"); require(quantity > 0, "Can't mint zero tokens."); require(totalSupply + quantity <= maxSupply, "maxSupply of mints already reached"); require(mintCounts[to] + quantity <= limitPerAccount, "max 5 mints per account"); require(PRICE * quantity <= msg.value, "ETH sent is incorrect"); for (uint i = 0; i < quantity; i++) { totalSupply += 1; // 1-indexed instead of 0 _mint(to, totalSupply); _setTokenURI(totalSupply, _baseURIextended); mintCounts[to] += 1; emit Mint(totalSupply); } } function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } /** * @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, uint2str(tokenId), '.json')) : ""; } function uint2str(uint _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint j = _i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len; while (_i != 0) { k = k-1; uint8 temp = (48 + uint8(_i - _i / 10 * 10)); bytes1 b1 = bytes1(temp); bstr[k] = b1; _i /= 10; } return string(bstr); } function flipSaleState() public onlyOwner { saleState = !saleState; } function claimETH() public { require(claimEthAddress == _msgSender(), "Ownable: caller is not the claimEthAddress"); payable(address(claimEthAddress)).transfer(address(this).balance); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"_claimEthAddress","type":"address"}],"stateMutability":"payable","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":"uint256","name":"_tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"claimETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitPerAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526103e8600755600060085560056009556000600a60006101000a81548160ff0219169083151502179055506040518060a001604052806061815260200162003bb260619139600b9080519060200190620000609291906200025a565b5060405162003c1338038062003c13833981810160405281019062000086919062000321565b6040518060400160405280600781526020017f436174686f6465000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f434154484f44450000000000000000000000000000000000000000000000000081525062000112620001066200018e60201b60201c565b6200019660201b60201c565b81600190805190602001906200012a9291906200025a565b508060029080519060200190620001439291906200025a565b50505080600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200040b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002689062000387565b90600052602060002090601f0160209004810192826200028c5760008555620002d8565b82601f10620002a757805160ff1916838001178555620002d8565b82800160010185558215620002d8579182015b82811115620002d7578251825591602001919060010190620002ba565b5b509050620002e79190620002eb565b5090565b5b8082111562000306576000816000905550600101620002ec565b5090565b6000815190506200031b81620003f1565b92915050565b6000602082840312156200033a5762000339620003ec565b5b60006200034a848285016200030a565b91505092915050565b6000620003608262000367565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620003a057607f821691505b60208210811415620003b757620003b6620003bd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620003fc8162000353565b81146200040857600080fd5b50565b613797806200041b6000396000f3fe60806040526004361061014b5760003560e01c806367272999116100b6578063a22cb4651161006f578063a22cb4651461045f578063b88d4fde14610488578063c87b56dd146104b1578063d5abeb01146104ee578063e985e9c514610519578063f2fde38b146105565761014b565b8063672729991461037357806370a082311461038a578063715018a6146103c75780638d859f3e146103de5780638da5cb5b1461040957806395d89b41146104345761014b565b806323b872dd1161010857806323b872dd1461027457806334918dfd1461029d57806340c10f19146102b457806342842e0e146102d057806353277879146102f95780636352211e146103365761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f55780631167e4271461021e57806318160ddd14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612422565b61057f565b6040516101849190612957565b60405180910390f35b34801561019957600080fd5b506101a2610661565b6040516101af9190612972565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da919061247c565b6106f3565b6040516101ec91906128f0565b60405180910390f35b34801561020157600080fd5b5061021c600480360381019061021791906123e2565b610778565b005b34801561022a57600080fd5b50610233610890565b6040516102409190612c74565b60405180910390f35b34801561025557600080fd5b5061025e610896565b60405161026b9190612c74565b60405180910390f35b34801561028057600080fd5b5061029b600480360381019061029691906122cc565b61089c565b005b3480156102a957600080fd5b506102b26108fc565b005b6102ce60048036038101906102c991906123e2565b6109a4565b005b3480156102dc57600080fd5b506102f760048036038101906102f291906122cc565b610cd8565b005b34801561030557600080fd5b50610320600480360381019061031b919061225f565b610cf8565b60405161032d9190612c74565b60405180910390f35b34801561034257600080fd5b5061035d6004803603810190610358919061247c565b610d10565b60405161036a91906128f0565b60405180910390f35b34801561037f57600080fd5b50610388610dc2565b005b34801561039657600080fd5b506103b160048036038101906103ac919061225f565b610ec4565b6040516103be9190612c74565b60405180910390f35b3480156103d357600080fd5b506103dc610f7c565b005b3480156103ea57600080fd5b506103f3611004565b6040516104009190612c74565b60405180910390f35b34801561041557600080fd5b5061041e61100f565b60405161042b91906128f0565b60405180910390f35b34801561044057600080fd5b50610449611038565b6040516104569190612972565b60405180910390f35b34801561046b57600080fd5b50610486600480360381019061048191906123a2565b6110ca565b005b34801561049457600080fd5b506104af60048036038101906104aa919061231f565b61124b565b005b3480156104bd57600080fd5b506104d860048036038101906104d3919061247c565b6112ad565b6040516104e59190612972565b60405180910390f35b3480156104fa57600080fd5b50610503611354565b6040516105109190612c74565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b919061228c565b61135a565b60405161054d9190612957565b60405180910390f35b34801561056257600080fd5b5061057d6004803603810190610578919061225f565b6113ee565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065a5750610659826114e6565b5b9050919050565b60606001805461067090612f37565b80601f016020809104026020016040519081016040528092919081815260200182805461069c90612f37565b80156106e95780601f106106be576101008083540402835291602001916106e9565b820191906000526020600020905b8154815290600101906020018083116106cc57829003601f168201915b5050505050905090565b60006106fe82611550565b61073d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073490612b14565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078382610d10565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107eb90612bb4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108136115bc565b73ffffffffffffffffffffffffffffffffffffffff16148061084257506108418161083c6115bc565b61135a565b5b610881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087890612a54565b60405180910390fd5b61088b83836115c4565b505050565b60095481565b60085481565b6108ad6108a76115bc565b8261167d565b6108ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e390612bd4565b60405180910390fd5b6108f783838361175b565b505050565b6109046115bc565b73ffffffffffffffffffffffffffffffffffffffff1661092261100f565b73ffffffffffffffffffffffffffffffffffffffff1614610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f90612b54565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b60011515600a60009054906101000a900460ff161515146109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190612ab4565b60405180910390fd5b60008111610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3490612c14565b60405180910390fd5b60075481600854610a4e9190612d28565b1115610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690612c54565b60405180910390fd5b60095481600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610add9190612d28565b1115610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590612bf4565b60405180910390fd5b348166f8b0a10e470000610b329190612de6565b1115610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90612c34565b60405180910390fd5b60005b81811015610cd357600160086000828254610b919190612d28565b92505081905550610ba4836008546119b7565b610c3a600854600b8054610bb790612f37565b80601f0160208091040260200160405190810160405280929190818152602001828054610be390612f37565b8015610c305780601f10610c0557610100808354040283529160200191610c30565b820191906000526020600020905b815481529060010190602001808311610c1357829003601f168201915b5050505050611b85565b6001600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c8a9190612d28565b925050819055506008547f07883703ed0e86588a40d76551c92f8a4b329e3bf19765e0e6749473c1a8466560405160405180910390a28080610ccb90612f9a565b915050610b76565b505050565b610cf38383836040518060200160405280600081525061124b565b505050565b600c6020528060005260406000206000915090505481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090612a94565b60405180910390fd5b80915050919050565b610dca6115bc565b73ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090612af4565b60405180910390fd5b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ec1573d6000803e3d6000fd5b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90612a74565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f846115bc565b73ffffffffffffffffffffffffffffffffffffffff16610fa261100f565b73ffffffffffffffffffffffffffffffffffffffff1614610ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fef90612b54565b60405180910390fd5b6110026000611bf9565b565b66f8b0a10e47000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461104790612f37565b80601f016020809104026020016040519081016040528092919081815260200182805461107390612f37565b80156110c05780601f10611095576101008083540402835291602001916110c0565b820191906000526020600020905b8154815290600101906020018083116110a357829003601f168201915b5050505050905090565b6110d26115bc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790612a14565b60405180910390fd5b806006600061114d6115bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111fa6115bc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161123f9190612957565b60405180910390a35050565b61125c6112566115bc565b8361167d565b61129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290612bd4565b60405180910390fd5b6112a784848484611cbd565b50505050565b60606112b882611550565b6112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90612b94565b60405180910390fd5b6000611301611d19565b90506000815111611321576040518060200160405280600081525061134c565b8061132b84611dab565b60405160200161133c9291906128c1565b6040516020818303038152906040525b915050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113f66115bc565b73ffffffffffffffffffffffffffffffffffffffff1661141461100f565b73ffffffffffffffffffffffffffffffffffffffff161461146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190612b54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d1906129b4565b60405180910390fd5b6114e381611bf9565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661163783610d10565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061168882611550565b6116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be90612a34565b60405180910390fd5b60006116d283610d10565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061174157508373ffffffffffffffffffffffffffffffffffffffff16611729846106f3565b73ffffffffffffffffffffffffffffffffffffffff16145b806117525750611751818561135a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661177b82610d10565b73ffffffffffffffffffffffffffffffffffffffff16146117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890612b74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611838906129f4565b60405180910390fd5b61184c838383611f34565b6118576000826115c4565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a79190612e40565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118fe9190612d28565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e90612ad4565b60405180910390fd5b611a3081611550565b15611a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a67906129d4565b60405180910390fd5b611a7c60008383611f34565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611acc9190612d28565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b611b8e82611550565b611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490612b34565b60405180910390fd5b80600d60008481526020019081526020016000209080519060200190611bf49291906120e3565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cc884848461175b565b611cd484848484611f39565b611d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0a90612994565b60405180910390fd5b50505050565b6060600b8054611d2890612f37565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5490612f37565b8015611da15780601f10611d7657610100808354040283529160200191611da1565b820191906000526020600020905b815481529060010190602001808311611d8457829003601f168201915b5050505050905090565b60606000821415611df3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f2f565b600082905060005b60008214611e25578080611e0e90612f9a565b915050600a82611e1e9190612db5565b9150611dfb565b60008167ffffffffffffffff811115611e4157611e4061309f565b5b6040519080825280601f01601f191660200182016040528015611e735781602001600182028036833780820191505090505b50905060008290505b60008614611f2757600181611e919190612e40565b90506000600a8088611ea39190612db5565b611ead9190612de6565b87611eb89190612e40565b6030611ec49190612d7e565b905060008160f81b905080848481518110611ee257611ee1613070565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88611f1e9190612db5565b97505050611e7c565b819450505050505b919050565b505050565b6000611f5a8473ffffffffffffffffffffffffffffffffffffffff166120d0565b156120c3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f836115bc565b8786866040518563ffffffff1660e01b8152600401611fa5949392919061290b565b602060405180830381600087803b158015611fbf57600080fd5b505af1925050508015611ff057506040513d601f19601f82011682018060405250810190611fed919061244f565b60015b612073573d8060008114612020576040519150601f19603f3d011682016040523d82523d6000602084013e612025565b606091505b5060008151141561206b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206290612994565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120c8565b600190505b949350505050565b600080823b905060008111915050919050565b8280546120ef90612f37565b90600052602060002090601f0160209004810192826121115760008555612158565b82601f1061212a57805160ff1916838001178555612158565b82800160010185558215612158579182015b8281111561215757825182559160200191906001019061213c565b5b5090506121659190612169565b5090565b5b8082111561218257600081600090555060010161216a565b5090565b600061219961219484612cb4565b612c8f565b9050828152602081018484840111156121b5576121b46130d3565b5b6121c0848285612ef5565b509392505050565b6000813590506121d781613705565b92915050565b6000813590506121ec8161371c565b92915050565b60008135905061220181613733565b92915050565b60008151905061221681613733565b92915050565b600082601f830112612231576122306130ce565b5b8135612241848260208601612186565b91505092915050565b6000813590506122598161374a565b92915050565b600060208284031215612275576122746130dd565b5b6000612283848285016121c8565b91505092915050565b600080604083850312156122a3576122a26130dd565b5b60006122b1858286016121c8565b92505060206122c2858286016121c8565b9150509250929050565b6000806000606084860312156122e5576122e46130dd565b5b60006122f3868287016121c8565b9350506020612304868287016121c8565b92505060406123158682870161224a565b9150509250925092565b60008060008060808587031215612339576123386130dd565b5b6000612347878288016121c8565b9450506020612358878288016121c8565b93505060406123698782880161224a565b925050606085013567ffffffffffffffff81111561238a576123896130d8565b5b6123968782880161221c565b91505092959194509250565b600080604083850312156123b9576123b86130dd565b5b60006123c7858286016121c8565b92505060206123d8858286016121dd565b9150509250929050565b600080604083850312156123f9576123f86130dd565b5b6000612407858286016121c8565b92505060206124188582860161224a565b9150509250929050565b600060208284031215612438576124376130dd565b5b6000612446848285016121f2565b91505092915050565b600060208284031215612465576124646130dd565b5b600061247384828501612207565b91505092915050565b600060208284031215612492576124916130dd565b5b60006124a08482850161224a565b91505092915050565b6124b281612e74565b82525050565b6124c181612e86565b82525050565b60006124d282612ce5565b6124dc8185612cfb565b93506124ec818560208601612f04565b6124f5816130e2565b840191505092915050565b600061250b82612cf0565b6125158185612d0c565b9350612525818560208601612f04565b61252e816130e2565b840191505092915050565b600061254482612cf0565b61254e8185612d1d565b935061255e818560208601612f04565b80840191505092915050565b6000612577603283612d0c565b9150612582826130f3565b604082019050919050565b600061259a602683612d0c565b91506125a582613142565b604082019050919050565b60006125bd601c83612d0c565b91506125c882613191565b602082019050919050565b60006125e0602483612d0c565b91506125eb826131ba565b604082019050919050565b6000612603601983612d0c565b915061260e82613209565b602082019050919050565b6000612626602c83612d0c565b915061263182613232565b604082019050919050565b6000612649603883612d0c565b915061265482613281565b604082019050919050565b600061266c602a83612d0c565b9150612677826132d0565b604082019050919050565b600061268f602983612d0c565b915061269a8261331f565b604082019050919050565b60006126b2601e83612d0c565b91506126bd8261336e565b602082019050919050565b60006126d5602083612d0c565b91506126e082613397565b602082019050919050565b60006126f8602a83612d0c565b9150612703826133c0565b604082019050919050565b600061271b602c83612d0c565b91506127268261340f565b604082019050919050565b600061273e600583612d1d565b91506127498261345e565b600582019050919050565b6000612761602c83612d0c565b915061276c82613487565b604082019050919050565b6000612784602083612d0c565b915061278f826134d6565b602082019050919050565b60006127a7602983612d0c565b91506127b2826134ff565b604082019050919050565b60006127ca602f83612d0c565b91506127d58261354e565b604082019050919050565b60006127ed602183612d0c565b91506127f88261359d565b604082019050919050565b6000612810603183612d0c565b915061281b826135ec565b604082019050919050565b6000612833601783612d0c565b915061283e8261363b565b602082019050919050565b6000612856601783612d0c565b915061286182613664565b602082019050919050565b6000612879601583612d0c565b91506128848261368d565b602082019050919050565b600061289c602283612d0c565b91506128a7826136b6565b604082019050919050565b6128bb81612ede565b82525050565b60006128cd8285612539565b91506128d98284612539565b91506128e482612731565b91508190509392505050565b600060208201905061290560008301846124a9565b92915050565b600060808201905061292060008301876124a9565b61292d60208301866124a9565b61293a60408301856128b2565b818103606083015261294c81846124c7565b905095945050505050565b600060208201905061296c60008301846124b8565b92915050565b6000602082019050818103600083015261298c8184612500565b905092915050565b600060208201905081810360008301526129ad8161256a565b9050919050565b600060208201905081810360008301526129cd8161258d565b9050919050565b600060208201905081810360008301526129ed816125b0565b9050919050565b60006020820190508181036000830152612a0d816125d3565b9050919050565b60006020820190508181036000830152612a2d816125f6565b9050919050565b60006020820190508181036000830152612a4d81612619565b9050919050565b60006020820190508181036000830152612a6d8161263c565b9050919050565b60006020820190508181036000830152612a8d8161265f565b9050919050565b60006020820190508181036000830152612aad81612682565b9050919050565b60006020820190508181036000830152612acd816126a5565b9050919050565b60006020820190508181036000830152612aed816126c8565b9050919050565b60006020820190508181036000830152612b0d816126eb565b9050919050565b60006020820190508181036000830152612b2d8161270e565b9050919050565b60006020820190508181036000830152612b4d81612754565b9050919050565b60006020820190508181036000830152612b6d81612777565b9050919050565b60006020820190508181036000830152612b8d8161279a565b9050919050565b60006020820190508181036000830152612bad816127bd565b9050919050565b60006020820190508181036000830152612bcd816127e0565b9050919050565b60006020820190508181036000830152612bed81612803565b9050919050565b60006020820190508181036000830152612c0d81612826565b9050919050565b60006020820190508181036000830152612c2d81612849565b9050919050565b60006020820190508181036000830152612c4d8161286c565b9050919050565b60006020820190508181036000830152612c6d8161288f565b9050919050565b6000602082019050612c8960008301846128b2565b92915050565b6000612c99612caa565b9050612ca58282612f69565b919050565b6000604051905090565b600067ffffffffffffffff821115612ccf57612cce61309f565b5b612cd8826130e2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d3382612ede565b9150612d3e83612ede565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d7357612d72612fe3565b5b828201905092915050565b6000612d8982612ee8565b9150612d9483612ee8565b92508260ff03821115612daa57612da9612fe3565b5b828201905092915050565b6000612dc082612ede565b9150612dcb83612ede565b925082612ddb57612dda613012565b5b828204905092915050565b6000612df182612ede565b9150612dfc83612ede565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e3557612e34612fe3565b5b828202905092915050565b6000612e4b82612ede565b9150612e5683612ede565b925082821015612e6957612e68612fe3565b5b828203905092915050565b6000612e7f82612ebe565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612f22578082015181840152602081019050612f07565b83811115612f31576000848401525b50505050565b60006002820490506001821680612f4f57607f821691505b60208210811415612f6357612f62613041565b5b50919050565b612f72826130e2565b810181811067ffffffffffffffff82111715612f9157612f9061309f565b5b80604052505050565b6000612fa582612ede565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fd857612fd7612fe3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f7420796574206265656e20756e6c6f636b65640000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f742074686520636c61696d60008201527f4574684164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d61782035206d696e747320706572206163636f756e74000000000000000000600082015250565b7f43616e2774206d696e74207a65726f20746f6b656e732e000000000000000000600082015250565b7f4554482073656e7420697320696e636f72726563740000000000000000000000600082015250565b7f6d6178537570706c79206f66206d696e747320616c726561647920726561636860008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b61370e81612e74565b811461371957600080fd5b50565b61372581612e86565b811461373057600080fd5b50565b61373c81612e92565b811461374757600080fd5b50565b61375381612ede565b811461375e57600080fd5b5056fea264697066735822122075ae228b4f2f685cae6c33c536ff86f2ad3ab6582c7c25908ceebd5f1e33e79e64736f6c6343000807003368747470733a2f2f61727473746172742e6d7970696e6174612e636c6f75642f697066732f516d663959324c666f3347355732464e7031716268727662466e5755414b4d6777334b5443744c6a77515a4e47442f436174686f6465253230253233000000000000000000000000000fd5caa2990dbf620368f0c0b5d1c402030caf
Deployed Bytecode
0x60806040526004361061014b5760003560e01c806367272999116100b6578063a22cb4651161006f578063a22cb4651461045f578063b88d4fde14610488578063c87b56dd146104b1578063d5abeb01146104ee578063e985e9c514610519578063f2fde38b146105565761014b565b8063672729991461037357806370a082311461038a578063715018a6146103c75780638d859f3e146103de5780638da5cb5b1461040957806395d89b41146104345761014b565b806323b872dd1161010857806323b872dd1461027457806334918dfd1461029d57806340c10f19146102b457806342842e0e146102d057806353277879146102f95780636352211e146103365761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f55780631167e4271461021e57806318160ddd14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612422565b61057f565b6040516101849190612957565b60405180910390f35b34801561019957600080fd5b506101a2610661565b6040516101af9190612972565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da919061247c565b6106f3565b6040516101ec91906128f0565b60405180910390f35b34801561020157600080fd5b5061021c600480360381019061021791906123e2565b610778565b005b34801561022a57600080fd5b50610233610890565b6040516102409190612c74565b60405180910390f35b34801561025557600080fd5b5061025e610896565b60405161026b9190612c74565b60405180910390f35b34801561028057600080fd5b5061029b600480360381019061029691906122cc565b61089c565b005b3480156102a957600080fd5b506102b26108fc565b005b6102ce60048036038101906102c991906123e2565b6109a4565b005b3480156102dc57600080fd5b506102f760048036038101906102f291906122cc565b610cd8565b005b34801561030557600080fd5b50610320600480360381019061031b919061225f565b610cf8565b60405161032d9190612c74565b60405180910390f35b34801561034257600080fd5b5061035d6004803603810190610358919061247c565b610d10565b60405161036a91906128f0565b60405180910390f35b34801561037f57600080fd5b50610388610dc2565b005b34801561039657600080fd5b506103b160048036038101906103ac919061225f565b610ec4565b6040516103be9190612c74565b60405180910390f35b3480156103d357600080fd5b506103dc610f7c565b005b3480156103ea57600080fd5b506103f3611004565b6040516104009190612c74565b60405180910390f35b34801561041557600080fd5b5061041e61100f565b60405161042b91906128f0565b60405180910390f35b34801561044057600080fd5b50610449611038565b6040516104569190612972565b60405180910390f35b34801561046b57600080fd5b50610486600480360381019061048191906123a2565b6110ca565b005b34801561049457600080fd5b506104af60048036038101906104aa919061231f565b61124b565b005b3480156104bd57600080fd5b506104d860048036038101906104d3919061247c565b6112ad565b6040516104e59190612972565b60405180910390f35b3480156104fa57600080fd5b50610503611354565b6040516105109190612c74565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b919061228c565b61135a565b60405161054d9190612957565b60405180910390f35b34801561056257600080fd5b5061057d6004803603810190610578919061225f565b6113ee565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065a5750610659826114e6565b5b9050919050565b60606001805461067090612f37565b80601f016020809104026020016040519081016040528092919081815260200182805461069c90612f37565b80156106e95780601f106106be576101008083540402835291602001916106e9565b820191906000526020600020905b8154815290600101906020018083116106cc57829003601f168201915b5050505050905090565b60006106fe82611550565b61073d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073490612b14565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078382610d10565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107eb90612bb4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108136115bc565b73ffffffffffffffffffffffffffffffffffffffff16148061084257506108418161083c6115bc565b61135a565b5b610881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087890612a54565b60405180910390fd5b61088b83836115c4565b505050565b60095481565b60085481565b6108ad6108a76115bc565b8261167d565b6108ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e390612bd4565b60405180910390fd5b6108f783838361175b565b505050565b6109046115bc565b73ffffffffffffffffffffffffffffffffffffffff1661092261100f565b73ffffffffffffffffffffffffffffffffffffffff1614610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f90612b54565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b60011515600a60009054906101000a900460ff161515146109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190612ab4565b60405180910390fd5b60008111610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3490612c14565b60405180910390fd5b60075481600854610a4e9190612d28565b1115610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690612c54565b60405180910390fd5b60095481600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610add9190612d28565b1115610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590612bf4565b60405180910390fd5b348166f8b0a10e470000610b329190612de6565b1115610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90612c34565b60405180910390fd5b60005b81811015610cd357600160086000828254610b919190612d28565b92505081905550610ba4836008546119b7565b610c3a600854600b8054610bb790612f37565b80601f0160208091040260200160405190810160405280929190818152602001828054610be390612f37565b8015610c305780601f10610c0557610100808354040283529160200191610c30565b820191906000526020600020905b815481529060010190602001808311610c1357829003601f168201915b5050505050611b85565b6001600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c8a9190612d28565b925050819055506008547f07883703ed0e86588a40d76551c92f8a4b329e3bf19765e0e6749473c1a8466560405160405180910390a28080610ccb90612f9a565b915050610b76565b505050565b610cf38383836040518060200160405280600081525061124b565b505050565b600c6020528060005260406000206000915090505481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090612a94565b60405180910390fd5b80915050919050565b610dca6115bc565b73ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090612af4565b60405180910390fd5b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ec1573d6000803e3d6000fd5b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90612a74565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f846115bc565b73ffffffffffffffffffffffffffffffffffffffff16610fa261100f565b73ffffffffffffffffffffffffffffffffffffffff1614610ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fef90612b54565b60405180910390fd5b6110026000611bf9565b565b66f8b0a10e47000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461104790612f37565b80601f016020809104026020016040519081016040528092919081815260200182805461107390612f37565b80156110c05780601f10611095576101008083540402835291602001916110c0565b820191906000526020600020905b8154815290600101906020018083116110a357829003601f168201915b5050505050905090565b6110d26115bc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790612a14565b60405180910390fd5b806006600061114d6115bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111fa6115bc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161123f9190612957565b60405180910390a35050565b61125c6112566115bc565b8361167d565b61129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290612bd4565b60405180910390fd5b6112a784848484611cbd565b50505050565b60606112b882611550565b6112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90612b94565b60405180910390fd5b6000611301611d19565b90506000815111611321576040518060200160405280600081525061134c565b8061132b84611dab565b60405160200161133c9291906128c1565b6040516020818303038152906040525b915050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113f66115bc565b73ffffffffffffffffffffffffffffffffffffffff1661141461100f565b73ffffffffffffffffffffffffffffffffffffffff161461146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190612b54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d1906129b4565b60405180910390fd5b6114e381611bf9565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661163783610d10565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061168882611550565b6116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be90612a34565b60405180910390fd5b60006116d283610d10565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061174157508373ffffffffffffffffffffffffffffffffffffffff16611729846106f3565b73ffffffffffffffffffffffffffffffffffffffff16145b806117525750611751818561135a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661177b82610d10565b73ffffffffffffffffffffffffffffffffffffffff16146117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890612b74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611838906129f4565b60405180910390fd5b61184c838383611f34565b6118576000826115c4565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a79190612e40565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118fe9190612d28565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e90612ad4565b60405180910390fd5b611a3081611550565b15611a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a67906129d4565b60405180910390fd5b611a7c60008383611f34565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611acc9190612d28565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b611b8e82611550565b611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490612b34565b60405180910390fd5b80600d60008481526020019081526020016000209080519060200190611bf49291906120e3565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cc884848461175b565b611cd484848484611f39565b611d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0a90612994565b60405180910390fd5b50505050565b6060600b8054611d2890612f37565b80601f0160208091040260200160405190810160405280929190818152602001828054611d5490612f37565b8015611da15780601f10611d7657610100808354040283529160200191611da1565b820191906000526020600020905b815481529060010190602001808311611d8457829003601f168201915b5050505050905090565b60606000821415611df3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f2f565b600082905060005b60008214611e25578080611e0e90612f9a565b915050600a82611e1e9190612db5565b9150611dfb565b60008167ffffffffffffffff811115611e4157611e4061309f565b5b6040519080825280601f01601f191660200182016040528015611e735781602001600182028036833780820191505090505b50905060008290505b60008614611f2757600181611e919190612e40565b90506000600a8088611ea39190612db5565b611ead9190612de6565b87611eb89190612e40565b6030611ec49190612d7e565b905060008160f81b905080848481518110611ee257611ee1613070565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88611f1e9190612db5565b97505050611e7c565b819450505050505b919050565b505050565b6000611f5a8473ffffffffffffffffffffffffffffffffffffffff166120d0565b156120c3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f836115bc565b8786866040518563ffffffff1660e01b8152600401611fa5949392919061290b565b602060405180830381600087803b158015611fbf57600080fd5b505af1925050508015611ff057506040513d601f19601f82011682018060405250810190611fed919061244f565b60015b612073573d8060008114612020576040519150601f19603f3d011682016040523d82523d6000602084013e612025565b606091505b5060008151141561206b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206290612994565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120c8565b600190505b949350505050565b600080823b905060008111915050919050565b8280546120ef90612f37565b90600052602060002090601f0160209004810192826121115760008555612158565b82601f1061212a57805160ff1916838001178555612158565b82800160010185558215612158579182015b8281111561215757825182559160200191906001019061213c565b5b5090506121659190612169565b5090565b5b8082111561218257600081600090555060010161216a565b5090565b600061219961219484612cb4565b612c8f565b9050828152602081018484840111156121b5576121b46130d3565b5b6121c0848285612ef5565b509392505050565b6000813590506121d781613705565b92915050565b6000813590506121ec8161371c565b92915050565b60008135905061220181613733565b92915050565b60008151905061221681613733565b92915050565b600082601f830112612231576122306130ce565b5b8135612241848260208601612186565b91505092915050565b6000813590506122598161374a565b92915050565b600060208284031215612275576122746130dd565b5b6000612283848285016121c8565b91505092915050565b600080604083850312156122a3576122a26130dd565b5b60006122b1858286016121c8565b92505060206122c2858286016121c8565b9150509250929050565b6000806000606084860312156122e5576122e46130dd565b5b60006122f3868287016121c8565b9350506020612304868287016121c8565b92505060406123158682870161224a565b9150509250925092565b60008060008060808587031215612339576123386130dd565b5b6000612347878288016121c8565b9450506020612358878288016121c8565b93505060406123698782880161224a565b925050606085013567ffffffffffffffff81111561238a576123896130d8565b5b6123968782880161221c565b91505092959194509250565b600080604083850312156123b9576123b86130dd565b5b60006123c7858286016121c8565b92505060206123d8858286016121dd565b9150509250929050565b600080604083850312156123f9576123f86130dd565b5b6000612407858286016121c8565b92505060206124188582860161224a565b9150509250929050565b600060208284031215612438576124376130dd565b5b6000612446848285016121f2565b91505092915050565b600060208284031215612465576124646130dd565b5b600061247384828501612207565b91505092915050565b600060208284031215612492576124916130dd565b5b60006124a08482850161224a565b91505092915050565b6124b281612e74565b82525050565b6124c181612e86565b82525050565b60006124d282612ce5565b6124dc8185612cfb565b93506124ec818560208601612f04565b6124f5816130e2565b840191505092915050565b600061250b82612cf0565b6125158185612d0c565b9350612525818560208601612f04565b61252e816130e2565b840191505092915050565b600061254482612cf0565b61254e8185612d1d565b935061255e818560208601612f04565b80840191505092915050565b6000612577603283612d0c565b9150612582826130f3565b604082019050919050565b600061259a602683612d0c565b91506125a582613142565b604082019050919050565b60006125bd601c83612d0c565b91506125c882613191565b602082019050919050565b60006125e0602483612d0c565b91506125eb826131ba565b604082019050919050565b6000612603601983612d0c565b915061260e82613209565b602082019050919050565b6000612626602c83612d0c565b915061263182613232565b604082019050919050565b6000612649603883612d0c565b915061265482613281565b604082019050919050565b600061266c602a83612d0c565b9150612677826132d0565b604082019050919050565b600061268f602983612d0c565b915061269a8261331f565b604082019050919050565b60006126b2601e83612d0c565b91506126bd8261336e565b602082019050919050565b60006126d5602083612d0c565b91506126e082613397565b602082019050919050565b60006126f8602a83612d0c565b9150612703826133c0565b604082019050919050565b600061271b602c83612d0c565b91506127268261340f565b604082019050919050565b600061273e600583612d1d565b91506127498261345e565b600582019050919050565b6000612761602c83612d0c565b915061276c82613487565b604082019050919050565b6000612784602083612d0c565b915061278f826134d6565b602082019050919050565b60006127a7602983612d0c565b91506127b2826134ff565b604082019050919050565b60006127ca602f83612d0c565b91506127d58261354e565b604082019050919050565b60006127ed602183612d0c565b91506127f88261359d565b604082019050919050565b6000612810603183612d0c565b915061281b826135ec565b604082019050919050565b6000612833601783612d0c565b915061283e8261363b565b602082019050919050565b6000612856601783612d0c565b915061286182613664565b602082019050919050565b6000612879601583612d0c565b91506128848261368d565b602082019050919050565b600061289c602283612d0c565b91506128a7826136b6565b604082019050919050565b6128bb81612ede565b82525050565b60006128cd8285612539565b91506128d98284612539565b91506128e482612731565b91508190509392505050565b600060208201905061290560008301846124a9565b92915050565b600060808201905061292060008301876124a9565b61292d60208301866124a9565b61293a60408301856128b2565b818103606083015261294c81846124c7565b905095945050505050565b600060208201905061296c60008301846124b8565b92915050565b6000602082019050818103600083015261298c8184612500565b905092915050565b600060208201905081810360008301526129ad8161256a565b9050919050565b600060208201905081810360008301526129cd8161258d565b9050919050565b600060208201905081810360008301526129ed816125b0565b9050919050565b60006020820190508181036000830152612a0d816125d3565b9050919050565b60006020820190508181036000830152612a2d816125f6565b9050919050565b60006020820190508181036000830152612a4d81612619565b9050919050565b60006020820190508181036000830152612a6d8161263c565b9050919050565b60006020820190508181036000830152612a8d8161265f565b9050919050565b60006020820190508181036000830152612aad81612682565b9050919050565b60006020820190508181036000830152612acd816126a5565b9050919050565b60006020820190508181036000830152612aed816126c8565b9050919050565b60006020820190508181036000830152612b0d816126eb565b9050919050565b60006020820190508181036000830152612b2d8161270e565b9050919050565b60006020820190508181036000830152612b4d81612754565b9050919050565b60006020820190508181036000830152612b6d81612777565b9050919050565b60006020820190508181036000830152612b8d8161279a565b9050919050565b60006020820190508181036000830152612bad816127bd565b9050919050565b60006020820190508181036000830152612bcd816127e0565b9050919050565b60006020820190508181036000830152612bed81612803565b9050919050565b60006020820190508181036000830152612c0d81612826565b9050919050565b60006020820190508181036000830152612c2d81612849565b9050919050565b60006020820190508181036000830152612c4d8161286c565b9050919050565b60006020820190508181036000830152612c6d8161288f565b9050919050565b6000602082019050612c8960008301846128b2565b92915050565b6000612c99612caa565b9050612ca58282612f69565b919050565b6000604051905090565b600067ffffffffffffffff821115612ccf57612cce61309f565b5b612cd8826130e2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d3382612ede565b9150612d3e83612ede565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d7357612d72612fe3565b5b828201905092915050565b6000612d8982612ee8565b9150612d9483612ee8565b92508260ff03821115612daa57612da9612fe3565b5b828201905092915050565b6000612dc082612ede565b9150612dcb83612ede565b925082612ddb57612dda613012565b5b828204905092915050565b6000612df182612ede565b9150612dfc83612ede565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e3557612e34612fe3565b5b828202905092915050565b6000612e4b82612ede565b9150612e5683612ede565b925082821015612e6957612e68612fe3565b5b828203905092915050565b6000612e7f82612ebe565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612f22578082015181840152602081019050612f07565b83811115612f31576000848401525b50505050565b60006002820490506001821680612f4f57607f821691505b60208210811415612f6357612f62613041565b5b50919050565b612f72826130e2565b810181811067ffffffffffffffff82111715612f9157612f9061309f565b5b80604052505050565b6000612fa582612ede565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fd857612fd7612fe3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f7420796574206265656e20756e6c6f636b65640000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f742074686520636c61696d60008201527f4574684164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d61782035206d696e747320706572206163636f756e74000000000000000000600082015250565b7f43616e2774206d696e74207a65726f20746f6b656e732e000000000000000000600082015250565b7f4554482073656e7420697320696e636f72726563740000000000000000000000600082015250565b7f6d6178537570706c79206f66206d696e747320616c726561647920726561636860008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b61370e81612e74565b811461371957600080fd5b50565b61372581612e86565b811461373057600080fd5b50565b61373c81612e92565b811461374757600080fd5b50565b61375381612ede565b811461375e57600080fd5b5056fea264697066735822122075ae228b4f2f685cae6c33c536ff86f2ad3ab6582c7c25908ceebd5f1e33e79e64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000fd5caa2990dbf620368f0c0b5d1c402030caf
-----Decoded View---------------
Arg [0] : _claimEthAddress (address): 0x000Fd5cAa2990dBF620368f0C0B5d1c402030CaF
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000fd5caa2990dbf620368f0c0b5d1c402030caf
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.