ERC-20
Overview
Max Total Supply
1,000,000,000,000 MOODY
Holders
4
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,037,771,820.166151441989527543 MOODYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
MoodyInu
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-19 */ pragma solidity ^0.6.10; // SPDX-License-Identifier: UNLICENSED /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } // File: openzeppelin-solidity/contracts/math/SafeMath.sol /** * @title SafeMath * @dev Unsigned math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } // File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md * Originally based on code by FirstBlood: * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol * * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for * all accounts just by listening to said events. Note that this isn't required by the specification, and other * compliant implementations may not do it. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; uint256 public maxWallet = 1000000000000e18; mapping(address => bool) public Limtcheck; constructor () public { _name = "Moody Inu"; _symbol = "MOODY"; _decimals = 18; } /** * @return the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @return the symbol of the token. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @return the number of decimals of the token. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev Total number of tokens in existence */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev Gets the balance of the specified address. * @param owner The address to query the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address owner) public view override returns (uint256) { return _balances[owner]; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param owner address The address which owns the funds. * @param spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address owner, address spender) public view override returns (uint256) { return _allowed[owner][spender]; } /** * @dev Transfer token for a specified address * @param to The address to transfer to. * @param value The amount to be transferred. */ function transfer(address to, uint256 value) public virtual override returns (bool) { _transfer(msg.sender, to, value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * 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 * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint256 value) public virtual override returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } /** * @dev Transfer tokens from one address to another. * Note that while this function emits an Approval event, this is not required as per the specification, * and other compliant implementations may not emit the event. * @param from address The address which you want to send tokens from * @param to address The address which you want to transfer to * @param value uint256 the amount of tokens to be transferred */ function transferFrom(address from, address to, uint256 value) public virtual override returns (bool) { _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); _transfer(from, to, value); emit Approval(from, msg.sender, _allowed[from][msg.sender]); return true; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = _allowed[msg.sender][spender].add(addedValue); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Transfer token for a specified addresses * @param from The address to transfer from. * @param to The address to transfer to. * @param value The amount to be transferred. */ function _transfer(address from, address to, uint256 value) internal { require(to != address(0)); if(!Limtcheck[to]){ require(_balances[to].add(value) <= maxWallet,"Tx Limit Exceed");} _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } function _init(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.add(value); _balances[account] = _balances[account].add(value); emit Transfer(address(0), account, value); } } // File: @openzeppelin/contracts/access/Ownable.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. */ 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 () internal { _owner = _msgSender(); emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // 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); } // pragma solidity >=0.6.2; 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; } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); 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 createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: Token-contracts/ERC20.sol contract MoodyInu is ERC20, Ownable { address public uniswapV2Pair; IUniswapV2Router02 public uniswapV2Router; constructor () public ERC20 () { _createpair(); _init(msg.sender,1000000000000e18); } function updateMaxwallet(uint256 _amount) public onlyOwner { maxWallet=_amount; } function _createpair() internal { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; Limtcheck[msg.sender]=true; Limtcheck[uniswapV2Pair]=true; Limtcheck[address(uniswapV2Router)]=true; } function updateLimtcheck(address addr) public onlyOwner { Limtcheck[addr]=true; } }
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":"","type":"address"}],"name":"Limtcheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"updateLimtcheck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"updateMaxwallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526c0c9f2c9cd04674edea400000006006553480156200002257600080fd5b50604080518082019091526009808252684d6f6f647920496e7560b81b60209092019182526200005591600391620003db565b50604080518082019091526005808252644d4f4f445960d81b60209092019182526200008491600491620003db565b506005805460ff191660121790556200009c62000111565b600880546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3620000f262000115565b6200010b336c0c9f2c9cd04674edea4000000062000308565b62000477565b3390565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200016857600080fd5b505afa1580156200017d573d6000803e3d6000fd5b505050506040513d60208110156200019457600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620001e557600080fd5b505afa158015620001fa573d6000803e3d6000fd5b505050506040513d60208110156200021157600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200026457600080fd5b505af115801562000279573d6000803e3d6000fd5b505050506040513d60208110156200029057600080fd5b5051600980546001600160a01b03199081166001600160a01b03938416178255600a805490911693831693909317835533600090815260076020526040808220805460ff1990811660019081179092559354851683528183208054851682179055945490931681529190912080549091169091179055565b6001600160a01b0382166200031c57600080fd5b6200033881600254620003c160201b62000a591790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200036b91839062000a59620003c1821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082820183811015620003d457600080fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200041e57805160ff19168380011785556200044e565b828001600101855582156200044e579182015b828111156200044e57825182559160200191906001019062000431565b506200045c92915062000460565b5090565b5b808211156200045c576000815560010162000461565b610c5180620004876000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d71461035d578063a9059cbb14610389578063dd62ed3e146103b5578063f2fde38b146103e3578063f8b45b05146104095761012c565b806370a08231146102f9578063715018a61461031f57806372b7685d146103275780638da5cb5b1461034d57806395d89b41146103555761012c565b806323b872dd116100f457806323b872dd1461024b578063313ce56714610281578063395093511461029f57806349bd5a5e146102cb5780635f9d9d59146102d35761012c565b8063029fc8361461013157806306fdde0314610150578063095ea7b3146101cd5780631694505e1461020d57806318160ddd14610231575b600080fd5b61014e6004803603602081101561014757600080fd5b5035610411565b005b61015861046e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019257818101518382015260200161017a565b50505050905090810190601f1680156101bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f9600480360360408110156101e357600080fd5b506001600160a01b038135169060200135610504565b604080519115158252519081900360200190f35b610215610580565b604080516001600160a01b039092168252519081900360200190f35b61023961058f565b60408051918252519081900360200190f35b6101f96004803603606081101561026157600080fd5b506001600160a01b03813581169160208101359091169060400135610595565b610289610658565b6040805160ff9092168252519081900360200190f35b6101f9600480360360408110156102b557600080fd5b506001600160a01b038135169060200135610661565b610215610709565b61014e600480360360208110156102e957600080fd5b50356001600160a01b0316610718565b6102396004803603602081101561030f57600080fd5b50356001600160a01b0316610794565b61014e6107af565b6101f96004803603602081101561033d57600080fd5b50356001600160a01b0316610851565b610215610866565b610158610875565b6101f96004803603604081101561037357600080fd5b506001600160a01b0381351690602001356108d6565b6101f96004803603604081101561039f57600080fd5b506001600160a01b038135169060200135610919565b610239600480360360408110156103cb57600080fd5b506001600160a01b038135811691602001351661092f565b61014e600480360360208110156103f957600080fd5b50356001600160a01b031661095a565b610239610a53565b610419610a72565b6008546001600160a01b03908116911614610469576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b600655565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104fa5780601f106104cf576101008083540402835291602001916104fa565b820191906000526020600020905b8154815290600101906020018083116104dd57829003601f168201915b5050505050905090565b60006001600160a01b03831661051957600080fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600a546001600160a01b031681565b60025490565b6001600160a01b03831660009081526001602090815260408083203384529091528120546105c39083610a76565b6001600160a01b03851660009081526001602090815260408083203384529091529020556105f2848484610a8b565b6001600160a01b0384166000818152600160209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60055460ff1690565b60006001600160a01b03831661067657600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546106a49083610a59565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6009546001600160a01b031681565b610720610a72565b6008546001600160a01b03908116911614610770576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6001600160a01b031660009081526020819052604090205490565b6107b7610a72565b6008546001600160a01b03908116911614610807576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880546001600160a01b0319169055565b60076020526000908152604090205460ff1681565b6008546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104fa5780601f106104cf576101008083540402835291602001916104fa565b60006001600160a01b0383166108eb57600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546106a49083610a76565b6000610926338484610a8b565b50600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610962610a72565b6008546001600160a01b039081169116146109b2576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6001600160a01b0381166109f75760405162461bcd60e51b8152600401808060200182810382526026815260200180610bd66026913960400191505060405180910390fd5b6008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b60065481565b600082820183811015610a6b57600080fd5b9392505050565b3390565b600082821115610a8557600080fd5b50900390565b6001600160a01b038216610a9e57600080fd5b6001600160a01b03821660009081526007602052604090205460ff16610b29576006546001600160a01b038316600090815260208190526040902054610ae49083610a59565b1115610b29576040805162461bcd60e51b815260206004820152600f60248201526e151e08131a5b5a5d08115e18d95959608a1b604482015290519081900360640190fd5b6001600160a01b038316600090815260208190526040902054610b4c9082610a76565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b7b9082610a59565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220574d9e3ad8e4069a47665f1ee9a9faa5991cfd714a0a930a5e624e8babde043364736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d71461035d578063a9059cbb14610389578063dd62ed3e146103b5578063f2fde38b146103e3578063f8b45b05146104095761012c565b806370a08231146102f9578063715018a61461031f57806372b7685d146103275780638da5cb5b1461034d57806395d89b41146103555761012c565b806323b872dd116100f457806323b872dd1461024b578063313ce56714610281578063395093511461029f57806349bd5a5e146102cb5780635f9d9d59146102d35761012c565b8063029fc8361461013157806306fdde0314610150578063095ea7b3146101cd5780631694505e1461020d57806318160ddd14610231575b600080fd5b61014e6004803603602081101561014757600080fd5b5035610411565b005b61015861046e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019257818101518382015260200161017a565b50505050905090810190601f1680156101bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f9600480360360408110156101e357600080fd5b506001600160a01b038135169060200135610504565b604080519115158252519081900360200190f35b610215610580565b604080516001600160a01b039092168252519081900360200190f35b61023961058f565b60408051918252519081900360200190f35b6101f96004803603606081101561026157600080fd5b506001600160a01b03813581169160208101359091169060400135610595565b610289610658565b6040805160ff9092168252519081900360200190f35b6101f9600480360360408110156102b557600080fd5b506001600160a01b038135169060200135610661565b610215610709565b61014e600480360360208110156102e957600080fd5b50356001600160a01b0316610718565b6102396004803603602081101561030f57600080fd5b50356001600160a01b0316610794565b61014e6107af565b6101f96004803603602081101561033d57600080fd5b50356001600160a01b0316610851565b610215610866565b610158610875565b6101f96004803603604081101561037357600080fd5b506001600160a01b0381351690602001356108d6565b6101f96004803603604081101561039f57600080fd5b506001600160a01b038135169060200135610919565b610239600480360360408110156103cb57600080fd5b506001600160a01b038135811691602001351661092f565b61014e600480360360208110156103f957600080fd5b50356001600160a01b031661095a565b610239610a53565b610419610a72565b6008546001600160a01b03908116911614610469576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b600655565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104fa5780601f106104cf576101008083540402835291602001916104fa565b820191906000526020600020905b8154815290600101906020018083116104dd57829003601f168201915b5050505050905090565b60006001600160a01b03831661051957600080fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600a546001600160a01b031681565b60025490565b6001600160a01b03831660009081526001602090815260408083203384529091528120546105c39083610a76565b6001600160a01b03851660009081526001602090815260408083203384529091529020556105f2848484610a8b565b6001600160a01b0384166000818152600160209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60055460ff1690565b60006001600160a01b03831661067657600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546106a49083610a59565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6009546001600160a01b031681565b610720610a72565b6008546001600160a01b03908116911614610770576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6001600160a01b031660009081526020819052604090205490565b6107b7610a72565b6008546001600160a01b03908116911614610807576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880546001600160a01b0319169055565b60076020526000908152604090205460ff1681565b6008546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104fa5780601f106104cf576101008083540402835291602001916104fa565b60006001600160a01b0383166108eb57600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546106a49083610a76565b6000610926338484610a8b565b50600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610962610a72565b6008546001600160a01b039081169116146109b2576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6001600160a01b0381166109f75760405162461bcd60e51b8152600401808060200182810382526026815260200180610bd66026913960400191505060405180910390fd5b6008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b60065481565b600082820183811015610a6b57600080fd5b9392505050565b3390565b600082821115610a8557600080fd5b50900390565b6001600160a01b038216610a9e57600080fd5b6001600160a01b03821660009081526007602052604090205460ff16610b29576006546001600160a01b038316600090815260208190526040902054610ae49083610a59565b1115610b29576040805162461bcd60e51b815260206004820152600f60248201526e151e08131a5b5a5d08115e18d95959608a1b604482015290519081900360640190fd5b6001600160a01b038316600090815260208190526040902054610b4c9082610a76565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b7b9082610a59565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220574d9e3ad8e4069a47665f1ee9a9faa5991cfd714a0a930a5e624e8babde043364736f6c634300060c0033
Deployed Bytecode Sourcemap
18871:953:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19142:96;;;;;;;;;;;;;;;;-1:-1:-1;19142:96:0;;:::i;:::-;;4992:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7373:261;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7373:261:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18958:41;;;:::i;:::-;;;;-1:-1:-1;;;;;18958:41:0;;;;;;;;;;;;;;5488:100;;;:::i;:::-;;;;;;;;;;;;;;;;8107:316;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8107:316:0;;;;;;;;;;;;;;;;;:::i;5324:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8938:331;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8938:331:0;;;;;;;;:::i;18924:28::-;;;:::i;19713:96::-;;;;;;;;;;;;;;;;-1:-1:-1;19713:96:0;-1:-1:-1;;;;;19713:96:0;;:::i;5804:115::-;;;;;;;;;;;;;;;;-1:-1:-1;5804:115:0;-1:-1:-1;;;;;5804:115:0;;:::i;12665:148::-;;;:::i;4763:41::-;;;;;;;;;;;;;;;;-1:-1:-1;4763:41:0;-1:-1:-1;;;;;4763:41:0;;:::i;12023:79::-;;;:::i;5150:95::-;;;:::i;9789:341::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;9789:341:0;;;;;;;;:::i;6569:157::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6569:157:0;;;;;;;;:::i;6258:140::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6258:140:0;;;;;;;;;;:::i;12968:244::-;;;;;;;;;;;;;;;;-1:-1:-1;12968:244:0;-1:-1:-1;;;;;12968:244:0;;:::i;4712:43::-;;;:::i;19142:96::-;12245:12;:10;:12::i;:::-;12235:6;;-1:-1:-1;;;;;12235:6:0;;;:22;;;12227:67;;;;;-1:-1:-1;;;12227:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12227:67:0;;;;;;;;;;;;;;;19213:9:::1;:17:::0;19142:96::o;4992:91::-;5070:5;5063:12;;;;;;;;-1:-1:-1;;5063:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5037:13;;5063:12;;5070:5;;5063:12;;5070:5;5063:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4992:91;:::o;7373:261::-;7455:4;-1:-1:-1;;;;;7480:21:0;;7472:30;;;;;;7524:10;7515:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7515:29:0;;;;;;;;;;;;:37;;;7568:36;;;;;;;7515:29;;7524:10;7568:36;;;;;;;;;;;-1:-1:-1;7622:4:0;7373:261;;;;:::o;18958:41::-;;;-1:-1:-1;;;;;18958:41:0;;:::o;5488:100::-;5568:12;;5488:100;:::o;8107:316::-;-1:-1:-1;;;;;8249:14:0;;8203:4;8249:14;;;:8;:14;;;;;;;;8264:10;8249:26;;;;;;;;:37;;8280:5;8249:30;:37::i;:::-;-1:-1:-1;;;;;8220:14:0;;;;;;:8;:14;;;;;;;;8235:10;8220:26;;;;;;;:66;8297:26;8229:4;8313:2;8317:5;8297:9;:26::i;:::-;-1:-1:-1;;;;;8339:54:0;;8366:14;;;;:8;:14;;;;;;;;8354:10;8366:26;;;;;;;;;;;8339:54;;;;;;;8354:10;;8339:54;;;;;;;;;;;;-1:-1:-1;8411:4:0;8107:316;;;;;:::o;5324:91::-;5398:9;;;;5324:91;:::o;8938:331::-;9026:4;-1:-1:-1;;;;;9051:21:0;;9043:30;;;;;;9127:10;9118:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9118:29:0;;;;;;;;;;:45;;9152:10;9118:33;:45::i;:::-;9095:10;9086:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9086:29:0;;;;;;;;;;;;:77;;;9179:60;;;;;;9086:29;;9179:60;;;;;;;;;;;-1:-1:-1;9257:4:0;8938:331;;;;:::o;18924:28::-;;;-1:-1:-1;;;;;18924:28:0;;:::o;19713:96::-;12245:12;:10;:12::i;:::-;12235:6;;-1:-1:-1;;;;;12235:6:0;;;:22;;;12227:67;;;;;-1:-1:-1;;;12227:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12227:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19781:15:0::1;;::::0;;;:9:::1;:15;::::0;;;;:20;;-1:-1:-1;;19781:20:0::1;19797:4;19781:20;::::0;;19713:96::o;5804:115::-;-1:-1:-1;;;;;5895:16:0;5868:7;5895:16;;;;;;;;;;;;5804:115::o;12665:148::-;12245:12;:10;:12::i;:::-;12235:6;;-1:-1:-1;;;;;12235:6:0;;;:22;;;12227:67;;;;;-1:-1:-1;;;12227:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12227:67:0;;;;;;;;;;;;;;;12756:6:::1;::::0;12735:40:::1;::::0;12772:1:::1;::::0;-1:-1:-1;;;;;12756:6:0::1;::::0;12735:40:::1;::::0;12772:1;;12735:40:::1;12786:6;:19:::0;;-1:-1:-1;;;;;;12786:19:0::1;::::0;;12665:148::o;4763:41::-;;;;;;;;;;;;;;;:::o;12023:79::-;12088:6;;-1:-1:-1;;;;;12088:6:0;12023:79;:::o;5150:95::-;5230:7;5223:14;;;;;;;;-1:-1:-1;;5223:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5197:13;;5223:14;;5230:7;;5223:14;;5230:7;5223:14;;;;;;;;;;;;;;;;;;;;;;;;9789:341;9882:4;-1:-1:-1;;;;;9907:21:0;;9899:30;;;;;;9983:10;9974:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9974:29:0;;;;;;;;;;:50;;10008:15;9974:33;:50::i;6569:157::-;6647:4;6664:32;6674:10;6686:2;6690:5;6664:9;:32::i;:::-;-1:-1:-1;6714:4:0;6569:157;;;;:::o;6258:140::-;-1:-1:-1;;;;;6366:15:0;;;6339:7;6366:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;6258:140::o;12968:244::-;12245:12;:10;:12::i;:::-;12235:6;;-1:-1:-1;;;;;12235:6:0;;;:22;;;12227:67;;;;;-1:-1:-1;;;12227:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12227:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;13057:22:0;::::1;13049:73;;;;-1:-1:-1::0;;;13049:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13159:6;::::0;13138:38:::1;::::0;-1:-1:-1;;;;;13138:38:0;;::::1;::::0;13159:6:::1;::::0;13138:38:::1;::::0;13159:6:::1;::::0;13138:38:::1;13187:6;:17:::0;;-1:-1:-1;;;;;;13187:17:0::1;-1:-1:-1::0;;;;;13187:17:0;;;::::1;::::0;;;::::1;::::0;;12968:244::o;4712:43::-;;;;:::o;3310:150::-;3368:7;3400:5;;;3424:6;;;;3416:15;;;;;;3451:1;3310:150;-1:-1:-1;;;3310:150:0:o;613:106::-;701:10;613:106;:::o;3074:150::-;3132:7;3165:1;3160;:6;;3152:15;;;;;;-1:-1:-1;3190:5:0;;;3074:150::o;10352:356::-;-1:-1:-1;;;;;10440:16:0;;10432:25;;;;;;-1:-1:-1;;;;;10472:13:0;;;;;;:9;:13;;;;;;;;10468:86;;10524:9;;-1:-1:-1;;;;;10496:13:0;;:9;:13;;;;;;;;;;;:24;;10514:5;10496:17;:24::i;:::-;:37;;10488:64;;;;;-1:-1:-1;;;10488:64:0;;;;;;;;;;;;-1:-1:-1;;;10488:64:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;10582:15:0;;:9;:15;;;;;;;;;;;:26;;10602:5;10582:19;:26::i;:::-;-1:-1:-1;;;;;10564:15:0;;;:9;:15;;;;;;;;;;;:44;;;;10635:13;;;;;;;:24;;10653:5;10635:17;:24::i;:::-;-1:-1:-1;;;;;10619:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;10675:25;;;;;;;10619:13;;10675:25;;;;;;;;;;;;;10352:356;;;:::o
Swarm Source
ipfs://574d9e3ad8e4069a47665f1ee9a9faa5991cfd714a0a930a5e624e8babde0433
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.