Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Artificial Intelligence
Overview
Max Total Supply
7,395,425.302141929605741 GNUS
Holders
147 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GeniusTokens
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; contract GeniusTokens is ERC20, ERC20Burnable, AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); // modify token name string private constant NAME = "Genius Tokens"; // modify token symbol string private constant SYMBOL = "GNUS"; uint256 public constant DECIMALS = 10 ** 18; // ICO data uint256 public GNUSSoldTokens = 0; uint256 public weiReceived = 0; bool ITOisPaused = false; uint256[] public rates = [1000, 800, 640, 512]; uint256[] public stageEndsAtWei = [12500 * DECIMALS, 25000 * DECIMALS, 37500 * DECIMALS, 50000 * DECIMALS]; uint8 internal stage = 0; uint256 public constant INIT_SUPPLY = 7380000 * DECIMALS; // 7.38 million tokens uint256 public constant ICO_SUPPLY = 36900000 * DECIMALS; // 36.9 million tokens uint256 public constant MAX_SUPPLY = 50000000 * DECIMALS; // 50 million tokens address public superAdmin; constructor () ERC20(NAME, SYMBOL) { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(MINTER_ROLE, msg.sender); superAdmin = msg.sender; mint(msg.sender, INIT_SUPPLY); } modifier onlyAdmin() { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Restricted to admins."); _; } modifier onlyMinter() { require(hasRole(MINTER_ROLE, msg.sender), "Restricted to minters."); _; } function mint(address to, uint256 amount) public virtual onlyMinter { require(totalSupply() + amount <= MAX_SUPPLY, "Minting would exceed max supply"); _mint(to, amount); } function addMinter(address minter) public virtual onlyAdmin { grantRole(MINTER_ROLE, minter); } function removeMinter(address account) public virtual onlyAdmin { revokeRole(MINTER_ROLE, account); } function renounceRole(bytes32 role, address account) public virtual override { require(!(hasRole(DEFAULT_ADMIN_ROLE, account) && (superAdmin == account)), "Cannot renounce superAdmin from Admin Role"); super.renounceRole(role, account); } function revokeRole(bytes32 role, address account) public virtual override onlyAdmin { require(!(hasRole(DEFAULT_ADMIN_ROLE, account) && (superAdmin == account)), "Cannot revoke superAdmin from Admin Role"); super.revokeRole(role, account); } function GNUSBalance() public view returns(uint256) { return GNUSSoldTokens; } function ETHBalance() public view returns(uint256) { return address(this).balance; } function WEIReceived() public view returns(uint256) { return weiReceived; } // owner can withdraw eth to any address function withdrawETH(address _address, uint256 _amount) public virtual onlyAdmin { require(_amount <= ETHBalance(), "Not enough eth balance"); address payable to = payable(_address); to.transfer(_amount); } // pause the Token offering function pauseITO(bool pause) public virtual onlyAdmin { ITOisPaused = pause; } // Detect receiving eth receive () external payable { // Check GNUS token before receive ETH require(msg.value > 0, "You have sent 0 ether!"); require(!ITOisPaused, "ITO is currently paused!"); uint256 tokenAmount = calcTokenAmount(msg.value); _mint(address(msg.sender), tokenAmount); } // this is the function to scale the ICO with early adopters getting better deals. function calcTokenAmount(uint256 weiAmount) internal returns(uint256) { uint256 curWeiReceived = weiReceived; uint256 remainingWeiAmount = weiAmount; uint256 GNUSTokenAmount = 0; uint8 curStage = stage; while ((remainingWeiAmount != 0) && (curStage < stageEndsAtWei.length)) { uint256 weiLeftInStage = stageEndsAtWei[curStage] - curWeiReceived; uint256 WeiToUse = (weiLeftInStage < remainingWeiAmount) ? weiLeftInStage : remainingWeiAmount; GNUSTokenAmount += (WeiToUse * rates[curStage]); remainingWeiAmount -= WeiToUse; curWeiReceived += WeiToUse; if (remainingWeiAmount != 0) { curStage++; } } require(remainingWeiAmount == 0, 'To Much Ethereum Sent'); require(GNUSSoldTokens + GNUSTokenAmount <= ICO_SUPPLY, "GNUS Tokens: cap exceeded"); require(totalSupply() + GNUSTokenAmount <= MAX_SUPPLY, "Minting would exceed max supply"); stage = curStage; weiReceived = curWeiReceived; GNUSSoldTokens += GNUSTokenAmount; return GNUSTokenAmount; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping (address => bool) members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ */ function _checkRole(bytes32 role, address account) internal view { if(!hasRole(role, account)) { revert(string(abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ))); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT 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 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); }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 1000 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DECIMALS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ETHBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GNUSBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GNUSSoldTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ICO_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INIT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WEIReceived","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"pause","type":"bool"}],"name":"pauseITO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stageEndsAtWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"superAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weiReceived","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
600060068190556007556008805460ff191690556101006040526103e8608090815261032060a05261028060c05261020060e05262000043906009906004620003fb565b506040518060800160405280670de0b6b3a76400006130d4620000679190620005eb565b815260200162000082670de0b6b3a76400006161a8620005eb565b81526020016200009d670de0b6b3a764000061927c620005eb565b8152602001620000b8670de0b6b3a764000061c350620005eb565b9052620000ca90600a90600462000451565b50600b805460ff19169055348015620000e257600080fd5b50604080518082018252600d81526c47656e69757320546f6b656e7360981b602080830191825283518085019094526004845263474e555360e01b90840152815191929162000134916003916200048f565b5080516200014a9060049060208401906200048f565b506200015c91506000905033620001bb565b62000177600080516020620028ea83398151915233620001bb565b600b8054610100600160a81b03191633610100810291909117909155620001b590620001af670de0b6b3a764000062709c20620005eb565b620001cb565b62000660565b620001c782826200026a565b5050565b620001e6600080516020620028ea83398151915233620002f6565b6200020e5760405162461bcd60e51b8152600401620002059062000559565b60405180910390fd5b62000226670de0b6b3a76400006302faf080620005eb565b816200023162000321565b6200023d9190620005d0565b11156200025e5760405162461bcd60e51b8152600401620002059062000522565b620001c7828262000327565b620002768282620002f6565b620001c75760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002b2620003f2565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60025490565b6001600160a01b038216620003505760405162461bcd60e51b8152600401620002059062000590565b6200035e60008383620003f6565b8060026000828254620003729190620005d0565b90915550506001600160a01b03821660009081526020819052604081208054839290620003a1908490620005d0565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620003e6908590620005c7565b60405180910390a35050565b3390565b505050565b8280548282559060005260206000209081019282156200043f579160200282015b828111156200043f578251829061ffff169055916020019190600101906200041c565b506200044d9291506200050b565b5090565b8280548282559060005260206000209081019282156200043f579160200282015b828111156200043f57825182559160200191906001019062000472565b8280546200049d906200060d565b90600052602060002090601f016020900481019282620004c157600085556200043f565b82601f10620004dc57805160ff19168380011785556200043f565b828001600101855582156200043f57918201828111156200043f57825182559160200191906001019062000472565b5b808211156200044d57600081556001016200050c565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b60208082526016908201527f5265737472696374656420746f206d696e746572732e00000000000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620005e657620005e66200064a565b500190565b60008160001904831182151516156200060857620006086200064a565b500290565b6002810460018216806200062257607f821691505b602082108114156200064457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61227a80620006706000396000f3fe6080604052600436106102895760003560e01c80634782f77911610153578063983b2d56116100cb578063b244c3671161007f578063d547741f11610064578063d547741f146106f5578063dd418ae214610715578063dd62ed3e14610735576102f4565b8063b244c367146106c0578063d5391393146106e0576102f4565b8063a217fddf116100b0578063a217fddf1461066b578063a457c2d714610680578063a9059cbb146106a0576102f4565b8063983b2d5614610636578063a000aeb714610656576102f4565b8063881091561161012257806391d148541161010757806391d14854146105ec578063956cc8591461060c57806395d89b4114610621576102f4565b806388109156146105b75780638b9e787b146105cc576102f4565b80634782f779146105425780636077cbc31461056257806370a082311461057757806379cc679014610597576102f4565b80632e0f26251161020157806332cb6b0c116101b5578063395093511161019a57806339509351146104e257806340c10f191461050257806342966c6814610522576102f4565b806332cb6b0c146104ad57806336568abe146104c2576102f4565b80633055a78c116101e65780633055a78c146104565780633092afd51461046b578063313ce5671461048b576102f4565b80632e0f26251461041f5780632f2ff15d14610434576102f4565b806318160ddd1161025857806323b872dd1161023d57806323b872dd146103bd578063248a9ca3146103dd57806329575f6a146103fd576102f4565b806318160ddd146103935780631d1b6802146103a8576102f4565b806301ffc9a7146102f957806304269bc21461032f57806306fdde0314610351578063095ea7b314610373576102f4565b366102f457600034116102b75760405162461bcd60e51b81526004016102ae90611df3565b60405180910390fd5b60085460ff16156102da5760405162461bcd60e51b81526004016102ae90612069565b60006102e534610755565b90506102f1338261092a565b50005b600080fd5b34801561030557600080fd5b5061031961031436600461193b565b6109ea565b6040516103269190611a10565b60405180910390f35b34801561033b57600080fd5b50610344610a46565b6040516103269190611a1b565b34801561035d57600080fd5b50610366610a5f565b6040516103269190611a24565b34801561037f57600080fd5b5061031961038e3660046118b8565b610af1565b34801561039f57600080fd5b50610344610b0e565b3480156103b457600080fd5b50610344610b14565b3480156103c957600080fd5b506103196103d836600461187d565b610b1a565b3480156103e957600080fd5b506103446103f8366004611901565b610bb1565b34801561040957600080fd5b50610412610bc6565b60405161032691906119fc565b34801561042b57600080fd5b50610344610bda565b34801561044057600080fd5b5061045461044f366004611919565b610be6565b005b34801561046257600080fd5b50610344610c0f565b34801561047757600080fd5b50610454610486366004611831565b610c13565b34801561049757600080fd5b506104a0610c67565b6040516103269190612134565b3480156104b957600080fd5b50610344610c6c565b3480156104ce57600080fd5b506104546104dd366004611919565b610c82565b3480156104ee57600080fd5b506103196104fd3660046118b8565b610cd6565b34801561050e57600080fd5b5061045461051d3660046118b8565b610d25565b34801561052e57600080fd5b5061045461053d366004611901565b610dbc565b34801561054e57600080fd5b5061045461055d3660046118b8565b610dcd565b34801561056e57600080fd5b50610344610e59565b34801561058357600080fd5b50610344610592366004611831565b610e5f565b3480156105a357600080fd5b506104546105b23660046118b8565b610e7a565b3480156105c357600080fd5b50610344610eca565b3480156105d857600080fd5b506104546105e73660046118e1565b610ed0565b3480156105f857600080fd5b50610319610607366004611919565b610f0a565b34801561061857600080fd5b50610344610f35565b34801561062d57600080fd5b50610366610f4a565b34801561064257600080fd5b50610454610651366004611831565b610f59565b34801561066257600080fd5b50610344610faa565b34801561067757600080fd5b50610344610fb0565b34801561068c57600080fd5b5061031961069b3660046118b8565b610fb5565b3480156106ac57600080fd5b506103196106bb3660046118b8565b611030565b3480156106cc57600080fd5b506103446106db366004611901565b611044565b3480156106ec57600080fd5b50610344611065565b34801561070157600080fd5b50610454610710366004611919565b611089565b34801561072157600080fd5b50610344610730366004611901565b611100565b34801561074157600080fd5b5061034461075036600461184b565b611110565b600754600b54600091908390839060ff165b821580159061077a5750600a5460ff8216105b1561084957600084600a8360ff16815481106107a657634e487b7160e01b600052603260045260246000fd5b90600052602060002001546107bb9190612179565b905060008482106107cc57846107ce565b815b905060098360ff16815481106107f457634e487b7160e01b600052603260045260246000fd5b90600052602060002001548161080a919061215a565b6108149085612142565b93506108208186612179565b945061082c8187612142565b95508415610842578261083e8161220e565b9350505b5050610767565b82156108675760405162461bcd60e51b81526004016102ae90611c37565b61087d670de0b6b3a76400006302330ca061215a565b8260065461088b9190612142565b11156108a95760405162461bcd60e51b81526004016102ae90611ba3565b6108bf670de0b6b3a76400006302faf08061215a565b826108c8610b0e565b6108d29190612142565b11156108f05760405162461bcd60e51b81526004016102ae90611ccb565b600b805460ff191660ff8316179055600784905560068054839190600090610919908490612142565b90915550919450505050505b919050565b6001600160a01b0382166109505760405162461bcd60e51b81526004016102ae906120fd565b61095c60008383610c0a565b806002600082825461096e9190612142565b90915550506001600160a01b0382166000908152602081905260408120805483929061099b908490612142565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109de908590611a1b565b60405180910390a35050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b000000000000000000000000000000000000000000000000000000001480610a405750610a408261113b565b92915050565b610a5c670de0b6b3a76400006302330ca061215a565b81565b606060038054610a6e906121d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a906121d3565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b6000610b05610afe611185565b8484611189565b50600192915050565b60025490565b60065490565b6000610b2784848461123d565b6001600160a01b038416600090815260016020526040812081610b48611185565b6001600160a01b03166001600160a01b0316815260200190815260200160002054905082811015610b8b5760405162461bcd60e51b81526004016102ae90611d96565b610ba685610b97611185565b610ba18685612179565b611189565b506001949350505050565b60009081526005602052604090206001015490565b600b5461010090046001600160a01b031681565b670de0b6b3a764000081565b610bef82610bb1565b610c0081610bfb611185565b611365565b610c0a83836113c9565b505050565b4790565b610c1e600033610f0a565b610c3a5760405162461bcd60e51b81526004016102ae90611d02565b610c647f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a682611089565b50565b601290565b610a5c670de0b6b3a76400006302faf08061215a565b610c8d600082610f0a565b8015610cab5750600b546001600160a01b0382811661010090920416145b15610cc85760405162461bcd60e51b81526004016102ae90611c6e565b610cd28282611450565b5050565b6000610b05610ce3611185565b848460016000610cf1611185565b6001600160a01b03908116825260208083019390935260409182016000908120918b1681529252902054610ba19190612142565b610d4f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610f0a565b610d6b5760405162461bcd60e51b81526004016102ae90611f9e565b610d81670de0b6b3a76400006302faf08061215a565b81610d8a610b0e565b610d949190612142565b1115610db25760405162461bcd60e51b81526004016102ae90611ccb565b610cd2828261092a565b610c64610dc7611185565b82611492565b610dd8600033610f0a565b610df45760405162461bcd60e51b81526004016102ae90611d02565b610dfc610c0f565b811115610e1b5760405162461bcd60e51b81526004016102ae90611fd5565b60405182906001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610e53573d6000803e3d6000fd5b50505050565b60065481565b6001600160a01b031660009081526020819052604090205490565b6000610e8883610750611185565b905081811015610eaa5760405162461bcd60e51b81526004016102ae90611e2a565b610ec083610eb6611185565b610ba18585612179565b610c0a8383611492565b60075490565b610edb600033610f0a565b610ef75760405162461bcd60e51b81526004016102ae90611d02565b6008805460ff1916911515919091179055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b610a5c670de0b6b3a764000062709c2061215a565b606060048054610a6e906121d3565b610f64600033610f0a565b610f805760405162461bcd60e51b81526004016102ae90611d02565b610c647f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a682610be6565b60075481565b600081565b60008060016000610fc4611185565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156110105760405162461bcd60e51b81526004016102ae9061200c565b61102661101b611185565b85610ba18685612179565b5060019392505050565b6000610b0561103d611185565b848461123d565b600a818154811061105457600080fd5b600091825260209091200154905081565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611094600033610f0a565b6110b05760405162461bcd60e51b81526004016102ae90611d02565b6110bb600082610f0a565b80156110d95750600b546001600160a01b0382811661010090920416145b156110f65760405162461bcd60e51b81526004016102ae90611d39565b610cd28282611578565b6009818154811061105457600080fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7fffffffff0000000000000000000000000000000000000000000000000000000081167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b3390565b6001600160a01b0383166111af5760405162461bcd60e51b81526004016102ae90611f41565b6001600160a01b0382166111d55760405162461bcd60e51b81526004016102ae90611b46565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611230908590611a1b565b60405180910390a3505050565b6001600160a01b0383166112635760405162461bcd60e51b81526004016102ae90611ee4565b6001600160a01b0382166112895760405162461bcd60e51b81526004016102ae90611a8c565b611294838383610c0a565b6001600160a01b038316600090815260208190526040902054818110156112cd5760405162461bcd60e51b81526004016102ae90611bda565b6112d78282612179565b6001600160a01b03808616600090815260208190526040808220939093559085168152908120805484929061130d908490612142565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113579190611a1b565b60405180910390a350505050565b61136f8282610f0a565b610cd257611387816001600160a01b03166014611597565b611392836020611597565b6040516020016113a392919061197b565b60408051601f198184030181529082905262461bcd60e51b82526102ae91600401611a24565b6113d38282610f0a565b610cd25760008281526005602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561140c611185565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611458611185565b6001600160a01b0316816001600160a01b0316146114885760405162461bcd60e51b81526004016102ae906120a0565b610cd28282611795565b6001600160a01b0382166114b85760405162461bcd60e51b81526004016102ae90611e87565b6114c482600083610c0a565b6001600160a01b038216600090815260208190526040902054818110156114fd5760405162461bcd60e51b81526004016102ae90611ae9565b6115078282612179565b6001600160a01b03841660009081526020819052604081209190915560028054849290611535908490612179565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611230908690611a1b565b61158182610bb1565b61158d81610bfb611185565b610c0a8383611795565b606060006115a683600261215a565b6115b1906002612142565b67ffffffffffffffff8111156115d757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611601576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061164657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061169f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006116c384600261215a565b6116ce906001612142565b90505b600181111561176f577f303132333435363738396162636465660000000000000000000000000000000085600f166010811061171d57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061174157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611768816121bc565b90506116d1565b50831561178e5760405162461bcd60e51b81526004016102ae90611a57565b9392505050565b61179f8282610f0a565b15610cd25760008281526005602090815260408083206001600160a01b03851684529091529020805460ff191690556117d6611185565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b80356001600160a01b038116811461092557600080fd5b600060208284031215611842578081fd5b61178e8261181a565b6000806040838503121561185d578081fd5b6118668361181a565b91506118746020840161181a565b90509250929050565b600080600060608486031215611891578081fd5b61189a8461181a565b92506118a86020850161181a565b9150604084013590509250925092565b600080604083850312156118ca578182fd5b6118d38361181a565b946020939093013593505050565b6000602082840312156118f2578081fd5b8135801515811461178e578182fd5b600060208284031215611912578081fd5b5035919050565b6000806040838503121561192b578182fd5b823591506118746020840161181a565b60006020828403121561194c578081fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461178e578182fd5b60007f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000825283516119b3816017850160208801612190565b7f206973206d697373696e6720726f6c652000000000000000000000000000000060179184019182015283516119f0816028840160208801612190565b01602801949350505050565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b6000602082528251806020840152611a43816040850160208701612190565b601f01601f19169190910160400192915050565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f474e555320546f6b656e733a2063617020657863656564656400000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526015908201527f546f204d75636820457468657265756d2053656e740000000000000000000000604082015260600190565b6020808252602a908201527f43616e6e6f742072656e6f756e636520737570657241646d696e2066726f6d2060408201527f41646d696e20526f6c6500000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b60208082526015908201527f5265737472696374656420746f2061646d696e732e0000000000000000000000604082015260600190565b60208082526028908201527f43616e6e6f74207265766f6b6520737570657241646d696e2066726f6d20416460408201527f6d696e20526f6c65000000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b60208082526016908201527f596f7520686176652073656e7420302065746865722100000000000000000000604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760408201527f616e636500000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526016908201527f5265737472696374656420746f206d696e746572732e00000000000000000000604082015260600190565b60208082526016908201527f4e6f7420656e6f756768206574682062616c616e636500000000000000000000604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f49544f2069732063757272656e746c7920706175736564210000000000000000604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201527f20726f6c657320666f722073656c660000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60ff91909116815260200190565b600082198211156121555761215561222e565b500190565b60008160001904831182151516156121745761217461222e565b500290565b60008282101561218b5761218b61222e565b500390565b60005b838110156121ab578181015183820152602001612193565b83811115610e535750506000910152565b6000816121cb576121cb61222e565b506000190190565b6002810460018216806121e757607f821691505b6020821081141561220857634e487b7160e01b600052602260045260246000fd5b50919050565b600060ff821660ff8114156122255761222561222e565b60010192915050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220c41c7a3f9ce27edf95723f4705cef718abd4ee6439a952c9aca035f9275b70fe64736f6c634300080000339f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6
Deployed Bytecode
0x6080604052600436106102895760003560e01c80634782f77911610153578063983b2d56116100cb578063b244c3671161007f578063d547741f11610064578063d547741f146106f5578063dd418ae214610715578063dd62ed3e14610735576102f4565b8063b244c367146106c0578063d5391393146106e0576102f4565b8063a217fddf116100b0578063a217fddf1461066b578063a457c2d714610680578063a9059cbb146106a0576102f4565b8063983b2d5614610636578063a000aeb714610656576102f4565b8063881091561161012257806391d148541161010757806391d14854146105ec578063956cc8591461060c57806395d89b4114610621576102f4565b806388109156146105b75780638b9e787b146105cc576102f4565b80634782f779146105425780636077cbc31461056257806370a082311461057757806379cc679014610597576102f4565b80632e0f26251161020157806332cb6b0c116101b5578063395093511161019a57806339509351146104e257806340c10f191461050257806342966c6814610522576102f4565b806332cb6b0c146104ad57806336568abe146104c2576102f4565b80633055a78c116101e65780633055a78c146104565780633092afd51461046b578063313ce5671461048b576102f4565b80632e0f26251461041f5780632f2ff15d14610434576102f4565b806318160ddd1161025857806323b872dd1161023d57806323b872dd146103bd578063248a9ca3146103dd57806329575f6a146103fd576102f4565b806318160ddd146103935780631d1b6802146103a8576102f4565b806301ffc9a7146102f957806304269bc21461032f57806306fdde0314610351578063095ea7b314610373576102f4565b366102f457600034116102b75760405162461bcd60e51b81526004016102ae90611df3565b60405180910390fd5b60085460ff16156102da5760405162461bcd60e51b81526004016102ae90612069565b60006102e534610755565b90506102f1338261092a565b50005b600080fd5b34801561030557600080fd5b5061031961031436600461193b565b6109ea565b6040516103269190611a10565b60405180910390f35b34801561033b57600080fd5b50610344610a46565b6040516103269190611a1b565b34801561035d57600080fd5b50610366610a5f565b6040516103269190611a24565b34801561037f57600080fd5b5061031961038e3660046118b8565b610af1565b34801561039f57600080fd5b50610344610b0e565b3480156103b457600080fd5b50610344610b14565b3480156103c957600080fd5b506103196103d836600461187d565b610b1a565b3480156103e957600080fd5b506103446103f8366004611901565b610bb1565b34801561040957600080fd5b50610412610bc6565b60405161032691906119fc565b34801561042b57600080fd5b50610344610bda565b34801561044057600080fd5b5061045461044f366004611919565b610be6565b005b34801561046257600080fd5b50610344610c0f565b34801561047757600080fd5b50610454610486366004611831565b610c13565b34801561049757600080fd5b506104a0610c67565b6040516103269190612134565b3480156104b957600080fd5b50610344610c6c565b3480156104ce57600080fd5b506104546104dd366004611919565b610c82565b3480156104ee57600080fd5b506103196104fd3660046118b8565b610cd6565b34801561050e57600080fd5b5061045461051d3660046118b8565b610d25565b34801561052e57600080fd5b5061045461053d366004611901565b610dbc565b34801561054e57600080fd5b5061045461055d3660046118b8565b610dcd565b34801561056e57600080fd5b50610344610e59565b34801561058357600080fd5b50610344610592366004611831565b610e5f565b3480156105a357600080fd5b506104546105b23660046118b8565b610e7a565b3480156105c357600080fd5b50610344610eca565b3480156105d857600080fd5b506104546105e73660046118e1565b610ed0565b3480156105f857600080fd5b50610319610607366004611919565b610f0a565b34801561061857600080fd5b50610344610f35565b34801561062d57600080fd5b50610366610f4a565b34801561064257600080fd5b50610454610651366004611831565b610f59565b34801561066257600080fd5b50610344610faa565b34801561067757600080fd5b50610344610fb0565b34801561068c57600080fd5b5061031961069b3660046118b8565b610fb5565b3480156106ac57600080fd5b506103196106bb3660046118b8565b611030565b3480156106cc57600080fd5b506103446106db366004611901565b611044565b3480156106ec57600080fd5b50610344611065565b34801561070157600080fd5b50610454610710366004611919565b611089565b34801561072157600080fd5b50610344610730366004611901565b611100565b34801561074157600080fd5b5061034461075036600461184b565b611110565b600754600b54600091908390839060ff165b821580159061077a5750600a5460ff8216105b1561084957600084600a8360ff16815481106107a657634e487b7160e01b600052603260045260246000fd5b90600052602060002001546107bb9190612179565b905060008482106107cc57846107ce565b815b905060098360ff16815481106107f457634e487b7160e01b600052603260045260246000fd5b90600052602060002001548161080a919061215a565b6108149085612142565b93506108208186612179565b945061082c8187612142565b95508415610842578261083e8161220e565b9350505b5050610767565b82156108675760405162461bcd60e51b81526004016102ae90611c37565b61087d670de0b6b3a76400006302330ca061215a565b8260065461088b9190612142565b11156108a95760405162461bcd60e51b81526004016102ae90611ba3565b6108bf670de0b6b3a76400006302faf08061215a565b826108c8610b0e565b6108d29190612142565b11156108f05760405162461bcd60e51b81526004016102ae90611ccb565b600b805460ff191660ff8316179055600784905560068054839190600090610919908490612142565b90915550919450505050505b919050565b6001600160a01b0382166109505760405162461bcd60e51b81526004016102ae906120fd565b61095c60008383610c0a565b806002600082825461096e9190612142565b90915550506001600160a01b0382166000908152602081905260408120805483929061099b908490612142565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109de908590611a1b565b60405180910390a35050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b000000000000000000000000000000000000000000000000000000001480610a405750610a408261113b565b92915050565b610a5c670de0b6b3a76400006302330ca061215a565b81565b606060038054610a6e906121d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a906121d3565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b6000610b05610afe611185565b8484611189565b50600192915050565b60025490565b60065490565b6000610b2784848461123d565b6001600160a01b038416600090815260016020526040812081610b48611185565b6001600160a01b03166001600160a01b0316815260200190815260200160002054905082811015610b8b5760405162461bcd60e51b81526004016102ae90611d96565b610ba685610b97611185565b610ba18685612179565b611189565b506001949350505050565b60009081526005602052604090206001015490565b600b5461010090046001600160a01b031681565b670de0b6b3a764000081565b610bef82610bb1565b610c0081610bfb611185565b611365565b610c0a83836113c9565b505050565b4790565b610c1e600033610f0a565b610c3a5760405162461bcd60e51b81526004016102ae90611d02565b610c647f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a682611089565b50565b601290565b610a5c670de0b6b3a76400006302faf08061215a565b610c8d600082610f0a565b8015610cab5750600b546001600160a01b0382811661010090920416145b15610cc85760405162461bcd60e51b81526004016102ae90611c6e565b610cd28282611450565b5050565b6000610b05610ce3611185565b848460016000610cf1611185565b6001600160a01b03908116825260208083019390935260409182016000908120918b1681529252902054610ba19190612142565b610d4f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610f0a565b610d6b5760405162461bcd60e51b81526004016102ae90611f9e565b610d81670de0b6b3a76400006302faf08061215a565b81610d8a610b0e565b610d949190612142565b1115610db25760405162461bcd60e51b81526004016102ae90611ccb565b610cd2828261092a565b610c64610dc7611185565b82611492565b610dd8600033610f0a565b610df45760405162461bcd60e51b81526004016102ae90611d02565b610dfc610c0f565b811115610e1b5760405162461bcd60e51b81526004016102ae90611fd5565b60405182906001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610e53573d6000803e3d6000fd5b50505050565b60065481565b6001600160a01b031660009081526020819052604090205490565b6000610e8883610750611185565b905081811015610eaa5760405162461bcd60e51b81526004016102ae90611e2a565b610ec083610eb6611185565b610ba18585612179565b610c0a8383611492565b60075490565b610edb600033610f0a565b610ef75760405162461bcd60e51b81526004016102ae90611d02565b6008805460ff1916911515919091179055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b610a5c670de0b6b3a764000062709c2061215a565b606060048054610a6e906121d3565b610f64600033610f0a565b610f805760405162461bcd60e51b81526004016102ae90611d02565b610c647f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a682610be6565b60075481565b600081565b60008060016000610fc4611185565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156110105760405162461bcd60e51b81526004016102ae9061200c565b61102661101b611185565b85610ba18685612179565b5060019392505050565b6000610b0561103d611185565b848461123d565b600a818154811061105457600080fd5b600091825260209091200154905081565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611094600033610f0a565b6110b05760405162461bcd60e51b81526004016102ae90611d02565b6110bb600082610f0a565b80156110d95750600b546001600160a01b0382811661010090920416145b156110f65760405162461bcd60e51b81526004016102ae90611d39565b610cd28282611578565b6009818154811061105457600080fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7fffffffff0000000000000000000000000000000000000000000000000000000081167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b3390565b6001600160a01b0383166111af5760405162461bcd60e51b81526004016102ae90611f41565b6001600160a01b0382166111d55760405162461bcd60e51b81526004016102ae90611b46565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611230908590611a1b565b60405180910390a3505050565b6001600160a01b0383166112635760405162461bcd60e51b81526004016102ae90611ee4565b6001600160a01b0382166112895760405162461bcd60e51b81526004016102ae90611a8c565b611294838383610c0a565b6001600160a01b038316600090815260208190526040902054818110156112cd5760405162461bcd60e51b81526004016102ae90611bda565b6112d78282612179565b6001600160a01b03808616600090815260208190526040808220939093559085168152908120805484929061130d908490612142565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113579190611a1b565b60405180910390a350505050565b61136f8282610f0a565b610cd257611387816001600160a01b03166014611597565b611392836020611597565b6040516020016113a392919061197b565b60408051601f198184030181529082905262461bcd60e51b82526102ae91600401611a24565b6113d38282610f0a565b610cd25760008281526005602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561140c611185565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611458611185565b6001600160a01b0316816001600160a01b0316146114885760405162461bcd60e51b81526004016102ae906120a0565b610cd28282611795565b6001600160a01b0382166114b85760405162461bcd60e51b81526004016102ae90611e87565b6114c482600083610c0a565b6001600160a01b038216600090815260208190526040902054818110156114fd5760405162461bcd60e51b81526004016102ae90611ae9565b6115078282612179565b6001600160a01b03841660009081526020819052604081209190915560028054849290611535908490612179565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611230908690611a1b565b61158182610bb1565b61158d81610bfb611185565b610c0a8383611795565b606060006115a683600261215a565b6115b1906002612142565b67ffffffffffffffff8111156115d757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611601576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061164657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061169f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006116c384600261215a565b6116ce906001612142565b90505b600181111561176f577f303132333435363738396162636465660000000000000000000000000000000085600f166010811061171d57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061174157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611768816121bc565b90506116d1565b50831561178e5760405162461bcd60e51b81526004016102ae90611a57565b9392505050565b61179f8282610f0a565b15610cd25760008281526005602090815260408083206001600160a01b03851684529091529020805460ff191690556117d6611185565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b80356001600160a01b038116811461092557600080fd5b600060208284031215611842578081fd5b61178e8261181a565b6000806040838503121561185d578081fd5b6118668361181a565b91506118746020840161181a565b90509250929050565b600080600060608486031215611891578081fd5b61189a8461181a565b92506118a86020850161181a565b9150604084013590509250925092565b600080604083850312156118ca578182fd5b6118d38361181a565b946020939093013593505050565b6000602082840312156118f2578081fd5b8135801515811461178e578182fd5b600060208284031215611912578081fd5b5035919050565b6000806040838503121561192b578182fd5b823591506118746020840161181a565b60006020828403121561194c578081fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461178e578182fd5b60007f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000825283516119b3816017850160208801612190565b7f206973206d697373696e6720726f6c652000000000000000000000000000000060179184019182015283516119f0816028840160208801612190565b01602801949350505050565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b6000602082528251806020840152611a43816040850160208701612190565b601f01601f19169190910160400192915050565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f474e555320546f6b656e733a2063617020657863656564656400000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b60208082526015908201527f546f204d75636820457468657265756d2053656e740000000000000000000000604082015260600190565b6020808252602a908201527f43616e6e6f742072656e6f756e636520737570657241646d696e2066726f6d2060408201527f41646d696e20526f6c6500000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b60208082526015908201527f5265737472696374656420746f2061646d696e732e0000000000000000000000604082015260600190565b60208082526028908201527f43616e6e6f74207265766f6b6520737570657241646d696e2066726f6d20416460408201527f6d696e20526f6c65000000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160408201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606082015260800190565b60208082526016908201527f596f7520686176652073656e7420302065746865722100000000000000000000604082015260600190565b60208082526024908201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760408201527f616e636500000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526016908201527f5265737472696374656420746f206d696e746572732e00000000000000000000604082015260600190565b60208082526016908201527f4e6f7420656e6f756768206574682062616c616e636500000000000000000000604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f49544f2069732063757272656e746c7920706175736564210000000000000000604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201527f20726f6c657320666f722073656c660000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60ff91909116815260200190565b600082198211156121555761215561222e565b500190565b60008160001904831182151516156121745761217461222e565b500290565b60008282101561218b5761218b61222e565b500390565b60005b838110156121ab578181015183820152602001612193565b83811115610e535750506000910152565b6000816121cb576121cb61222e565b506000190190565b6002810460018216806121e757607f821691505b6020821081141561220857634e487b7160e01b600052602260045260246000fd5b50919050565b600060ff821660ff8114156122255761222561222e565b60010192915050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220c41c7a3f9ce27edf95723f4705cef718abd4ee6439a952c9aca035f9275b70fe64736f6c63430008000033
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.