ERC-20
Overview
Max Total Supply
20,000 CIRCLE
Holders
43
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
36.064031150240874902 CIRCLEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CircleInu
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-16 */ 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 = 500e18; mapping(address => bool) public Limtcheck; constructor () public { _name = "Circle Inu"; _symbol = "CIRCLE"; _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 CircleInu is ERC20, Ownable { address public uniswapV2Pair; IUniswapV2Router02 public uniswapV2Router; constructor () public ERC20 () { _createpair(); _init(msg.sender,20000e18); } 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 excludeWallet(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":"_addr","type":"address"}],"name":"excludeWallet","outputs":[],"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":"uint256","name":"_amount","type":"uint256"}],"name":"updateMaxwallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052681b1ae4d6e2ef5000006006553480156200001e57600080fd5b5060408051808201909152600a80825269436972636c6520496e7560b01b60209092019182526200005291600391620003d6565b5060408051808201909152600680825265434952434c4560d01b60209092019182526200008291600491620003d6565b506005805460ff191660121790556200009a6200010c565b600880546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3620000f062000110565b620001063369043c33c193756480000062000303565b62000472565b3390565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200016357600080fd5b505afa15801562000178573d6000803e3d6000fd5b505050506040513d60208110156200018f57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620001e057600080fd5b505afa158015620001f5573d6000803e3d6000fd5b505050506040513d60208110156200020c57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200025f57600080fd5b505af115801562000274573d6000803e3d6000fd5b505050506040513d60208110156200028b57600080fd5b5051600980546001600160a01b03199081166001600160a01b03938416178255600a805490911693831693909317835533600090815260076020526040808220805460ff1990811660019081179092559354851683528183208054851682179055945490931681529190912080549091169091179055565b6001600160a01b0382166200031757600080fd5b6200033381600254620003bc60201b62000a591790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200036691839062000a59620003bc821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082820183811015620003cf57600080fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200041957805160ff191683800117855562000449565b8280016001018555821562000449579182015b82811115620004495782518255916020019190600101906200042c565b50620004579291506200045b565b5090565b5b808211156200045757600081556001016200045c565b610c5180620004826000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d71461035d578063a9059cbb14610389578063dd62ed3e146103b5578063f2fde38b146103e3578063f8b45b05146104095761012c565b806370a08231146102f9578063715018a61461031f57806372b7685d146103275780638da5cb5b1461034d57806395d89b41146103555761012c565b806323b872dd116100f457806323b872dd1461024b578063313ce56714610281578063395093511461029f57806349bd5a5e146102cb57806362b25eeb146102d35761012c565b8063029fc8361461013157806306fdde0314610150578063095ea7b3146101cd5780631694505e1461020d57806318160ddd14610231575b600080fd5b61014e6004803603602081101561014757600080fd5b5035610411565b005b61015861046e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019257818101518382015260200161017a565b50505050905090810190601f1680156101bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f9600480360360408110156101e357600080fd5b506001600160a01b038135169060200135610504565b604080519115158252519081900360200190f35b610215610580565b604080516001600160a01b039092168252519081900360200190f35b61023961058f565b60408051918252519081900360200190f35b6101f96004803603606081101561026157600080fd5b506001600160a01b03813581169160208101359091169060400135610595565b610289610658565b6040805160ff9092168252519081900360200190f35b6101f9600480360360408110156102b557600080fd5b506001600160a01b038135169060200135610661565b610215610709565b61014e600480360360208110156102e957600080fd5b50356001600160a01b0316610718565b6102396004803603602081101561030f57600080fd5b50356001600160a01b0316610794565b61014e6107af565b6101f96004803603602081101561033d57600080fd5b50356001600160a01b0316610851565b610215610866565b610158610875565b6101f96004803603604081101561037357600080fd5b506001600160a01b0381351690602001356108d6565b6101f96004803603604081101561039f57600080fd5b506001600160a01b038135169060200135610919565b610239600480360360408110156103cb57600080fd5b506001600160a01b038135811691602001351661092f565b61014e600480360360208110156103f957600080fd5b50356001600160a01b031661095a565b610239610a53565b610419610a72565b6008546001600160a01b03908116911614610469576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b600655565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104fa5780601f106104cf576101008083540402835291602001916104fa565b820191906000526020600020905b8154815290600101906020018083116104dd57829003601f168201915b5050505050905090565b60006001600160a01b03831661051957600080fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600a546001600160a01b031681565b60025490565b6001600160a01b03831660009081526001602090815260408083203384529091528120546105c39083610a76565b6001600160a01b03851660009081526001602090815260408083203384529091529020556105f2848484610a8b565b6001600160a01b0384166000818152600160209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60055460ff1690565b60006001600160a01b03831661067657600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546106a49083610a59565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6009546001600160a01b031681565b610720610a72565b6008546001600160a01b03908116911614610770576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6001600160a01b031660009081526020819052604090205490565b6107b7610a72565b6008546001600160a01b03908116911614610807576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880546001600160a01b0319169055565b60076020526000908152604090205460ff1681565b6008546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104fa5780601f106104cf576101008083540402835291602001916104fa565b60006001600160a01b0383166108eb57600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546106a49083610a76565b6000610926338484610a8b565b50600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610962610a72565b6008546001600160a01b039081169116146109b2576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6001600160a01b0381166109f75760405162461bcd60e51b8152600401808060200182810382526026815260200180610bd66026913960400191505060405180910390fd5b6008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b60065481565b600082820183811015610a6b57600080fd5b9392505050565b3390565b600082821115610a8557600080fd5b50900390565b6001600160a01b038216610a9e57600080fd5b6001600160a01b03821660009081526007602052604090205460ff16610b29576006546001600160a01b038316600090815260208190526040902054610ae49083610a59565b1115610b29576040805162461bcd60e51b815260206004820152600f60248201526e151e08131a5b5a5d08115e18d95959608a1b604482015290519081900360640190fd5b6001600160a01b038316600090815260208190526040902054610b4c9082610a76565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b7b9082610a59565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212206ffd4e60985c3a634580df358ce0797f28eafb5f977877f6d21148ecae19970464736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d71461035d578063a9059cbb14610389578063dd62ed3e146103b5578063f2fde38b146103e3578063f8b45b05146104095761012c565b806370a08231146102f9578063715018a61461031f57806372b7685d146103275780638da5cb5b1461034d57806395d89b41146103555761012c565b806323b872dd116100f457806323b872dd1461024b578063313ce56714610281578063395093511461029f57806349bd5a5e146102cb57806362b25eeb146102d35761012c565b8063029fc8361461013157806306fdde0314610150578063095ea7b3146101cd5780631694505e1461020d57806318160ddd14610231575b600080fd5b61014e6004803603602081101561014757600080fd5b5035610411565b005b61015861046e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019257818101518382015260200161017a565b50505050905090810190601f1680156101bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f9600480360360408110156101e357600080fd5b506001600160a01b038135169060200135610504565b604080519115158252519081900360200190f35b610215610580565b604080516001600160a01b039092168252519081900360200190f35b61023961058f565b60408051918252519081900360200190f35b6101f96004803603606081101561026157600080fd5b506001600160a01b03813581169160208101359091169060400135610595565b610289610658565b6040805160ff9092168252519081900360200190f35b6101f9600480360360408110156102b557600080fd5b506001600160a01b038135169060200135610661565b610215610709565b61014e600480360360208110156102e957600080fd5b50356001600160a01b0316610718565b6102396004803603602081101561030f57600080fd5b50356001600160a01b0316610794565b61014e6107af565b6101f96004803603602081101561033d57600080fd5b50356001600160a01b0316610851565b610215610866565b610158610875565b6101f96004803603604081101561037357600080fd5b506001600160a01b0381351690602001356108d6565b6101f96004803603604081101561039f57600080fd5b506001600160a01b038135169060200135610919565b610239600480360360408110156103cb57600080fd5b506001600160a01b038135811691602001351661092f565b61014e600480360360208110156103f957600080fd5b50356001600160a01b031661095a565b610239610a53565b610419610a72565b6008546001600160a01b03908116911614610469576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b600655565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104fa5780601f106104cf576101008083540402835291602001916104fa565b820191906000526020600020905b8154815290600101906020018083116104dd57829003601f168201915b5050505050905090565b60006001600160a01b03831661051957600080fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600a546001600160a01b031681565b60025490565b6001600160a01b03831660009081526001602090815260408083203384529091528120546105c39083610a76565b6001600160a01b03851660009081526001602090815260408083203384529091529020556105f2848484610a8b565b6001600160a01b0384166000818152600160209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60055460ff1690565b60006001600160a01b03831661067657600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546106a49083610a59565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6009546001600160a01b031681565b610720610a72565b6008546001600160a01b03908116911614610770576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6001600160a01b031660009081526020819052604090205490565b6107b7610a72565b6008546001600160a01b03908116911614610807576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880546001600160a01b0319169055565b60076020526000908152604090205460ff1681565b6008546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104fa5780601f106104cf576101008083540402835291602001916104fa565b60006001600160a01b0383166108eb57600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546106a49083610a76565b6000610926338484610a8b565b50600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610962610a72565b6008546001600160a01b039081169116146109b2576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6001600160a01b0381166109f75760405162461bcd60e51b8152600401808060200182810382526026815260200180610bd66026913960400191505060405180910390fd5b6008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b60065481565b600082820183811015610a6b57600080fd5b9392505050565b3390565b600082821115610a8557600080fd5b50900390565b6001600160a01b038216610a9e57600080fd5b6001600160a01b03821660009081526007602052604090205460ff16610b29576006546001600160a01b038316600090815260208190526040902054610ae49083610a59565b1115610b29576040805162461bcd60e51b815260206004820152600f60248201526e151e08131a5b5a5d08115e18d95959608a1b604482015290519081900360640190fd5b6001600160a01b038316600090815260208190526040902054610b4c9082610a76565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b7b9082610a59565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212206ffd4e60985c3a634580df358ce0797f28eafb5f977877f6d21148ecae19970464736f6c634300060c0033
Deployed Bytecode Sourcemap
18863:945:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19127:96;;;;;;;;;;;;;;;;-1:-1:-1;19127:96:0;;:::i;:::-;;4984:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7365:261;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7365:261:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18951:41;;;:::i;:::-;;;;-1:-1:-1;;;;;18951:41:0;;;;;;;;;;;;;;5480:100;;;:::i;:::-;;;;;;;;;;;;;;;;8099:316;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8099:316:0;;;;;;;;;;;;;;;;;:::i;5316:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8930:331;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8930:331:0;;;;;;;;:::i;18917:28::-;;;:::i;19698:95::-;;;;;;;;;;;;;;;;-1:-1:-1;19698:95:0;-1:-1:-1;;;;;19698:95:0;;:::i;5796:115::-;;;;;;;;;;;;;;;;-1:-1:-1;5796:115:0;-1:-1:-1;;;;;5796:115:0;;:::i;12657:148::-;;;:::i;4753:41::-;;;;;;;;;;;;;;;;-1:-1:-1;4753:41:0;-1:-1:-1;;;;;4753:41:0;;:::i;12015:79::-;;;:::i;5142:95::-;;;:::i;9781:341::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;9781:341:0;;;;;;;;:::i;6561:157::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6561:157:0;;;;;;;;:::i;6250:140::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6250:140:0;;;;;;;;;;:::i;12960:244::-;;;;;;;;;;;;;;;;-1:-1:-1;12960:244:0;-1:-1:-1;;;;;12960:244:0;;:::i;4712:33::-;;;:::i;19127:96::-;12237:12;:10;:12::i;:::-;12227:6;;-1:-1:-1;;;;;12227:6:0;;;:22;;;12219:67;;;;;-1:-1:-1;;;12219:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12219:67:0;;;;;;;;;;;;;;;19198:9:::1;:17:::0;19127:96::o;4984:91::-;5062:5;5055:12;;;;;;;;-1:-1:-1;;5055:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5029:13;;5055:12;;5062:5;;5055:12;;5062:5;5055:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4984:91;:::o;7365:261::-;7447:4;-1:-1:-1;;;;;7472:21:0;;7464:30;;;;;;7516:10;7507:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7507:29:0;;;;;;;;;;;;:37;;;7560:36;;;;;;;7507:29;;7516:10;7560:36;;;;;;;;;;;-1:-1:-1;7614:4:0;7365:261;;;;:::o;18951:41::-;;;-1:-1:-1;;;;;18951:41:0;;:::o;5480:100::-;5560:12;;5480:100;:::o;8099:316::-;-1:-1:-1;;;;;8241:14:0;;8195:4;8241:14;;;:8;:14;;;;;;;;8256:10;8241:26;;;;;;;;:37;;8272:5;8241:30;:37::i;:::-;-1:-1:-1;;;;;8212:14:0;;;;;;:8;:14;;;;;;;;8227:10;8212:26;;;;;;;:66;8289:26;8221:4;8305:2;8309:5;8289:9;:26::i;:::-;-1:-1:-1;;;;;8331:54:0;;8358:14;;;;:8;:14;;;;;;;;8346:10;8358:26;;;;;;;;;;;8331:54;;;;;;;8346:10;;8331:54;;;;;;;;;;;;-1:-1:-1;8403:4:0;8099:316;;;;;:::o;5316:91::-;5390:9;;;;5316:91;:::o;8930:331::-;9018:4;-1:-1:-1;;;;;9043:21:0;;9035:30;;;;;;9119:10;9110:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9110:29:0;;;;;;;;;;:45;;9144:10;9110:33;:45::i;:::-;9087:10;9078:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9078:29:0;;;;;;;;;;;;:77;;;9171:60;;;;;;9078:29;;9171:60;;;;;;;;;;;-1:-1:-1;9249:4:0;8930:331;;;;:::o;18917:28::-;;;-1:-1:-1;;;;;18917:28:0;;:::o;19698:95::-;12237:12;:10;:12::i;:::-;12227:6;;-1:-1:-1;;;;;12227:6:0;;;:22;;;12219:67;;;;;-1:-1:-1;;;12219:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12219:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19764:16:0::1;;::::0;;;:9:::1;:16;::::0;;;;:21;;-1:-1:-1;;19764:21:0::1;19781:4;19764:21;::::0;;19698:95::o;5796:115::-;-1:-1:-1;;;;;5887:16:0;5860:7;5887:16;;;;;;;;;;;;5796:115::o;12657:148::-;12237:12;:10;:12::i;:::-;12227:6;;-1:-1:-1;;;;;12227:6:0;;;:22;;;12219:67;;;;;-1:-1:-1;;;12219:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12219:67:0;;;;;;;;;;;;;;;12748:6:::1;::::0;12727:40:::1;::::0;12764:1:::1;::::0;-1:-1:-1;;;;;12748:6:0::1;::::0;12727:40:::1;::::0;12764:1;;12727:40:::1;12778:6;:19:::0;;-1:-1:-1;;;;;;12778:19:0::1;::::0;;12657:148::o;4753:41::-;;;;;;;;;;;;;;;:::o;12015:79::-;12080:6;;-1:-1:-1;;;;;12080:6:0;12015:79;:::o;5142:95::-;5222:7;5215:14;;;;;;;;-1:-1:-1;;5215:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5189:13;;5215:14;;5222:7;;5215:14;;5222:7;5215:14;;;;;;;;;;;;;;;;;;;;;;;;9781:341;9874:4;-1:-1:-1;;;;;9899:21:0;;9891:30;;;;;;9975:10;9966:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9966:29:0;;;;;;;;;;:50;;10000:15;9966:33;:50::i;6561:157::-;6639:4;6656:32;6666:10;6678:2;6682:5;6656:9;:32::i;:::-;-1:-1:-1;6706:4:0;6561:157;;;;:::o;6250:140::-;-1:-1:-1;;;;;6358:15:0;;;6331:7;6358:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;6250:140::o;12960:244::-;12237:12;:10;:12::i;:::-;12227:6;;-1:-1:-1;;;;;12227:6:0;;;:22;;;12219:67;;;;;-1:-1:-1;;;12219:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12219:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;13049:22:0;::::1;13041:73;;;;-1:-1:-1::0;;;13041:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13151:6;::::0;13130:38:::1;::::0;-1:-1:-1;;;;;13130:38:0;;::::1;::::0;13151:6:::1;::::0;13130:38:::1;::::0;13151:6:::1;::::0;13130:38:::1;13179:6;:17:::0;;-1:-1:-1;;;;;;13179:17:0::1;-1:-1:-1::0;;;;;13179:17:0;;;::::1;::::0;;;::::1;::::0;;12960:244::o;4712:33::-;;;;:::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;10344:356::-;-1:-1:-1;;;;;10432:16:0;;10424:25;;;;;;-1:-1:-1;;;;;10464:13:0;;;;;;:9;:13;;;;;;;;10460:86;;10516:9;;-1:-1:-1;;;;;10488:13:0;;:9;:13;;;;;;;;;;;:24;;10506:5;10488:17;:24::i;:::-;:37;;10480:64;;;;;-1:-1:-1;;;10480:64:0;;;;;;;;;;;;-1:-1:-1;;;10480:64:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;10574:15:0;;:9;:15;;;;;;;;;;;:26;;10594:5;10574:19;:26::i;:::-;-1:-1:-1;;;;;10556:15:0;;;:9;:15;;;;;;;;;;;:44;;;;10627:13;;;;;;;:24;;10645:5;10627:17;:24::i;:::-;-1:-1:-1;;;;;10611:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;10667:25;;;;;;;10611:13;;10667:25;;;;;;;;;;;;;10344:356;;;:::o
Swarm Source
ipfs://6ffd4e60985c3a634580df358ce0797f28eafb5f977877f6d21148ecae199704
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.