ETH Price: $1,866.21 (-0.84%)

Token

Kevin Mfers (KEVIN)
 

Overview

Max Total Supply

10,000 KEVIN

Holders

2,632

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 KEVIN
0x9be246c7acda67f6b0062b449f2d0a1d73607bd2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KevinMfers

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 6969 runs

Other Settings:
default evmVersion
File 1 of 12 : KevinMfers.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "erc721a/contracts/ERC721A.sol";
contract KevinMfers is ERC721A, Ownable {
uint256 public constant PRICE = 0.0069 ether;
uint256 public constant MAX_PER_TXN = 20;
bool public publicSale = false;
uint256 public maxSupply = 10000;
uint256 public freeMaxSupply = 1000;
string private baseURI;
constructor() ERC721A("Kevin Mfers", "KEVIN") {}
// public sale
modifier publicSaleOpen() {
require(publicSale, "Public Sale Not Started");
_;
}
function togglePublicSale() external onlyOwner {
publicSale = !publicSale;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 12 : Ownable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 12 : ERC721A.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.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';
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support burning tokens to address(0).
*
* Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
*/
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 12 : Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 12 : IERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 12 : IERC721Receiver.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 12 : IERC721Metadata.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 12 : IERC721Enumerable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 12 : Address.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 10 of 12 : Strings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 11 of 12 : ERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 12 of 12 : IERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"optimizer": {
"enabled": true,
"runs": 6969
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

API
[{"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_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"adminMint","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":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_total","type":"uint256"}],"name":"decreaseTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_total","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526007805460ff60a01b191690556127106008556103e86009553480156200002a57600080fd5b50604080518082018252600b81526a4b6576696e204d6665727360a81b60208083019182528351808501909452600584526425a2ab24a760d91b9084015281519192916200007b916001916200010a565b508051620000919060029060208401906200010a565b505050620000ae620000a8620000b460201b60201c565b620000b8565b620001ed565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011890620001b0565b90600052602060002090601f0160209004810192826200013c576000855562000187565b82601f106200015757805160ff191683800117855562000187565b8280016001018555821562000187579182015b82811115620001875782518255916020019190600101906200016a565b506200019592915062000199565b5090565b5b808211156200019557600081556001016200019a565b600181811c90821680620001c557607f821691505b60208210811415620001e757634e487b7160e01b600052602260045260246000fd5b50919050565b6128d380620001fd6000396000f3fe6080604052600436106101d85760003560e01c80636e11451111610102578063b88d4fde11610095578063e58306f911610064578063e58306f914610520578063e985e9c514610540578063f2fde38b14610589578063f676308a146105a957600080fd5b8063b88d4fde146104b5578063c87b56dd146104d5578063d5abeb01146104f5578063e222c7f91461050b57600080fd5b80638da5cb5b116100d15780638da5cb5b1461044f57806395d89b411461046d578063a0712d6814610482578063a22cb4651461049557600080fd5b80636e114511146103df57806370a08231146103ff578063715018a61461041f5780638d859f3e1461043457600080fd5b806333bc1c5c1161017a5780635097bdef116101495780635097bdef1461037457806351b96d921461038a57806355f804b31461039f5780636352211e146103bf57600080fd5b806333bc1c5c146102ed5780633ccfd60b1461031f57806342842e0e146103345780634f6ccce71461035457600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102ad5780632f745c59146102cd57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004612350565b6105c9565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276106fa565b60405161020991906123e3565b34801561024057600080fd5b5061025461024f3660046123f6565b61078c565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c61028736600461242b565b61082c565b005b34801561029a57600080fd5b506000545b604051908152602001610209565b3480156102b957600080fd5b5061028c6102c8366004612455565b61095f565b3480156102d957600080fd5b5061029f6102e836600461242b565b61096a565b3480156102f957600080fd5b506007546101fd9074010000000000000000000000000000000000000000900460ff1681565b34801561032b57600080fd5b5061028c610b02565b34801561034057600080fd5b5061028c61034f366004612455565b610bb9565b34801561036057600080fd5b5061029f61036f3660046123f6565b610bd4565b34801561038057600080fd5b5061029f60095481565b34801561039657600080fd5b5061029f601481565b3480156103ab57600080fd5b5061028c6103ba366004612554565b610c50565b3480156103cb57600080fd5b506102546103da3660046123f6565b610cc1565b3480156103eb57600080fd5b5061028c6103fa3660046123f6565b610cd3565b34801561040b57600080fd5b5061029f61041a36600461259d565b610dd6565b34801561042b57600080fd5b5061028c610e82565b34801561044057600080fd5b5061029f6618838370f3400081565b34801561045b57600080fd5b506007546001600160a01b0316610254565b34801561047957600080fd5b50610227610ee8565b61028c6104903660046123f6565b610ef7565b3480156104a157600080fd5b5061028c6104b03660046125b8565b6110ac565b3480156104c157600080fd5b5061028c6104d03660046125f4565b61118f565b3480156104e157600080fd5b506102276104f03660046123f6565b61121e565b34801561050157600080fd5b5061029f60085481565b34801561051757600080fd5b5061028c6112fa565b34801561052c57600080fd5b5061028c61053b36600461242b565b6113a1565b34801561054c57600080fd5b506101fd61055b366004612670565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059557600080fd5b5061028c6105a436600461259d565b61146b565b3480156105b557600080fd5b5061028c6105c43660046123f6565b61154a565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061065c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106a857507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b806106f457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060018054610709906126a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610735906126a3565b80156107825780601f1061075757610100808354040283529160200191610782565b820191906000526020600020905b81548152906001019060200180831161076557829003601f168201915b5050505050905090565b6000610799826000541190565b6108105760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061083782610cc1565b9050806001600160a01b0316836001600160a01b031614156108c15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610807565b336001600160a01b03821614806108dd57506108dd813361055b565b61094f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610807565b61095a83838361164d565b505050565b61095a8383836116c1565b600061097583610dd6565b82106109e95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610807565b600080549080805b83811015610a93576000818152600360209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610a5557805192505b876001600160a01b0316836001600160a01b03161415610a8a5786841415610a83575093506106f492505050565b6001909301925b506001016109f1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610807565b6007546001600160a01b03163314610b5c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b47610b9173169f86544558ac4a1a6d90ce2f2a75f9c860a9c96064610b82846032612726565b610b8c9190612774565b611a53565b610bb67343926fb9676c91412ba9a7e68ebd70ca080c8ac46064610b82846032612726565b50565b61095a8383836040518060200160405280600081525061118f565b600080548210610c4c5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610807565b5090565b6007546001600160a01b03163314610caa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b8051610cbd90600a906020840190612292565b5050565b6000610ccc82611b6c565b5192915050565b6007546001600160a01b03163314610d2d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b600854811115610d7f5760405162461bcd60e51b815260206004820152601060248201527f4f7665722043757272656e74204d6178000000000000000000000000000000006044820152606401610807565b600054811015610dd15760405162461bcd60e51b815260206004820152601260248201527f4d757374204265204f76657220546f74616c00000000000000000000000000006044820152606401610807565b600855565b60006001600160a01b038216610e545760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610807565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6007546001600160a01b03163314610edc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b610ee66000611c67565b565b606060028054610709906126a3565b60075474010000000000000000000000000000000000000000900460ff16610f615760405162461bcd60e51b815260206004820152601760248201527f5075626c69632053616c65204e6f7420537461727465640000000000000000006044820152606401610807565b8060085481610f6f60005490565b610f799190612788565b1115610fc75760405162461bcd60e51b815260206004820152600960248201527f486974204c696d697400000000000000000000000000000000000000000000006044820152606401610807565b81600081118015610fd9575060148111155b6110255760405162461bcd60e51b815260206004820152601060248201527f4f766572204d6178205065722054786e000000000000000000000000000000006044820152606401610807565b6009548361103260005490565b61103c9190612788565b11156110a257611053836618838370f34000612726565b3410156110a25760405162461bcd60e51b815260206004820152601060248201527f4e6f7420456e6f7567682046756e6473000000000000000000000000000000006044820152606401610807565b61095a3384611cd1565b6001600160a01b0382163314156111055760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610807565b3360008181526006602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61119a8484846116c1565b6111a684848484611ceb565b6112185760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610807565b50505050565b606061122b826000541190565b61129d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610807565b60006112a7611ea8565b90508051600014156112c857604051806020016040528060008152506112f3565b806112d284611eb7565b6040516020016112e39291906127a0565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146113545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b600780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116740100000000000000000000000000000000000000009182900460ff1615909102179055565b6007546001600160a01b031633146113fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b806008548161140960005490565b6114139190612788565b11156114615760405162461bcd60e51b815260206004820152600960248201527f486974204c696d697400000000000000000000000000000000000000000000006044820152606401610807565b61095a8383611cd1565b6007546001600160a01b031633146114c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b6001600160a01b0381166115415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610807565b610bb681611c67565b6007546001600160a01b031633146115a45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b6008548111156115f65760405162461bcd60e51b815260206004820152601060248201527f4f7665722043757272656e74204d6178000000000000000000000000000000006044820152606401610807565b6000548110156116485760405162461bcd60e51b815260206004820152600b60248201527f556e64657220546f74616c0000000000000000000000000000000000000000006044820152606401610807565b600955565b60008281526005602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116cc82611b6c565b80519091506000906001600160a01b0316336001600160a01b031614806117035750336116f88461078c565b6001600160a01b0316145b8061171557508151611715903361055b565b90508061178a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610807565b846001600160a01b031682600001516001600160a01b0316146118155760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610807565b6001600160a01b0384166118915760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610807565b6118a1600084846000015161164d565b6001600160a01b03858116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff1602179055908601808352912054909116611a0957611993816000541190565b15611a09578251600082815260036020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80471015611aa35760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610807565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611af0576040519150601f19603f3d011682016040523d82523d6000602084013e611af5565b606091505b505090508061095a5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610807565b6040805180820190915260008082526020820152611b8b826000541190565b611bfd5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610807565b815b6000818152600360209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215611c5d579392505050565b5060001901611bff565b600780546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cbd828260405180602001604052806000815250611fe9565b60006001600160a01b0384163b15611e9c576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611d489033908990889088906004016127cf565b6020604051808303816000875af1925050508015611da1575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611d9e9181019061280b565b60015b611e51573d808015611dcf576040519150601f19603f3d011682016040523d82523d6000602084013e611dd4565b606091505b508051611e495760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610807565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611ea0565b5060015b949350505050565b6060600a8054610709906126a3565b606081611ef757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611f215780611f0b81612828565b9150611f1a9050600a83612774565b9150611efb565b60008167ffffffffffffffff811115611f3c57611f3c612491565b6040519080825280601f01601f191660200182016040528015611f66576020820181803683370190505b5090505b8415611ea057611f7b600183612843565b9150611f88600a8661285a565b611f93906030612788565b60f81b818381518110611fa857611fa861286e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611fe2600a86612774565b9450611f6a565b61095a83838360016000546001600160a01b0385166120705760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610807565b836120e35760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e20300000000000000000000000000000000000000000000000006064820152608401610807565b6001600160a01b038516600081815260046020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b858110156122895760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561227d5761220b6000888488611ceb565b61227d5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610807565b600191820191016121b8565b50600055611a4c565b82805461229e906126a3565b90600052602060002090601f0160209004810192826122c05760008555612306565b82601f106122d957805160ff1916838001178555612306565b82800160010185558215612306579182015b828111156123065782518255916020019190600101906122eb565b50610c4c9291505b80821115610c4c576000815560010161230e565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610bb657600080fd5b60006020828403121561236257600080fd5b81356112f381612322565b60005b83811015612388578181015183820152602001612370565b838111156112185750506000910152565b600081518084526123b181602086016020860161236d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006112f36020830184612399565b60006020828403121561240857600080fd5b5035919050565b80356001600160a01b038116811461242657600080fd5b919050565b6000806040838503121561243e57600080fd5b6124478361240f565b946020939093013593505050565b60008060006060848603121561246a57600080fd5b6124738461240f565b92506124816020850161240f565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156124db576124db612491565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561252157612521612491565b8160405280935085815286868601111561253a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561256657600080fd5b813567ffffffffffffffff81111561257d57600080fd5b8201601f8101841361258e57600080fd5b611ea0848235602084016124c0565b6000602082840312156125af57600080fd5b6112f38261240f565b600080604083850312156125cb57600080fd5b6125d48361240f565b9150602083013580151581146125e957600080fd5b809150509250929050565b6000806000806080858703121561260a57600080fd5b6126138561240f565b93506126216020860161240f565b925060408501359150606085013567ffffffffffffffff81111561264457600080fd5b8501601f8101871361265557600080fd5b612664878235602084016124c0565b91505092959194509250565b6000806040838503121561268357600080fd5b61268c8361240f565b915061269a6020840161240f565b90509250929050565b600181811c908216806126b757607f821691505b602082108114156126f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000816000190483118215151615612740576127406126f7565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261278357612783612745565b500490565b6000821982111561279b5761279b6126f7565b500190565b600083516127b281846020880161236d565b8351908301906127c681836020880161236d565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526128016080830184612399565b9695505050505050565b60006020828403121561281d57600080fd5b81516112f381612322565b600060001982141561283c5761283c6126f7565b5060010190565b600082821015612855576128556126f7565b500390565b60008261286957612869612745565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220bd777048fff8aaa6e5395ab058a4346d8a50de89f746e48b349e02aa5afcde0a64736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636e11451111610102578063b88d4fde11610095578063e58306f911610064578063e58306f914610520578063e985e9c514610540578063f2fde38b14610589578063f676308a146105a957600080fd5b8063b88d4fde146104b5578063c87b56dd146104d5578063d5abeb01146104f5578063e222c7f91461050b57600080fd5b80638da5cb5b116100d15780638da5cb5b1461044f57806395d89b411461046d578063a0712d6814610482578063a22cb4651461049557600080fd5b80636e114511146103df57806370a08231146103ff578063715018a61461041f5780638d859f3e1461043457600080fd5b806333bc1c5c1161017a5780635097bdef116101495780635097bdef1461037457806351b96d921461038a57806355f804b31461039f5780636352211e146103bf57600080fd5b806333bc1c5c146102ed5780633ccfd60b1461031f57806342842e0e146103345780634f6ccce71461035457600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102ad5780632f745c59146102cd57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004612350565b6105c9565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276106fa565b60405161020991906123e3565b34801561024057600080fd5b5061025461024f3660046123f6565b61078c565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c61028736600461242b565b61082c565b005b34801561029a57600080fd5b506000545b604051908152602001610209565b3480156102b957600080fd5b5061028c6102c8366004612455565b61095f565b3480156102d957600080fd5b5061029f6102e836600461242b565b61096a565b3480156102f957600080fd5b506007546101fd9074010000000000000000000000000000000000000000900460ff1681565b34801561032b57600080fd5b5061028c610b02565b34801561034057600080fd5b5061028c61034f366004612455565b610bb9565b34801561036057600080fd5b5061029f61036f3660046123f6565b610bd4565b34801561038057600080fd5b5061029f60095481565b34801561039657600080fd5b5061029f601481565b3480156103ab57600080fd5b5061028c6103ba366004612554565b610c50565b3480156103cb57600080fd5b506102546103da3660046123f6565b610cc1565b3480156103eb57600080fd5b5061028c6103fa3660046123f6565b610cd3565b34801561040b57600080fd5b5061029f61041a36600461259d565b610dd6565b34801561042b57600080fd5b5061028c610e82565b34801561044057600080fd5b5061029f6618838370f3400081565b34801561045b57600080fd5b506007546001600160a01b0316610254565b34801561047957600080fd5b50610227610ee8565b61028c6104903660046123f6565b610ef7565b3480156104a157600080fd5b5061028c6104b03660046125b8565b6110ac565b3480156104c157600080fd5b5061028c6104d03660046125f4565b61118f565b3480156104e157600080fd5b506102276104f03660046123f6565b61121e565b34801561050157600080fd5b5061029f60085481565b34801561051757600080fd5b5061028c6112fa565b34801561052c57600080fd5b5061028c61053b36600461242b565b6113a1565b34801561054c57600080fd5b506101fd61055b366004612670565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059557600080fd5b5061028c6105a436600461259d565b61146b565b3480156105b557600080fd5b5061028c6105c43660046123f6565b61154a565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061065c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106a857507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b806106f457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060018054610709906126a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610735906126a3565b80156107825780601f1061075757610100808354040283529160200191610782565b820191906000526020600020905b81548152906001019060200180831161076557829003601f168201915b5050505050905090565b6000610799826000541190565b6108105760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061083782610cc1565b9050806001600160a01b0316836001600160a01b031614156108c15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610807565b336001600160a01b03821614806108dd57506108dd813361055b565b61094f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610807565b61095a83838361164d565b505050565b61095a8383836116c1565b600061097583610dd6565b82106109e95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610807565b600080549080805b83811015610a93576000818152600360209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610a5557805192505b876001600160a01b0316836001600160a01b03161415610a8a5786841415610a83575093506106f492505050565b6001909301925b506001016109f1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610807565b6007546001600160a01b03163314610b5c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b47610b9173169f86544558ac4a1a6d90ce2f2a75f9c860a9c96064610b82846032612726565b610b8c9190612774565b611a53565b610bb67343926fb9676c91412ba9a7e68ebd70ca080c8ac46064610b82846032612726565b50565b61095a8383836040518060200160405280600081525061118f565b600080548210610c4c5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610807565b5090565b6007546001600160a01b03163314610caa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b8051610cbd90600a906020840190612292565b5050565b6000610ccc82611b6c565b5192915050565b6007546001600160a01b03163314610d2d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b600854811115610d7f5760405162461bcd60e51b815260206004820152601060248201527f4f7665722043757272656e74204d6178000000000000000000000000000000006044820152606401610807565b600054811015610dd15760405162461bcd60e51b815260206004820152601260248201527f4d757374204265204f76657220546f74616c00000000000000000000000000006044820152606401610807565b600855565b60006001600160a01b038216610e545760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610807565b506001600160a01b03166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b6007546001600160a01b03163314610edc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b610ee66000611c67565b565b606060028054610709906126a3565b60075474010000000000000000000000000000000000000000900460ff16610f615760405162461bcd60e51b815260206004820152601760248201527f5075626c69632053616c65204e6f7420537461727465640000000000000000006044820152606401610807565b8060085481610f6f60005490565b610f799190612788565b1115610fc75760405162461bcd60e51b815260206004820152600960248201527f486974204c696d697400000000000000000000000000000000000000000000006044820152606401610807565b81600081118015610fd9575060148111155b6110255760405162461bcd60e51b815260206004820152601060248201527f4f766572204d6178205065722054786e000000000000000000000000000000006044820152606401610807565b6009548361103260005490565b61103c9190612788565b11156110a257611053836618838370f34000612726565b3410156110a25760405162461bcd60e51b815260206004820152601060248201527f4e6f7420456e6f7567682046756e6473000000000000000000000000000000006044820152606401610807565b61095a3384611cd1565b6001600160a01b0382163314156111055760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610807565b3360008181526006602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61119a8484846116c1565b6111a684848484611ceb565b6112185760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610807565b50505050565b606061122b826000541190565b61129d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610807565b60006112a7611ea8565b90508051600014156112c857604051806020016040528060008152506112f3565b806112d284611eb7565b6040516020016112e39291906127a0565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146113545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b600780547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116740100000000000000000000000000000000000000009182900460ff1615909102179055565b6007546001600160a01b031633146113fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b806008548161140960005490565b6114139190612788565b11156114615760405162461bcd60e51b815260206004820152600960248201527f486974204c696d697400000000000000000000000000000000000000000000006044820152606401610807565b61095a8383611cd1565b6007546001600160a01b031633146114c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b6001600160a01b0381166115415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610807565b610bb681611c67565b6007546001600160a01b031633146115a45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610807565b6008548111156115f65760405162461bcd60e51b815260206004820152601060248201527f4f7665722043757272656e74204d6178000000000000000000000000000000006044820152606401610807565b6000548110156116485760405162461bcd60e51b815260206004820152600b60248201527f556e64657220546f74616c0000000000000000000000000000000000000000006044820152606401610807565b600955565b60008281526005602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116cc82611b6c565b80519091506000906001600160a01b0316336001600160a01b031614806117035750336116f88461078c565b6001600160a01b0316145b8061171557508151611715903361055b565b90508061178a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610807565b846001600160a01b031682600001516001600160a01b0316146118155760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610807565b6001600160a01b0384166118915760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610807565b6118a1600084846000015161164d565b6001600160a01b03858116600090815260046020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff1602179055908601808352912054909116611a0957611993816000541190565b15611a09578251600082815260036020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80471015611aa35760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610807565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611af0576040519150601f19603f3d011682016040523d82523d6000602084013e611af5565b606091505b505090508061095a5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610807565b6040805180820190915260008082526020820152611b8b826000541190565b611bfd5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610807565b815b6000818152600360209081526040918290208251808401909352546001600160a01b0381168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215611c5d579392505050565b5060001901611bff565b600780546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cbd828260405180602001604052806000815250611fe9565b60006001600160a01b0384163b15611e9c576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611d489033908990889088906004016127cf565b6020604051808303816000875af1925050508015611da1575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611d9e9181019061280b565b60015b611e51573d808015611dcf576040519150601f19603f3d011682016040523d82523d6000602084013e611dd4565b606091505b508051611e495760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610807565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611ea0565b5060015b949350505050565b6060600a8054610709906126a3565b606081611ef757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611f215780611f0b81612828565b9150611f1a9050600a83612774565b9150611efb565b60008167ffffffffffffffff811115611f3c57611f3c612491565b6040519080825280601f01601f191660200182016040528015611f66576020820181803683370190505b5090505b8415611ea057611f7b600183612843565b9150611f88600a8661285a565b611f93906030612788565b60f81b818381518110611fa857611fa861286e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611fe2600a86612774565b9450611f6a565b61095a83838360016000546001600160a01b0385166120705760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610807565b836120e35760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201527f72207468616e20300000000000000000000000000000000000000000000000006064820152608401610807565b6001600160a01b038516600081815260046020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526003909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b858110156122895760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831561227d5761220b6000888488611ceb565b61227d5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610807565b600191820191016121b8565b50600055611a4c565b82805461229e906126a3565b90600052602060002090601f0160209004810192826122c05760008555612306565b82601f106122d957805160ff1916838001178555612306565b82800160010185558215612306579182015b828111156123065782518255916020019190600101906122eb565b50610c4c9291505b80821115610c4c576000815560010161230e565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610bb657600080fd5b60006020828403121561236257600080fd5b81356112f381612322565b60005b83811015612388578181015183820152602001612370565b838111156112185750506000910152565b600081518084526123b181602086016020860161236d565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006112f36020830184612399565b60006020828403121561240857600080fd5b5035919050565b80356001600160a01b038116811461242657600080fd5b919050565b6000806040838503121561243e57600080fd5b6124478361240f565b946020939093013593505050565b60008060006060848603121561246a57600080fd5b6124738461240f565b92506124816020850161240f565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156124db576124db612491565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561252157612521612491565b8160405280935085815286868601111561253a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561256657600080fd5b813567ffffffffffffffff81111561257d57600080fd5b8201601f8101841361258e57600080fd5b611ea0848235602084016124c0565b6000602082840312156125af57600080fd5b6112f38261240f565b600080604083850312156125cb57600080fd5b6125d48361240f565b9150602083013580151581146125e957600080fd5b809150509250929050565b6000806000806080858703121561260a57600080fd5b6126138561240f565b93506126216020860161240f565b925060408501359150606085013567ffffffffffffffff81111561264457600080fd5b8501601f8101871361265557600080fd5b612664878235602084016124c0565b91505092959194509250565b6000806040838503121561268357600080fd5b61268c8361240f565b915061269a6020840161240f565b90509250929050565b600181811c908216806126b757607f821691505b602082108114156126f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000816000190483118215151615612740576127406126f7565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261278357612783612745565b500490565b6000821982111561279b5761279b6126f7565b500190565b600083516127b281846020880161236d565b8351908301906127c681836020880161236d565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526128016080830184612399565b9695505050505050565b60006020828403121561281d57600080fd5b81516112f381612322565b600060001982141561283c5761283c6126f7565b5060010190565b600082821015612855576128556126f7565b500390565b60008261286957612869612745565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220bd777048fff8aaa6e5395ab058a4346d8a50de89f746e48b349e02aa5afcde0a64736f6c634300080b0033

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.