Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
200,000,000 CWN
Holders
6,508
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CWNToken
Compiler Version
v0.4.24+commit.e67f0147
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-08-03 */ /** *Submitted for verification at Etherscan.io on 2018-10-10 */ pragma solidity ^0.4.24; /** * @title SafeMath * @dev Math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two numbers, 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 numbers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0); // Solidity only automatically asserts when dividing by 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 numbers, 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 numbers, 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 numbers 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; } } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); 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); event Transfer( address indexed from, address indexed to, uint256 value ); event Approval( address indexed owner, address indexed spender, uint256 value ); } /** * @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 */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; uint256 private _totalSupply; /** * @dev Total number of tokens in existence */ function totalSupply() public view 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 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 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 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 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 * @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 returns (bool) { require(value <= _allowed[from][msg.sender]); _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); _transfer(from, to, value); 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 * @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 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 * @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 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(value <= _balances[from]); require(to != address(0)); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } /** * @dev Internal function that mints an amount of the token and assigns it to * an account. This encapsulates the modification of balances such that the * proper events are emitted. * @param account The account that will receive the created tokens. * @param value The amount that will be created. */ function _mint(address account, uint256 value) internal { require(account != 0); _totalSupply = _totalSupply.add(value); _balances[account] = _balances[account].add(value); emit Transfer(address(0), account, value); } /** * @dev Internal function that burns an amount of the token of a given * account. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burn(address account, uint256 value) internal { require(account != 0); require(value <= _balances[account]); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Internal function that burns an amount of the token of a given * account, deducting from the sender's allowance for said account. Uses the * internal burn function. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burnFrom(address account, uint256 value) internal { require(value <= _allowed[account][msg.sender]); // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted, // this function needs to emit an event with the updated approval. _allowed[account][msg.sender] = _allowed[account][msg.sender].sub( value); _burn(account, value); } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() public { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @return the address of the owner. */ function owner() public view returns(address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner()); _; } /** * @return true if `msg.sender` is the owner of the contract. */ function isOwner() public view returns(bool) { return msg.sender == _owner; } /** * @dev Allows the current owner to relinquish control of the contract. * @notice Renouncing to ownership will leave the contract without an owner. * It will not be possible to call the functions with the `onlyOwner` * modifier anymore. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0)); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @title ERC20Detailed token * @dev The decimals are only for visualization purposes. * All the operations are done using the smallest and indivisible token unit, * just as on Ethereum all the operations are done in wei. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @return the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @return the symbol of the token. */ function symbol() public view returns (string memory) { return _symbol; } /** * @return the number of decimals of the token. */ function decimals() public view returns (uint8) { return _decimals; } } /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract ERC20Burnable is ERC20, Ownable { /** * @dev Burns a specific amount of tokens. * @param value The amount of token to be burned. */ function burn(uint256 value) onlyOwner public { _burn(msg.sender, value); } /** * @dev Burns a specific amount of tokens from the target address and decrements allowance * @param from address The address which you want to send tokens from * @param value uint256 The amount of token to be burned */ function burnFrom(address from, uint256 value) onlyOwner public { _burnFrom(from, value); } } /** * @title HadaCoinV18 */ contract CWNToken is ERC20Burnable,ERC20Detailed { uint8 public constant DECIMALS = 18; uint256 public constant INITIAL_SUPPLY = 200000000 * (10 ** uint256(DECIMALS)); /** * @dev Constructor that gives msg.sender all of existing tokens. */ constructor () public ERC20Detailed("CryptoWorldNews Token", "CWN", 18) { _mint(msg.sender, INITIAL_SUPPLY); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"DECIMALS","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252601581527f43727970746f576f726c644e65777320546f6b656e00000000000000000000006020808301919091528251808401845260038082527f43574e0000000000000000000000000000000000000000000000000000000000928201929092528154600160a060020a0319163317918290559251919291601291600160a060020a0316906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38251620000de9060049060208601906200020b565b508151620000f49060059060208501906200020b565b506006805460ff191660ff92909216919091179055506200012c9050336aa56fa5b99019a5c800000064010000000062000132810204565b620002b0565b600160a060020a03821615156200014857600080fd5b60025462000165908264010000000062000972620001f182021704565b600255600160a060020a0382166000908152602081905260409020546200019b908264010000000062000972620001f182021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200020457600080fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200024e57805160ff19168380011785556200027e565b828001600101855582156200027e579182015b828111156200027e57825182559160200191906001019062000261565b506200028c92915062000290565b5090565b620002ad91905b808211156200028c576000815560010162000297565b90565b610b9580620002c06000396000f3006080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461010b578063095ea7b31461019557806318160ddd146101cd57806323b872dd146101f45780632e0f26251461021e5780632ff2e9dc14610249578063313ce5671461025e578063395093511461027357806342966c681461029757806370a08231146102b1578063715018a6146102d257806379cc6790146102e75780638da5cb5b1461030b5780638f32d59b1461033c57806395d89b4114610351578063a457c2d714610366578063a9059cbb1461038a578063dd62ed3e146103ae578063f2fde38b146103d5575b600080fd5b34801561011757600080fd5b506101206103f6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015a578181015183820152602001610142565b50505050905090810190601f1680156101875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a157600080fd5b506101b9600160a060020a036004351660243561048c565b604080519115158252519081900360200190f35b3480156101d957600080fd5b506101e261050a565b60408051918252519081900360200190f35b34801561020057600080fd5b506101b9600160a060020a0360043581169060243516604435610510565b34801561022a57600080fd5b506102336105ad565b6040805160ff9092168252519081900360200190f35b34801561025557600080fd5b506101e26105b2565b34801561026a57600080fd5b506102336105c1565b34801561027f57600080fd5b506101b9600160a060020a03600435166024356105ca565b3480156102a357600080fd5b506102af60043561067a565b005b3480156102bd57600080fd5b506101e2600160a060020a036004351661069a565b3480156102de57600080fd5b506102af6106b5565b3480156102f357600080fd5b506102af600160a060020a036004351660243561071f565b34801561031757600080fd5b50610320610740565b60408051600160a060020a039092168252519081900360200190f35b34801561034857600080fd5b506101b961074f565b34801561035d57600080fd5b50610120610760565b34801561037257600080fd5b506101b9600160a060020a03600435166024356107c1565b34801561039657600080fd5b506101b9600160a060020a036004351660243561080c565b3480156103ba57600080fd5b506101e2600160a060020a0360043581169060243516610822565b3480156103e157600080fd5b506102af600160a060020a036004351661084d565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104825780601f1061045757610100808354040283529160200191610482565b820191906000526020600020905b81548152906001019060200180831161046557829003601f168201915b5050505050905090565b6000600160a060020a03831615156104a357600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a038316600090815260016020908152604080832033845290915281205482111561054057600080fd5b600160a060020a0384166000908152600160209081526040808320338452909152902054610574908363ffffffff61086916565b600160a060020a03851660009081526001602090815260408083203384529091529020556105a3848484610880565b5060019392505050565b601281565b6aa56fa5b99019a5c800000081565b60065460ff1690565b6000600160a060020a03831615156105e157600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610615908363ffffffff61097216565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b61068261074f565b151561068d57600080fd5b610697338261098b565b50565b600160a060020a031660009081526020819052604090205490565b6106bd61074f565b15156106c857600080fd5b600354604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36003805473ffffffffffffffffffffffffffffffffffffffff19169055565b61072761074f565b151561073257600080fd5b61073c8282610a59565b5050565b600354600160a060020a031690565b600354600160a060020a0316331490565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104825780601f1061045757610100808354040283529160200191610482565b6000600160a060020a03831615156107d857600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610615908363ffffffff61086916565b6000610819338484610880565b50600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b61085561074f565b151561086057600080fd5b61069781610aeb565b6000808383111561087957600080fd5b5050900390565b600160a060020a0383166000908152602081905260409020548111156108a557600080fd5b600160a060020a03821615156108ba57600080fd5b600160a060020a0383166000908152602081905260409020546108e3908263ffffffff61086916565b600160a060020a038085166000908152602081905260408082209390935590841681522054610918908263ffffffff61097216565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561098457600080fd5b9392505050565b600160a060020a03821615156109a057600080fd5b600160a060020a0382166000908152602081905260409020548111156109c557600080fd5b6002546109d8908263ffffffff61086916565b600255600160a060020a038216600090815260208190526040902054610a04908263ffffffff61086916565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a0382166000908152600160209081526040808320338452909152902054811115610a8957600080fd5b600160a060020a0382166000908152600160209081526040808320338452909152902054610abd908263ffffffff61086916565b600160a060020a038316600090815260016020908152604080832033845290915290205561073c828261098b565b600160a060020a0381161515610b0057600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a7230582073e0a6d20166eaeb8421fcd00c18ec9d6faeb6ed204579ed839f5bc9aef5fc1a0029
Deployed Bytecode
0x6080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461010b578063095ea7b31461019557806318160ddd146101cd57806323b872dd146101f45780632e0f26251461021e5780632ff2e9dc14610249578063313ce5671461025e578063395093511461027357806342966c681461029757806370a08231146102b1578063715018a6146102d257806379cc6790146102e75780638da5cb5b1461030b5780638f32d59b1461033c57806395d89b4114610351578063a457c2d714610366578063a9059cbb1461038a578063dd62ed3e146103ae578063f2fde38b146103d5575b600080fd5b34801561011757600080fd5b506101206103f6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015a578181015183820152602001610142565b50505050905090810190601f1680156101875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a157600080fd5b506101b9600160a060020a036004351660243561048c565b604080519115158252519081900360200190f35b3480156101d957600080fd5b506101e261050a565b60408051918252519081900360200190f35b34801561020057600080fd5b506101b9600160a060020a0360043581169060243516604435610510565b34801561022a57600080fd5b506102336105ad565b6040805160ff9092168252519081900360200190f35b34801561025557600080fd5b506101e26105b2565b34801561026a57600080fd5b506102336105c1565b34801561027f57600080fd5b506101b9600160a060020a03600435166024356105ca565b3480156102a357600080fd5b506102af60043561067a565b005b3480156102bd57600080fd5b506101e2600160a060020a036004351661069a565b3480156102de57600080fd5b506102af6106b5565b3480156102f357600080fd5b506102af600160a060020a036004351660243561071f565b34801561031757600080fd5b50610320610740565b60408051600160a060020a039092168252519081900360200190f35b34801561034857600080fd5b506101b961074f565b34801561035d57600080fd5b50610120610760565b34801561037257600080fd5b506101b9600160a060020a03600435166024356107c1565b34801561039657600080fd5b506101b9600160a060020a036004351660243561080c565b3480156103ba57600080fd5b506101e2600160a060020a0360043581169060243516610822565b3480156103e157600080fd5b506102af600160a060020a036004351661084d565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104825780601f1061045757610100808354040283529160200191610482565b820191906000526020600020905b81548152906001019060200180831161046557829003601f168201915b5050505050905090565b6000600160a060020a03831615156104a357600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a038316600090815260016020908152604080832033845290915281205482111561054057600080fd5b600160a060020a0384166000908152600160209081526040808320338452909152902054610574908363ffffffff61086916565b600160a060020a03851660009081526001602090815260408083203384529091529020556105a3848484610880565b5060019392505050565b601281565b6aa56fa5b99019a5c800000081565b60065460ff1690565b6000600160a060020a03831615156105e157600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610615908363ffffffff61097216565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b61068261074f565b151561068d57600080fd5b610697338261098b565b50565b600160a060020a031660009081526020819052604090205490565b6106bd61074f565b15156106c857600080fd5b600354604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36003805473ffffffffffffffffffffffffffffffffffffffff19169055565b61072761074f565b151561073257600080fd5b61073c8282610a59565b5050565b600354600160a060020a031690565b600354600160a060020a0316331490565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104825780601f1061045757610100808354040283529160200191610482565b6000600160a060020a03831615156107d857600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610615908363ffffffff61086916565b6000610819338484610880565b50600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b61085561074f565b151561086057600080fd5b61069781610aeb565b6000808383111561087957600080fd5b5050900390565b600160a060020a0383166000908152602081905260409020548111156108a557600080fd5b600160a060020a03821615156108ba57600080fd5b600160a060020a0383166000908152602081905260409020546108e3908263ffffffff61086916565b600160a060020a038085166000908152602081905260408082209390935590841681522054610918908263ffffffff61097216565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561098457600080fd5b9392505050565b600160a060020a03821615156109a057600080fd5b600160a060020a0382166000908152602081905260409020548111156109c557600080fd5b6002546109d8908263ffffffff61086916565b600255600160a060020a038216600090815260208190526040902054610a04908263ffffffff61086916565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a0382166000908152600160209081526040808320338452909152902054811115610a8957600080fd5b600160a060020a0382166000908152600160209081526040808320338452909152902054610abd908263ffffffff61086916565b600160a060020a038316600090815260016020908152604080832033845290915290205561073c828261098b565b600160a060020a0381161515610b0057600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a7230582073e0a6d20166eaeb8421fcd00c18ec9d6faeb6ed204579ed839f5bc9aef5fc1a0029
Deployed Bytecode Sourcemap
13426:405:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12292:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12292:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;12292:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4951:226;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4951:226:0;-1:-1:-1;;;;;4951:226:0;;;;;;;;;;;;;;;;;;;;;;;;;3162:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3162:85:0;;;;;;;;;;;;;;;;;;;;5457:301;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5457:301:0;-1:-1:-1;;;;;5457:301:0;;;;;;;;;;;;13482:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13482:35:0;;;;;;;;;;;;;;;;;;;;;;;13524:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13524:78:0;;;;12608:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12608:83:0;;;;6220:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6220:343:0;-1:-1:-1;;;;;6220:343:0;;;;;;;12955:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12955:83:0;;;;;;;3451:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3451:100:0;-1:-1:-1;;;;;3451:100:0;;;;;10973:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10973:130:0;;;;13285:99;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13285:99:0;-1:-1:-1;;;;;13285:99:0;;;;;;;10314:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10314:72:0;;;;;;;;-1:-1:-1;;;;;10314:72:0;;;;;;;;;;;;;;10616:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10616:85:0;;;;12442:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12442:87:0;;;;7030:353;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7030:353:0;-1:-1:-1;;;;;7030:353:0;;;;;;;4194:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4194:130:0;-1:-1:-1;;;;;4194:130:0;;;;;;;3876:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3876:159:0;-1:-1:-1;;;;;3876:159:0;;;;;;;;;;11270:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11270:103:0;-1:-1:-1;;;;;11270:103:0;;;;;12292:83;12362:5;12355:12;;;;;;;;-1:-1:-1;;12355:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12329:6;;12355:12;;12362:5;;12355:12;;12362:5;12355:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12292:83;:::o;4951:226::-;5016:4;-1:-1:-1;;;;;5037:21:0;;;;5029:30;;;;;;5077:10;5068:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;5068:29:0;;;;;;;;;;;;:37;;;5117:36;;;;;;;5068:29;;5077:10;5117:36;;;;;;;;;;;-1:-1:-1;5167:4:0;4951:226;;;;:::o;3162:85::-;3229:12;;3162:85;:::o;5457:301::-;-1:-1:-1;;;;;5599:14:0;;5566:4;5599:14;;;:8;:14;;;;;;;;5614:10;5599:26;;;;;;;;5590:35;;;5582:44;;;;;;-1:-1:-1;;;;;5664:14:0;;;;;;:8;:14;;;;;;;;5679:10;5664:26;;;;;;;;:37;;5695:5;5664:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;5635:14:0;;;;;;:8;:14;;;;;;;;5650:10;5635:26;;;;;;;:66;5708:26;5644:4;5724:2;5728:5;5708:9;:26::i;:::-;-1:-1:-1;5748:4:0;5457:301;;;;;:::o;13482:35::-;13515:2;13482:35;:::o;13524:78::-;13565:37;13524:78;:::o;12608:83::-;12674:9;;;;12608:83;:::o;6220:343::-;6325:4;-1:-1:-1;;;;;6349:21:0;;;;6341:30;;;;;;6430:10;6421:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6421:29:0;;;;;;;;;;:45;;6455:10;6421:45;:33;:45;:::i;:::-;6389:10;6380:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6380:29:0;;;;;;;;;;;;:87;;;6479:60;;;;;;6380:29;;6479:60;;;;;;;;;;;-1:-1:-1;6553:4:0;6220:343;;;;:::o;12955:83::-;10507:9;:7;:9::i;:::-;10499:18;;;;;;;;13008:24;13014:10;13026:5;13008;:24::i;:::-;12955:83;:::o;3451:100::-;-1:-1:-1;;;;;3529:16:0;3506:7;3529:16;;;;;;;;;;;;3451:100::o;10973:130::-;10507:9;:7;:9::i;:::-;10499:18;;;;;;;;11052:6;;11031:40;;11068:1;;-1:-1:-1;;;;;11052:6:0;;11031:40;;11068:1;;11031:40;11078:6;:19;;-1:-1:-1;;11078:19:0;;;10973:130::o;13285:99::-;10507:9;:7;:9::i;:::-;10499:18;;;;;;;;13356:22;13366:4;13372:5;13356:9;:22::i;:::-;13285:99;;:::o;10314:72::-;10374:6;;-1:-1:-1;;;;;10374:6:0;10314:72;:::o;10616:85::-;10689:6;;-1:-1:-1;;;;;10689:6:0;10675:10;:20;;10616:85::o;12442:87::-;12514:7;12507:14;;;;;;;;-1:-1:-1;;12507:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12481:6;;12507:14;;12514:7;;12507:14;;12514:7;12507:14;;;;;;;;;;;;;;;;;;;;;;;;7030:353;7140:4;-1:-1:-1;;;;;7164:21:0;;;;7156:30;;;;;;7245:10;7236:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7236:29:0;;;;;;;;;;:50;;7270:15;7236:50;:33;:50;:::i;4194:130::-;4255:4;4268:32;4278:10;4290:2;4294:5;4268:9;:32::i;:::-;-1:-1:-1;4314:4:0;4194:130;;;;:::o;3876:159::-;-1:-1:-1;;;;;4005:15:0;;;3979:7;4005:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;3876:159::o;11270:103::-;10507:9;:7;:9::i;:::-;10499:18;;;;;;;;11339:28;11358:8;11339:18;:28::i;1188:136::-;1246:7;;1270:6;;;;1262:15;;;;;;-1:-1:-1;;1296:5:0;;;1188:136::o;7591:284::-;-1:-1:-1;;;;;7684:15:0;;:9;:15;;;;;;;;;;;7675:24;;;7667:33;;;;;;-1:-1:-1;;;;;7715:16:0;;;;7707:25;;;;;;-1:-1:-1;;;;;7759:15:0;;:9;:15;;;;;;;;;;;:26;;7779:5;7759:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;7741:15:0;;;:9;:15;;;;;;;;;;;:44;;;;7808:13;;;;;;;:24;;7826:5;7808:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;7792:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;7844:25;;;;;;;7792:13;;7844:25;;;;;;;;;;;;;7591:284;;;:::o;1392:136::-;1450:7;1478:5;;;1498:6;;;;1490:15;;;;;;1521:1;1392:136;-1:-1:-1;;;1392:136:0:o;8671:285::-;-1:-1:-1;;;;;8742:12:0;;;;8734:21;;;;;;-1:-1:-1;;;;;8779:18:0;;:9;:18;;;;;;;;;;;8770:27;;;8762:36;;;;;;8822:12;;:23;;8839:5;8822:23;:16;:23;:::i;:::-;8807:12;:38;-1:-1:-1;;;;;8873:18:0;;:9;:18;;;;;;;;;;;:29;;8896:5;8873:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;8852:18:0;;:9;:18;;;;;;;;;;;:50;;;;8914:36;;;;;;;8852:9;;8914:36;;;;;;;;;;;8671:285;;:::o;9271:398::-;-1:-1:-1;;;;;9355:17:0;;;;;;:8;:17;;;;;;;;9373:10;9355:29;;;;;;;;9346:38;;;9338:47;;;;;;-1:-1:-1;;;;;9587:17:0;;;;;;:8;:17;;;;;;;;9605:10;9587:29;;;;;;;;:48;;9629:5;9587:48;:33;:48;:::i;:::-;-1:-1:-1;;;;;9555:17:0;;;;;;:8;:17;;;;;;;;9573:10;9555:29;;;;;;;:80;9642:21;9564:7;9657:5;9642;:21::i;11513:173::-;-1:-1:-1;;;;;11583:22:0;;;;11575:31;;;;;;11639:6;;11618:38;;-1:-1:-1;;;;;11618:38:0;;;;11639:6;;11618:38;;11639:6;;11618:38;11663:6;:17;;-1:-1:-1;;11663:17:0;-1:-1:-1;;;;;11663:17:0;;;;;;;;;;11513:173::o
Swarm Source
bzzr://73e0a6d20166eaeb8421fcd00c18ec9d6faeb6ed204579ed839f5bc9aef5fc1a
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.