Feature Tip: Add private address tag to any address under My Name Tag !
Overview
Max Total Supply
1,268,245.040784428350070278 ROOK
Holders
16,392 ( -0.006%)
Market
Price
$0.81 @ 0.000319 ETH (-1.60%)
Onchain Market Cap
$1,024,327.74
Circulating Supply Market Cap
$498,848.43
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.528203010655326816 ROOKValue
$0.43 ( ~0.000169909366436797 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RookToken
Compiler Version
v0.5.12+commit.7709ece9
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-01 */ pragma solidity 0.5.12; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. */ contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } /* * @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 GSN 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. */ contract Context is Initializable { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ 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); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @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 {ERC20Mintable}. * * 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 Initializable, Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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 returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public 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 returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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 returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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 returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); 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 { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(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 { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(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 { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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 { 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 Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } uint256[50] private ______gap; } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } contract KRoles is Initializable { using Roles for Roles.Role; event OperatorAdded(address indexed account); event OperatorRemoved(address indexed account); Roles.Role private _operators; address[] public operators; function initialize(address _operator) public initializer { _addOperator(_operator); } modifier onlyOperator() { require(isOperator(msg.sender), "OperatorRole: caller does not have the Operator role"); _; } function isOperator(address account) public view returns (bool) { return _operators.has(account); } function addOperator(address account) public onlyOperator { _addOperator(account); } function renounceOperator() public { _removeOperator(msg.sender); } function _addOperator(address account) internal { _operators.add(account); emit OperatorAdded(account); } function _removeOperator(address account) internal { _operators.remove(account); emit OperatorRemoved(account); } } contract CanReclaimTokens is KRoles { using SafeERC20 for ERC20; mapping(address => bool) private recoverableTokensBlacklist; function initialize(address _nextOwner) public initializer { KRoles.initialize(_nextOwner); } function blacklistRecoverableToken(address _token) public onlyOperator { recoverableTokensBlacklist[_token] = true; } /// @notice Allow the owner of the contract to recover funds accidentally /// sent to the contract. To withdraw ETH, the token should be set to `0x0`. function recoverTokens(address _token) external onlyOperator { require( !recoverableTokensBlacklist[_token], "CanReclaimTokens: token is not recoverable" ); if (_token == address(0x0)) { (bool success,) = msg.sender.call.value(address(this).balance)(""); require(success, "Transfer Failed"); } else { ERC20(_token).safeTransfer( msg.sender, ERC20(_token).balanceOf(address(this)) ); } } } /** * @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). */ contract ERC20Burnable is Initializable, Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public { _burn(_msgSender(), amount); } /** * @dev See {ERC20-_burnFrom}. */ function burnFrom(address account, uint256 amount) public { _burnFrom(account, amount); } uint256[50] private ______gap; } contract MinterRole is Initializable, Context { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; function initialize(address sender) public initializer { if (!isMinter(sender)) { _addMinter(sender); } } modifier onlyMinter() { require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role"); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(_msgSender()); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } uint256[50] private ______gap; } /** * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole}, * which have permission to mint (create) new tokens as they see fit. * * At construction, the deployer of the contract is the only minter. */ contract ERC20Mintable is Initializable, ERC20, MinterRole { function initialize(address sender) public initializer { MinterRole.initialize(sender); } /** * @dev See {ERC20-_mint}. * * Requirements: * * - the caller must have the {MinterRole}. */ function mint(address account, uint256 amount) public onlyMinter returns (bool) { _mint(account, amount); return true; } uint256[50] private ______gap; } /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is Initializable, IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ function initialize(string memory name, string memory symbol, uint8 decimals) public initializer { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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. * * 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 returns (uint8) { return _decimals; } uint256[50] private ______gap; } contract StandardToken is ERC20Detailed, ERC20Mintable, ERC20Burnable, CanReclaimTokens { function initialize(string memory name, string memory symbol, uint8 decimals) public initializer { // Initialize the minter and pauser roles ERC20Mintable.initialize(msg.sender); CanReclaimTokens.initialize(msg.sender); ERC20Detailed.initialize(name, symbol, decimals); } } contract RookToken is StandardToken { function initialize() public initializer { // Initialize the StandardToken StandardToken.initialize("ROOK", "ROOK", 18); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"OperatorAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"OperatorRemoved","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"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"blacklistRecoverableToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_nextOwner","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"operators","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"recoverTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052612013806100136000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806379cc6790116100de578063a457c2d711610097578063c4d66de811610071578063c4d66de8146105ef578063dd62ed3e14610615578063e28d490614610643578063f65d901c1461067c5761018e565b8063a457c2d714610571578063a9059cbb1461059d578063aa271e1a146105c95761018e565b806379cc6790146104e15780638129fc1c1461050d57806395d89b4114610515578063983b2d561461051d57806398650275146105435780639870d7fe1461054b5761018e565b80632ab6f8db1161014b57806340c10f191161012557806340c10f191461044c57806342966c68146104785780636d70f7ae1461049557806370a08231146104bb5761018e565b80632ab6f8db146103fa578063313ce5671461040257806339509351146104205761018e565b806306fdde0314610193578063095ea7b31461021057806316114acd146102505780631624f6c61461027857806318160ddd146103aa57806323b872dd146103c4575b600080fd5b61019b6106a2565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b038135169060200135610739565b604080519115158252519081900360200190f35b6102766004803603602081101561026657600080fd5b50356001600160a01b0316610756565b005b6102766004803603606081101561028e57600080fd5b8101906020810181356401000000008111156102a957600080fd5b8201836020820111156102bb57600080fd5b803590602001918460018302840111640100000000831117156102dd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561033057600080fd5b82018360208201111561034257600080fd5b8035906020019184600183028401116401000000008311171561036457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506109299050565b6103b26109eb565b60408051918252519081900360200190f35b61023c600480360360608110156103da57600080fd5b506001600160a01b038135811691602081013590911690604001356109f1565b610276610a7e565b61040a610a89565b6040805160ff9092168252519081900360200190f35b61023c6004803603604081101561043657600080fd5b506001600160a01b038135169060200135610a92565b61023c6004803603604081101561046257600080fd5b506001600160a01b038135169060200135610ae6565b6102766004803603602081101561048e57600080fd5b5035610b3d565b61023c600480360360208110156104ab57600080fd5b50356001600160a01b0316610b4e565b6103b2600480360360208110156104d157600080fd5b50356001600160a01b0316610b68565b610276600480360360408110156104f757600080fd5b506001600160a01b038135169060200135610b83565b610276610b91565b61019b610c76565b6102766004803603602081101561053357600080fd5b50356001600160a01b0316610cd7565b610276610d26565b6102766004803603602081101561056157600080fd5b50356001600160a01b0316610d36565b61023c6004803603604081101561058757600080fd5b506001600160a01b038135169060200135610d83565b61023c600480360360408110156105b357600080fd5b506001600160a01b038135169060200135610df1565b61023c600480360360208110156105df57600080fd5b50356001600160a01b0316610e05565b6102766004803603602081101561060557600080fd5b50356001600160a01b0316610e18565b6103b26004803603604081101561062b57600080fd5b506001600160a01b0381358116916020013516610ec3565b6106606004803603602081101561065957600080fd5b5035610eee565b604080516001600160a01b039092168252519081900360200190f35b6102766004803603602081101561069257600080fd5b50356001600160a01b0316610f16565b60338054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561072e5780601f106107035761010080835404028352916020019161072e565b820191906000526020600020905b81548152906001019060200180831161071157829003601f168201915b505050505090505b90565b600061074d610746610f7f565b8484610f83565b50600192915050565b61075f33610b4e565b61079a5760405162461bcd60e51b8152600401808060200182810382526034815260200180611e056034913960400191505060405180910390fd5b6001600160a01b0381166000908152610136602052604090205460ff16156107f35760405162461bcd60e51b815260040180806020018281038252602a815260200180611db5602a913960400191505060405180910390fd5b6001600160a01b0381166108975760405160009033903031908381818185875af1925050503d8060008114610844576040519150601f19603f3d011682016040523d82523d6000602084013e610849565b606091505b5050905080610891576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8811985a5b1959608a1b604482015290519081900360640190fd5b50610926565b604080516370a0823160e01b815230600482015290516109269133916001600160a01b038516916370a08231916024808301926020929190829003018186803b1580156108e357600080fd5b505afa1580156108f7573d6000803e3d6000fd5b505050506040513d602081101561090d57600080fd5b50516001600160a01b038416919063ffffffff61106f16565b50565b600054610100900460ff168061094257506109426110c6565b80610950575060005460ff16155b61098b5760405162461bcd60e51b815260040180806020018281038252602e815260200180611ed4602e913960400191505060405180910390fd5b600054610100900460ff161580156109b6576000805460ff1961ff0019909116610100171660011790555b6109bf336110cc565b6109c833610e18565b6109d3848484611162565b80156109e5576000805461ff00191690555b50505050565b606a5490565b60006109fe84848461123d565b610a7484610a0a610f7f565b610a6f85604051806060016040528060288152602001611e8a602891396001600160a01b038a16600090815260696020526040812090610a48610f7f565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61139b16565b610f83565b5060019392505050565b610a8733611432565b565b60355460ff1690565b600061074d610a9f610f7f565b84610a6f8560696000610ab0610f7f565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61147b16565b6000610af8610af3610f7f565b610e05565b610b335760405162461bcd60e51b8152600401808060200182810382526030815260200180611e396030913960400191505060405180910390fd5b61074d83836114dc565b610926610b48610f7f565b826115ce565b6000610b626101348363ffffffff6116ca16565b92915050565b6001600160a01b031660009081526068602052604090205490565b610b8d8282611731565b5050565b600054610100900460ff1680610baa5750610baa6110c6565b80610bb8575060005460ff16155b610bf35760405162461bcd60e51b815260040180806020018281038252602e815260200180611ed4602e913960400191505060405180910390fd5b600054610100900460ff16158015610c1e576000805460ff1961ff0019909116610100171660011790555b610c6260405180604001604052806004815260200163524f4f4b60e01b81525060405180604001604052806004815260200163524f4f4b60e01b8152506012610929565b8015610926576000805461ff001916905550565b60348054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561072e5780601f106107035761010080835404028352916020019161072e565b610ce2610af3610f7f565b610d1d5760405162461bcd60e51b8152600401808060200182810382526030815260200180611e396030913960400191505060405180910390fd5b61092681611785565b610a87610d31610f7f565b6117cd565b610d3f33610b4e565b610d7a5760405162461bcd60e51b8152600401808060200182810382526034815260200180611e056034913960400191505060405180910390fd5b61092681611815565b600061074d610d90610f7f565b84610a6f85604051806060016040528060258152602001611fba6025913960696000610dba610f7f565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61139b16565b600061074d610dfe610f7f565b848461123d565b6000610b62609d8363ffffffff6116ca16565b600054610100900460ff1680610e315750610e316110c6565b80610e3f575060005460ff16155b610e7a5760405162461bcd60e51b815260040180806020018281038252602e815260200180611ed4602e913960400191505060405180910390fd5b600054610100900460ff16158015610ea5576000805460ff1961ff0019909116610100171660011790555b610eae8261185e565b8015610b8d576000805461ff00191690555050565b6001600160a01b03918216600090815260696020908152604080832093909416825291909152205490565b6101358181548110610efc57fe5b6000918252602090912001546001600160a01b0316905081565b610f1f33610b4e565b610f5a5760405162461bcd60e51b8152600401808060200182810382526034815260200180611e056034913960400191505060405180910390fd5b6001600160a01b0316600090815261013660205260409020805460ff19166001179055565b3390565b6001600160a01b038316610fc85760405162461bcd60e51b8152600401808060200182810382526024815260200180611f6c6024913960400191505060405180910390fd5b6001600160a01b03821661100d5760405162461bcd60e51b8152600401808060200182810382526022815260200180611d936022913960400191505060405180910390fd5b6001600160a01b03808416600081815260696020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526110c19084906118f4565b505050565b303b1590565b600054610100900460ff16806110e557506110e56110c6565b806110f3575060005460ff16155b61112e5760405162461bcd60e51b815260040180806020018281038252602e815260200180611ed4602e913960400191505060405180910390fd5b600054610100900460ff16158015611159576000805460ff1961ff0019909116610100171660011790555b610eae82611aac565b600054610100900460ff168061117b575061117b6110c6565b80611189575060005460ff16155b6111c45760405162461bcd60e51b815260040180806020018281038252602e815260200180611ed4602e913960400191505060405180910390fd5b600054610100900460ff161580156111ef576000805460ff1961ff0019909116610100171660011790555b8351611202906033906020870190611cb5565b508251611216906034906020860190611cb5565b506035805460ff191660ff841617905580156109e5576000805461ff001916905550505050565b6001600160a01b0383166112825760405162461bcd60e51b8152600401808060200182810382526025815260200180611f476025913960400191505060405180910390fd5b6001600160a01b0382166112c75760405162461bcd60e51b8152600401808060200182810382526023815260200180611d4e6023913960400191505060405180910390fd5b61130a81604051806060016040528060268152602001611ddf602691396001600160a01b038616600090815260686020526040902054919063ffffffff61139b16565b6001600160a01b03808516600090815260686020526040808220939093559084168152205461133f908263ffffffff61147b16565b6001600160a01b0380841660008181526068602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561142a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113ef5781810151838201526020016113d7565b50505050905090810190601f16801561141c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6114446101348263ffffffff611b4f16565b6040516001600160a01b038216907f80c0b871b97b595b16a7741c1b06fed0c6f6f558639f18ccbce50724325dc40d90600090a250565b6000828201838110156114d5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216611537576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b606a5461154a908263ffffffff61147b16565b606a556001600160a01b038216600090815260686020526040902054611576908263ffffffff61147b16565b6001600160a01b03831660008181526068602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166116135760405162461bcd60e51b8152600401808060200182810382526021815260200180611f266021913960400191505060405180910390fd5b61165681604051806060016040528060228152602001611d71602291396001600160a01b038516600090815260686020526040902054919063ffffffff61139b16565b6001600160a01b038316600090815260686020526040902055606a54611682908263ffffffff611bb616565b606a556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006001600160a01b0382166117115760405162461bcd60e51b8152600401808060200182810382526022815260200180611eb26022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b61173b82826115ce565b610b8d82611747610f7f565b610a6f84604051806060016040528060248152602001611f02602491396001600160a01b038816600090815260696020526040812090610a48610f7f565b611796609d8263ffffffff611bf816565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6117de609d8263ffffffff611b4f16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6118276101348263ffffffff611bf816565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250565b600054610100900460ff168061187757506118776110c6565b80611885575060005460ff16155b6118c05760405162461bcd60e51b815260040180806020018281038252602e815260200180611ed4602e913960400191505060405180910390fd5b600054610100900460ff161580156118eb576000805460ff1961ff0019909116610100171660011790555b610eae82611815565b611906826001600160a01b0316611c79565b611957576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106119955780518252601f199092019160209182019101611976565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146119f7576040519150601f19603f3d011682016040523d82523d6000602084013e6119fc565b606091505b509150915081611a53576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156109e557808060200190516020811015611a6f57600080fd5b50516109e55760405162461bcd60e51b815260040180806020018281038252602a815260200180611f90602a913960400191505060405180910390fd5b600054610100900460ff1680611ac55750611ac56110c6565b80611ad3575060005460ff16155b611b0e5760405162461bcd60e51b815260040180806020018281038252602e815260200180611ed4602e913960400191505060405180910390fd5b600054610100900460ff16158015611b39576000805460ff1961ff0019909116610100171660011790555b611b4282610e05565b610eae57610eae82611785565b611b5982826116ca565b611b945760405162461bcd60e51b8152600401808060200182810382526021815260200180611e696021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60006114d583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061139b565b611c0282826116ca565b15611c54576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611cad57508115155b949350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611cf657805160ff1916838001178555611d23565b82800160010185558215611d23579182015b82811115611d23578251825591602001919060010190611d08565b50611d2f929150611d33565b5090565b61073691905b80821115611d2f5760008155600101611d3956fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737343616e5265636c61696d546f6b656e733a20746f6b656e206973206e6f74207265636f76657261626c6545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f70657261746f72526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204f70657261746f7220726f6c654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158208b992e6f8f7356863ce3a3d75cb91c7f44d30d0a64f6b005c3d9ccff8c6412eb64736f6c634300050c0032
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806379cc6790116100de578063a457c2d711610097578063c4d66de811610071578063c4d66de8146105ef578063dd62ed3e14610615578063e28d490614610643578063f65d901c1461067c5761018e565b8063a457c2d714610571578063a9059cbb1461059d578063aa271e1a146105c95761018e565b806379cc6790146104e15780638129fc1c1461050d57806395d89b4114610515578063983b2d561461051d57806398650275146105435780639870d7fe1461054b5761018e565b80632ab6f8db1161014b57806340c10f191161012557806340c10f191461044c57806342966c68146104785780636d70f7ae1461049557806370a08231146104bb5761018e565b80632ab6f8db146103fa578063313ce5671461040257806339509351146104205761018e565b806306fdde0314610193578063095ea7b31461021057806316114acd146102505780631624f6c61461027857806318160ddd146103aa57806323b872dd146103c4575b600080fd5b61019b6106a2565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b038135169060200135610739565b604080519115158252519081900360200190f35b6102766004803603602081101561026657600080fd5b50356001600160a01b0316610756565b005b6102766004803603606081101561028e57600080fd5b8101906020810181356401000000008111156102a957600080fd5b8201836020820111156102bb57600080fd5b803590602001918460018302840111640100000000831117156102dd57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561033057600080fd5b82018360208201111561034257600080fd5b8035906020019184600183028401116401000000008311171561036457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506109299050565b6103b26109eb565b60408051918252519081900360200190f35b61023c600480360360608110156103da57600080fd5b506001600160a01b038135811691602081013590911690604001356109f1565b610276610a7e565b61040a610a89565b6040805160ff9092168252519081900360200190f35b61023c6004803603604081101561043657600080fd5b506001600160a01b038135169060200135610a92565b61023c6004803603604081101561046257600080fd5b506001600160a01b038135169060200135610ae6565b6102766004803603602081101561048e57600080fd5b5035610b3d565b61023c600480360360208110156104ab57600080fd5b50356001600160a01b0316610b4e565b6103b2600480360360208110156104d157600080fd5b50356001600160a01b0316610b68565b610276600480360360408110156104f757600080fd5b506001600160a01b038135169060200135610b83565b610276610b91565b61019b610c76565b6102766004803603602081101561053357600080fd5b50356001600160a01b0316610cd7565b610276610d26565b6102766004803603602081101561056157600080fd5b50356001600160a01b0316610d36565b61023c6004803603604081101561058757600080fd5b506001600160a01b038135169060200135610d83565b61023c600480360360408110156105b357600080fd5b506001600160a01b038135169060200135610df1565b61023c600480360360208110156105df57600080fd5b50356001600160a01b0316610e05565b6102766004803603602081101561060557600080fd5b50356001600160a01b0316610e18565b6103b26004803603604081101561062b57600080fd5b506001600160a01b0381358116916020013516610ec3565b6106606004803603602081101561065957600080fd5b5035610eee565b604080516001600160a01b039092168252519081900360200190f35b6102766004803603602081101561069257600080fd5b50356001600160a01b0316610f16565b60338054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561072e5780601f106107035761010080835404028352916020019161072e565b820191906000526020600020905b81548152906001019060200180831161071157829003601f168201915b505050505090505b90565b600061074d610746610f7f565b8484610f83565b50600192915050565b61075f33610b4e565b61079a5760405162461bcd60e51b8152600401808060200182810382526034815260200180611e056034913960400191505060405180910390fd5b6001600160a01b0381166000908152610136602052604090205460ff16156107f35760405162461bcd60e51b815260040180806020018281038252602a815260200180611db5602a913960400191505060405180910390fd5b6001600160a01b0381166108975760405160009033903031908381818185875af1925050503d8060008114610844576040519150601f19603f3d011682016040523d82523d6000602084013e610849565b606091505b5050905080610891576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8811985a5b1959608a1b604482015290519081900360640190fd5b50610926565b604080516370a0823160e01b815230600482015290516109269133916001600160a01b038516916370a08231916024808301926020929190829003018186803b1580156108e357600080fd5b505afa1580156108f7573d6000803e3d6000fd5b505050506040513d602081101561090d57600080fd5b50516001600160a01b038416919063ffffffff61106f16565b50565b600054610100900460ff168061094257506109426110c6565b80610950575060005460ff16155b61098b5760405162461bcd60e51b815260040180806020018281038252602e815260200180611ed4602e913960400191505060405180910390fd5b600054610100900460ff161580156109b6576000805460ff1961ff0019909116610100171660011790555b6109bf336110cc565b6109c833610e18565b6109d3848484611162565b80156109e5576000805461ff00191690555b50505050565b606a5490565b60006109fe84848461123d565b610a7484610a0a610f7f565b610a6f85604051806060016040528060288152602001611e8a602891396001600160a01b038a16600090815260696020526040812090610a48610f7f565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61139b16565b610f83565b5060019392505050565b610a8733611432565b565b60355460ff1690565b600061074d610a9f610f7f565b84610a6f8560696000610ab0610f7f565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61147b16565b6000610af8610af3610f7f565b610e05565b610b335760405162461bcd60e51b8152600401808060200182810382526030815260200180611e396030913960400191505060405180910390fd5b61074d83836114dc565b610926610b48610f7f565b826115ce565b6000610b626101348363ffffffff6116ca16565b92915050565b6001600160a01b031660009081526068602052604090205490565b610b8d8282611731565b5050565b600054610100900460ff1680610baa5750610baa6110c6565b80610bb8575060005460ff16155b610bf35760405162461bcd60e51b815260040180806020018281038252602e815260200180611ed4602e913960400191505060405180910390fd5b600054610100900460ff16158015610c1e576000805460ff1961ff0019909116610100171660011790555b610c6260405180604001604052806004815260200163524f4f4b60e01b81525060405180604001604052806004815260200163524f4f4b60e01b8152506012610929565b8015610926576000805461ff001916905550565b60348054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561072e5780601f106107035761010080835404028352916020019161072e565b610ce2610af3610f7f565b610d1d5760405162461bcd60e51b8152600401808060200182810382526030815260200180611e396030913960400191505060405180910390fd5b61092681611785565b610a87610d31610f7f565b6117cd565b610d3f33610b4e565b610d7a5760405162461bcd60e51b8152600401808060200182810382526034815260200180611e056034913960400191505060405180910390fd5b61092681611815565b600061074d610d90610f7f565b84610a6f85604051806060016040528060258152602001611fba6025913960696000610dba610f7f565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61139b16565b600061074d610dfe610f7f565b848461123d565b6000610b62609d8363ffffffff6116ca16565b600054610100900460ff1680610e315750610e316110c6565b80610e3f575060005460ff16155b610e7a5760405162461bcd60e51b815260040180806020018281038252602e815260200180611ed4602e913960400191505060405180910390fd5b600054610100900460ff16158015610ea5576000805460ff1961ff0019909116610100171660011790555b610eae8261185e565b8015610b8d576000805461ff00191690555050565b6001600160a01b03918216600090815260696020908152604080832093909416825291909152205490565b6101358181548110610efc57fe5b6000918252602090912001546001600160a01b0316905081565b610f1f33610b4e565b610f5a5760405162461bcd60e51b8152600401808060200182810382526034815260200180611e056034913960400191505060405180910390fd5b6001600160a01b0316600090815261013660205260409020805460ff19166001179055565b3390565b6001600160a01b038316610fc85760405162461bcd60e51b8152600401808060200182810382526024815260200180611f6c6024913960400191505060405180910390fd5b6001600160a01b03821661100d5760405162461bcd60e51b8152600401808060200182810382526022815260200180611d936022913960400191505060405180910390fd5b6001600160a01b03808416600081815260696020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526110c19084906118f4565b505050565b303b1590565b600054610100900460ff16806110e557506110e56110c6565b806110f3575060005460ff16155b61112e5760405162461bcd60e51b815260040180806020018281038252602e815260200180611ed4602e913960400191505060405180910390fd5b600054610100900460ff16158015611159576000805460ff1961ff0019909116610100171660011790555b610eae82611aac565b600054610100900460ff168061117b575061117b6110c6565b80611189575060005460ff16155b6111c45760405162461bcd60e51b815260040180806020018281038252602e815260200180611ed4602e913960400191505060405180910390fd5b600054610100900460ff161580156111ef576000805460ff1961ff0019909116610100171660011790555b8351611202906033906020870190611cb5565b508251611216906034906020860190611cb5565b506035805460ff191660ff841617905580156109e5576000805461ff001916905550505050565b6001600160a01b0383166112825760405162461bcd60e51b8152600401808060200182810382526025815260200180611f476025913960400191505060405180910390fd5b6001600160a01b0382166112c75760405162461bcd60e51b8152600401808060200182810382526023815260200180611d4e6023913960400191505060405180910390fd5b61130a81604051806060016040528060268152602001611ddf602691396001600160a01b038616600090815260686020526040902054919063ffffffff61139b16565b6001600160a01b03808516600090815260686020526040808220939093559084168152205461133f908263ffffffff61147b16565b6001600160a01b0380841660008181526068602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561142a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113ef5781810151838201526020016113d7565b50505050905090810190601f16801561141c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6114446101348263ffffffff611b4f16565b6040516001600160a01b038216907f80c0b871b97b595b16a7741c1b06fed0c6f6f558639f18ccbce50724325dc40d90600090a250565b6000828201838110156114d5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216611537576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b606a5461154a908263ffffffff61147b16565b606a556001600160a01b038216600090815260686020526040902054611576908263ffffffff61147b16565b6001600160a01b03831660008181526068602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166116135760405162461bcd60e51b8152600401808060200182810382526021815260200180611f266021913960400191505060405180910390fd5b61165681604051806060016040528060228152602001611d71602291396001600160a01b038516600090815260686020526040902054919063ffffffff61139b16565b6001600160a01b038316600090815260686020526040902055606a54611682908263ffffffff611bb616565b606a556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006001600160a01b0382166117115760405162461bcd60e51b8152600401808060200182810382526022815260200180611eb26022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b61173b82826115ce565b610b8d82611747610f7f565b610a6f84604051806060016040528060248152602001611f02602491396001600160a01b038816600090815260696020526040812090610a48610f7f565b611796609d8263ffffffff611bf816565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6117de609d8263ffffffff611b4f16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6118276101348263ffffffff611bf816565b6040516001600160a01b038216907fac6fa858e9350a46cec16539926e0fde25b7629f84b5a72bffaae4df888ae86d90600090a250565b600054610100900460ff168061187757506118776110c6565b80611885575060005460ff16155b6118c05760405162461bcd60e51b815260040180806020018281038252602e815260200180611ed4602e913960400191505060405180910390fd5b600054610100900460ff161580156118eb576000805460ff1961ff0019909116610100171660011790555b610eae82611815565b611906826001600160a01b0316611c79565b611957576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106119955780518252601f199092019160209182019101611976565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146119f7576040519150601f19603f3d011682016040523d82523d6000602084013e6119fc565b606091505b509150915081611a53576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156109e557808060200190516020811015611a6f57600080fd5b50516109e55760405162461bcd60e51b815260040180806020018281038252602a815260200180611f90602a913960400191505060405180910390fd5b600054610100900460ff1680611ac55750611ac56110c6565b80611ad3575060005460ff16155b611b0e5760405162461bcd60e51b815260040180806020018281038252602e815260200180611ed4602e913960400191505060405180910390fd5b600054610100900460ff16158015611b39576000805460ff1961ff0019909116610100171660011790555b611b4282610e05565b610eae57610eae82611785565b611b5982826116ca565b611b945760405162461bcd60e51b8152600401808060200182810382526021815260200180611e696021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60006114d583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061139b565b611c0282826116ca565b15611c54576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611cad57508115155b949350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611cf657805160ff1916838001178555611d23565b82800160010185558215611d23579182015b82811115611d23578251825591602001919060010190611d08565b50611d2f929150611d33565b5090565b61073691905b80821115611d2f5760008155600101611d3956fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737343616e5265636c61696d546f6b656e733a20746f6b656e206973206e6f74207265636f76657261626c6545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f70657261746f72526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204f70657261746f7220726f6c654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158208b992e6f8f7356863ce3a3d75cb91c7f44d30d0a64f6b005c3d9ccff8c6412eb64736f6c634300050c0032
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.