ERC-20
Insurance
Overview
Max Total Supply
1,000,000,000 DIP
Holders
5,947 (0.00%)
Market
Price
$0.01 @ 0.000005 ETH (+0.33%)
Onchain Market Cap
$14,878,430.00
Circulating Supply Market Cap
$5,705,069.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | Uniswap V3 (Ethereum) | 0XC719D010B63E5BBF2C0551872CD5316ED26ACD83-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $0.0149 0.0000048 Eth | $3,504.21 236,889.295 0XC719D010B63E5BBF2C0551872CD5316ED26ACD83 | 76.6639% |
2 | Uniswap V3 (Base) | 0XAC86F3556CBD2B4D800D17ADC3A266B500FCB9F5-0X4200000000000000000000000000000000000006 | $0.0148 0.0000047 Eth | $920.09 62,439.869 0XAC86F3556CBD2B4D800D17ADC3A266B500FCB9F5 | 20.2073% |
3 | Honeyswap | 0X48B1B0D077B4919B65B4E4114806DD803901E1D9-0XE91D153E0B41518A2CE8DD3D7944FA863463A97D | $0.0138 0.0000044 Eth | $199.60 15,346.844 0X48B1B0D077B4919B65B4E4114806DD803901E1D9 | 4.9667% |
4 | Uniswap V2 (Ethereum) | 0XC719D010B63E5BBF2C0551872CD5316ED26ACD83-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $0.0142 0.0000047 Eth | $137.37 9,667.940 0XC719D010B63E5BBF2C0551872CD5316ED26ACD83 | 3.1288% |
Contract Name:
DipToken
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-06-22 */ pragma solidity 0.4.24; // File: contracts/tokensale/DipTgeInterface.sol contract DipTgeInterface { function tokenIsLocked(address _contributor) public constant returns (bool); } // File: zeppelin-solidity/contracts/ownership/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. */ function Ownable() { 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) onlyOwner public { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } // File: zeppelin-solidity/contracts/math/SafeMath.sol /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal constant 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 c; } function sub(uint256 a, uint256 b) internal constant returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } // File: zeppelin-solidity/contracts/token/ERC20Basic.sol /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public constant returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } // File: zeppelin-solidity/contracts/token/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; /** * @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)); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); 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 constant returns (uint256 balance) { return balances[_owner]; } } // File: zeppelin-solidity/contracts/token/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 constant 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: zeppelin-solidity/contracts/token/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)) 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)); uint256 _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // require (_value <= _allowance); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = _allowance.sub(_value); 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; 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 constant returns (uint256 remaining) { return allowed[_owner][_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 */ function increaseApproval (address _spender, uint _addedValue) returns (bool success) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } function decreaseApproval (address _spender, uint _subtractedValue) returns (bool success) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } // File: zeppelin-solidity/contracts/token/MintableToken.sol /** * @title Mintable token * @dev Simple ERC20 Token example, with mintable token creation * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol */ contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) { totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); Mint(_to, _amount); Transfer(0x0, _to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner public returns (bool) { mintingFinished = true; MintFinished(); return true; } } // File: zeppelin-solidity/contracts/lifecycle/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; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; Unpause(); } } // File: zeppelin-solidity/contracts/token/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/token/DipToken.sol /** * @title DIP Token * @dev The Decentralized Insurance Platform Token. * @author Christoph Mussenbrock * @copyright 2017 Etherisc GmbH */ pragma solidity 0.4.24; contract DipToken is PausableToken, MintableToken { string public constant name = "Decentralized Insurance Protocol"; string public constant symbol = "DIP"; uint256 public constant decimals = 18; uint256 public constant MAXIMUM_SUPPLY = 10**9 * 10**18; // 1 Billion 1'000'000'000 DipTgeInterface public DipTokensale; constructor() public { DipTokensale = DipTgeInterface(owner); } modifier shouldNotBeLockedIn(address _contributor) { // after LockIntTime2, we don't need to check anymore, and // the DipTokensale contract is no longer required. require(DipTokensale.tokenIsLocked(_contributor) == false); _; } /** * @dev Function to mint tokens * @param _to The address that will recieve the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) public returns (bool) { if (totalSupply.add(_amount) > MAXIMUM_SUPPLY) { return false; } return super.mint(_to, _amount); } /** * Owner can transfer back tokens which have been sent to this contract by mistake. * @param _token address of token contract of the respective tokens * @param _to where to send the tokens */ function salvageTokens(ERC20Basic _token, address _to) onlyOwner public { _token.transfer(_to, _token.balanceOf(this)); } function transferFrom(address _from, address _to, uint256 _value) shouldNotBeLockedIn(_from) public returns (bool) { return super.transferFrom(_from, _to, _value); } function transfer(address to, uint256 value) shouldNotBeLockedIn(msg.sender) public returns (bool) { return super.transfer(to, value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"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":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAXIMUM_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"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":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"},{"name":"_to","type":"address"}],"name":"salvageTokens","outputs":[],"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":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DipTokensale","outputs":[{"name":"","type":"address"}],"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":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"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":"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
60806040526003805460a060020a61ffff021916905534801561002157600080fd5b5060038054600160a060020a031990811633179182905560048054909116600160a060020a0392909216919091179055611066806100606000396000f3006080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461012c57806306fdde0314610155578063095ea7b3146101df57806318160ddd1461020357806323b872dd1461022a578063313ce567146102545780633d0c4924146102695780633f4ba83a1461027e57806340c10f19146102955780635c975abb146102b957806366188463146102ce57806370a08231146102f25780637d64bcb4146103135780638456cb59146103285780638da5cb5b1461033d57806395d89b411461036e578063a9059cbb14610383578063bb957493146103a7578063d73dd623146103ce578063dd62ed3e146103f2578063e63b6b8714610419578063f2fde38b1461042e575b600080fd5b34801561013857600080fd5b5061014161044f565b604080519115158252519081900360200190f35b34801561016157600080fd5b5061016a610471565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a457818101518382015260200161018c565b50505050905090810190601f1680156101d15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101eb57600080fd5b50610141600160a060020a03600435166024356104aa565b34801561020f57600080fd5b506102186104d7565b60408051918252519081900360200190f35b34801561023657600080fd5b50610141600160a060020a03600435811690602435166044356104dd565b34801561026057600080fd5b50610218610593565b34801561027557600080fd5b50610218610598565b34801561028a57600080fd5b506102936105a8565b005b3480156102a157600080fd5b50610141600160a060020a0360043516602435610620565b3480156102c557600080fd5b5061014161065a565b3480156102da57600080fd5b50610141600160a060020a036004351660243561066a565b3480156102fe57600080fd5b50610218600160a060020a036004351661068e565b34801561031f57600080fd5b506101416106a9565b34801561033457600080fd5b50610293610729565b34801561034957600080fd5b506103526107a6565b60408051600160a060020a039092168252519081900360200190f35b34801561037a57600080fd5b5061016a6107b5565b34801561038f57600080fd5b50610141600160a060020a03600435166024356107ec565b3480156103b357600080fd5b50610293600160a060020a036004358116906024351661089c565b3480156103da57600080fd5b50610141600160a060020a03600435166024356109e1565b3480156103fe57600080fd5b50610218600160a060020a0360043581169060243516610a05565b34801561042557600080fd5b50610352610a30565b34801561043a57600080fd5b50610293600160a060020a0360043516610a3f565b6003547501000000000000000000000000000000000000000000900460ff1681565b6040805190810160405280602081526020017f446563656e7472616c697a656420496e737572616e63652050726f746f636f6c81525081565b60035460009060a060020a900460ff16156104c457600080fd5b6104ce8383610ad4565b90505b92915050565b60005481565b60048054604080517f3e03c84f000000000000000000000000000000000000000000000000000000008152600160a060020a0380881694820194909452905160009387931691633e03c84f91602480830192602092919082900301818887803b15801561054957600080fd5b505af115801561055d573d6000803e3d6000fd5b505050506040513d602081101561057357600080fd5b50511561057f57600080fd5b61058a858585610b3a565b95945050505050565b601281565b6b033b2e3c9fd0803ce800000081565b600354600160a060020a031633146105bf57600080fd5b60035460a060020a900460ff1615156105d757600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600080546b033b2e3c9fd0803ce800000090610642908463ffffffff610b5f16565b1115610650575060006104d1565b6104ce8383610b75565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161561068457600080fd5b6104ce8383610c92565b600160a060020a031660009081526001602052604090205490565b600354600090600160a060020a031633146106c357600080fd5b6003805475ff000000000000000000000000000000000000000000191675010000000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600354600160a060020a0316331461074057600080fd5b60035460a060020a900460ff161561075757600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600381527f4449500000000000000000000000000000000000000000000000000000000000602082015281565b60048054604080517f3e03c84f00000000000000000000000000000000000000000000000000000000815233938101849052905160009392600160a060020a031691633e03c84f91602480830192602092919082900301818887803b15801561085457600080fd5b505af1158015610868573d6000803e3d6000fd5b505050506040513d602081101561087e57600080fd5b50511561088a57600080fd5b6108948484610d82565b949350505050565b600354600160a060020a031633146108b357600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a0384169163a9059cbb91849184916370a08231916024808201926020929091908290030181600087803b15801561091f57600080fd5b505af1158015610933573d6000803e3d6000fd5b505050506040513d602081101561094957600080fd5b5051604080517c010000000000000000000000000000000000000000000000000000000063ffffffff8616028152600160a060020a03909316600484015260248301919091525160448083019260209291908290030181600087803b1580156109b157600080fd5b505af11580156109c5573d6000803e3d6000fd5b505050506040513d60208110156109db57600080fd5b50505050565b60035460009060a060020a900460ff16156109fb57600080fd5b6104ce8383610da6565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600454600160a060020a031681565b600354600160a060020a03163314610a5657600080fd5b600160a060020a0381161515610a6b57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60035460009060a060020a900460ff1615610b5457600080fd5b610894848484610e3f565b600082820183811015610b6e57fe5b9392505050565b600354600090600160a060020a03163314610b8f57600080fd5b6003547501000000000000000000000000000000000000000000900460ff1615610bb857600080fd5b600054610bcb908363ffffffff610b5f16565b6000908155600160a060020a038416815260016020526040902054610bf6908363ffffffff610b5f16565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610ce757336000908152600260209081526040808320600160a060020a0388168452909152812055610d1c565b610cf7818463ffffffff610f6116565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60035460009060a060020a900460ff1615610d9c57600080fd5b6104ce8383610f73565b336000908152600260209081526040808320600160a060020a0386168452909152812054610dda908363ffffffff610b5f16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600080600160a060020a0384161515610e5757600080fd5b50600160a060020a03841660008181526002602090815260408083203384528252808320549383526001909152902054610e97908463ffffffff610f6116565b600160a060020a038087166000908152600160205260408082209390935590861681522054610ecc908463ffffffff610b5f16565b600160a060020a038516600090815260016020526040902055610ef5818463ffffffff610f6116565b600160a060020a03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b600082821115610f6d57fe5b50900390565b6000600160a060020a0383161515610f8a57600080fd5b33600090815260016020526040902054610faa908363ffffffff610f6116565b3360009081526001602052604080822092909255600160a060020a03851681522054610fdc908363ffffffff610b5f16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001929150505600a165627a7a72305820dcbfff5de4a3b0f5ca6944f78565e29b6302d9417dd58bc7746af97037c3c3700029
Deployed Bytecode
0x6080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461012c57806306fdde0314610155578063095ea7b3146101df57806318160ddd1461020357806323b872dd1461022a578063313ce567146102545780633d0c4924146102695780633f4ba83a1461027e57806340c10f19146102955780635c975abb146102b957806366188463146102ce57806370a08231146102f25780637d64bcb4146103135780638456cb59146103285780638da5cb5b1461033d57806395d89b411461036e578063a9059cbb14610383578063bb957493146103a7578063d73dd623146103ce578063dd62ed3e146103f2578063e63b6b8714610419578063f2fde38b1461042e575b600080fd5b34801561013857600080fd5b5061014161044f565b604080519115158252519081900360200190f35b34801561016157600080fd5b5061016a610471565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a457818101518382015260200161018c565b50505050905090810190601f1680156101d15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101eb57600080fd5b50610141600160a060020a03600435166024356104aa565b34801561020f57600080fd5b506102186104d7565b60408051918252519081900360200190f35b34801561023657600080fd5b50610141600160a060020a03600435811690602435166044356104dd565b34801561026057600080fd5b50610218610593565b34801561027557600080fd5b50610218610598565b34801561028a57600080fd5b506102936105a8565b005b3480156102a157600080fd5b50610141600160a060020a0360043516602435610620565b3480156102c557600080fd5b5061014161065a565b3480156102da57600080fd5b50610141600160a060020a036004351660243561066a565b3480156102fe57600080fd5b50610218600160a060020a036004351661068e565b34801561031f57600080fd5b506101416106a9565b34801561033457600080fd5b50610293610729565b34801561034957600080fd5b506103526107a6565b60408051600160a060020a039092168252519081900360200190f35b34801561037a57600080fd5b5061016a6107b5565b34801561038f57600080fd5b50610141600160a060020a03600435166024356107ec565b3480156103b357600080fd5b50610293600160a060020a036004358116906024351661089c565b3480156103da57600080fd5b50610141600160a060020a03600435166024356109e1565b3480156103fe57600080fd5b50610218600160a060020a0360043581169060243516610a05565b34801561042557600080fd5b50610352610a30565b34801561043a57600080fd5b50610293600160a060020a0360043516610a3f565b6003547501000000000000000000000000000000000000000000900460ff1681565b6040805190810160405280602081526020017f446563656e7472616c697a656420496e737572616e63652050726f746f636f6c81525081565b60035460009060a060020a900460ff16156104c457600080fd5b6104ce8383610ad4565b90505b92915050565b60005481565b60048054604080517f3e03c84f000000000000000000000000000000000000000000000000000000008152600160a060020a0380881694820194909452905160009387931691633e03c84f91602480830192602092919082900301818887803b15801561054957600080fd5b505af115801561055d573d6000803e3d6000fd5b505050506040513d602081101561057357600080fd5b50511561057f57600080fd5b61058a858585610b3a565b95945050505050565b601281565b6b033b2e3c9fd0803ce800000081565b600354600160a060020a031633146105bf57600080fd5b60035460a060020a900460ff1615156105d757600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600080546b033b2e3c9fd0803ce800000090610642908463ffffffff610b5f16565b1115610650575060006104d1565b6104ce8383610b75565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161561068457600080fd5b6104ce8383610c92565b600160a060020a031660009081526001602052604090205490565b600354600090600160a060020a031633146106c357600080fd5b6003805475ff000000000000000000000000000000000000000000191675010000000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600354600160a060020a0316331461074057600080fd5b60035460a060020a900460ff161561075757600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600381527f4449500000000000000000000000000000000000000000000000000000000000602082015281565b60048054604080517f3e03c84f00000000000000000000000000000000000000000000000000000000815233938101849052905160009392600160a060020a031691633e03c84f91602480830192602092919082900301818887803b15801561085457600080fd5b505af1158015610868573d6000803e3d6000fd5b505050506040513d602081101561087e57600080fd5b50511561088a57600080fd5b6108948484610d82565b949350505050565b600354600160a060020a031633146108b357600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a0384169163a9059cbb91849184916370a08231916024808201926020929091908290030181600087803b15801561091f57600080fd5b505af1158015610933573d6000803e3d6000fd5b505050506040513d602081101561094957600080fd5b5051604080517c010000000000000000000000000000000000000000000000000000000063ffffffff8616028152600160a060020a03909316600484015260248301919091525160448083019260209291908290030181600087803b1580156109b157600080fd5b505af11580156109c5573d6000803e3d6000fd5b505050506040513d60208110156109db57600080fd5b50505050565b60035460009060a060020a900460ff16156109fb57600080fd5b6104ce8383610da6565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600454600160a060020a031681565b600354600160a060020a03163314610a5657600080fd5b600160a060020a0381161515610a6b57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60035460009060a060020a900460ff1615610b5457600080fd5b610894848484610e3f565b600082820183811015610b6e57fe5b9392505050565b600354600090600160a060020a03163314610b8f57600080fd5b6003547501000000000000000000000000000000000000000000900460ff1615610bb857600080fd5b600054610bcb908363ffffffff610b5f16565b6000908155600160a060020a038416815260016020526040902054610bf6908363ffffffff610b5f16565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610ce757336000908152600260209081526040808320600160a060020a0388168452909152812055610d1c565b610cf7818463ffffffff610f6116565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60035460009060a060020a900460ff1615610d9c57600080fd5b6104ce8383610f73565b336000908152600260209081526040808320600160a060020a0386168452909152812054610dda908363ffffffff610b5f16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600080600160a060020a0384161515610e5757600080fd5b50600160a060020a03841660008181526002602090815260408083203384528252808320549383526001909152902054610e97908463ffffffff610f6116565b600160a060020a038087166000908152600160205260408082209390935590861681522054610ecc908463ffffffff610b5f16565b600160a060020a038516600090815260016020526040902055610ef5818463ffffffff610f6116565b600160a060020a03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b600082821115610f6d57fe5b50900390565b6000600160a060020a0383161515610f8a57600080fd5b33600090815260016020526040902054610faa908363ffffffff610f6116565b3360009081526001602052604080822092909255600160a060020a03851681522054610fdc908363ffffffff610b5f16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001929150505600a165627a7a72305820dcbfff5de4a3b0f5ca6944f78565e29b6302d9417dd58bc7746af97037c3c3700029
Swarm Source
bzzr://dcbfff5de4a3b0f5ca6944f78565e29b6302d9417dd58bc7746af97037c3c370
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.