Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,300,000,000 WOLF
Holders
4,038
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:
WOLF
Compiler Version
v0.4.23+commit.124ca40d
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-04-30 */ /* Copyright (c) 2018 WiseWolf Ltd Developed by https://adoriasoft.com */ pragma solidity ^0.4.23; // File: contracts/ERC20Basic.sol /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } // File: contracts/SafeMath.sol /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws 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 a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } // File: contracts/BasicToken.sol /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @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) { require(_to != address(0)); require(_value <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the 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]; } } // File: contracts/BurnableToken.sol /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract BurnableToken is BasicToken { event Burn(address indexed burner, uint256 value); /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) public { _burn(msg.sender, _value); } function _burn(address _who, uint256 _value) internal { require(_value <= balances[_who]); // no need to require value <= totalSupply, since that would imply the // sender's balance is greater than the totalSupply, which *should* be an assertion failure balances[_who] = balances[_who].sub(_value); totalSupply_ = totalSupply_.sub(_value); emit Burn(_who, _value); emit Transfer(_who, address(0), _value); } } // File: contracts/Ownable.sol /** * @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 public 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; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @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 { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } // File: contracts/ERC20.sol /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } // File: contracts/ERC223.sol /* ERC223 additions to ERC20 Interface wise is ERC20 + data paramenter to transfer and transferFrom. */ //import "github.com/OpenZeppelin/zeppelin-solidity/contracts/token/ERC20.sol"; contract ERC223 is ERC20 { function transfer(address to, uint value, bytes data) public returns (bool ok); function transferFrom(address from, address to, uint value, bytes data) public returns (bool ok); event Transfer(address indexed from, address indexed to, uint value, bytes indexed data); } // File: contracts/ERC223Receiver.sol /* Base class contracts willing to accept ERC223 token transfers must conform to. Sender: msg.sender to the token contract, the address originating the token transfer. - For user originated transfers sender will be equal to tx.origin - For contract originated transfers, tx.origin will be the user that made the tx that produced the transfer. Origin: the origin address from whose balance the tokens are sent - For transfer(), origin = msg.sender - For transferFrom() origin = _from to token contract Value is the amount of tokens sent Data is arbitrary data sent with the token transfer. Simulates ether tx.data From, origin and value shouldn't be trusted unless the token contract is trusted. If sender == tx.origin, it is safe to trust it regardless of the token. */ contract ERC223Receiver { function tokenFallback(address _from, uint _value, bytes _data) public; } // File: contracts/Pausable.sol /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; emit Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; emit Unpause(); } } // File: contracts/StandardToken.sol /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @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(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _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) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @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 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 increaseApproval(address _spender, uint _addedValue) public returns (bool) { 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 decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } // File: contracts/PausableToken.sol /** * @title Pausable token * @dev StandardToken modified with pausable transfers. **/ contract PausableToken is StandardToken, Pausable { function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) { return super.transfer(_to, _value); } function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) { return super.transferFrom(_from, _to, _value); } function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) { return super.approve(_spender, _value); } function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) { return super.increaseApproval(_spender, _addedValue); } function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) { return super.decreaseApproval(_spender, _subtractedValue); } } // File: contracts/Pausable223Token.sol /* ERC223 additions to ERC20 */ //import "github.com/OpenZeppelin/zeppelin-solidity/contracts/token/StandardToken.sol"; contract Pausable223Token is ERC223, PausableToken { //function that is called when a user or another contract wants to transfer funds function transfer(address _to, uint _value, bytes _data) public returns (bool success) { //filtering if the target is a contract with bytecode inside it if (!super.transfer(_to, _value)) revert(); // do a normal token transfer if (isContract(_to)) contractFallback(msg.sender, _to, _value, _data); emit Transfer(msg.sender, _to, _value, _data); return true; } function transferFrom(address _from, address _to, uint _value, bytes _data) public returns (bool success) { if (!super.transferFrom(_from, _to, _value)) revert(); // do a normal token transfer if (isContract(_to)) contractFallback(_from, _to, _value, _data); emit Transfer(_from, _to, _value, _data); return true; } function transfer(address _to, uint _value) public returns (bool success) { return transfer(_to, _value, new bytes(0)); } function transferFrom(address _from, address _to, uint _value) public returns (bool success) { return transferFrom(_from, _to, _value, new bytes(0)); } //function that is called when transaction target is a contract function contractFallback(address _origin, address _to, uint _value, bytes _data) private { ERC223Receiver reciever = ERC223Receiver(_to); reciever.tokenFallback(_origin, _value, _data); } //assemble the given address bytecode. If bytecode exists then the _addr is a contract. function isContract(address _addr) private view returns (bool is_contract) { // retrieve the size of the code on target address, this needs assembly uint length; assembly { length := extcodesize(_addr) } return length > 0; } } // File: contracts/wolf.sol /* Copyright (c) 2018 WiseWolf Ltd Developed by https://adoriasoft.com */ pragma solidity ^0.4.23; contract WOLF is BurnableToken, Pausable223Token { string public constant name = "WiseWolf"; string public constant symbol = "WOLF"; uint8 public constant decimals = 18; uint public constant DECIMALS_MULTIPLIER = 10**uint(decimals); function increaseSupply(uint value, address to) public onlyOwner returns (bool) { totalSupply_ = totalSupply_.add(value); balances[to] = balances[to].add(value); emit Transfer(address(0), to, value); return true; } function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); uint256 localOwnerBalance = balances[owner]; balances[newOwner] = balances[newOwner].add(localOwnerBalance); balances[owner] = 0; emit Transfer(owner, newOwner, localOwnerBalance); super.transferOwnership(newOwner); } constructor () public payable { totalSupply_ = 1300000000 * DECIMALS_MULTIPLIER; //1000000000 + 20% bounty + 5% referal bonus + 5% team motivation balances[owner] = totalSupply_; emit Transfer(0x0, owner, totalSupply_); } }
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":false,"inputs":[{"name":"value","type":"uint256"},{"name":"to","type":"address"}],"name":"increaseSupply","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"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":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"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":"pause","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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"DECIMALS_MULTIPLIER","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","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":true,"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"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":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":true,"name":"data","type":"bytes"}],"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"},{"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"}]
Contract Creation Code
6080604081815260038054600160a860020a03191633600160a060020a03908116919091178083556b043355b53628a6b5940000006001819055908216600090815260208181529481208290559254908552169290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a3611245806100876000396000f30060806040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610121578063095ea7b3146101ab578063124fc7e0146101e357806318160ddd1461020757806323b872dd1461022e578063313ce567146102585780633f4ba83a1461028357806342966c681461029a5780635c975abb146102b257806366188463146102c757806370a08231146102eb5780638456cb591461030c5780638da5cb5b1461032157806395d89b4114610352578063a9059cbb14610367578063ab67aa581461038b578063bbdd366a146103fa578063be45fd621461040f578063d73dd62314610478578063dd62ed3e1461049c578063f2fde38b146104c3575b600080fd5b34801561012d57600080fd5b506101366104e4565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610170578181015183820152602001610158565b50505050905090810190601f16801561019d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101b757600080fd5b506101cf600160a060020a036004351660243561051b565b604080519115158252519081900360200190f35b3480156101ef57600080fd5b506101cf600435600160a060020a0360243516610546565b34801561021357600080fd5b5061021c6105ec565b60408051918252519081900360200190f35b34801561023a57600080fd5b506101cf600160a060020a03600435811690602435166044356105f2565b34801561026457600080fd5b5061026d610619565b6040805160ff9092168252519081900360200190f35b34801561028f57600080fd5b5061029861061e565b005b3480156102a657600080fd5b5061029860043561069a565b3480156102be57600080fd5b506101cf6106a7565b3480156102d357600080fd5b506101cf600160a060020a03600435166024356106b7565b3480156102f757600080fd5b5061021c600160a060020a03600435166106db565b34801561031857600080fd5b506102986106f6565b34801561032d57600080fd5b50610336610777565b60408051600160a060020a039092168252519081900360200190f35b34801561035e57600080fd5b50610136610786565b34801561037357600080fd5b506101cf600160a060020a03600435166024356107bd565b34801561039757600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526101cf94600160a060020a0381358116956024803590921695604435953695608494019181908401838280828437509497506107da9650505050505050565b34801561040657600080fd5b5061021c6108b0565b34801561041b57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101cf948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506108bc9650505050505050565b34801561048457600080fd5b506101cf600160a060020a0360043516602435610990565b3480156104a857600080fd5b5061021c600160a060020a03600435811690602435166109b4565b3480156104cf57600080fd5b50610298600160a060020a03600435166109df565b60408051808201909152600881527f57697365576f6c66000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561053557600080fd5b61053f8383610aaa565b9392505050565b60035460009033600160a060020a0390811691161461056457600080fd5b600154610577908463ffffffff610b1416565b600155600160a060020a0382166000908152602081905260409020546105a3908463ffffffff610b1416565b600160a060020a0383166000818152602081815260408083209490945583518781529351929391926000805160206111fa8339815191529281900390910190a350600192915050565b60015490565b60408051600080825260208201909252610611908590859085906107da565b949350505050565b601281565b60035433600160a060020a0390811691161461063957600080fd5b60035460a060020a900460ff16151561065157600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6106a43382610b27565b50565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156106d157600080fd5b61053f8383610c16565b600160a060020a031660009081526020819052604090205490565b60035433600160a060020a0390811691161461071157600080fd5b60035460a060020a900460ff161561072857600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600481527f574f4c4600000000000000000000000000000000000000000000000000000000602082015281565b6040805160008082526020820190925261053f90849084906108bc565b60006107e7858585610d0f565b15156107f257600080fd5b6107fb84610d34565b1561080c5761080c85858585610d3c565b816040518082805190602001908083835b6020831061083c5780518252601f19909201916020918201910161081d565b51815160209384036101000a6000190180199092169116179052604080519290940182900382208983529351939550600160a060020a038a811695508b16937fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c169350918290030190a4506001949350505050565b670de0b6b3a764000081565b60006108c88484610e33565b15156108d357600080fd5b6108dc84610d34565b156108ed576108ed33858585610d3c565b816040518082805190602001908083835b6020831061091d5780518252601f1990920191602091820191016108fe565b51815160209384036101000a6000190180199092169116179052604080519290940182900382208983529351939550600160a060020a038a811695503316937fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c169350918290030190a45060019392505050565b60035460009060a060020a900460ff16156109aa57600080fd5b61053f8383610e57565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035460009033600160a060020a039081169116146109fd57600080fd5b600160a060020a0382161515610a1257600080fd5b50600354600160a060020a03908116600090815260208190526040808220549284168252902054610a49908263ffffffff610b1416565b600160a060020a038084166000818152602081815260408083209590955560038054851683528583209290925590548451868152945192949316926000805160206111fa833981519152929081900390910190a3610aa682610ef9565b5050565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b81810182811015610b2157fe5b92915050565b600160a060020a038216600090815260208190526040902054811115610b4c57600080fd5b600160a060020a038216600090815260208190526040902054610b75908263ffffffff610f9216565b600160a060020a038316600090815260208190526040902055600154610ba1908263ffffffff610f9216565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206111fa8339815191529181900360200190a35050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610c7357600160a060020a033381166000908152600260209081526040808320938816835292905290812055610caa565b610c83818463ffffffff610f9216565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b60035460009060a060020a900460ff1615610d2957600080fd5b610611848484610fa4565b6000903b1190565b6040517fc0ee0b8a000000000000000000000000000000000000000000000000000000008152600160a060020a03858116600483019081526024830185905260606044840190815284516064850152845187949385169363c0ee0b8a938a938993899360840190602085019080838360005b83811015610dc6578181015183820152602001610dae565b50505050905090810190601f168015610df35780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b158015610e1457600080fd5b505af1158015610e28573d6000803e3d6000fd5b505050505050505050565b60035460009060a060020a900460ff1615610e4d57600080fd5b61053f8383611112565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610e8f908363ffffffff610b1416565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b60035433600160a060020a03908116911614610f1457600080fd5b600160a060020a0381161515610f2957600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610f9e57fe5b50900390565b6000600160a060020a0383161515610fbb57600080fd5b600160a060020a038416600090815260208190526040902054821115610fe057600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561101357600080fd5b600160a060020a03841660009081526020819052604090205461103c908363ffffffff610f9216565b600160a060020a038086166000908152602081905260408082209390935590851681522054611071908363ffffffff610b1416565b600160a060020a03808516600090815260208181526040808320949094558783168252600281528382203390931682529190915220546110b7908363ffffffff610f9216565b600160a060020a038086166000818152600260209081526040808320338616845282529182902094909455805186815290519287169391926000805160206111fa833981519152929181900390910190a35060019392505050565b6000600160a060020a038316151561112957600080fd5b600160a060020a03331660009081526020819052604090205482111561114e57600080fd5b600160a060020a033316600090815260208190526040902054611177908363ffffffff610f9216565b600160a060020a0333811660009081526020819052604080822093909355908516815220546111ac908363ffffffff610b1416565b600160a060020a03808516600081815260208181526040918290209490945580518681529051919333909316926000805160206111fa83398151915292918290030190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058200dee833f37cf5da2b154bdeeaf5bfba88bd0368205b430ce1ffdb97ba35f782d0029
Deployed Bytecode
0x60806040526004361061011c5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610121578063095ea7b3146101ab578063124fc7e0146101e357806318160ddd1461020757806323b872dd1461022e578063313ce567146102585780633f4ba83a1461028357806342966c681461029a5780635c975abb146102b257806366188463146102c757806370a08231146102eb5780638456cb591461030c5780638da5cb5b1461032157806395d89b4114610352578063a9059cbb14610367578063ab67aa581461038b578063bbdd366a146103fa578063be45fd621461040f578063d73dd62314610478578063dd62ed3e1461049c578063f2fde38b146104c3575b600080fd5b34801561012d57600080fd5b506101366104e4565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610170578181015183820152602001610158565b50505050905090810190601f16801561019d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101b757600080fd5b506101cf600160a060020a036004351660243561051b565b604080519115158252519081900360200190f35b3480156101ef57600080fd5b506101cf600435600160a060020a0360243516610546565b34801561021357600080fd5b5061021c6105ec565b60408051918252519081900360200190f35b34801561023a57600080fd5b506101cf600160a060020a03600435811690602435166044356105f2565b34801561026457600080fd5b5061026d610619565b6040805160ff9092168252519081900360200190f35b34801561028f57600080fd5b5061029861061e565b005b3480156102a657600080fd5b5061029860043561069a565b3480156102be57600080fd5b506101cf6106a7565b3480156102d357600080fd5b506101cf600160a060020a03600435166024356106b7565b3480156102f757600080fd5b5061021c600160a060020a03600435166106db565b34801561031857600080fd5b506102986106f6565b34801561032d57600080fd5b50610336610777565b60408051600160a060020a039092168252519081900360200190f35b34801561035e57600080fd5b50610136610786565b34801561037357600080fd5b506101cf600160a060020a03600435166024356107bd565b34801561039757600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526101cf94600160a060020a0381358116956024803590921695604435953695608494019181908401838280828437509497506107da9650505050505050565b34801561040657600080fd5b5061021c6108b0565b34801561041b57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101cf948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506108bc9650505050505050565b34801561048457600080fd5b506101cf600160a060020a0360043516602435610990565b3480156104a857600080fd5b5061021c600160a060020a03600435811690602435166109b4565b3480156104cf57600080fd5b50610298600160a060020a03600435166109df565b60408051808201909152600881527f57697365576f6c66000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561053557600080fd5b61053f8383610aaa565b9392505050565b60035460009033600160a060020a0390811691161461056457600080fd5b600154610577908463ffffffff610b1416565b600155600160a060020a0382166000908152602081905260409020546105a3908463ffffffff610b1416565b600160a060020a0383166000818152602081815260408083209490945583518781529351929391926000805160206111fa8339815191529281900390910190a350600192915050565b60015490565b60408051600080825260208201909252610611908590859085906107da565b949350505050565b601281565b60035433600160a060020a0390811691161461063957600080fd5b60035460a060020a900460ff16151561065157600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6106a43382610b27565b50565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156106d157600080fd5b61053f8383610c16565b600160a060020a031660009081526020819052604090205490565b60035433600160a060020a0390811691161461071157600080fd5b60035460a060020a900460ff161561072857600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600481527f574f4c4600000000000000000000000000000000000000000000000000000000602082015281565b6040805160008082526020820190925261053f90849084906108bc565b60006107e7858585610d0f565b15156107f257600080fd5b6107fb84610d34565b1561080c5761080c85858585610d3c565b816040518082805190602001908083835b6020831061083c5780518252601f19909201916020918201910161081d565b51815160209384036101000a6000190180199092169116179052604080519290940182900382208983529351939550600160a060020a038a811695508b16937fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c169350918290030190a4506001949350505050565b670de0b6b3a764000081565b60006108c88484610e33565b15156108d357600080fd5b6108dc84610d34565b156108ed576108ed33858585610d3c565b816040518082805190602001908083835b6020831061091d5780518252601f1990920191602091820191016108fe565b51815160209384036101000a6000190180199092169116179052604080519290940182900382208983529351939550600160a060020a038a811695503316937fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c169350918290030190a45060019392505050565b60035460009060a060020a900460ff16156109aa57600080fd5b61053f8383610e57565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035460009033600160a060020a039081169116146109fd57600080fd5b600160a060020a0382161515610a1257600080fd5b50600354600160a060020a03908116600090815260208190526040808220549284168252902054610a49908263ffffffff610b1416565b600160a060020a038084166000818152602081815260408083209590955560038054851683528583209290925590548451868152945192949316926000805160206111fa833981519152929081900390910190a3610aa682610ef9565b5050565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b81810182811015610b2157fe5b92915050565b600160a060020a038216600090815260208190526040902054811115610b4c57600080fd5b600160a060020a038216600090815260208190526040902054610b75908263ffffffff610f9216565b600160a060020a038316600090815260208190526040902055600154610ba1908263ffffffff610f9216565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206111fa8339815191529181900360200190a35050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610c7357600160a060020a033381166000908152600260209081526040808320938816835292905290812055610caa565b610c83818463ffffffff610f9216565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b60035460009060a060020a900460ff1615610d2957600080fd5b610611848484610fa4565b6000903b1190565b6040517fc0ee0b8a000000000000000000000000000000000000000000000000000000008152600160a060020a03858116600483019081526024830185905260606044840190815284516064850152845187949385169363c0ee0b8a938a938993899360840190602085019080838360005b83811015610dc6578181015183820152602001610dae565b50505050905090810190601f168015610df35780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b158015610e1457600080fd5b505af1158015610e28573d6000803e3d6000fd5b505050505050505050565b60035460009060a060020a900460ff1615610e4d57600080fd5b61053f8383611112565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610e8f908363ffffffff610b1416565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b60035433600160a060020a03908116911614610f1457600080fd5b600160a060020a0381161515610f2957600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610f9e57fe5b50900390565b6000600160a060020a0383161515610fbb57600080fd5b600160a060020a038416600090815260208190526040902054821115610fe057600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561101357600080fd5b600160a060020a03841660009081526020819052604090205461103c908363ffffffff610f9216565b600160a060020a038086166000908152602081905260408082209390935590851681522054611071908363ffffffff610b1416565b600160a060020a03808516600090815260208181526040808320949094558783168252600281528382203390931682529190915220546110b7908363ffffffff610f9216565b600160a060020a038086166000818152600260209081526040808320338616845282529182902094909455805186815290519287169391926000805160206111fa833981519152929181900390910190a35060019392505050565b6000600160a060020a038316151561112957600080fd5b600160a060020a03331660009081526020819052604090205482111561114e57600080fd5b600160a060020a033316600090815260208190526040902054611177908363ffffffff610f9216565b600160a060020a0333811660009081526020819052604080822093909355908516815220546111ac908363ffffffff610b1416565b600160a060020a03808516600081815260208181526040918290209490945580518681529051919333909316926000805160206111fa83398151915292918290030190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058200dee833f37cf5da2b154bdeeaf5bfba88bd0368205b430ce1ffdb97ba35f782d0029
Swarm Source
bzzr://0dee833f37cf5da2b154bdeeaf5bfba88bd0368205b430ce1ffdb97ba35f782d
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.