ERC-721
Overview
Max Total Supply
5,000 SMOOPY
Holders
799
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SMOOPYLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Smoopy
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@......@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%&@@@....@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%#((%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%@@@@@@@((((((((((%@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@( ((((((((((@@(%%%%%%%%@@ @@(((((((%%@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@ ((((((((((((((%%%%@. @@@ @&(((((%%.@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@ ((((((((((((((%%@.. @&&&&&&@ @(((%%%..@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@ ((((((((((((((@... @&**&&&%,@. @((%%....&@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@ @*(((((((((((((@... @@** &@ @%%......,@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@ ((((((((((((@.... .@* &&@ @&.........@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@ ((((((((((#@.... @ ,,,,,&@ @*.........#@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@ ((((((((((%@.... @@@@@ @*@..........@@@@@@@@@@@@@@@@ @@@@@@@@@@@@( (((((((((((((@@..........@@@@@@%............,%%@@@@@@@@@@@@@@@ @@@@@@@@@@@@@((((((((((((((((((@@#(((((((&@@ /@@@............%%%%&@@@@@@@@@@@@@@ @@@@@@@@@@@@@((((((((((((((((((((((((((((@ ****@@..........%%%%%%@@@@@@@@@@@@@@ @@@@@@@@@@@@@@(((((((((((((((((((((((((((@& ***@........%%%%%%%%@@@@@@@@@@@@@@ @@@@@@@@@@@@@@#(((((((((((((((((((((((((((@ ****@((/...%%%%%%%%%%@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@(((((((((((((#(((((((((((((@ ****@((((((((%%%%%%%%@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@((((((%%%......(((((((((((@ .**@(((((((((((((%%%@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@%%%%.............(((((((((@ ***@((((((((((((((((%@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@%%....%%............((((((((@@&(((((((((((((@@((((@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@%.....@@...............(((((((((((((((((((((@@((((@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@......@@...................(((((((((((((((((@(((((@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@%.....@@................ /((((((((((@((((@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@%%%#...@@........... @@((((@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@%%%%%%%@@... @((((@@@@@@@@@@@@@@@@ */ /**************************************** * @author: squeebo_nft * * @team: GoldenX * * @edited: Moopy 0xlunes * **************************************** * Blimpie-ERC721 implementation * * Mint by ID and transfer lock * ****************************************/ pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); abstract contract ERC721Custom is Context, ERC165, IERC721, IERC721Metadata { using Address for address; struct Token { address owner; } mapping(address => uint256) balances; uint256 public constant MAX_SUPPLY = 5000; Token[MAX_SUPPLY] public tokens; string private _name; string private _symbol; mapping(uint256 => address) internal _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } //public view function balanceOf(address owner) public view override returns (uint256 balance) { return balances[owner]; } function name() external view override returns (string memory name_) { return _name; } function ownerOf(uint256 tokenId) public view override returns (address owner) { require(_exists(tokenId), "ERC721Custom: query for nonexistent token"); return tokens[tokenId].owner; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool isSupported) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function symbol() external view override returns (string memory symbol_) { return _symbol; } //approvals function approve(address to, uint256 tokenId) external override { address owner = ownerOf(tokenId); require(to != owner, "ERC721Custom: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721Custom: caller is not owner nor approved for all" ); _approve(to, tokenId); } function getApproved(uint256 tokenId) public view override returns (address approver) { require(_exists(tokenId), "ERC721Custom: query for nonexistent token"); return _tokenApprovals[tokenId]; } function isApprovedForAll(address owner, address operator) public view override returns (bool isApproved) { return _operatorApprovals[owner][operator]; } function setApprovalForAll(address operator, bool approved) external override { _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } //transfers function safeTransferFrom( address from, address to, uint256 tokenId ) external override { safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721Custom: caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } function transferFrom( address from, address to, uint256 tokenId ) external override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721Custom: caller is not owner nor approved" ); _transfer(from, to, tokenId); } //internal function _approve(address to, uint256 tokenId) internal { _tokenApprovals[tokenId] = to; emit Approval(ownerOf(tokenId), to, tokenId); } function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < tokens.length && tokens[tokenId].owner != address(0); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual { require(from == address(0) || to == address(0), "transfer not permitted"); if (from != address(0)) --balances[from]; if (to != address(0)) ++balances[to]; } function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721Custom: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { require(_exists(tokenId), "ERC721Custom: query for nonexistent token"); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721Custom: transfer to non ERC721Receiver implementer" ); } function _transfer( address from, address to, uint256 tokenId ) internal { require( ownerOf(tokenId) == from, "ERC721Custom: transfer of token that is not own" ); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); tokens[tokenId].owner = to; emit Transfer(from, to, tokenId); } } pragma solidity ^0.8.0; abstract contract ERC721CustomEnumerable is ERC721Custom, IERC721Enumerable { function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721Custom) returns (bool isSupported) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } function tokenOfOwnerByIndex(address owner, uint256 index) external view override returns (uint256 tokenId) { uint256 count; for (uint256 i; i < tokens.length; ++i) { if (owner == tokens[i].owner) { if (count == index) return i; else ++count; } } revert("ERC721CustomEnumerable: owner index out of bounds"); } function tokenByIndex(uint256 index) external view override returns (uint256 tokenId) { require( index < tokens.length, "ERC721CustomEnumerable: query for nonexistent token" ); return index; } } pragma solidity ^0.8.0; interface IERC721CustomBatch { function isOwnerOf( address account, uint[] calldata tokenIds ) external view returns( bool ); function transferBatch( address from, address to, uint[] calldata tokenIds, bytes calldata data ) external; function walletOfOwner( address account ) external view returns( uint[] memory ); } pragma solidity ^0.8.0; abstract contract ERC721CustomBatch is ERC721CustomEnumerable, IERC721CustomBatch { function isOwnerOf(address account, uint256[] calldata tokenIds) external view override returns (bool) { for (uint256 i; i < tokenIds.length; ++i) { if (account != tokens[tokenIds[i]].owner) return false; } return true; } function transferBatch( address from, address to, uint256[] calldata tokenIds, bytes calldata data ) external override { for (uint256 i; i < tokenIds.length; ++i) { safeTransferFrom(from, to, tokenIds[i], data); } } function walletOfOwner(address account) public view override returns (uint256[] memory wallet_) { uint256 count; uint256 quantity = balanceOf(account); uint256[] memory wallet = new uint256[](quantity); for (uint256 i; i < tokens.length; ++i) { if (account == tokens[i].owner) { wallet[count++] = i; if (count == quantity) break; } } return wallet; } } pragma solidity ^0.8.0; contract Smoopy is ERC721CustomBatch, Ownable { using Strings for uint256; mapping (address => bool) public approvedMinters; string private _baseURI; string private constant TOKENURISUFFIX = ".json"; constructor() ERC721Custom("sMoopy", "SMOOPY") {} //view: IERC721Metadata function tokenURI(uint256 tokenId) external view override returns (string memory) { require(_exists(tokenId), "SMOOPY: query for nonexistent token"); return string( abi.encodePacked(_baseURI, tokenId.toString(), TOKENURISUFFIX) ); } //view: IERC721Enumerable function totalSupply() public view override returns (uint256 totalSupply_) { return tokens.length; } //only approved minters function mint(address to, uint256 tokenId) external { require(approvedMinters[msg.sender], "address not approved"); require(!_exists(tokenId), "token already minted"); _beforeTokenTransfer(address(0), to, tokenId); tokens[tokenId].owner = to; emit Transfer(address(0), to, tokenId); } //only approved minters function burn(address from, uint256 tokenId) external { require(approvedMinters[msg.sender], "address not approved"); require(_exists(tokenId), "token not minted"); _beforeTokenTransfer(from, address(0), tokenId); tokens[tokenId].owner = address(0); emit Transfer(from, address(0), tokenId); } //onlyOwner function setBaseURI(string calldata _newBaseURI) external onlyOwner { _baseURI = _newBaseURI; } function addApprovedMinter(address[] memory addresses) external onlyOwner { for (uint256 i; i < addresses.length; i++) { approvedMinters[addresses[i]] = true; } } function removeApprovedMinter(address[] memory addresses) external onlyOwner { for (uint256 i; i < addresses.length; i++) { approvedMinters[addresses[i]] = false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @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`. * * 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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addApprovedMinter","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"approvedMinters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"approver","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":"isApproved","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"name_","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeApprovedMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"isSupported","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokens","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferBatch","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"wallet_","type":"uint256[]"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600681526020017f734d6f6f707900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f534d4f4f5059000000000000000000000000000000000000000000000000000081525081611389908051906020019062000097929190620001aa565b508061138a9080519060200190620000b1929190620001aa565b505050620000d4620000c8620000da60201b60201c565b620000e260201b60201c565b620002bf565b600033905090565b600061138d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508161138d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b89062000289565b90600052602060002090601f016020900481019282620001dc576000855562000228565b82601f10620001f757805160ff191683800117855562000228565b8280016001018555821562000228579182015b82811115620002275782518255916020019190600101906200020a565b5b5090506200023791906200023b565b5090565b5b80821115620002565760008160009055506001016200023c565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002a257607f821691505b60208210811415620002b957620002b86200025a565b5b50919050565b613aa980620002cf6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806355f804b3116101045780639dc29fac116100a2578063b88d4fde11610071578063b88d4fde14610577578063c87b56dd14610593578063e985e9c5146105c3578063f2fde38b146105f3576101da565b80639dc29fac146104f3578063a22cb4651461050f578063a8b5e6ea1461052b578063b534a5c41461055b576101da565b8063715018a6116100de578063715018a6146104915780638da5cb5b1461049b57806395d89b41146104b95780639d398372146104d7576101da565b806355f804b3146104155780636352211e1461043157806370a0823114610461576101da565b80632f745c591161017c578063438b63001161014b578063438b6300146103555780634d44660c146103855780634f64b2be146103b55780634f6ccce7146103e5576101da565b80632f745c59146102cf57806332cb6b0c146102ff57806340c10f191461031d57806342842e0e14610339576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806312e6e44e1461027957806318160ddd1461029557806323b872dd146102b3576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f491906124cf565b61060f565b6040516102069190612517565b60405180910390f35b610217610689565b60405161022491906125cb565b60405180910390f35b61024760048036038101906102429190612623565b61071c565b6040516102549190612691565b60405180910390f35b610277600480360381019061027291906126d8565b6107a2565b005b610293600480360381019061028e9190612860565b6108ba565b005b61029d6109cc565b6040516102aa91906128b8565b60405180910390f35b6102cd60048036038101906102c891906128d3565b6109d6565b005b6102e960048036038101906102e491906126d8565b610a36565b6040516102f691906128b8565b60405180910390f35b610307610b25565b60405161031491906128b8565b60405180910390f35b610337600480360381019061033291906126d8565b610b2b565b005b610353600480360381019061034e91906128d3565b610cc5565b005b61036f600480360381019061036a9190612926565b610ce5565b60405161037c9190612a11565b60405180910390f35b61039f600480360381019061039a9190612a8e565b610e13565b6040516103ac9190612517565b60405180910390f35b6103cf60048036038101906103ca9190612623565b610ecf565b6040516103dc9190612691565b60405180910390f35b6103ff60048036038101906103fa9190612623565b610f11565b60405161040c91906128b8565b60405180910390f35b61042f600480360381019061042a9190612b44565b610f5f565b005b61044b60048036038101906104469190612623565b610ff2565b6040516104589190612691565b60405180910390f35b61047b60048036038101906104769190612926565b61107d565b60405161048891906128b8565b60405180910390f35b6104996110c5565b005b6104a361114d565b6040516104b09190612691565b60405180910390f35b6104c1611178565b6040516104ce91906125cb565b60405180910390f35b6104f160048036038101906104ec9190612860565b61120b565b005b61050d600480360381019061050891906126d8565b61131d565b005b61052960048036038101906105249190612bbd565b6114b7565b005b61054560048036038101906105409190612926565b6115c3565b6040516105529190612517565b60405180910390f35b61057560048036038101906105709190612c53565b6115e4565b005b610591600480360381019061058c9190612daf565b611675565b005b6105ad60048036038101906105a89190612623565b6116d7565b6040516105ba91906125cb565b60405180910390f35b6105dd60048036038101906105d89190612e32565b61178b565b6040516105ea9190612517565b60405180910390f35b61060d60048036038101906106089190612926565b611820565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610682575061068182611918565b5b9050919050565b6060611389805461069990612ea1565b80601f01602080910402602001604051908101604052809291908181526020018280546106c590612ea1565b80156107125780601f106106e757610100808354040283529160200191610712565b820191906000526020600020905b8154815290600101906020018083116106f557829003601f168201915b5050505050905090565b6000610727826119fa565b610766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075d90612f45565b60405180910390fd5b61138b600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107ad82610ff2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561081e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081590612fd7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661083d611a7a565b73ffffffffffffffffffffffffffffffffffffffff16148061086c575061086b81610866611a7a565b61178b565b5b6108ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a290613069565b60405180910390fd5b6108b58383611a82565b505050565b6108c2611a7a565b73ffffffffffffffffffffffffffffffffffffffff166108e061114d565b73ffffffffffffffffffffffffffffffffffffffff1614610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d906130d5565b60405180910390fd5b60005b81518110156109c857600061138e600084848151811061095c5761095b6130f5565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109c090613153565b915050610939565b5050565b6000611388905090565b6109e76109e1611a7a565b82611b3c565b610a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d9061320e565b60405180910390fd5b610a31838383611c1a565b505050565b60008060005b611388811015610ae3576001816113888110610a5b57610a5a6130f5565b5b0160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ad25783821415610ac5578092505050610b1f565b81610acf90613153565b91505b80610adc90613153565b9050610a3c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b16906132a0565b60405180910390fd5b92915050565b61138881565b61138e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf9061330c565b60405180910390fd5b610bc1816119fa565b15610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf890613378565b60405180910390fd5b610c0d60008383611d5e565b816001826113888110610c2357610c226130f5565b5b0160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b610ce083838360405180602001604052806000815250611675565b505050565b6060600080610cf38461107d565b905060008167ffffffffffffffff811115610d1157610d1061271d565b5b604051908082528060200260200182016040528015610d3f5781602001602082028036833780820191505090505b50905060005b611388811015610e07576001816113888110610d6457610d636130f5565b5b0160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415610df65780828580610dc990613153565b965081518110610ddc57610ddb6130f5565b5b60200260200101818152505082841415610df557610e07565b5b80610e0090613153565b9050610d45565b50809350505050919050565b6000805b83839050811015610ec2576001848483818110610e3757610e366130f5565b5b905060200201356113888110610e5057610e4f6130f5565b5b0160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614610eb1576000915050610ec8565b80610ebb90613153565b9050610e17565b50600190505b9392505050565b6001816113888110610ee057600080fd5b016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081565b60006113888210610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e9061340a565b60405180910390fd5b819050919050565b610f67611a7a565b73ffffffffffffffffffffffffffffffffffffffff16610f8561114d565b73ffffffffffffffffffffffffffffffffffffffff1614610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd2906130d5565b60405180910390fd5b818161138f9190610fed9291906123c0565b505050565b6000610ffd826119fa565b61103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390612f45565b60405180910390fd5b6001826113888110611051576110506130f5565b5b0160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110cd611a7a565b73ffffffffffffffffffffffffffffffffffffffff166110eb61114d565b73ffffffffffffffffffffffffffffffffffffffff1614611141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611138906130d5565b60405180910390fd5b61114b6000611f17565b565b600061138d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606061138a805461118890612ea1565b80601f01602080910402602001604051908101604052809291908181526020018280546111b490612ea1565b80156112015780601f106111d657610100808354040283529160200191611201565b820191906000526020600020905b8154815290600101906020018083116111e457829003601f168201915b5050505050905090565b611213611a7a565b73ffffffffffffffffffffffffffffffffffffffff1661123161114d565b73ffffffffffffffffffffffffffffffffffffffff1614611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e906130d5565b60405180910390fd5b60005b815181101561131957600161138e60008484815181106112ad576112ac6130f5565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061131190613153565b91505061128a565b5050565b61138e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a19061330c565b60405180910390fd5b6113b3816119fa565b6113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e990613476565b60405180910390fd5b6113fe82600083611d5e565b60006001826113888110611415576114146130f5565b5b0160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8061138c60006114c5611a7a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611572611a7a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b79190612517565b60405180910390a35050565b61138e6020528060005260406000206000915054906101000a900460ff1681565b60005b8484905081101561166c5761165b878787878581811061160a576116096130f5565b5b9050602002013586868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611675565b8061166590613153565b90506115e7565b50505050505050565b611686611680611a7a565b83611b3c565b6116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc9061320e565b60405180910390fd5b6116d184848484611fdf565b50505050565b60606116e2826119fa565b611721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171890613508565b60405180910390fd5b61138f61172d8361203b565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611775939291906135f8565b6040516020818303038152906040529050919050565b600061138c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611828611a7a565b73ffffffffffffffffffffffffffffffffffffffff1661184661114d565b73ffffffffffffffffffffffffffffffffffffffff161461189c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611893906130d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561190c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119039061369b565b60405180910390fd5b61191581611f17565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119e357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119f357506119f28261219c565b5b9050919050565b600061138882108015611a735750600073ffffffffffffffffffffffffffffffffffffffff166001836113888110611a3557611a346130f5565b5b0160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b8161138b600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611af683610ff2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b47826119fa565b611b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7d90612f45565b60405180910390fd5b6000611b9183610ff2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c0057508373ffffffffffffffffffffffffffffffffffffffff16611be88461071c565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c115750611c10818561178b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c3a82610ff2565b73ffffffffffffffffffffffffffffffffffffffff1614611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c879061372d565b60405180910390fd5b611c9b838383611d5e565b611ca6600082611a82565b816001826113888110611cbc57611cbb6130f5565b5b0160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611dc55750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb90613799565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e8b576000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154611e83906137b9565b919050819055505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611f12576000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154611f0a90613153565b919050819055505b505050565b600061138d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508161138d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fea848484611c1a565b611ff684848484612206565b612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90613855565b60405180910390fd5b50505050565b60606000821415612083576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612197565b600082905060005b600082146120b557808061209e90613153565b915050600a826120ae91906138a4565b915061208b565b60008167ffffffffffffffff8111156120d1576120d061271d565b5b6040519080825280601f01601f1916602001820160405280156121035781602001600182028036833780820191505090505b5090505b600085146121905760018261211c91906138d5565b9150600a8561212b9190613909565b6030612137919061393a565b60f81b81838151811061214d5761214c6130f5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561218991906138a4565b9450612107565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006122278473ffffffffffffffffffffffffffffffffffffffff1661239d565b15612390578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612250611a7a565b8786866040518563ffffffff1660e01b815260040161227294939291906139e5565b602060405180830381600087803b15801561228c57600080fd5b505af19250505080156122bd57506040513d601f19601f820116820180604052508101906122ba9190613a46565b60015b612340573d80600081146122ed576040519150601f19603f3d011682016040523d82523d6000602084013e6122f2565b606091505b50600081511415612338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232f90613855565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612395565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546123cc90612ea1565b90600052602060002090601f0160209004810192826123ee5760008555612435565b82601f1061240757803560ff1916838001178555612435565b82800160010185558215612435579182015b82811115612434578235825591602001919060010190612419565b5b5090506124429190612446565b5090565b5b8082111561245f576000816000905550600101612447565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124ac81612477565b81146124b757600080fd5b50565b6000813590506124c9816124a3565b92915050565b6000602082840312156124e5576124e461246d565b5b60006124f3848285016124ba565b91505092915050565b60008115159050919050565b612511816124fc565b82525050565b600060208201905061252c6000830184612508565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561256c578082015181840152602081019050612551565b8381111561257b576000848401525b50505050565b6000601f19601f8301169050919050565b600061259d82612532565b6125a7818561253d565b93506125b781856020860161254e565b6125c081612581565b840191505092915050565b600060208201905081810360008301526125e58184612592565b905092915050565b6000819050919050565b612600816125ed565b811461260b57600080fd5b50565b60008135905061261d816125f7565b92915050565b6000602082840312156126395761263861246d565b5b60006126478482850161260e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061267b82612650565b9050919050565b61268b81612670565b82525050565b60006020820190506126a66000830184612682565b92915050565b6126b581612670565b81146126c057600080fd5b50565b6000813590506126d2816126ac565b92915050565b600080604083850312156126ef576126ee61246d565b5b60006126fd858286016126c3565b925050602061270e8582860161260e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61275582612581565b810181811067ffffffffffffffff821117156127745761277361271d565b5b80604052505050565b6000612787612463565b9050612793828261274c565b919050565b600067ffffffffffffffff8211156127b3576127b261271d565b5b602082029050602081019050919050565b600080fd5b60006127dc6127d784612798565b61277d565b905080838252602082019050602084028301858111156127ff576127fe6127c4565b5b835b81811015612828578061281488826126c3565b845260208401935050602081019050612801565b5050509392505050565b600082601f83011261284757612846612718565b5b81356128578482602086016127c9565b91505092915050565b6000602082840312156128765761287561246d565b5b600082013567ffffffffffffffff81111561289457612893612472565b5b6128a084828501612832565b91505092915050565b6128b2816125ed565b82525050565b60006020820190506128cd60008301846128a9565b92915050565b6000806000606084860312156128ec576128eb61246d565b5b60006128fa868287016126c3565b935050602061290b868287016126c3565b925050604061291c8682870161260e565b9150509250925092565b60006020828403121561293c5761293b61246d565b5b600061294a848285016126c3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612988816125ed565b82525050565b600061299a838361297f565b60208301905092915050565b6000602082019050919050565b60006129be82612953565b6129c8818561295e565b93506129d38361296f565b8060005b83811015612a045781516129eb888261298e565b97506129f6836129a6565b9250506001810190506129d7565b5085935050505092915050565b60006020820190508181036000830152612a2b81846129b3565b905092915050565b600080fd5b60008083601f840112612a4e57612a4d612718565b5b8235905067ffffffffffffffff811115612a6b57612a6a612a33565b5b602083019150836020820283011115612a8757612a866127c4565b5b9250929050565b600080600060408486031215612aa757612aa661246d565b5b6000612ab5868287016126c3565b935050602084013567ffffffffffffffff811115612ad657612ad5612472565b5b612ae286828701612a38565b92509250509250925092565b60008083601f840112612b0457612b03612718565b5b8235905067ffffffffffffffff811115612b2157612b20612a33565b5b602083019150836001820283011115612b3d57612b3c6127c4565b5b9250929050565b60008060208385031215612b5b57612b5a61246d565b5b600083013567ffffffffffffffff811115612b7957612b78612472565b5b612b8585828601612aee565b92509250509250929050565b612b9a816124fc565b8114612ba557600080fd5b50565b600081359050612bb781612b91565b92915050565b60008060408385031215612bd457612bd361246d565b5b6000612be2858286016126c3565b9250506020612bf385828601612ba8565b9150509250929050565b60008083601f840112612c1357612c12612718565b5b8235905067ffffffffffffffff811115612c3057612c2f612a33565b5b602083019150836001820283011115612c4c57612c4b6127c4565b5b9250929050565b60008060008060008060808789031215612c7057612c6f61246d565b5b6000612c7e89828a016126c3565b9650506020612c8f89828a016126c3565b955050604087013567ffffffffffffffff811115612cb057612caf612472565b5b612cbc89828a01612a38565b9450945050606087013567ffffffffffffffff811115612cdf57612cde612472565b5b612ceb89828a01612bfd565b92509250509295509295509295565b600080fd5b600067ffffffffffffffff821115612d1a57612d1961271d565b5b612d2382612581565b9050602081019050919050565b82818337600083830152505050565b6000612d52612d4d84612cff565b61277d565b905082815260208101848484011115612d6e57612d6d612cfa565b5b612d79848285612d30565b509392505050565b600082601f830112612d9657612d95612718565b5b8135612da6848260208601612d3f565b91505092915050565b60008060008060808587031215612dc957612dc861246d565b5b6000612dd7878288016126c3565b9450506020612de8878288016126c3565b9350506040612df98782880161260e565b925050606085013567ffffffffffffffff811115612e1a57612e19612472565b5b612e2687828801612d81565b91505092959194509250565b60008060408385031215612e4957612e4861246d565b5b6000612e57858286016126c3565b9250506020612e68858286016126c3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eb957607f821691505b60208210811415612ecd57612ecc612e72565b5b50919050565b7f455243373231437573746f6d3a20717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612f2f60298361253d565b9150612f3a82612ed3565b604082019050919050565b60006020820190508181036000830152612f5e81612f22565b9050919050565b7f455243373231437573746f6d3a20617070726f76616c20746f2063757272656e60008201527f74206f776e657200000000000000000000000000000000000000000000000000602082015250565b6000612fc160278361253d565b9150612fcc82612f65565b604082019050919050565b60006020820190508181036000830152612ff081612fb4565b9050919050565b7f455243373231437573746f6d3a2063616c6c6572206973206e6f74206f776e6560008201527f72206e6f7220617070726f76656420666f7220616c6c00000000000000000000602082015250565b600061305360368361253d565b915061305e82612ff7565b604082019050919050565b6000602082019050818103600083015261308281613046565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130bf60208361253d565b91506130ca82613089565b602082019050919050565b600060208201905081810360008301526130ee816130b2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061315e826125ed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561319157613190613124565b5b600182019050919050565b7f455243373231437573746f6d3a2063616c6c6572206973206e6f74206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006131f8602e8361253d565b91506132038261319c565b604082019050919050565b60006020820190508181036000830152613227816131eb565b9050919050565b7f455243373231437573746f6d456e756d657261626c653a206f776e657220696e60008201527f646578206f7574206f6620626f756e6473000000000000000000000000000000602082015250565b600061328a60318361253d565b91506132958261322e565b604082019050919050565b600060208201905081810360008301526132b98161327d565b9050919050565b7f61646472657373206e6f7420617070726f766564000000000000000000000000600082015250565b60006132f660148361253d565b9150613301826132c0565b602082019050919050565b60006020820190508181036000830152613325816132e9565b9050919050565b7f746f6b656e20616c7265616479206d696e746564000000000000000000000000600082015250565b600061336260148361253d565b915061336d8261332c565b602082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b7f455243373231437573746f6d456e756d657261626c653a20717565727920666f60008201527f72206e6f6e6578697374656e7420746f6b656e00000000000000000000000000602082015250565b60006133f460338361253d565b91506133ff82613398565b604082019050919050565b60006020820190508181036000830152613423816133e7565b9050919050565b7f746f6b656e206e6f74206d696e74656400000000000000000000000000000000600082015250565b600061346060108361253d565b915061346b8261342a565b602082019050919050565b6000602082019050818103600083015261348f81613453565b9050919050565b7f534d4f4f50593a20717565727920666f72206e6f6e6578697374656e7420746f60008201527f6b656e0000000000000000000000000000000000000000000000000000000000602082015250565b60006134f260238361253d565b91506134fd82613496565b604082019050919050565b60006020820190508181036000830152613521816134e5565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461355581612ea1565b61355f8186613528565b9450600182166000811461357a576001811461358b576135be565b60ff198316865281860193506135be565b61359485613533565b60005b838110156135b657815481890152600182019150602081019050613597565b838801955050505b50505092915050565b60006135d282612532565b6135dc8185613528565b93506135ec81856020860161254e565b80840191505092915050565b60006136048286613548565b915061361082856135c7565b915061361c82846135c7565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061368560268361253d565b915061369082613629565b604082019050919050565b600060208201905081810360008301526136b481613678565b9050919050565b7f455243373231437573746f6d3a207472616e73666572206f6620746f6b656e2060008201527f74686174206973206e6f74206f776e0000000000000000000000000000000000602082015250565b6000613717602f8361253d565b9150613722826136bb565b604082019050919050565b600060208201905081810360008301526137468161370a565b9050919050565b7f7472616e73666572206e6f74207065726d697474656400000000000000000000600082015250565b600061378360168361253d565b915061378e8261374d565b602082019050919050565b600060208201905081810360008301526137b281613776565b9050919050565b60006137c4826125ed565b915060008214156137d8576137d7613124565b5b600182039050919050565b7f455243373231437573746f6d3a207472616e7366657220746f206e6f6e20455260008201527f43373231526563656976657220696d706c656d656e7465720000000000000000602082015250565b600061383f60388361253d565b915061384a826137e3565b604082019050919050565b6000602082019050818103600083015261386e81613832565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138af826125ed565b91506138ba836125ed565b9250826138ca576138c9613875565b5b828204905092915050565b60006138e0826125ed565b91506138eb836125ed565b9250828210156138fe576138fd613124565b5b828203905092915050565b6000613914826125ed565b915061391f836125ed565b92508261392f5761392e613875565b5b828206905092915050565b6000613945826125ed565b9150613950836125ed565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561398557613984613124565b5b828201905092915050565b600081519050919050565b600082825260208201905092915050565b60006139b782613990565b6139c1818561399b565b93506139d181856020860161254e565b6139da81612581565b840191505092915050565b60006080820190506139fa6000830187612682565b613a076020830186612682565b613a1460408301856128a9565b8181036060830152613a2681846139ac565b905095945050505050565b600081519050613a40816124a3565b92915050565b600060208284031215613a5c57613a5b61246d565b5b6000613a6a84828501613a31565b9150509291505056fea2646970667358221220368f87dc78a70cf07349bc9204865eccc894b09c522d7426463d52dacb779ba964736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806355f804b3116101045780639dc29fac116100a2578063b88d4fde11610071578063b88d4fde14610577578063c87b56dd14610593578063e985e9c5146105c3578063f2fde38b146105f3576101da565b80639dc29fac146104f3578063a22cb4651461050f578063a8b5e6ea1461052b578063b534a5c41461055b576101da565b8063715018a6116100de578063715018a6146104915780638da5cb5b1461049b57806395d89b41146104b95780639d398372146104d7576101da565b806355f804b3146104155780636352211e1461043157806370a0823114610461576101da565b80632f745c591161017c578063438b63001161014b578063438b6300146103555780634d44660c146103855780634f64b2be146103b55780634f6ccce7146103e5576101da565b80632f745c59146102cf57806332cb6b0c146102ff57806340c10f191461031d57806342842e0e14610339576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806312e6e44e1461027957806318160ddd1461029557806323b872dd146102b3576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f491906124cf565b61060f565b6040516102069190612517565b60405180910390f35b610217610689565b60405161022491906125cb565b60405180910390f35b61024760048036038101906102429190612623565b61071c565b6040516102549190612691565b60405180910390f35b610277600480360381019061027291906126d8565b6107a2565b005b610293600480360381019061028e9190612860565b6108ba565b005b61029d6109cc565b6040516102aa91906128b8565b60405180910390f35b6102cd60048036038101906102c891906128d3565b6109d6565b005b6102e960048036038101906102e491906126d8565b610a36565b6040516102f691906128b8565b60405180910390f35b610307610b25565b60405161031491906128b8565b60405180910390f35b610337600480360381019061033291906126d8565b610b2b565b005b610353600480360381019061034e91906128d3565b610cc5565b005b61036f600480360381019061036a9190612926565b610ce5565b60405161037c9190612a11565b60405180910390f35b61039f600480360381019061039a9190612a8e565b610e13565b6040516103ac9190612517565b60405180910390f35b6103cf60048036038101906103ca9190612623565b610ecf565b6040516103dc9190612691565b60405180910390f35b6103ff60048036038101906103fa9190612623565b610f11565b60405161040c91906128b8565b60405180910390f35b61042f600480360381019061042a9190612b44565b610f5f565b005b61044b60048036038101906104469190612623565b610ff2565b6040516104589190612691565b60405180910390f35b61047b60048036038101906104769190612926565b61107d565b60405161048891906128b8565b60405180910390f35b6104996110c5565b005b6104a361114d565b6040516104b09190612691565b60405180910390f35b6104c1611178565b6040516104ce91906125cb565b60405180910390f35b6104f160048036038101906104ec9190612860565b61120b565b005b61050d600480360381019061050891906126d8565b61131d565b005b61052960048036038101906105249190612bbd565b6114b7565b005b61054560048036038101906105409190612926565b6115c3565b6040516105529190612517565b60405180910390f35b61057560048036038101906105709190612c53565b6115e4565b005b610591600480360381019061058c9190612daf565b611675565b005b6105ad60048036038101906105a89190612623565b6116d7565b6040516105ba91906125cb565b60405180910390f35b6105dd60048036038101906105d89190612e32565b61178b565b6040516105ea9190612517565b60405180910390f35b61060d60048036038101906106089190612926565b611820565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610682575061068182611918565b5b9050919050565b6060611389805461069990612ea1565b80601f01602080910402602001604051908101604052809291908181526020018280546106c590612ea1565b80156107125780601f106106e757610100808354040283529160200191610712565b820191906000526020600020905b8154815290600101906020018083116106f557829003601f168201915b5050505050905090565b6000610727826119fa565b610766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075d90612f45565b60405180910390fd5b61138b600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107ad82610ff2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561081e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081590612fd7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661083d611a7a565b73ffffffffffffffffffffffffffffffffffffffff16148061086c575061086b81610866611a7a565b61178b565b5b6108ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a290613069565b60405180910390fd5b6108b58383611a82565b505050565b6108c2611a7a565b73ffffffffffffffffffffffffffffffffffffffff166108e061114d565b73ffffffffffffffffffffffffffffffffffffffff1614610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d906130d5565b60405180910390fd5b60005b81518110156109c857600061138e600084848151811061095c5761095b6130f5565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109c090613153565b915050610939565b5050565b6000611388905090565b6109e76109e1611a7a565b82611b3c565b610a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d9061320e565b60405180910390fd5b610a31838383611c1a565b505050565b60008060005b611388811015610ae3576001816113888110610a5b57610a5a6130f5565b5b0160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ad25783821415610ac5578092505050610b1f565b81610acf90613153565b91505b80610adc90613153565b9050610a3c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b16906132a0565b60405180910390fd5b92915050565b61138881565b61138e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf9061330c565b60405180910390fd5b610bc1816119fa565b15610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf890613378565b60405180910390fd5b610c0d60008383611d5e565b816001826113888110610c2357610c226130f5565b5b0160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b610ce083838360405180602001604052806000815250611675565b505050565b6060600080610cf38461107d565b905060008167ffffffffffffffff811115610d1157610d1061271d565b5b604051908082528060200260200182016040528015610d3f5781602001602082028036833780820191505090505b50905060005b611388811015610e07576001816113888110610d6457610d636130f5565b5b0160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415610df65780828580610dc990613153565b965081518110610ddc57610ddb6130f5565b5b60200260200101818152505082841415610df557610e07565b5b80610e0090613153565b9050610d45565b50809350505050919050565b6000805b83839050811015610ec2576001848483818110610e3757610e366130f5565b5b905060200201356113888110610e5057610e4f6130f5565b5b0160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614610eb1576000915050610ec8565b80610ebb90613153565b9050610e17565b50600190505b9392505050565b6001816113888110610ee057600080fd5b016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081565b60006113888210610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e9061340a565b60405180910390fd5b819050919050565b610f67611a7a565b73ffffffffffffffffffffffffffffffffffffffff16610f8561114d565b73ffffffffffffffffffffffffffffffffffffffff1614610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd2906130d5565b60405180910390fd5b818161138f9190610fed9291906123c0565b505050565b6000610ffd826119fa565b61103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390612f45565b60405180910390fd5b6001826113888110611051576110506130f5565b5b0160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110cd611a7a565b73ffffffffffffffffffffffffffffffffffffffff166110eb61114d565b73ffffffffffffffffffffffffffffffffffffffff1614611141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611138906130d5565b60405180910390fd5b61114b6000611f17565b565b600061138d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606061138a805461118890612ea1565b80601f01602080910402602001604051908101604052809291908181526020018280546111b490612ea1565b80156112015780601f106111d657610100808354040283529160200191611201565b820191906000526020600020905b8154815290600101906020018083116111e457829003601f168201915b5050505050905090565b611213611a7a565b73ffffffffffffffffffffffffffffffffffffffff1661123161114d565b73ffffffffffffffffffffffffffffffffffffffff1614611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e906130d5565b60405180910390fd5b60005b815181101561131957600161138e60008484815181106112ad576112ac6130f5565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061131190613153565b91505061128a565b5050565b61138e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a19061330c565b60405180910390fd5b6113b3816119fa565b6113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e990613476565b60405180910390fd5b6113fe82600083611d5e565b60006001826113888110611415576114146130f5565b5b0160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8061138c60006114c5611a7a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611572611a7a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b79190612517565b60405180910390a35050565b61138e6020528060005260406000206000915054906101000a900460ff1681565b60005b8484905081101561166c5761165b878787878581811061160a576116096130f5565b5b9050602002013586868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611675565b8061166590613153565b90506115e7565b50505050505050565b611686611680611a7a565b83611b3c565b6116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc9061320e565b60405180910390fd5b6116d184848484611fdf565b50505050565b60606116e2826119fa565b611721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171890613508565b60405180910390fd5b61138f61172d8361203b565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611775939291906135f8565b6040516020818303038152906040529050919050565b600061138c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611828611a7a565b73ffffffffffffffffffffffffffffffffffffffff1661184661114d565b73ffffffffffffffffffffffffffffffffffffffff161461189c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611893906130d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561190c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119039061369b565b60405180910390fd5b61191581611f17565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119e357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119f357506119f28261219c565b5b9050919050565b600061138882108015611a735750600073ffffffffffffffffffffffffffffffffffffffff166001836113888110611a3557611a346130f5565b5b0160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b8161138b600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611af683610ff2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b47826119fa565b611b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7d90612f45565b60405180910390fd5b6000611b9183610ff2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c0057508373ffffffffffffffffffffffffffffffffffffffff16611be88461071c565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c115750611c10818561178b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c3a82610ff2565b73ffffffffffffffffffffffffffffffffffffffff1614611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c879061372d565b60405180910390fd5b611c9b838383611d5e565b611ca6600082611a82565b816001826113888110611cbc57611cbb6130f5565b5b0160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611dc55750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb90613799565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e8b576000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154611e83906137b9565b919050819055505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611f12576000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154611f0a90613153565b919050819055505b505050565b600061138d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508161138d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fea848484611c1a565b611ff684848484612206565b612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90613855565b60405180910390fd5b50505050565b60606000821415612083576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612197565b600082905060005b600082146120b557808061209e90613153565b915050600a826120ae91906138a4565b915061208b565b60008167ffffffffffffffff8111156120d1576120d061271d565b5b6040519080825280601f01601f1916602001820160405280156121035781602001600182028036833780820191505090505b5090505b600085146121905760018261211c91906138d5565b9150600a8561212b9190613909565b6030612137919061393a565b60f81b81838151811061214d5761214c6130f5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561218991906138a4565b9450612107565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006122278473ffffffffffffffffffffffffffffffffffffffff1661239d565b15612390578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612250611a7a565b8786866040518563ffffffff1660e01b815260040161227294939291906139e5565b602060405180830381600087803b15801561228c57600080fd5b505af19250505080156122bd57506040513d601f19601f820116820180604052508101906122ba9190613a46565b60015b612340573d80600081146122ed576040519150601f19603f3d011682016040523d82523d6000602084013e6122f2565b606091505b50600081511415612338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232f90613855565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612395565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546123cc90612ea1565b90600052602060002090601f0160209004810192826123ee5760008555612435565b82601f1061240757803560ff1916838001178555612435565b82800160010185558215612435579182015b82811115612434578235825591602001919060010190612419565b5b5090506124429190612446565b5090565b5b8082111561245f576000816000905550600101612447565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124ac81612477565b81146124b757600080fd5b50565b6000813590506124c9816124a3565b92915050565b6000602082840312156124e5576124e461246d565b5b60006124f3848285016124ba565b91505092915050565b60008115159050919050565b612511816124fc565b82525050565b600060208201905061252c6000830184612508565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561256c578082015181840152602081019050612551565b8381111561257b576000848401525b50505050565b6000601f19601f8301169050919050565b600061259d82612532565b6125a7818561253d565b93506125b781856020860161254e565b6125c081612581565b840191505092915050565b600060208201905081810360008301526125e58184612592565b905092915050565b6000819050919050565b612600816125ed565b811461260b57600080fd5b50565b60008135905061261d816125f7565b92915050565b6000602082840312156126395761263861246d565b5b60006126478482850161260e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061267b82612650565b9050919050565b61268b81612670565b82525050565b60006020820190506126a66000830184612682565b92915050565b6126b581612670565b81146126c057600080fd5b50565b6000813590506126d2816126ac565b92915050565b600080604083850312156126ef576126ee61246d565b5b60006126fd858286016126c3565b925050602061270e8582860161260e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61275582612581565b810181811067ffffffffffffffff821117156127745761277361271d565b5b80604052505050565b6000612787612463565b9050612793828261274c565b919050565b600067ffffffffffffffff8211156127b3576127b261271d565b5b602082029050602081019050919050565b600080fd5b60006127dc6127d784612798565b61277d565b905080838252602082019050602084028301858111156127ff576127fe6127c4565b5b835b81811015612828578061281488826126c3565b845260208401935050602081019050612801565b5050509392505050565b600082601f83011261284757612846612718565b5b81356128578482602086016127c9565b91505092915050565b6000602082840312156128765761287561246d565b5b600082013567ffffffffffffffff81111561289457612893612472565b5b6128a084828501612832565b91505092915050565b6128b2816125ed565b82525050565b60006020820190506128cd60008301846128a9565b92915050565b6000806000606084860312156128ec576128eb61246d565b5b60006128fa868287016126c3565b935050602061290b868287016126c3565b925050604061291c8682870161260e565b9150509250925092565b60006020828403121561293c5761293b61246d565b5b600061294a848285016126c3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612988816125ed565b82525050565b600061299a838361297f565b60208301905092915050565b6000602082019050919050565b60006129be82612953565b6129c8818561295e565b93506129d38361296f565b8060005b83811015612a045781516129eb888261298e565b97506129f6836129a6565b9250506001810190506129d7565b5085935050505092915050565b60006020820190508181036000830152612a2b81846129b3565b905092915050565b600080fd5b60008083601f840112612a4e57612a4d612718565b5b8235905067ffffffffffffffff811115612a6b57612a6a612a33565b5b602083019150836020820283011115612a8757612a866127c4565b5b9250929050565b600080600060408486031215612aa757612aa661246d565b5b6000612ab5868287016126c3565b935050602084013567ffffffffffffffff811115612ad657612ad5612472565b5b612ae286828701612a38565b92509250509250925092565b60008083601f840112612b0457612b03612718565b5b8235905067ffffffffffffffff811115612b2157612b20612a33565b5b602083019150836001820283011115612b3d57612b3c6127c4565b5b9250929050565b60008060208385031215612b5b57612b5a61246d565b5b600083013567ffffffffffffffff811115612b7957612b78612472565b5b612b8585828601612aee565b92509250509250929050565b612b9a816124fc565b8114612ba557600080fd5b50565b600081359050612bb781612b91565b92915050565b60008060408385031215612bd457612bd361246d565b5b6000612be2858286016126c3565b9250506020612bf385828601612ba8565b9150509250929050565b60008083601f840112612c1357612c12612718565b5b8235905067ffffffffffffffff811115612c3057612c2f612a33565b5b602083019150836001820283011115612c4c57612c4b6127c4565b5b9250929050565b60008060008060008060808789031215612c7057612c6f61246d565b5b6000612c7e89828a016126c3565b9650506020612c8f89828a016126c3565b955050604087013567ffffffffffffffff811115612cb057612caf612472565b5b612cbc89828a01612a38565b9450945050606087013567ffffffffffffffff811115612cdf57612cde612472565b5b612ceb89828a01612bfd565b92509250509295509295509295565b600080fd5b600067ffffffffffffffff821115612d1a57612d1961271d565b5b612d2382612581565b9050602081019050919050565b82818337600083830152505050565b6000612d52612d4d84612cff565b61277d565b905082815260208101848484011115612d6e57612d6d612cfa565b5b612d79848285612d30565b509392505050565b600082601f830112612d9657612d95612718565b5b8135612da6848260208601612d3f565b91505092915050565b60008060008060808587031215612dc957612dc861246d565b5b6000612dd7878288016126c3565b9450506020612de8878288016126c3565b9350506040612df98782880161260e565b925050606085013567ffffffffffffffff811115612e1a57612e19612472565b5b612e2687828801612d81565b91505092959194509250565b60008060408385031215612e4957612e4861246d565b5b6000612e57858286016126c3565b9250506020612e68858286016126c3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eb957607f821691505b60208210811415612ecd57612ecc612e72565b5b50919050565b7f455243373231437573746f6d3a20717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612f2f60298361253d565b9150612f3a82612ed3565b604082019050919050565b60006020820190508181036000830152612f5e81612f22565b9050919050565b7f455243373231437573746f6d3a20617070726f76616c20746f2063757272656e60008201527f74206f776e657200000000000000000000000000000000000000000000000000602082015250565b6000612fc160278361253d565b9150612fcc82612f65565b604082019050919050565b60006020820190508181036000830152612ff081612fb4565b9050919050565b7f455243373231437573746f6d3a2063616c6c6572206973206e6f74206f776e6560008201527f72206e6f7220617070726f76656420666f7220616c6c00000000000000000000602082015250565b600061305360368361253d565b915061305e82612ff7565b604082019050919050565b6000602082019050818103600083015261308281613046565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130bf60208361253d565b91506130ca82613089565b602082019050919050565b600060208201905081810360008301526130ee816130b2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061315e826125ed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561319157613190613124565b5b600182019050919050565b7f455243373231437573746f6d3a2063616c6c6572206973206e6f74206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006131f8602e8361253d565b91506132038261319c565b604082019050919050565b60006020820190508181036000830152613227816131eb565b9050919050565b7f455243373231437573746f6d456e756d657261626c653a206f776e657220696e60008201527f646578206f7574206f6620626f756e6473000000000000000000000000000000602082015250565b600061328a60318361253d565b91506132958261322e565b604082019050919050565b600060208201905081810360008301526132b98161327d565b9050919050565b7f61646472657373206e6f7420617070726f766564000000000000000000000000600082015250565b60006132f660148361253d565b9150613301826132c0565b602082019050919050565b60006020820190508181036000830152613325816132e9565b9050919050565b7f746f6b656e20616c7265616479206d696e746564000000000000000000000000600082015250565b600061336260148361253d565b915061336d8261332c565b602082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b7f455243373231437573746f6d456e756d657261626c653a20717565727920666f60008201527f72206e6f6e6578697374656e7420746f6b656e00000000000000000000000000602082015250565b60006133f460338361253d565b91506133ff82613398565b604082019050919050565b60006020820190508181036000830152613423816133e7565b9050919050565b7f746f6b656e206e6f74206d696e74656400000000000000000000000000000000600082015250565b600061346060108361253d565b915061346b8261342a565b602082019050919050565b6000602082019050818103600083015261348f81613453565b9050919050565b7f534d4f4f50593a20717565727920666f72206e6f6e6578697374656e7420746f60008201527f6b656e0000000000000000000000000000000000000000000000000000000000602082015250565b60006134f260238361253d565b91506134fd82613496565b604082019050919050565b60006020820190508181036000830152613521816134e5565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461355581612ea1565b61355f8186613528565b9450600182166000811461357a576001811461358b576135be565b60ff198316865281860193506135be565b61359485613533565b60005b838110156135b657815481890152600182019150602081019050613597565b838801955050505b50505092915050565b60006135d282612532565b6135dc8185613528565b93506135ec81856020860161254e565b80840191505092915050565b60006136048286613548565b915061361082856135c7565b915061361c82846135c7565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061368560268361253d565b915061369082613629565b604082019050919050565b600060208201905081810360008301526136b481613678565b9050919050565b7f455243373231437573746f6d3a207472616e73666572206f6620746f6b656e2060008201527f74686174206973206e6f74206f776e0000000000000000000000000000000000602082015250565b6000613717602f8361253d565b9150613722826136bb565b604082019050919050565b600060208201905081810360008301526137468161370a565b9050919050565b7f7472616e73666572206e6f74207065726d697474656400000000000000000000600082015250565b600061378360168361253d565b915061378e8261374d565b602082019050919050565b600060208201905081810360008301526137b281613776565b9050919050565b60006137c4826125ed565b915060008214156137d8576137d7613124565b5b600182039050919050565b7f455243373231437573746f6d3a207472616e7366657220746f206e6f6e20455260008201527f43373231526563656976657220696d706c656d656e7465720000000000000000602082015250565b600061383f60388361253d565b915061384a826137e3565b604082019050919050565b6000602082019050818103600083015261386e81613832565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138af826125ed565b91506138ba836125ed565b9250826138ca576138c9613875565b5b828204905092915050565b60006138e0826125ed565b91506138eb836125ed565b9250828210156138fe576138fd613124565b5b828203905092915050565b6000613914826125ed565b915061391f836125ed565b92508261392f5761392e613875565b5b828206905092915050565b6000613945826125ed565b9150613950836125ed565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561398557613984613124565b5b828201905092915050565b600081519050919050565b600082825260208201905092915050565b60006139b782613990565b6139c1818561399b565b93506139d181856020860161254e565b6139da81612581565b840191505092915050565b60006080820190506139fa6000830187612682565b613a076020830186612682565b613a1460408301856128a9565b8181036060830152613a2681846139ac565b905095945050505050565b600081519050613a40816124a3565b92915050565b600060208284031215613a5c57613a5b61246d565b5b6000613a6a84828501613a31565b9150509291505056fea2646970667358221220368f87dc78a70cf07349bc9204865eccc894b09c522d7426463d52dacb779ba964736f6c63430008090033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.