Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 131 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 16297322 | 727 days ago | IN | 0 ETH | 0.00052765 | ||||
Set Approval For... | 16261523 | 732 days ago | IN | 0 ETH | 0.00061307 | ||||
Set Approval For... | 15855129 | 789 days ago | IN | 0 ETH | 0.00060903 | ||||
Withdraw Funds | 14544173 | 993 days ago | IN | 0 ETH | 0.00088212 | ||||
Set Approval For... | 14398019 | 1016 days ago | IN | 0 ETH | 0.001796 | ||||
Set Approval For... | 14398019 | 1016 days ago | IN | 0 ETH | 0.001796 | ||||
Set Approval For... | 14334260 | 1026 days ago | IN | 0 ETH | 0.0014538 | ||||
Set Approval For... | 14242908 | 1040 days ago | IN | 0 ETH | 0.00124765 | ||||
Set Approval For... | 14036880 | 1072 days ago | IN | 0 ETH | 0.00609368 | ||||
Set Approval For... | 13977783 | 1081 days ago | IN | 0 ETH | 0.00791668 | ||||
Set Approval For... | 13958297 | 1084 days ago | IN | 0 ETH | 0.00685894 | ||||
Set Approval For... | 13946083 | 1086 days ago | IN | 0 ETH | 0.00717426 | ||||
Set Approval For... | 13459496 | 1162 days ago | IN | 0 ETH | 0.00224712 | ||||
Claim For Bloot | 13344416 | 1180 days ago | IN | 0 ETH | 0.00609836 | ||||
Claim For Bloot | 13308275 | 1186 days ago | IN | 0 ETH | 0.00941441 | ||||
Claim For Bloot | 13296627 | 1188 days ago | IN | 0 ETH | 0.0088278 | ||||
Claim For Bloot | 13283891 | 1190 days ago | IN | 0 ETH | 0.00939454 | ||||
Claim For Bloot | 13258092 | 1194 days ago | IN | 0 ETH | 0.0087935 | ||||
Claim For Bloot | 13250502 | 1195 days ago | IN | 0 ETH | 0.00672703 | ||||
Claim For Bloot | 13242689 | 1196 days ago | IN | 0 ETH | 0.00841074 | ||||
Claim For Bloot | 13237285 | 1197 days ago | IN | 0 ETH | 0.01414312 | ||||
Claim For Bloot | 13237283 | 1197 days ago | IN | 0 ETH | 0.01178695 | ||||
Write Story | 13236410 | 1197 days ago | IN | 0 ETH | 0.00455207 | ||||
Public Claim | 13236386 | 1197 days ago | IN | 0.03 ETH | 0.00735556 | ||||
Claim For Bloot | 13235747 | 1197 days ago | IN | 0 ETH | 0.0075666 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
14544173 | 993 days ago | 0.24 ETH |
Loading...
Loading
Contract Name:
BlootStory
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)
/** *Submitted for verification at Etherscan.io on 2021-09-03 */ /** *Submitted for verification at Etherscan.io on 2021-09-03 */ // SPDX-License-Identifier: MIT 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); } /** * @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; } /** * @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); } } /* * @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; } } /** * @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); } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @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); } /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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; } } /** * @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(to).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 {} } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } contract BlootStory is ERC721Enumerable, ReentrancyGuard, Ownable { uint256 public constant PUBLIC_MINT_PRICE = 30000000000000000; //0.03 eth uint256 public publicSupply = 0; ERC721 bloot = ERC721(0x4F8730E0b32B04beaa5757e5aea3aeF970E5B613); mapping(uint256 => string) private quotes; function writeStory(string memory input, uint256 tokenId) public { require(ownerOf(tokenId) == msg.sender, "Not token owner"); require(bytes(quotes[tokenId]).length == 0, "Already wrote your story"); require(bytes(input).length <= 69, "Too many characters, max 69"); quotes[tokenId] = input; } function checkNumbersOfCharacters(string memory input) public view returns (uint256){ return bytes(input).length; } function isWritten(uint256 tokenId) public view returns (bool) { if (bytes(quotes[tokenId]).length == 0) { return false; } else { return true; } } function tokenURI(uint256 tokenId) override public view returns (string memory) { string[3] memory parts; parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: black; font-family: serif; font-size: 10px; }</style><rect width="100%" height="100%" fill="#01ff01" /><text x="10" y="170" class="base">'; parts[1] = quotes[tokenId]; parts[2] = '</text></svg>'; string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2])); string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Bloot Story #', toString(tokenId), '", "description": "Bloot Story is basically bs.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}')))); output = string(abi.encodePacked('data:application/json;base64,', json)); return output; } function claimForBloot(uint256 tokenId) public nonReentrant { require(tokenId > 0 && tokenId < 8009, "Token ID invalid"); require(bloot.ownerOf(tokenId) == msg.sender, "Not Bloot owner"); _safeMint(_msgSender(), tokenId); } function claimForBloots(uint256[] memory tokenIds) public nonReentrant { for (uint256 i=0; i< tokenIds.length; i++) { uint256 tokenId = tokenIds[i]; require(tokenId > 0 && tokenId < 8009, "Token ID invalid"); require(bloot.ownerOf(tokenId) == msg.sender, string(abi.encodePacked("Not Bloot #",toString(tokenId)," owner"))); _safeMint(_msgSender(), tokenId); } } function ownerClaim(uint256 tokenId) public nonReentrant onlyOwner { require(tokenId == 0 || tokenId == 10000, "Token ID invalid"); _safeMint(_msgSender(), tokenId); } function publicClaim(uint256 _quantity) public nonReentrant payable { require(_quantity <= 25, "You can mint at most 25 at a time"); require(publicSupply < 1991, "No more tokens to mint"); require(publicSupply + _quantity <= 1991, "Sorry, exceed our max supply"); require(msg.value >= PUBLIC_MINT_PRICE * _quantity, "Ether amount is not correct"); for (uint i = 0; i < _quantity; i++) { _safeMint(msg.sender, 8009 + publicSupply); publicSupply = publicSupply + 1; } } function withdrawFunds() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT license // 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); } constructor() ERC721("BlootStory", "BS") Ownable() {} } /// [MIT License] /// @title Base64 /// @notice Provides a function for encoding some bytes in base64 /// @author Brecht Devos <[email protected]> library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
{ "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":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PUBLIC_MINT_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":[{"internalType":"string","name":"input","type":"string"}],"name":"checkNumbersOfCharacters","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimForBloot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claimForBloots","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isWritten","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicClaim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"input","type":"string"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"writeStory","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600c55734f8730e0b32b04beaa5757e5aea3aef970e5b613600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006b57600080fd5b506040518060400160405280600a81526020017f426c6f6f7453746f7279000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f42530000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f092919062000208565b5080600190805190602001906200010992919062000208565b5050506001600a8190555062000134620001286200013a60201b60201c565b6200014260201b60201c565b6200031d565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021690620002b8565b90600052602060002090601f0160209004810192826200023a576000855562000286565b82601f106200025557805160ff191683800117855562000286565b8280016001018555821562000286579182015b828111156200028557825182559160200191906001019062000268565b5b50905062000295919062000299565b5090565b5b80821115620002b45760008160009055506001016200029a565b5090565b60006002820490506001821680620002d157607f821691505b60208210811415620002e857620002e7620002ee565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614dc3806200032d6000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063a66518bc11610095578063d21b819f11610064578063d21b819f14610643578063e985e9c51461066c578063ee9d5938146106a9578063f2fde38b146106e6576101c2565b8063a66518bc1461058b578063aced6f0e146105b4578063b88d4fde146105dd578063c87b56dd14610606576101c2565b80638da5cb5b116100d15780638da5cb5b146104f05780638f5dac6e1461051b57806395d89b4114610537578063a22cb46514610562576101c2565b806370a082311461045f578063715018a61461049c57806385853b0f146104b3576101c2565b80632f745c59116101645780634f6ccce71161013e5780634f6ccce71461038f5780635e84d723146103cc5780636352211e146103f75780636bde262714610434576101c2565b80632f745c591461030057806342842e0e1461033d578063434f48c414610366576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c057806324600fc3146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190613403565b61070f565b6040516101fb9190613bae565b60405180910390f35b34801561021057600080fd5b50610219610789565b6040516102269190613bc9565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190613502565b61081b565b6040516102639190613b47565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061337a565b6108a0565b005b3480156102a157600080fd5b506102aa6109b8565b6040516102b79190613f4b565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190613264565b6109c5565b005b3480156102f557600080fd5b506102fe610a25565b005b34801561030c57600080fd5b506103276004803603810190610322919061337a565b610af0565b6040516103349190613f4b565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613264565b610b95565b005b34801561037257600080fd5b5061038d60048036038101906103889190613502565b610bb5565b005b34801561039b57600080fd5b506103b660048036038101906103b19190613502565b610cea565b6040516103c39190613f4b565b60405180910390f35b3480156103d857600080fd5b506103e1610d5b565b6040516103ee9190613f4b565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190613502565b610d61565b60405161042b9190613b47565b60405180910390f35b34801561044057600080fd5b50610449610e13565b6040516104569190613f4b565b60405180910390f35b34801561046b57600080fd5b50610486600480360381019061048191906131ca565b610e1e565b6040516104939190613f4b565b60405180910390f35b3480156104a857600080fd5b506104b1610ed6565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190613502565b610f5e565b6040516104e79190613bae565b60405180910390f35b3480156104fc57600080fd5b50610505610f9a565b6040516105129190613b47565b60405180910390f35b61053560048036038101906105309190613502565b610fc4565b005b34801561054357600080fd5b5061054c61119b565b6040516105599190613bc9565b60405180910390f35b34801561056e57600080fd5b506105896004803603810190610584919061333a565b61122d565b005b34801561059757600080fd5b506105b260048036038101906105ad91906134a6565b6113ae565b005b3480156105c057600080fd5b506105db60048036038101906105d691906133ba565b6114f7565b005b3480156105e957600080fd5b5061060460048036038101906105ff91906132b7565b611734565b005b34801561061257600080fd5b5061062d60048036038101906106289190613502565b611796565b60405161063a9190613bc9565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190613502565b6119bd565b005b34801561067857600080fd5b50610693600480360381019061068e9190613224565b611b8f565b6040516106a09190613bae565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb919061345d565b611c23565b6040516106dd9190613f4b565b60405180910390f35b3480156106f257600080fd5b5061070d600480360381019061070891906131ca565b611c2e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610782575061078182611d26565b5b9050919050565b60606000805461079890614227565b80601f01602080910402602001604051908101604052809291908181526020018280546107c490614227565b80156108115780601f106107e657610100808354040283529160200191610811565b820191906000526020600020905b8154815290600101906020018083116107f457829003601f168201915b5050505050905090565b600061082682611e08565b610865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085c90613dcb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ab82610d61565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091390613e6b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661093b611e74565b73ffffffffffffffffffffffffffffffffffffffff16148061096a575061096981610964611e74565b611b8f565b5b6109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090613d2b565b60405180910390fd5b6109b38383611e7c565b505050565b6000600880549050905090565b6109d66109d0611e74565b82611f35565b610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90613e8b565b60405180910390fd5b610a20838383612013565b505050565b610a2d611e74565b73ffffffffffffffffffffffffffffffffffffffff16610a4b610f9a565b73ffffffffffffffffffffffffffffffffffffffff1614610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9890613deb565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610aec573d6000803e3d6000fd5b5050565b6000610afb83610e1e565b8210610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3390613beb565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610bb083838360405180602001604052806000815250611734565b505050565b6002600a541415610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf290613eeb565b60405180910390fd5b6002600a81905550610c0b611e74565b73ffffffffffffffffffffffffffffffffffffffff16610c29610f9a565b73ffffffffffffffffffffffffffffffffffffffff1614610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690613deb565b60405180910390fd5b6000811480610c8f575061271081145b610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590613e0b565b60405180910390fd5b610cdf610cd9611e74565b8261226f565b6001600a8190555050565b6000610cf46109b8565b8210610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90613eab565b60405180910390fd5b60088281548110610d4957610d486143c0565b5b90600052602060002001549050919050565b600c5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190613d6b565b60405180910390fd5b80915050919050565b666a94d74f43000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690613d4b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ede611e74565b73ffffffffffffffffffffffffffffffffffffffff16610efc610f9a565b73ffffffffffffffffffffffffffffffffffffffff1614610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613deb565b60405180910390fd5b610f5c600061228d565b565b600080600e60008481526020019081526020016000208054610f7f90614227565b90501415610f905760009050610f95565b600190505b919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6002600a54141561100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190613eeb565b60405180910390fd5b6002600a819055506019811115611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90613e4b565b60405180910390fd5b6107c7600c541061109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390613c6b565b60405180910390fd5b6107c781600c546110ad919061405c565b11156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590613ccb565b60405180910390fd5b80666a94d74f43000061110191906140e3565b341015611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90613f2b565b60405180910390fd5b60005b8181101561118f5761116733600c54611f49611162919061405c565b61226f565b6001600c54611176919061405c565b600c8190555080806111879061428a565b915050611146565b506001600a8190555050565b6060600180546111aa90614227565b80601f01602080910402602001604051908101604052809291908181526020018280546111d690614227565b80156112235780601f106111f857610100808354040283529160200191611223565b820191906000526020600020905b81548152906001019060200180831161120657829003601f168201915b5050505050905090565b611235611e74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90613cab565b60405180910390fd5b80600560006112b0611e74565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661135d611e74565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113a29190613bae565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff166113ce82610d61565b73ffffffffffffffffffffffffffffffffffffffff1614611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90613ecb565b60405180910390fd5b6000600e6000838152602001908152602001600020805461144490614227565b905014611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d90613d0b565b60405180910390fd5b6045825111156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290613d8b565b60405180910390fd5b81600e600083815260200190815260200160002090805190602001906114f2929190612f04565b505050565b6002600a54141561153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613eeb565b60405180910390fd5b6002600a8190555060005b8151811015611728576000828281518110611566576115656143c0565b5b602002602001015190506000811180156115815750611f4981105b6115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790613e0b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016116329190613f4b565b60206040518083038186803b15801561164a57600080fd5b505afa15801561165e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168291906131f7565b73ffffffffffffffffffffffffffffffffffffffff16146116a282612353565b6040516020016116b29190613af8565b60405160208183030381529060405290611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f99190613bc9565b60405180910390fd5b5061171461170e611e74565b8261226f565b5080806117209061428a565b915050611548565b506001600a8190555050565b61174561173f611e74565b83611f35565b611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b90613e8b565b60405180910390fd5b611790848484846124b4565b50505050565b60606117a0612f8a565b6040518061012001604052806101008152602001614c8e6101009139816000600381106117d0576117cf6143c0565b5b6020020181905250600e600084815260200190815260200160002080546117f690614227565b80601f016020809104026020016040519081016040528092919081815260200182805461182290614227565b801561186f5780601f106118445761010080835404028352916020019161186f565b820191906000526020600020905b81548152906001019060200180831161185257829003601f168201915b505050505081600160038110611888576118876143c0565b5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000815250816002600381106118da576118d96143c0565b5b60200201819052506000816000600381106118f8576118f76143c0565b5b602002015182600160038110611911576119106143c0565b5b60200201518360026003811061192a576119296143c0565b5b602002015160405160200161194193929190613a82565b6040516020818303038152906040529050600061198e61196086612353565b61196984612510565b60405160200161197a929190613ab3565b604051602081830303815290604052612510565b9050806040516020016119a19190613b25565b6040516020818303038152906040529150819350505050919050565b6002600a541415611a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fa90613eeb565b60405180910390fd5b6002600a81905550600081118015611a1c5750611f4981105b611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5290613e0b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611acd9190613f4b565b60206040518083038186803b158015611ae557600080fd5b505afa158015611af9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1d91906131f7565b73ffffffffffffffffffffffffffffffffffffffff1614611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a90613f0b565b60405180910390fd5b611b84611b7e611e74565b8261226f565b6001600a8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081519050919050565b611c36611e74565b73ffffffffffffffffffffffffffffffffffffffff16611c54610f9a565b73ffffffffffffffffffffffffffffffffffffffff1614611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca190613deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1190613c2b565b60405180910390fd5b611d238161228d565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611df157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e015750611e00826126a8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611eef83610d61565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f4082611e08565b611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7690613ceb565b60405180910390fd5b6000611f8a83610d61565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ff957508373ffffffffffffffffffffffffffffffffffffffff16611fe18461081b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061200a57506120098185611b8f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661203382610d61565b73ffffffffffffffffffffffffffffffffffffffff1614612089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208090613e2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f090613c8b565b60405180910390fd5b612104838383612712565b61210f600082611e7c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461215f919061413d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b6919061405c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612289828260405180602001604052806000815250612826565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6060600082141561239b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124af565b600082905060005b600082146123cd5780806123b69061428a565b915050600a826123c691906140b2565b91506123a3565b60008167ffffffffffffffff8111156123e9576123e86143ef565b5b6040519080825280601f01601f19166020018201604052801561241b5781602001600182028036833780820191505090505b5090505b600085146124a857600182612434919061413d565b9150600a8561244391906142d3565b603061244f919061405c565b60f81b818381518110612465576124646143c0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124a191906140b2565b945061241f565b8093505050505b919050565b6124bf848484612013565b6124cb84848484612881565b61250a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250190613c0b565b60405180910390fd5b50505050565b6060600082519050600081141561253957604051806020016040528060008152509150506126a3565b6000600360028361254a919061405c565b61255491906140b2565b600461256091906140e3565b90506000602082612571919061405c565b67ffffffffffffffff81111561258a576125896143ef565b5b6040519080825280601f01601f1916602001820160405280156125bc5781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001614c4e604091399050600181016020830160005b868110156126605760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b905080845260048401935050506125e7565b50600386066001811461267a576002811461268a57612695565b613d3d60f01b6002830352612695565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61271d838383612a18565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127605761275b81612a1d565b61279f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461279e5761279d8382612a66565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127e2576127dd81612bd3565b612821565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146128205761281f8282612ca4565b5b5b505050565b6128308383612d23565b61283d6000848484612881565b61287c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287390613c0b565b60405180910390fd5b505050565b60006128a28473ffffffffffffffffffffffffffffffffffffffff16612ef1565b15612a0b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128cb611e74565b8786866040518563ffffffff1660e01b81526004016128ed9493929190613b62565b602060405180830381600087803b15801561290757600080fd5b505af192505050801561293857506040513d601f19601f820116820180604052508101906129359190613430565b60015b6129bb573d8060008114612968576040519150601f19603f3d011682016040523d82523d6000602084013e61296d565b606091505b506000815114156129b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129aa90613c0b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a10565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612a7384610e1e565b612a7d919061413d565b9050600060076000848152602001908152602001600020549050818114612b62576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612be7919061413d565b9050600060096000848152602001908152602001600020549050600060088381548110612c1757612c166143c0565b5b906000526020600020015490508060088381548110612c3957612c386143c0565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c8857612c87614391565b5b6001900381819060005260206000200160009055905550505050565b6000612caf83610e1e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8a90613dab565b60405180910390fd5b612d9c81611e08565b15612ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd390613c4b565b60405180910390fd5b612de860008383612712565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e38919061405c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612f1090614227565b90600052602060002090601f016020900481019282612f325760008555612f79565b82601f10612f4b57805160ff1916838001178555612f79565b82800160010185558215612f79579182015b82811115612f78578251825591602001919060010190612f5d565b5b509050612f869190612fb1565b5090565b60405180606001604052806003905b6060815260200190600190039081612f995790505090565b5b80821115612fca576000816000905550600101612fb2565b5090565b6000612fe1612fdc84613f8b565b613f66565b9050808382526020820190508285602086028201111561300457613003614423565b5b60005b85811015613034578161301a88826131b5565b845260208401935060208301925050600181019050613007565b5050509392505050565b600061305161304c84613fb7565b613f66565b90508281526020810184848401111561306d5761306c614428565b5b6130788482856141e5565b509392505050565b600061309361308e84613fe8565b613f66565b9050828152602081018484840111156130af576130ae614428565b5b6130ba8482856141e5565b509392505050565b6000813590506130d181614bf1565b92915050565b6000815190506130e681614bf1565b92915050565b600082601f8301126131015761310061441e565b5b8135613111848260208601612fce565b91505092915050565b60008135905061312981614c08565b92915050565b60008135905061313e81614c1f565b92915050565b60008151905061315381614c1f565b92915050565b600082601f83011261316e5761316d61441e565b5b813561317e84826020860161303e565b91505092915050565b600082601f83011261319c5761319b61441e565b5b81356131ac848260208601613080565b91505092915050565b6000813590506131c481614c36565b92915050565b6000602082840312156131e0576131df614432565b5b60006131ee848285016130c2565b91505092915050565b60006020828403121561320d5761320c614432565b5b600061321b848285016130d7565b91505092915050565b6000806040838503121561323b5761323a614432565b5b6000613249858286016130c2565b925050602061325a858286016130c2565b9150509250929050565b60008060006060848603121561327d5761327c614432565b5b600061328b868287016130c2565b935050602061329c868287016130c2565b92505060406132ad868287016131b5565b9150509250925092565b600080600080608085870312156132d1576132d0614432565b5b60006132df878288016130c2565b94505060206132f0878288016130c2565b9350506040613301878288016131b5565b925050606085013567ffffffffffffffff8111156133225761332161442d565b5b61332e87828801613159565b91505092959194509250565b6000806040838503121561335157613350614432565b5b600061335f858286016130c2565b92505060206133708582860161311a565b9150509250929050565b6000806040838503121561339157613390614432565b5b600061339f858286016130c2565b92505060206133b0858286016131b5565b9150509250929050565b6000602082840312156133d0576133cf614432565b5b600082013567ffffffffffffffff8111156133ee576133ed61442d565b5b6133fa848285016130ec565b91505092915050565b60006020828403121561341957613418614432565b5b60006134278482850161312f565b91505092915050565b60006020828403121561344657613445614432565b5b600061345484828501613144565b91505092915050565b60006020828403121561347357613472614432565b5b600082013567ffffffffffffffff8111156134915761349061442d565b5b61349d84828501613187565b91505092915050565b600080604083850312156134bd576134bc614432565b5b600083013567ffffffffffffffff8111156134db576134da61442d565b5b6134e785828601613187565b92505060206134f8858286016131b5565b9150509250929050565b60006020828403121561351857613517614432565b5b6000613526848285016131b5565b91505092915050565b61353881614171565b82525050565b61354781614183565b82525050565b600061355882614019565b613562818561402f565b93506135728185602086016141f4565b61357b81614437565b840191505092915050565b600061359182614024565b61359b8185614040565b93506135ab8185602086016141f4565b6135b481614437565b840191505092915050565b60006135ca82614024565b6135d48185614051565b93506135e48185602086016141f4565b80840191505092915050565b60006135fd601783614051565b915061360882614448565b601782019050919050565b6000613620605683614051565b915061362b82614471565b605682019050919050565b6000613643602b83614040565b915061364e826144e6565b604082019050919050565b6000613666603283614040565b915061367182614535565b604082019050919050565b6000613689602683614040565b915061369482614584565b604082019050919050565b60006136ac600b83614051565b91506136b7826145d3565b600b82019050919050565b60006136cf601c83614040565b91506136da826145fc565b602082019050919050565b60006136f2601683614040565b91506136fd82614625565b602082019050919050565b6000613715602483614040565b91506137208261464e565b604082019050919050565b6000613738601983614040565b91506137438261469d565b602082019050919050565b600061375b601c83614040565b9150613766826146c6565b602082019050919050565b600061377e602c83614040565b9150613789826146ef565b604082019050919050565b60006137a1600683614051565b91506137ac8261473e565b600682019050919050565b60006137c4601883614040565b91506137cf82614767565b602082019050919050565b60006137e7603883614040565b91506137f282614790565b604082019050919050565b600061380a602a83614040565b9150613815826147df565b604082019050919050565b600061382d602983614040565b91506138388261482e565b604082019050919050565b6000613850601b83614040565b915061385b8261487d565b602082019050919050565b6000613873600283614051565b915061387e826148a6565b600282019050919050565b6000613896602083614040565b91506138a1826148cf565b602082019050919050565b60006138b9602c83614040565b91506138c4826148f8565b604082019050919050565b60006138dc602083614040565b91506138e782614947565b602082019050919050565b60006138ff601083614040565b915061390a82614970565b602082019050919050565b6000613922602983614040565b915061392d82614999565b604082019050919050565b6000613945602183614040565b9150613950826149e8565b604082019050919050565b6000613968602183614040565b915061397382614a37565b604082019050919050565b600061398b601d83614051565b915061399682614a86565b601d82019050919050565b60006139ae603183614040565b91506139b982614aaf565b604082019050919050565b60006139d1602c83614040565b91506139dc82614afe565b604082019050919050565b60006139f4600f83614040565b91506139ff82614b4d565b602082019050919050565b6000613a17601f83614040565b9150613a2282614b76565b602082019050919050565b6000613a3a600f83614040565b9150613a4582614b9f565b602082019050919050565b6000613a5d601b83614040565b9150613a6882614bc8565b602082019050919050565b613a7c816141db565b82525050565b6000613a8e82866135bf565b9150613a9a82856135bf565b9150613aa682846135bf565b9150819050949350505050565b6000613abe826135f0565b9150613aca82856135bf565b9150613ad582613613565b9150613ae182846135bf565b9150613aec82613866565b91508190509392505050565b6000613b038261369f565b9150613b0f82846135bf565b9150613b1a82613794565b915081905092915050565b6000613b308261397e565b9150613b3c82846135bf565b915081905092915050565b6000602082019050613b5c600083018461352f565b92915050565b6000608082019050613b77600083018761352f565b613b84602083018661352f565b613b916040830185613a73565b8181036060830152613ba3818461354d565b905095945050505050565b6000602082019050613bc3600083018461353e565b92915050565b60006020820190508181036000830152613be38184613586565b905092915050565b60006020820190508181036000830152613c0481613636565b9050919050565b60006020820190508181036000830152613c2481613659565b9050919050565b60006020820190508181036000830152613c448161367c565b9050919050565b60006020820190508181036000830152613c64816136c2565b9050919050565b60006020820190508181036000830152613c84816136e5565b9050919050565b60006020820190508181036000830152613ca481613708565b9050919050565b60006020820190508181036000830152613cc48161372b565b9050919050565b60006020820190508181036000830152613ce48161374e565b9050919050565b60006020820190508181036000830152613d0481613771565b9050919050565b60006020820190508181036000830152613d24816137b7565b9050919050565b60006020820190508181036000830152613d44816137da565b9050919050565b60006020820190508181036000830152613d64816137fd565b9050919050565b60006020820190508181036000830152613d8481613820565b9050919050565b60006020820190508181036000830152613da481613843565b9050919050565b60006020820190508181036000830152613dc481613889565b9050919050565b60006020820190508181036000830152613de4816138ac565b9050919050565b60006020820190508181036000830152613e04816138cf565b9050919050565b60006020820190508181036000830152613e24816138f2565b9050919050565b60006020820190508181036000830152613e4481613915565b9050919050565b60006020820190508181036000830152613e6481613938565b9050919050565b60006020820190508181036000830152613e848161395b565b9050919050565b60006020820190508181036000830152613ea4816139a1565b9050919050565b60006020820190508181036000830152613ec4816139c4565b9050919050565b60006020820190508181036000830152613ee4816139e7565b9050919050565b60006020820190508181036000830152613f0481613a0a565b9050919050565b60006020820190508181036000830152613f2481613a2d565b9050919050565b60006020820190508181036000830152613f4481613a50565b9050919050565b6000602082019050613f606000830184613a73565b92915050565b6000613f70613f81565b9050613f7c8282614259565b919050565b6000604051905090565b600067ffffffffffffffff821115613fa657613fa56143ef565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613fd257613fd16143ef565b5b613fdb82614437565b9050602081019050919050565b600067ffffffffffffffff821115614003576140026143ef565b5b61400c82614437565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614067826141db565b9150614072836141db565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140a7576140a6614304565b5b828201905092915050565b60006140bd826141db565b91506140c8836141db565b9250826140d8576140d7614333565b5b828204905092915050565b60006140ee826141db565b91506140f9836141db565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561413257614131614304565b5b828202905092915050565b6000614148826141db565b9150614153836141db565b92508282101561416657614165614304565b5b828203905092915050565b600061417c826141bb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142125780820151818401526020810190506141f7565b83811115614221576000848401525b50505050565b6000600282049050600182168061423f57607f821691505b6020821081141561425357614252614362565b5b50919050565b61426282614437565b810181811067ffffffffffffffff82111715614281576142806143ef565b5b80604052505050565b6000614295826141db565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142c8576142c7614304565b5b600182019050919050565b60006142de826141db565b91506142e9836141db565b9250826142f9576142f8614333565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f7b226e616d65223a2022426c6f6f742053746f72792023000000000000000000600082015250565b7f222c20226465736372697074696f6e223a2022426c6f6f742053746f7279206960008201527f73206261736963616c6c792062732e222c2022696d616765223a20226461746160208201527f3a696d6167652f7376672b786d6c3b6261736536342c00000000000000000000604082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420426c6f6f742023000000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f206d6f726520746f6b656e7320746f206d696e7400000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f536f7272792c20657863656564206f7572206d617820737570706c7900000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f206f776e65720000000000000000000000000000000000000000000000000000600082015250565b7f416c72656164792077726f746520796f75722073746f72790000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e7920636861726163746572732c206d61782036390000000000600082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206d696e74206174206d6f737420323520617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420746f6b656e206f776e65720000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e6f7420426c6f6f74206f776e65720000000000000000000000000000000000600082015250565b7f457468657220616d6f756e74206973206e6f7420636f72726563740000000000600082015250565b614bfa81614171565b8114614c0557600080fd5b50565b614c1181614183565b8114614c1c57600080fd5b50565b614c288161418f565b8114614c3357600080fd5b50565b614c3f816141db565b8114614c4a57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a20626c61636b3b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313070783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d222330316666303122202f3e3c7465787420783d2231302220793d223137302220636c6173733d2262617365223ea26469706673582212201779c6db0301b0c6268673169c0d084d616f590f177424777f58e557a7a486ab64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101c25760003560e01c806370a08231116100f7578063a66518bc11610095578063d21b819f11610064578063d21b819f14610643578063e985e9c51461066c578063ee9d5938146106a9578063f2fde38b146106e6576101c2565b8063a66518bc1461058b578063aced6f0e146105b4578063b88d4fde146105dd578063c87b56dd14610606576101c2565b80638da5cb5b116100d15780638da5cb5b146104f05780638f5dac6e1461051b57806395d89b4114610537578063a22cb46514610562576101c2565b806370a082311461045f578063715018a61461049c57806385853b0f146104b3576101c2565b80632f745c59116101645780634f6ccce71161013e5780634f6ccce71461038f5780635e84d723146103cc5780636352211e146103f75780636bde262714610434576101c2565b80632f745c591461030057806342842e0e1461033d578063434f48c414610366576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c057806324600fc3146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190613403565b61070f565b6040516101fb9190613bae565b60405180910390f35b34801561021057600080fd5b50610219610789565b6040516102269190613bc9565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190613502565b61081b565b6040516102639190613b47565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061337a565b6108a0565b005b3480156102a157600080fd5b506102aa6109b8565b6040516102b79190613f4b565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190613264565b6109c5565b005b3480156102f557600080fd5b506102fe610a25565b005b34801561030c57600080fd5b506103276004803603810190610322919061337a565b610af0565b6040516103349190613f4b565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613264565b610b95565b005b34801561037257600080fd5b5061038d60048036038101906103889190613502565b610bb5565b005b34801561039b57600080fd5b506103b660048036038101906103b19190613502565b610cea565b6040516103c39190613f4b565b60405180910390f35b3480156103d857600080fd5b506103e1610d5b565b6040516103ee9190613f4b565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190613502565b610d61565b60405161042b9190613b47565b60405180910390f35b34801561044057600080fd5b50610449610e13565b6040516104569190613f4b565b60405180910390f35b34801561046b57600080fd5b50610486600480360381019061048191906131ca565b610e1e565b6040516104939190613f4b565b60405180910390f35b3480156104a857600080fd5b506104b1610ed6565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190613502565b610f5e565b6040516104e79190613bae565b60405180910390f35b3480156104fc57600080fd5b50610505610f9a565b6040516105129190613b47565b60405180910390f35b61053560048036038101906105309190613502565b610fc4565b005b34801561054357600080fd5b5061054c61119b565b6040516105599190613bc9565b60405180910390f35b34801561056e57600080fd5b506105896004803603810190610584919061333a565b61122d565b005b34801561059757600080fd5b506105b260048036038101906105ad91906134a6565b6113ae565b005b3480156105c057600080fd5b506105db60048036038101906105d691906133ba565b6114f7565b005b3480156105e957600080fd5b5061060460048036038101906105ff91906132b7565b611734565b005b34801561061257600080fd5b5061062d60048036038101906106289190613502565b611796565b60405161063a9190613bc9565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190613502565b6119bd565b005b34801561067857600080fd5b50610693600480360381019061068e9190613224565b611b8f565b6040516106a09190613bae565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb919061345d565b611c23565b6040516106dd9190613f4b565b60405180910390f35b3480156106f257600080fd5b5061070d600480360381019061070891906131ca565b611c2e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610782575061078182611d26565b5b9050919050565b60606000805461079890614227565b80601f01602080910402602001604051908101604052809291908181526020018280546107c490614227565b80156108115780601f106107e657610100808354040283529160200191610811565b820191906000526020600020905b8154815290600101906020018083116107f457829003601f168201915b5050505050905090565b600061082682611e08565b610865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085c90613dcb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ab82610d61565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091390613e6b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661093b611e74565b73ffffffffffffffffffffffffffffffffffffffff16148061096a575061096981610964611e74565b611b8f565b5b6109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090613d2b565b60405180910390fd5b6109b38383611e7c565b505050565b6000600880549050905090565b6109d66109d0611e74565b82611f35565b610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90613e8b565b60405180910390fd5b610a20838383612013565b505050565b610a2d611e74565b73ffffffffffffffffffffffffffffffffffffffff16610a4b610f9a565b73ffffffffffffffffffffffffffffffffffffffff1614610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9890613deb565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610aec573d6000803e3d6000fd5b5050565b6000610afb83610e1e565b8210610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3390613beb565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610bb083838360405180602001604052806000815250611734565b505050565b6002600a541415610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf290613eeb565b60405180910390fd5b6002600a81905550610c0b611e74565b73ffffffffffffffffffffffffffffffffffffffff16610c29610f9a565b73ffffffffffffffffffffffffffffffffffffffff1614610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690613deb565b60405180910390fd5b6000811480610c8f575061271081145b610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590613e0b565b60405180910390fd5b610cdf610cd9611e74565b8261226f565b6001600a8190555050565b6000610cf46109b8565b8210610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90613eab565b60405180910390fd5b60088281548110610d4957610d486143c0565b5b90600052602060002001549050919050565b600c5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190613d6b565b60405180910390fd5b80915050919050565b666a94d74f43000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690613d4b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ede611e74565b73ffffffffffffffffffffffffffffffffffffffff16610efc610f9a565b73ffffffffffffffffffffffffffffffffffffffff1614610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613deb565b60405180910390fd5b610f5c600061228d565b565b600080600e60008481526020019081526020016000208054610f7f90614227565b90501415610f905760009050610f95565b600190505b919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6002600a54141561100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190613eeb565b60405180910390fd5b6002600a819055506019811115611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90613e4b565b60405180910390fd5b6107c7600c541061109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390613c6b565b60405180910390fd5b6107c781600c546110ad919061405c565b11156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590613ccb565b60405180910390fd5b80666a94d74f43000061110191906140e3565b341015611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90613f2b565b60405180910390fd5b60005b8181101561118f5761116733600c54611f49611162919061405c565b61226f565b6001600c54611176919061405c565b600c8190555080806111879061428a565b915050611146565b506001600a8190555050565b6060600180546111aa90614227565b80601f01602080910402602001604051908101604052809291908181526020018280546111d690614227565b80156112235780601f106111f857610100808354040283529160200191611223565b820191906000526020600020905b81548152906001019060200180831161120657829003601f168201915b5050505050905090565b611235611e74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a90613cab565b60405180910390fd5b80600560006112b0611e74565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661135d611e74565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113a29190613bae565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff166113ce82610d61565b73ffffffffffffffffffffffffffffffffffffffff1614611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90613ecb565b60405180910390fd5b6000600e6000838152602001908152602001600020805461144490614227565b905014611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d90613d0b565b60405180910390fd5b6045825111156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290613d8b565b60405180910390fd5b81600e600083815260200190815260200160002090805190602001906114f2929190612f04565b505050565b6002600a54141561153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613eeb565b60405180910390fd5b6002600a8190555060005b8151811015611728576000828281518110611566576115656143c0565b5b602002602001015190506000811180156115815750611f4981105b6115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790613e0b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016116329190613f4b565b60206040518083038186803b15801561164a57600080fd5b505afa15801561165e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168291906131f7565b73ffffffffffffffffffffffffffffffffffffffff16146116a282612353565b6040516020016116b29190613af8565b60405160208183030381529060405290611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f99190613bc9565b60405180910390fd5b5061171461170e611e74565b8261226f565b5080806117209061428a565b915050611548565b506001600a8190555050565b61174561173f611e74565b83611f35565b611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b90613e8b565b60405180910390fd5b611790848484846124b4565b50505050565b60606117a0612f8a565b6040518061012001604052806101008152602001614c8e6101009139816000600381106117d0576117cf6143c0565b5b6020020181905250600e600084815260200190815260200160002080546117f690614227565b80601f016020809104026020016040519081016040528092919081815260200182805461182290614227565b801561186f5780601f106118445761010080835404028352916020019161186f565b820191906000526020600020905b81548152906001019060200180831161185257829003601f168201915b505050505081600160038110611888576118876143c0565b5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000815250816002600381106118da576118d96143c0565b5b60200201819052506000816000600381106118f8576118f76143c0565b5b602002015182600160038110611911576119106143c0565b5b60200201518360026003811061192a576119296143c0565b5b602002015160405160200161194193929190613a82565b6040516020818303038152906040529050600061198e61196086612353565b61196984612510565b60405160200161197a929190613ab3565b604051602081830303815290604052612510565b9050806040516020016119a19190613b25565b6040516020818303038152906040529150819350505050919050565b6002600a541415611a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fa90613eeb565b60405180910390fd5b6002600a81905550600081118015611a1c5750611f4981105b611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5290613e0b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611acd9190613f4b565b60206040518083038186803b158015611ae557600080fd5b505afa158015611af9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1d91906131f7565b73ffffffffffffffffffffffffffffffffffffffff1614611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a90613f0b565b60405180910390fd5b611b84611b7e611e74565b8261226f565b6001600a8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081519050919050565b611c36611e74565b73ffffffffffffffffffffffffffffffffffffffff16611c54610f9a565b73ffffffffffffffffffffffffffffffffffffffff1614611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca190613deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1190613c2b565b60405180910390fd5b611d238161228d565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611df157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e015750611e00826126a8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611eef83610d61565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f4082611e08565b611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7690613ceb565b60405180910390fd5b6000611f8a83610d61565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ff957508373ffffffffffffffffffffffffffffffffffffffff16611fe18461081b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061200a57506120098185611b8f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661203382610d61565b73ffffffffffffffffffffffffffffffffffffffff1614612089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208090613e2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f090613c8b565b60405180910390fd5b612104838383612712565b61210f600082611e7c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461215f919061413d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b6919061405c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612289828260405180602001604052806000815250612826565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6060600082141561239b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124af565b600082905060005b600082146123cd5780806123b69061428a565b915050600a826123c691906140b2565b91506123a3565b60008167ffffffffffffffff8111156123e9576123e86143ef565b5b6040519080825280601f01601f19166020018201604052801561241b5781602001600182028036833780820191505090505b5090505b600085146124a857600182612434919061413d565b9150600a8561244391906142d3565b603061244f919061405c565b60f81b818381518110612465576124646143c0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124a191906140b2565b945061241f565b8093505050505b919050565b6124bf848484612013565b6124cb84848484612881565b61250a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250190613c0b565b60405180910390fd5b50505050565b6060600082519050600081141561253957604051806020016040528060008152509150506126a3565b6000600360028361254a919061405c565b61255491906140b2565b600461256091906140e3565b90506000602082612571919061405c565b67ffffffffffffffff81111561258a576125896143ef565b5b6040519080825280601f01601f1916602001820160405280156125bc5781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001614c4e604091399050600181016020830160005b868110156126605760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b905080845260048401935050506125e7565b50600386066001811461267a576002811461268a57612695565b613d3d60f01b6002830352612695565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61271d838383612a18565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127605761275b81612a1d565b61279f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461279e5761279d8382612a66565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127e2576127dd81612bd3565b612821565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146128205761281f8282612ca4565b5b5b505050565b6128308383612d23565b61283d6000848484612881565b61287c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287390613c0b565b60405180910390fd5b505050565b60006128a28473ffffffffffffffffffffffffffffffffffffffff16612ef1565b15612a0b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128cb611e74565b8786866040518563ffffffff1660e01b81526004016128ed9493929190613b62565b602060405180830381600087803b15801561290757600080fd5b505af192505050801561293857506040513d601f19601f820116820180604052508101906129359190613430565b60015b6129bb573d8060008114612968576040519150601f19603f3d011682016040523d82523d6000602084013e61296d565b606091505b506000815114156129b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129aa90613c0b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a10565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612a7384610e1e565b612a7d919061413d565b9050600060076000848152602001908152602001600020549050818114612b62576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612be7919061413d565b9050600060096000848152602001908152602001600020549050600060088381548110612c1757612c166143c0565b5b906000526020600020015490508060088381548110612c3957612c386143c0565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c8857612c87614391565b5b6001900381819060005260206000200160009055905550505050565b6000612caf83610e1e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8a90613dab565b60405180910390fd5b612d9c81611e08565b15612ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd390613c4b565b60405180910390fd5b612de860008383612712565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e38919061405c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612f1090614227565b90600052602060002090601f016020900481019282612f325760008555612f79565b82601f10612f4b57805160ff1916838001178555612f79565b82800160010185558215612f79579182015b82811115612f78578251825591602001919060010190612f5d565b5b509050612f869190612fb1565b5090565b60405180606001604052806003905b6060815260200190600190039081612f995790505090565b5b80821115612fca576000816000905550600101612fb2565b5090565b6000612fe1612fdc84613f8b565b613f66565b9050808382526020820190508285602086028201111561300457613003614423565b5b60005b85811015613034578161301a88826131b5565b845260208401935060208301925050600181019050613007565b5050509392505050565b600061305161304c84613fb7565b613f66565b90508281526020810184848401111561306d5761306c614428565b5b6130788482856141e5565b509392505050565b600061309361308e84613fe8565b613f66565b9050828152602081018484840111156130af576130ae614428565b5b6130ba8482856141e5565b509392505050565b6000813590506130d181614bf1565b92915050565b6000815190506130e681614bf1565b92915050565b600082601f8301126131015761310061441e565b5b8135613111848260208601612fce565b91505092915050565b60008135905061312981614c08565b92915050565b60008135905061313e81614c1f565b92915050565b60008151905061315381614c1f565b92915050565b600082601f83011261316e5761316d61441e565b5b813561317e84826020860161303e565b91505092915050565b600082601f83011261319c5761319b61441e565b5b81356131ac848260208601613080565b91505092915050565b6000813590506131c481614c36565b92915050565b6000602082840312156131e0576131df614432565b5b60006131ee848285016130c2565b91505092915050565b60006020828403121561320d5761320c614432565b5b600061321b848285016130d7565b91505092915050565b6000806040838503121561323b5761323a614432565b5b6000613249858286016130c2565b925050602061325a858286016130c2565b9150509250929050565b60008060006060848603121561327d5761327c614432565b5b600061328b868287016130c2565b935050602061329c868287016130c2565b92505060406132ad868287016131b5565b9150509250925092565b600080600080608085870312156132d1576132d0614432565b5b60006132df878288016130c2565b94505060206132f0878288016130c2565b9350506040613301878288016131b5565b925050606085013567ffffffffffffffff8111156133225761332161442d565b5b61332e87828801613159565b91505092959194509250565b6000806040838503121561335157613350614432565b5b600061335f858286016130c2565b92505060206133708582860161311a565b9150509250929050565b6000806040838503121561339157613390614432565b5b600061339f858286016130c2565b92505060206133b0858286016131b5565b9150509250929050565b6000602082840312156133d0576133cf614432565b5b600082013567ffffffffffffffff8111156133ee576133ed61442d565b5b6133fa848285016130ec565b91505092915050565b60006020828403121561341957613418614432565b5b60006134278482850161312f565b91505092915050565b60006020828403121561344657613445614432565b5b600061345484828501613144565b91505092915050565b60006020828403121561347357613472614432565b5b600082013567ffffffffffffffff8111156134915761349061442d565b5b61349d84828501613187565b91505092915050565b600080604083850312156134bd576134bc614432565b5b600083013567ffffffffffffffff8111156134db576134da61442d565b5b6134e785828601613187565b92505060206134f8858286016131b5565b9150509250929050565b60006020828403121561351857613517614432565b5b6000613526848285016131b5565b91505092915050565b61353881614171565b82525050565b61354781614183565b82525050565b600061355882614019565b613562818561402f565b93506135728185602086016141f4565b61357b81614437565b840191505092915050565b600061359182614024565b61359b8185614040565b93506135ab8185602086016141f4565b6135b481614437565b840191505092915050565b60006135ca82614024565b6135d48185614051565b93506135e48185602086016141f4565b80840191505092915050565b60006135fd601783614051565b915061360882614448565b601782019050919050565b6000613620605683614051565b915061362b82614471565b605682019050919050565b6000613643602b83614040565b915061364e826144e6565b604082019050919050565b6000613666603283614040565b915061367182614535565b604082019050919050565b6000613689602683614040565b915061369482614584565b604082019050919050565b60006136ac600b83614051565b91506136b7826145d3565b600b82019050919050565b60006136cf601c83614040565b91506136da826145fc565b602082019050919050565b60006136f2601683614040565b91506136fd82614625565b602082019050919050565b6000613715602483614040565b91506137208261464e565b604082019050919050565b6000613738601983614040565b91506137438261469d565b602082019050919050565b600061375b601c83614040565b9150613766826146c6565b602082019050919050565b600061377e602c83614040565b9150613789826146ef565b604082019050919050565b60006137a1600683614051565b91506137ac8261473e565b600682019050919050565b60006137c4601883614040565b91506137cf82614767565b602082019050919050565b60006137e7603883614040565b91506137f282614790565b604082019050919050565b600061380a602a83614040565b9150613815826147df565b604082019050919050565b600061382d602983614040565b91506138388261482e565b604082019050919050565b6000613850601b83614040565b915061385b8261487d565b602082019050919050565b6000613873600283614051565b915061387e826148a6565b600282019050919050565b6000613896602083614040565b91506138a1826148cf565b602082019050919050565b60006138b9602c83614040565b91506138c4826148f8565b604082019050919050565b60006138dc602083614040565b91506138e782614947565b602082019050919050565b60006138ff601083614040565b915061390a82614970565b602082019050919050565b6000613922602983614040565b915061392d82614999565b604082019050919050565b6000613945602183614040565b9150613950826149e8565b604082019050919050565b6000613968602183614040565b915061397382614a37565b604082019050919050565b600061398b601d83614051565b915061399682614a86565b601d82019050919050565b60006139ae603183614040565b91506139b982614aaf565b604082019050919050565b60006139d1602c83614040565b91506139dc82614afe565b604082019050919050565b60006139f4600f83614040565b91506139ff82614b4d565b602082019050919050565b6000613a17601f83614040565b9150613a2282614b76565b602082019050919050565b6000613a3a600f83614040565b9150613a4582614b9f565b602082019050919050565b6000613a5d601b83614040565b9150613a6882614bc8565b602082019050919050565b613a7c816141db565b82525050565b6000613a8e82866135bf565b9150613a9a82856135bf565b9150613aa682846135bf565b9150819050949350505050565b6000613abe826135f0565b9150613aca82856135bf565b9150613ad582613613565b9150613ae182846135bf565b9150613aec82613866565b91508190509392505050565b6000613b038261369f565b9150613b0f82846135bf565b9150613b1a82613794565b915081905092915050565b6000613b308261397e565b9150613b3c82846135bf565b915081905092915050565b6000602082019050613b5c600083018461352f565b92915050565b6000608082019050613b77600083018761352f565b613b84602083018661352f565b613b916040830185613a73565b8181036060830152613ba3818461354d565b905095945050505050565b6000602082019050613bc3600083018461353e565b92915050565b60006020820190508181036000830152613be38184613586565b905092915050565b60006020820190508181036000830152613c0481613636565b9050919050565b60006020820190508181036000830152613c2481613659565b9050919050565b60006020820190508181036000830152613c448161367c565b9050919050565b60006020820190508181036000830152613c64816136c2565b9050919050565b60006020820190508181036000830152613c84816136e5565b9050919050565b60006020820190508181036000830152613ca481613708565b9050919050565b60006020820190508181036000830152613cc48161372b565b9050919050565b60006020820190508181036000830152613ce48161374e565b9050919050565b60006020820190508181036000830152613d0481613771565b9050919050565b60006020820190508181036000830152613d24816137b7565b9050919050565b60006020820190508181036000830152613d44816137da565b9050919050565b60006020820190508181036000830152613d64816137fd565b9050919050565b60006020820190508181036000830152613d8481613820565b9050919050565b60006020820190508181036000830152613da481613843565b9050919050565b60006020820190508181036000830152613dc481613889565b9050919050565b60006020820190508181036000830152613de4816138ac565b9050919050565b60006020820190508181036000830152613e04816138cf565b9050919050565b60006020820190508181036000830152613e24816138f2565b9050919050565b60006020820190508181036000830152613e4481613915565b9050919050565b60006020820190508181036000830152613e6481613938565b9050919050565b60006020820190508181036000830152613e848161395b565b9050919050565b60006020820190508181036000830152613ea4816139a1565b9050919050565b60006020820190508181036000830152613ec4816139c4565b9050919050565b60006020820190508181036000830152613ee4816139e7565b9050919050565b60006020820190508181036000830152613f0481613a0a565b9050919050565b60006020820190508181036000830152613f2481613a2d565b9050919050565b60006020820190508181036000830152613f4481613a50565b9050919050565b6000602082019050613f606000830184613a73565b92915050565b6000613f70613f81565b9050613f7c8282614259565b919050565b6000604051905090565b600067ffffffffffffffff821115613fa657613fa56143ef565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613fd257613fd16143ef565b5b613fdb82614437565b9050602081019050919050565b600067ffffffffffffffff821115614003576140026143ef565b5b61400c82614437565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614067826141db565b9150614072836141db565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140a7576140a6614304565b5b828201905092915050565b60006140bd826141db565b91506140c8836141db565b9250826140d8576140d7614333565b5b828204905092915050565b60006140ee826141db565b91506140f9836141db565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561413257614131614304565b5b828202905092915050565b6000614148826141db565b9150614153836141db565b92508282101561416657614165614304565b5b828203905092915050565b600061417c826141bb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142125780820151818401526020810190506141f7565b83811115614221576000848401525b50505050565b6000600282049050600182168061423f57607f821691505b6020821081141561425357614252614362565b5b50919050565b61426282614437565b810181811067ffffffffffffffff82111715614281576142806143ef565b5b80604052505050565b6000614295826141db565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142c8576142c7614304565b5b600182019050919050565b60006142de826141db565b91506142e9836141db565b9250826142f9576142f8614333565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f7b226e616d65223a2022426c6f6f742053746f72792023000000000000000000600082015250565b7f222c20226465736372697074696f6e223a2022426c6f6f742053746f7279206960008201527f73206261736963616c6c792062732e222c2022696d616765223a20226461746160208201527f3a696d6167652f7376672b786d6c3b6261736536342c00000000000000000000604082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420426c6f6f742023000000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f206d6f726520746f6b656e7320746f206d696e7400000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f536f7272792c20657863656564206f7572206d617820737570706c7900000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f206f776e65720000000000000000000000000000000000000000000000000000600082015250565b7f416c72656164792077726f746520796f75722073746f72790000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e7920636861726163746572732c206d61782036390000000000600082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206d696e74206174206d6f737420323520617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f7420746f6b656e206f776e65720000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e6f7420426c6f6f74206f776e65720000000000000000000000000000000000600082015250565b7f457468657220616d6f756e74206973206e6f7420636f72726563740000000000600082015250565b614bfa81614171565b8114614c0557600080fd5b50565b614c1181614183565b8114614c1c57600080fd5b50565b614c288161418f565b8114614c3357600080fd5b50565b614c3f816141db565b8114614c4a57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a20626c61636b3b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313070783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d222330316666303122202f3e3c7465787420783d2231302220793d223137302220636c6173733d2262617365223ea26469706673582212201779c6db0301b0c6268673169c0d084d616f590f177424777f58e557a7a486ab64736f6c63430008070033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.