ERC-20
Overview
Max Total Supply
1,000,000,000 ME
Holders
100
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.000000001 MEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ME
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
Yes with 1336 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.23; // Local Imports import "./IME.sol"; /** * MOLECULAR ENTITY - Enter the realm of generational wealth * * Years in the future, the digital world was dominated by meme inspired cryptocurrencies. * Among them, "Molecular Entity" emerged as an anomaly, breaking the stereotype of meme coins lacking real world utility. * In the Matrix of decentralized finance, Molecular Entity was designed to unlock new dimensions of utility. Its utility * included sustainable initiatives, supporting eco friendly projects through a Proof of Environmental Stewardship consensus mechanism. * As users engaged in the Molecular Entity ecosystem, they discovered a revolutionary meme-powered energy platform. * The coin's unique utility harnessed the collective power of memes to incentivize clean energy initiatives. * Users could stake Molecular Entity tokens to fund renewable energy projects, earning rewards in return. * The story unfolded as the Molecular Energy community grew, rallying behind the shared goal of a greener future. * Memes became not just a source of humor but a driving force for positive change. The utility expanded further, * integrating decentralized applications for eco conscious living, sustainable supply chains, and community-driven governance. * * Amidst the evolving narrative, Molecular Entity’s utility became a symbol of how meme coins could transcend their * playful origins. The story left a lasting impact on the decentralized world, illustrating the potential to * catalyze meaningful advancements in technology and sustainability. * * Site - https://molecularentity.org/ * Tele - https://t.me/MolecularEntity/ * X - https://twitter.com/MolecularEntity */ contract ME is IME, Context, Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private bots; uint256 firstBlock; uint256 private _initialBuyTax = 0; uint256 private _initialSellTax = 0; uint256 private _finalBuyTax = 1; uint256 private _finalSellTax = 1; uint256 private _reduceBuyTaxAt = 30; uint256 private _reduceSellTaxAt = 40; uint256 private _preventSwapBefore = 5; uint256 private _buyCount = 0; uint8 private constant _decimals = 9; uint256 private constant _tTotal = 1000000000 * 10 ** _decimals; string private constant _name = unicode"Molecular Entity"; string private constant _symbol = unicode"ME"; uint256 public _maxTxAmount = 20000000 * 10 ** _decimals; uint256 public _maxWalletSize = 20000000 * 10 ** _decimals; uint256 public _taxSwapThreshold = 5000000 * 10 ** _decimals; uint256 public _maxTaxSwap = 5000000 * 10 ** _decimals; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; address payable private _taxWallet; address payable private _devWallet; address payable private _teamWallet; modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor() Ownable(_msgSender()) { _taxWallet = payable(0xb4D205aeeB1419e7cd22C36E6dF79524CD31e29d); _devWallet = payable(0x5840660584fA4d9211A9Db7B86637d8642184ab8); _teamWallet = payable(0x2D26705aE86293f24FFE3A00085E6FB0F22cbf16); _balances[address(this)] = 900000000 * 10 ** _decimals; _balances[_devWallet] = 50000000 * 10 ** _decimals; _balances[_teamWallet] = 50000000 * 10 ** _decimals; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_taxWallet] = true; _isExcludedFromFee[_devWallet] = true; _isExcludedFromFee[_teamWallet] = true; emit Transfer(address(0), address(this), _balances[address(this)]); emit Transfer(address(0), _devWallet, _balances[_devWallet]); emit Transfer(address(0), _teamWallet, _balances[_teamWallet]); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer( address recipient, uint256 amount ) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance( address owner, address spender ) public view override returns (uint256) { return _allowances[owner][spender]; } function approve( address spender, uint256 amount ) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function _approve(address owner, address spender, uint256 amount) private { 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); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); uint256 taxAmount = 0; if (from != owner() && to != owner()) { require(!bots[from] && !bots[to]); taxAmount = amount .mul( (_buyCount > _reduceBuyTaxAt) ? _finalBuyTax : _initialBuyTax ) .div(100); if ( from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] ) { require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount."); require( balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize." ); if (firstBlock + 3 > block.number) { require(!isContract(to)); } _buyCount++; } if (to != uniswapV2Pair && !_isExcludedFromFee[to]) { require( balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize." ); } if (to == uniswapV2Pair && from != address(this)) { taxAmount = amount .mul( (_buyCount > _reduceSellTaxAt) ? _finalSellTax : _initialSellTax ) .div(100); } uint256 contractTokenBalance = balanceOf(address(this)); if ( !inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > _taxSwapThreshold && _buyCount > _preventSwapBefore ) { swapTokensForEth( min(amount, min(contractTokenBalance, _maxTaxSwap)) ); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } if (taxAmount > 0) { _balances[address(this)] = _balances[address(this)].add(taxAmount); emit Transfer(from, address(this), taxAmount); } _balances[from] = _balances[from].sub(amount); _balances[to] = _balances[to].add(amount.sub(taxAmount)); emit Transfer(from, to, amount.sub(taxAmount)); } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } function isContract(address account) private view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function removeLimits() external onlyOwner { _maxTxAmount = _tTotal; _maxWalletSize = _tTotal; emit MaxTxAmountUpdated(_tTotal); } function reduceTax() public onlyOwner { _initialBuyTax = 1; _initialSellTax = 1; _finalBuyTax = 1; _finalBuyTax = 1; } function sendETHToFee(uint256 amount) private { _taxWallet.transfer(amount); } function addBots(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function delBots(address[] memory notbot) public onlyOwner { for (uint i = 0; i < notbot.length; i++) { bots[notbot[i]] = false; } } function isBot(address a) public view returns (bool) { return bots[a]; } function openTrading() external onlyOwner { require(!tradingOpen, "trading is already open"); uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); swapEnabled = true; tradingOpen = true; firstBlock = block.number; _initialBuyTax = 80; _initialSellTax = 80; } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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 pragma solidity 0.8.23; // Local Imports import "./math/SafeMath.sol"; import "./uniswap/IUniswapV2Factory.sol"; import "./uniswap/IUniswapV2Router02.sol"; // NPM Imports import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IME is IERC20 { event MaxTxAmountUpdated(uint value); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.23; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.23; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint ); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function createPair( address tokenA, address tokenB ) external returns (address pair); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function swapTokensForExactETH( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactTokensForETH( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapETHForExactTokens( uint amountOut, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function quote( uint amountA, uint reserveA, uint reserveB ) external pure returns (uint amountB); function getAmountOut( uint amountIn, uint reserveIn, uint reserveOut ) external pure returns (uint amountOut); function getAmountIn( uint amountOut, uint reserveIn, uint reserveOut ) external pure returns (uint amountIn); function getAmountsOut( uint amountIn, address[] calldata path ) external view returns (uint[] memory amounts); function getAmountsIn( uint amountOut, address[] calldata path ) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "optimizer": { "enabled": true, "runs": 1336 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"MaxTxAmountUpdated","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":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"addBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"notbot","type":"address[]"}],"name":"delBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reduceTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526000600655600060075560016008556001600955601e600a556028600b556005600c556000600d556009600a6200003c9190620004b5565b6200004c906301312d00620004cd565b600e556200005d6009600a620004b5565b6200006d906301312d00620004cd565b600f556200007e6009600a620004b5565b6200008d90624c4b40620004cd565b6010556200009e6009600a620004b5565b620000ad90624c4b40620004cd565b6011556013805461ffff60a81b19169055348015620000cb57600080fd5b503380620000f357604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b620000fe8162000350565b50601480546001600160a01b031990811673b4d205aeeb1419e7cd22c36e6df79524cd31e29d17909155601580548216735840660584fa4d9211a9db7b86637d8642184ab817905560168054909116732d26705ae86293f24ffe3a00085e6fb0f22cbf16179055620001736009600a620004b5565b62000183906335a4e900620004cd565b30600090815260016020526040902055620001a16009600a620004b5565b620001b1906302faf080620004cd565b6015546001600160a01b0316600090815260016020526040902055620001da6009600a620004b5565b620001ea906302faf080620004cd565b6016546001600160a01b03166000908152600160208190526040822092909255600390620002206000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308082526003855283822080548716600190811790915560145484168352848320805488168217905560155484168352848320805488168217905560165490931682528382208054909616831790955584815292528082205490516000805160206200222a83398151915291620002c89190815260200190565b60405180910390a36015546001600160a01b031660008181526001602090815260408083205490519081526000805160206200222a833981519152910160405180910390a36016546001600160a01b031660008181526001602090815260408083205490519081526000805160206200222a833981519152910160405180910390a3620004e7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003f7578160001904821115620003db57620003db620003a0565b80851615620003e957918102915b93841c9390800290620003bb565b509250929050565b6000826200041057506001620004af565b816200041f57506000620004af565b8160018114620004385760028114620004435762000463565b6001915050620004af565b60ff841115620004575762000457620003a0565b50506001821b620004af565b5060208310610133831016604e8410600b841016171562000488575081810a620004af565b620004948383620003b6565b8060001904821115620004ab57620004ab620003a0565b0290505b92915050565b6000620004c660ff841683620003ff565b9392505050565b8082028115828204841417620004af57620004af620003a0565b611d3380620004f76000396000f3fe6080604052600436106101795760003560e01c8063751039fc116100cb578063a9059cbb1161007f578063d34628cc11610059578063d34628cc14610437578063dd62ed3e14610457578063f2fde38b1461049d57600080fd5b8063a9059cbb146103ec578063bf474bed1461040c578063c9567bf91461042257600080fd5b80638da5cb5b116100b05780638da5cb5b146103685780638f9a55c01461039057806395d89b41146103a657600080fd5b8063751039fc1461033d5780637d1db4a51461035257600080fd5b8063313ce5671161012d57806341fb0d211161010757806341fb0d21146102dd57806370a08231146102f2578063715018a61461032857600080fd5b8063313ce5671461026657806331c2d847146102825780633bbac579146102a457600080fd5b80630faee56f1161015e5780630faee56f1461020d57806318160ddd1461023157806323b872dd1461024657600080fd5b806306fdde0314610185578063095ea7b3146101dd57600080fd5b3661018057005b600080fd5b34801561019157600080fd5b5060408051808201909152601081527f4d6f6c6563756c617220456e746974790000000000000000000000000000000060208201525b6040516101d4919061184c565b60405180910390f35b3480156101e957600080fd5b506101fd6101f83660046118c0565b6104bd565b60405190151581526020016101d4565b34801561021957600080fd5b5061022360115481565b6040519081526020016101d4565b34801561023d57600080fd5b506102236104d4565b34801561025257600080fd5b506101fd6102613660046118ec565b6104f5565b34801561027257600080fd5b50604051600981526020016101d4565b34801561028e57600080fd5b506102a261029d366004611943565b61055e565b005b3480156102b057600080fd5b506101fd6102bf366004611a08565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156102e957600080fd5b506102a26105c8565b3480156102fe57600080fd5b5061022361030d366004611a08565b6001600160a01b031660009081526001602052604090205490565b34801561033457600080fd5b506102a26105e1565b34801561034957600080fd5b506102a26105f5565b34801561035e57600080fd5b50610223600e5481565b34801561037457600080fd5b506000546040516001600160a01b0390911681526020016101d4565b34801561039c57600080fd5b50610223600f5481565b3480156103b257600080fd5b5060408051808201909152600281527f4d4500000000000000000000000000000000000000000000000000000000000060208201526101c7565b3480156103f857600080fd5b506101fd6104073660046118c0565b610685565b34801561041857600080fd5b5061022360105481565b34801561042e57600080fd5b506102a2610692565b34801561044357600080fd5b506102a2610452366004611943565b610add565b34801561046357600080fd5b50610223610472366004611a25565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156104a957600080fd5b506102a26104b8366004611a08565b610b43565b60006104ca338484610b9a565b5060015b92915050565b60006104e26009600a611b58565b6104f090633b9aca00611b67565b905090565b6000610502848484610cf2565b610554843361054f85604051806060016040528060288152602001611cd6602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190611376565b610b9a565b5060019392505050565b6105666113b0565b60005b81518110156105c45760006004600084848151811061058a5761058a611b7e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610569565b5050565b6105d06113b0565b600160068190556007819055600855565b6105e96113b0565b6105f360006113f6565b565b6105fd6113b0565b6106096009600a611b58565b61061790633b9aca00611b67565b600e556106266009600a611b58565b61063490633b9aca00611b67565b600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6106646009600a611b58565b61067290633b9aca00611b67565b60405190815260200160405180910390a1565b60006104ca338484610cf2565b61069a6113b0565b60135474010000000000000000000000000000000000000000900460ff161561070a5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064015b60405180910390fd5b6012805473ffffffffffffffffffffffffffffffffffffffff1916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556107609030906107526009600a611b58565b61054f90633b9aca00611b67565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d79190611b94565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085d9190611b94565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156108c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e69190611b94565b601380546001600160a01b0392831673ffffffffffffffffffffffffffffffffffffffff199091161790556012541663f305d719473061093b816001600160a01b031660009081526001602052604090205490565b6000806109506000546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156109d0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109f59190611bb1565b50506013546012546040517f095ea7b30000000000000000000000000000000000000000000000000000000081526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610a67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8b9190611bdf565b50601380547fffffffffffffffffff00ff00ffffffffffffffffffffffffffffffffffffffff167601000100000000000000000000000000000000000000001790554360055560506006819055600755565b610ae56113b0565b60005b81518110156105c457600160046000848481518110610b0957610b09611b7e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610ae8565b610b4b6113b0565b6001600160a01b038116610b8e576040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260006004820152602401610701565b610b97816113f6565b50565b6001600160a01b038316610c155760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610701565b6001600160a01b038216610c915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610701565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d6e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610701565b6001600160a01b038216610dea5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610701565b60008111610e605760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610701565b600080546001600160a01b03858116911614801590610e8d57506000546001600160a01b03848116911614155b15611233576001600160a01b03841660009081526004602052604090205460ff16158015610ed457506001600160a01b03831660009081526004602052604090205460ff16155b610edd57600080fd5b610f096064610f03600a54600d5411610ef857600654610efc565b6008545b8590611453565b906114f8565b6013549091506001600160a01b038581169116148015610f3757506012546001600160a01b03848116911614155b8015610f5c57506001600160a01b03831660009081526003602052604090205460ff16155b1561106657600e54821115610fb35760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e000000000000006044820152606401610701565b600f5482610fd6856001600160a01b031660009081526001602052604090205490565b610fe09190611c01565b111561102e5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610701565b43600554600361103e9190611c01565b111561105057823b1561105057600080fd5b600d805490600061106083611c14565b91905055505b6013546001600160a01b0384811691161480159061109d57506001600160a01b03831660009081526003602052604090205460ff16155b1561111d57600f54826110c5856001600160a01b031660009081526001602052604090205490565b6110cf9190611c01565b111561111d5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610701565b6013546001600160a01b03848116911614801561114357506001600160a01b0384163014155b156111705761116d6064610f03600b54600d541161116357600754610efc565b6009548590611453565b90505b306000908152600160205260409020546013547501000000000000000000000000000000000000000000900460ff161580156111b957506013546001600160a01b038581169116145b80156111e15750601354760100000000000000000000000000000000000000000000900460ff165b80156111ee575060105481115b80156111fd5750600c54600d54115b156112315761121f61121a846112158460115461153a565b61153a565b61154f565b47801561122f5761122f47611743565b505b505b80156112ad5730600090815260016020526040902054611253908261177d565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906112a49085815260200190565b60405180910390a35b6001600160a01b0384166000908152600160205260409020546112d090836117dc565b6001600160a01b0385166000908152600160205260409020556113156112f683836117dc565b6001600160a01b0385166000908152600160205260409020549061177d565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61135f85856117dc565b60405190815260200160405180910390a350505050565b6000818484111561139a5760405162461bcd60e51b8152600401610701919061184c565b5060006113a78486611c2d565b95945050505050565b6000546001600160a01b031633146105f3576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610701565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600082600003611465575060006104ce565b60006114718385611b67565b90508261147e8583611c40565b146114f15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152608401610701565b9392505050565b60006114f183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061181e565b600081831161154957826114f1565b50919050565b601380547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16750100000000000000000000000000000000000000000017905560408051600280825260608201835260009260208301908036833701905050905030816000815181106115c4576115c4611b7e565b6001600160a01b03928316602091820292909201810191909152601254604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015611636573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165a9190611b94565b8160018151811061166d5761166d611b7e565b6001600160a01b0392831660209182029290920101526012546116939130911684610b9a565b6012546040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063791ac947906116e5908590600090869030904290600401611c62565b600060405180830381600087803b1580156116ff57600080fd5b505af1158015611713573d6000803e3d6000fd5b5050601380547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16905550505050565b6014546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156105c4573d6000803e3d6000fd5b60008061178a8385611c01565b9050838110156114f15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610701565b60006114f183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611376565b6000818361183f5760405162461bcd60e51b8152600401610701919061184c565b5060006113a78486611c40565b60006020808352835180602085015260005b8181101561187a5785810183015185820160400152820161185e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b9757600080fd5b80356118bb8161189b565b919050565b600080604083850312156118d357600080fd5b82356118de8161189b565b946020939093013593505050565b60008060006060848603121561190157600080fd5b833561190c8161189b565b9250602084013561191c8161189b565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561195657600080fd5b823567ffffffffffffffff8082111561196e57600080fd5b818501915085601f83011261198257600080fd5b8135818111156119945761199461192d565b8060051b604051601f19603f830116810181811085821117156119b9576119b961192d565b6040529182528482019250838101850191888311156119d757600080fd5b938501935b828510156119fc576119ed856118b0565b845293850193928501926119dc565b98975050505050505050565b600060208284031215611a1a57600080fd5b81356114f18161189b565b60008060408385031215611a3857600080fd5b8235611a438161189b565b91506020830135611a538161189b565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115611aaf578160001904821115611a9557611a95611a5e565b80851615611aa257918102915b93841c9390800290611a79565b509250929050565b600082611ac6575060016104ce565b81611ad3575060006104ce565b8160018114611ae95760028114611af357611b0f565b60019150506104ce565b60ff841115611b0457611b04611a5e565b50506001821b6104ce565b5060208310610133831016604e8410600b8410161715611b32575081810a6104ce565b611b3c8383611a74565b8060001904821115611b5057611b50611a5e565b029392505050565b60006114f160ff841683611ab7565b80820281158282048414176104ce576104ce611a5e565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611ba657600080fd5b81516114f18161189b565b600080600060608486031215611bc657600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215611bf157600080fd5b815180151581146114f157600080fd5b808201808211156104ce576104ce611a5e565b600060018201611c2657611c26611a5e565b5060010190565b818103818111156104ce576104ce611a5e565b600082611c5d57634e487b7160e01b600052601260045260246000fd5b500490565b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b81811015611cb45784516001600160a01b031683529383019391830191600101611c8f565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220bbb4353550f56c9957ceb4ecfe7783783bfead4e58daaaae44e5de50750db4bc64736f6c63430008170033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x6080604052600436106101795760003560e01c8063751039fc116100cb578063a9059cbb1161007f578063d34628cc11610059578063d34628cc14610437578063dd62ed3e14610457578063f2fde38b1461049d57600080fd5b8063a9059cbb146103ec578063bf474bed1461040c578063c9567bf91461042257600080fd5b80638da5cb5b116100b05780638da5cb5b146103685780638f9a55c01461039057806395d89b41146103a657600080fd5b8063751039fc1461033d5780637d1db4a51461035257600080fd5b8063313ce5671161012d57806341fb0d211161010757806341fb0d21146102dd57806370a08231146102f2578063715018a61461032857600080fd5b8063313ce5671461026657806331c2d847146102825780633bbac579146102a457600080fd5b80630faee56f1161015e5780630faee56f1461020d57806318160ddd1461023157806323b872dd1461024657600080fd5b806306fdde0314610185578063095ea7b3146101dd57600080fd5b3661018057005b600080fd5b34801561019157600080fd5b5060408051808201909152601081527f4d6f6c6563756c617220456e746974790000000000000000000000000000000060208201525b6040516101d4919061184c565b60405180910390f35b3480156101e957600080fd5b506101fd6101f83660046118c0565b6104bd565b60405190151581526020016101d4565b34801561021957600080fd5b5061022360115481565b6040519081526020016101d4565b34801561023d57600080fd5b506102236104d4565b34801561025257600080fd5b506101fd6102613660046118ec565b6104f5565b34801561027257600080fd5b50604051600981526020016101d4565b34801561028e57600080fd5b506102a261029d366004611943565b61055e565b005b3480156102b057600080fd5b506101fd6102bf366004611a08565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156102e957600080fd5b506102a26105c8565b3480156102fe57600080fd5b5061022361030d366004611a08565b6001600160a01b031660009081526001602052604090205490565b34801561033457600080fd5b506102a26105e1565b34801561034957600080fd5b506102a26105f5565b34801561035e57600080fd5b50610223600e5481565b34801561037457600080fd5b506000546040516001600160a01b0390911681526020016101d4565b34801561039c57600080fd5b50610223600f5481565b3480156103b257600080fd5b5060408051808201909152600281527f4d4500000000000000000000000000000000000000000000000000000000000060208201526101c7565b3480156103f857600080fd5b506101fd6104073660046118c0565b610685565b34801561041857600080fd5b5061022360105481565b34801561042e57600080fd5b506102a2610692565b34801561044357600080fd5b506102a2610452366004611943565b610add565b34801561046357600080fd5b50610223610472366004611a25565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156104a957600080fd5b506102a26104b8366004611a08565b610b43565b60006104ca338484610b9a565b5060015b92915050565b60006104e26009600a611b58565b6104f090633b9aca00611b67565b905090565b6000610502848484610cf2565b610554843361054f85604051806060016040528060288152602001611cd6602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190611376565b610b9a565b5060019392505050565b6105666113b0565b60005b81518110156105c45760006004600084848151811061058a5761058a611b7e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610569565b5050565b6105d06113b0565b600160068190556007819055600855565b6105e96113b0565b6105f360006113f6565b565b6105fd6113b0565b6106096009600a611b58565b61061790633b9aca00611b67565b600e556106266009600a611b58565b61063490633b9aca00611b67565b600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6106646009600a611b58565b61067290633b9aca00611b67565b60405190815260200160405180910390a1565b60006104ca338484610cf2565b61069a6113b0565b60135474010000000000000000000000000000000000000000900460ff161561070a5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064015b60405180910390fd5b6012805473ffffffffffffffffffffffffffffffffffffffff1916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556107609030906107526009600a611b58565b61054f90633b9aca00611b67565b601260009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d79190611b94565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085d9190611b94565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156108c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e69190611b94565b601380546001600160a01b0392831673ffffffffffffffffffffffffffffffffffffffff199091161790556012541663f305d719473061093b816001600160a01b031660009081526001602052604090205490565b6000806109506000546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156109d0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109f59190611bb1565b50506013546012546040517f095ea7b30000000000000000000000000000000000000000000000000000000081526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610a67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8b9190611bdf565b50601380547fffffffffffffffffff00ff00ffffffffffffffffffffffffffffffffffffffff167601000100000000000000000000000000000000000000001790554360055560506006819055600755565b610ae56113b0565b60005b81518110156105c457600160046000848481518110610b0957610b09611b7e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101610ae8565b610b4b6113b0565b6001600160a01b038116610b8e576040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260006004820152602401610701565b610b97816113f6565b50565b6001600160a01b038316610c155760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610701565b6001600160a01b038216610c915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610701565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d6e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610701565b6001600160a01b038216610dea5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610701565b60008111610e605760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610701565b600080546001600160a01b03858116911614801590610e8d57506000546001600160a01b03848116911614155b15611233576001600160a01b03841660009081526004602052604090205460ff16158015610ed457506001600160a01b03831660009081526004602052604090205460ff16155b610edd57600080fd5b610f096064610f03600a54600d5411610ef857600654610efc565b6008545b8590611453565b906114f8565b6013549091506001600160a01b038581169116148015610f3757506012546001600160a01b03848116911614155b8015610f5c57506001600160a01b03831660009081526003602052604090205460ff16155b1561106657600e54821115610fb35760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e000000000000006044820152606401610701565b600f5482610fd6856001600160a01b031660009081526001602052604090205490565b610fe09190611c01565b111561102e5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610701565b43600554600361103e9190611c01565b111561105057823b1561105057600080fd5b600d805490600061106083611c14565b91905055505b6013546001600160a01b0384811691161480159061109d57506001600160a01b03831660009081526003602052604090205460ff16155b1561111d57600f54826110c5856001600160a01b031660009081526001602052604090205490565b6110cf9190611c01565b111561111d5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610701565b6013546001600160a01b03848116911614801561114357506001600160a01b0384163014155b156111705761116d6064610f03600b54600d541161116357600754610efc565b6009548590611453565b90505b306000908152600160205260409020546013547501000000000000000000000000000000000000000000900460ff161580156111b957506013546001600160a01b038581169116145b80156111e15750601354760100000000000000000000000000000000000000000000900460ff165b80156111ee575060105481115b80156111fd5750600c54600d54115b156112315761121f61121a846112158460115461153a565b61153a565b61154f565b47801561122f5761122f47611743565b505b505b80156112ad5730600090815260016020526040902054611253908261177d565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906112a49085815260200190565b60405180910390a35b6001600160a01b0384166000908152600160205260409020546112d090836117dc565b6001600160a01b0385166000908152600160205260409020556113156112f683836117dc565b6001600160a01b0385166000908152600160205260409020549061177d565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61135f85856117dc565b60405190815260200160405180910390a350505050565b6000818484111561139a5760405162461bcd60e51b8152600401610701919061184c565b5060006113a78486611c2d565b95945050505050565b6000546001600160a01b031633146105f3576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610701565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600082600003611465575060006104ce565b60006114718385611b67565b90508261147e8583611c40565b146114f15760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152608401610701565b9392505050565b60006114f183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061181e565b600081831161154957826114f1565b50919050565b601380547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16750100000000000000000000000000000000000000000017905560408051600280825260608201835260009260208301908036833701905050905030816000815181106115c4576115c4611b7e565b6001600160a01b03928316602091820292909201810191909152601254604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015611636573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165a9190611b94565b8160018151811061166d5761166d611b7e565b6001600160a01b0392831660209182029290920101526012546116939130911684610b9a565b6012546040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063791ac947906116e5908590600090869030904290600401611c62565b600060405180830381600087803b1580156116ff57600080fd5b505af1158015611713573d6000803e3d6000fd5b5050601380547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16905550505050565b6014546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156105c4573d6000803e3d6000fd5b60008061178a8385611c01565b9050838110156114f15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610701565b60006114f183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611376565b6000818361183f5760405162461bcd60e51b8152600401610701919061184c565b5060006113a78486611c40565b60006020808352835180602085015260005b8181101561187a5785810183015185820160400152820161185e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b9757600080fd5b80356118bb8161189b565b919050565b600080604083850312156118d357600080fd5b82356118de8161189b565b946020939093013593505050565b60008060006060848603121561190157600080fd5b833561190c8161189b565b9250602084013561191c8161189b565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561195657600080fd5b823567ffffffffffffffff8082111561196e57600080fd5b818501915085601f83011261198257600080fd5b8135818111156119945761199461192d565b8060051b604051601f19603f830116810181811085821117156119b9576119b961192d565b6040529182528482019250838101850191888311156119d757600080fd5b938501935b828510156119fc576119ed856118b0565b845293850193928501926119dc565b98975050505050505050565b600060208284031215611a1a57600080fd5b81356114f18161189b565b60008060408385031215611a3857600080fd5b8235611a438161189b565b91506020830135611a538161189b565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115611aaf578160001904821115611a9557611a95611a5e565b80851615611aa257918102915b93841c9390800290611a79565b509250929050565b600082611ac6575060016104ce565b81611ad3575060006104ce565b8160018114611ae95760028114611af357611b0f565b60019150506104ce565b60ff841115611b0457611b04611a5e565b50506001821b6104ce565b5060208310610133831016604e8410600b8410161715611b32575081810a6104ce565b611b3c8383611a74565b8060001904821115611b5057611b50611a5e565b029392505050565b60006114f160ff841683611ab7565b80820281158282048414176104ce576104ce611a5e565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611ba657600080fd5b81516114f18161189b565b600080600060608486031215611bc657600080fd5b8351925060208401519150604084015190509250925092565b600060208284031215611bf157600080fd5b815180151581146114f157600080fd5b808201808211156104ce576104ce611a5e565b600060018201611c2657611c26611a5e565b5060010190565b818103818111156104ce576104ce611a5e565b600082611c5d57634e487b7160e01b600052601260045260246000fd5b500490565b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b81811015611cb45784516001600160a01b031683529383019391830191600101611c8f565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220bbb4353550f56c9957ceb4ecfe7783783bfead4e58daaaae44e5de50750db4bc64736f6c63430008170033
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.