ERC-20
Overview
Max Total Supply
369,279,886 CHT
Holders
1,199
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CoinHot
Compiler Version
v0.4.18+commit.9cf6e910
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-01-19 */ pragma solidity ^0.4.18; /** * @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 view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 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 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() 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)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } library DateTime { /* * Date and Time utilities for ethereum contracts * */ struct MyDateTime { uint16 year; uint8 month; uint8 day; uint8 hour; uint8 minute; uint8 second; uint8 weekday; } uint constant DAY_IN_SECONDS = 86400; uint constant YEAR_IN_SECONDS = 31536000; uint constant LEAP_YEAR_IN_SECONDS = 31622400; uint constant HOUR_IN_SECONDS = 3600; uint constant MINUTE_IN_SECONDS = 60; uint16 constant ORIGIN_YEAR = 1970; function isLeapYear(uint16 year) internal pure returns (bool) { if (year % 4 != 0) { return false; } if (year % 100 != 0) { return true; } if (year % 400 != 0) { return false; } return true; } function leapYearsBefore(uint year) internal pure returns (uint) { year -= 1; return year / 4 - year / 100 + year / 400; } function getDaysInMonth(uint8 month, uint16 year) internal pure returns (uint8) { if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12) { return 31; } else if (month == 4 || month == 6 || month == 9 || month == 11) { return 30; } else if (isLeapYear(year)) { return 29; } else { return 28; } } function parseTimestamp(uint timestamp) internal pure returns (MyDateTime dt) { uint secondsAccountedFor = 0; uint buf; uint8 i; // Year dt.year = getYear(timestamp); buf = leapYearsBefore(dt.year) - leapYearsBefore(ORIGIN_YEAR); secondsAccountedFor += LEAP_YEAR_IN_SECONDS * buf; secondsAccountedFor += YEAR_IN_SECONDS * (dt.year - ORIGIN_YEAR - buf); // Month uint secondsInMonth; for (i = 1; i <= 12; i++) { secondsInMonth = DAY_IN_SECONDS * getDaysInMonth(i, dt.year); if (secondsInMonth + secondsAccountedFor > timestamp) { dt.month = i; break; } secondsAccountedFor += secondsInMonth; } // Day for (i = 1; i <= getDaysInMonth(dt.month, dt.year); i++) { if (DAY_IN_SECONDS + secondsAccountedFor > timestamp) { dt.day = i; break; } secondsAccountedFor += DAY_IN_SECONDS; } // Hour dt.hour = 0;//getHour(timestamp); // Minute dt.minute = 0;//getMinute(timestamp); // Second dt.second = 0;//getSecond(timestamp); // Day of week. dt.weekday = 0;//getWeekday(timestamp); } function getYear(uint timestamp) internal pure returns (uint16) { uint secondsAccountedFor = 0; uint16 year; uint numLeapYears; // Year year = uint16(ORIGIN_YEAR + timestamp / YEAR_IN_SECONDS); numLeapYears = leapYearsBefore(year) - leapYearsBefore(ORIGIN_YEAR); secondsAccountedFor += LEAP_YEAR_IN_SECONDS * numLeapYears; secondsAccountedFor += YEAR_IN_SECONDS * (year - ORIGIN_YEAR - numLeapYears); while (secondsAccountedFor > timestamp) { if (isLeapYear(uint16(year - 1))) { secondsAccountedFor -= LEAP_YEAR_IN_SECONDS; } else { secondsAccountedFor -= YEAR_IN_SECONDS; } year -= 1; } return year; } function getMonth(uint timestamp) internal pure returns (uint8) { return parseTimestamp(timestamp).month; } function getDay(uint timestamp) internal pure returns (uint8) { return parseTimestamp(timestamp).day; } function getHour(uint timestamp) internal pure returns (uint8) { return uint8((timestamp / 60 / 60) % 24); } function getMinute(uint timestamp) internal pure returns (uint8) { return uint8((timestamp / 60) % 60); } function getSecond(uint timestamp) internal pure returns (uint8) { return uint8(timestamp % 60); } function toTimestamp(uint16 year, uint8 month, uint8 day) internal pure returns (uint timestamp) { return toTimestamp(year, month, day, 0, 0, 0); } function toTimestamp(uint16 year, uint8 month, uint8 day, uint8 hour, uint8 minute, uint8 second) internal pure returns (uint timestamp) { uint16 i; // Year for (i = ORIGIN_YEAR; i < year; i++) { if (isLeapYear(i)) { timestamp += LEAP_YEAR_IN_SECONDS; } else { timestamp += YEAR_IN_SECONDS; } } // Month uint8[12] memory monthDayCounts; monthDayCounts[0] = 31; if (isLeapYear(year)) { monthDayCounts[1] = 29; } else { monthDayCounts[1] = 28; } monthDayCounts[2] = 31; monthDayCounts[3] = 30; monthDayCounts[4] = 31; monthDayCounts[5] = 30; monthDayCounts[6] = 31; monthDayCounts[7] = 31; monthDayCounts[8] = 30; monthDayCounts[9] = 31; monthDayCounts[10] = 30; monthDayCounts[11] = 31; for (i = 1; i < month; i++) { timestamp += DAY_IN_SECONDS * monthDayCounts[i - 1]; } // Day timestamp += DAY_IN_SECONDS * (day - 1); // Hour timestamp += HOUR_IN_SECONDS * (hour); // Minute timestamp += MINUTE_IN_SECONDS * (minute); // Second timestamp += second; return timestamp; } } /** * @title Claimable * @dev Extension for the Ownable contract, where the ownership needs to be claimed. * This allows the new owner to accept the transfer. */ contract Claimable is Ownable { address public pendingOwner; /** * @dev Modifier throws if called by any account other than the pendingOwner. */ modifier onlyPendingOwner() { require(msg.sender == pendingOwner); _; } /** * @dev Allows the current owner to set the pendingOwner address. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner public { pendingOwner = newOwner; } /** * @dev Allows the pendingOwner address to finalize the transfer. */ function claimOwnership() onlyPendingOwner public { OwnershipTransferred(owner, pendingOwner); owner = pendingOwner; pendingOwner = address(0); } } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } 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 c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } /** * @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)); require(_value <= balances[msg.sender]); // 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 view returns (uint256 balance) { return balances[_owner]; } } /** * @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); } /** * @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); 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 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); 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); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title Helps contracts guard agains reentrancy attacks. * @author Remco Bloemen <remco@2π.com> * @notice If you mark a function `nonReentrant`, you should also * mark it `external`. */ contract ReentrancyGuard { /** * @dev We use a single lock for the whole contract. */ bool private reentrancy_lock = false; /** * @dev Prevents a contract from calling itself, directly or indirectly. * @notice If you mark a function `nonReentrant`, you should also * mark it `external`. Calling one nonReentrant function from * another is not supported. Instead, you can implement a * `private` function doing the actual work, and a `external` * wrapper marked as `nonReentrant`. */ modifier nonReentrant() { require(!reentrancy_lock); reentrancy_lock = true; _; reentrancy_lock = false; } } /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract StandardBurnableToken is StandardToken { 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 returns (bool) { require(_value <= balances[msg.sender]); // 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 address burner = msg.sender; balances[burner] = balances[burner].sub(_value); totalSupply = totalSupply.sub(_value); Burn(burner, _value); return true; } } contract Operational is Claimable { address public operator; function Operational(address _operator) public { operator = _operator; } modifier onlyOperator() { require(msg.sender == operator); _; } function transferOperator(address newOperator) public onlyOwner { require(newOperator != address(0)); operator = newOperator; } } contract Frozenable is Operational, StandardBurnableToken, ReentrancyGuard { struct FrozenBalance { address owner; uint256 value; uint256 unfreezeTime; } mapping (uint => FrozenBalance) public frozenBalances; uint public frozenBalanceCount; uint256 mulDecimals = 100000000; // match decimals event SystemFreeze(address indexed owner, uint256 value, uint256 unfreezeTime); event Unfreeze(address indexed owner, uint256 value, uint256 unfreezeTime); event TransferSystemFreeze(address indexed owner, uint256 value, uint256 time); function Frozenable(address _operator) Operational(_operator) public {} // freeze system' balance function systemFreeze(uint256 _value, uint256 _unfreezeTime) internal { balances[owner] = balances[owner].sub(_value); frozenBalances[frozenBalanceCount] = FrozenBalance({owner: owner, value: _value, unfreezeTime: _unfreezeTime}); frozenBalanceCount++; SystemFreeze(owner, _value, _unfreezeTime); } // get frozen balance function frozenBalanceOf(address _owner) public constant returns (uint256 value) { for (uint i = 0; i < frozenBalanceCount; i++) { FrozenBalance storage frozenBalance = frozenBalances[i]; if (_owner == frozenBalance.owner) { value = value.add(frozenBalance.value); } } return value; } // unfreeze frozen amount // everyone can call this function to unfreeze balance function unfreeze() public returns (uint256 releaseAmount) { uint index = 0; while (index < frozenBalanceCount) { if (now >= frozenBalances[index].unfreezeTime) { releaseAmount += frozenBalances[index].value; unfreezeBalanceByIndex(index); } else { index++; } } return releaseAmount; } function unfreezeBalanceByIndex(uint index) internal { FrozenBalance storage frozenBalance = frozenBalances[index]; balances[frozenBalance.owner] = balances[frozenBalance.owner].add(frozenBalance.value); Unfreeze(frozenBalance.owner, frozenBalance.value, frozenBalance.unfreezeTime); frozenBalances[index] = frozenBalances[frozenBalanceCount - 1]; delete frozenBalances[frozenBalanceCount - 1]; frozenBalanceCount--; } function transferSystemFreeze() internal { uint256 totalTransferSysFreezeAmount = 0; for (uint i = 0; i < frozenBalanceCount; i++) { frozenBalances[i].owner = owner; totalTransferSysFreezeAmount += frozenBalances[i].value; } TransferSystemFreeze(owner, totalTransferSysFreezeAmount, now); } } contract Releaseable is Frozenable { using SafeMath for uint; using DateTime for uint256; uint256 public createTime; uint256 public standardReleaseAmount = mulDecimals.mul(1024000); // uint256 public releaseAmountPerDay = mulDecimals.mul(1024000); uint256 public releasedSupply = 0; event Release(address indexed receiver, uint256 value, uint256 sysAmount, uint256 releaseTime); struct ReleaseRecord { uint256 amount; // release amount uint256 releaseTime; // release time } mapping (uint => ReleaseRecord) public releaseRecords; uint public releaseRecordsCount = 0; function Releaseable( address _operator, uint256 _initialSupply ) Frozenable(_operator) public { createTime = 1514563200; releasedSupply = _initialSupply; balances[owner] = _initialSupply; totalSupply = mulDecimals.mul(369280000); } function release(uint256 timestamp, uint256 sysAmount) public onlyOperator returns(uint256 _actualRelease) { require(timestamp >= createTime && timestamp <= now); require(!checkIsReleaseRecordExist(timestamp)); updateReleaseAmount(timestamp); require(sysAmount <= releaseAmountPerDay.mul(4).div(5)); require(totalSupply >= releasedSupply.add(releaseAmountPerDay)); balances[owner] = balances[owner].add(releaseAmountPerDay); releasedSupply = releasedSupply.add(releaseAmountPerDay); releaseRecords[releaseRecordsCount] = ReleaseRecord(releaseAmountPerDay, timestamp); releaseRecordsCount++; Release(owner, releaseAmountPerDay, sysAmount, timestamp); systemFreeze(sysAmount.div(5), timestamp.add(180 days)); systemFreeze(sysAmount.mul(7).div(10), timestamp.add(70 years)); return releaseAmountPerDay; } // check is release record existed // if existed return true, else return false function checkIsReleaseRecordExist(uint256 timestamp) internal view returns(bool _exist) { bool exist = false; if (releaseRecordsCount > 0) { for (uint index = 0; index < releaseRecordsCount; index++) { if ((releaseRecords[index].releaseTime.parseTimestamp().year == timestamp.parseTimestamp().year) && (releaseRecords[index].releaseTime.parseTimestamp().month == timestamp.parseTimestamp().month) && (releaseRecords[index].releaseTime.parseTimestamp().day == timestamp.parseTimestamp().day)) { exist = true; } } } return exist; } // update release amount for single day // according to dividend rule in https://coinhot.com function updateReleaseAmount(uint256 timestamp) internal { uint256 timeElapse = timestamp.sub(createTime); uint256 cycles = timeElapse.div(180 days); if (cycles > 0) { if (cycles <= 10) { releaseAmountPerDay = standardReleaseAmount; for (uint index = 0; index < cycles; index++) { releaseAmountPerDay = releaseAmountPerDay.div(2); } } else { releaseAmountPerDay = 0; } } } function claimOwnership() onlyPendingOwner public { OwnershipTransferred(owner, pendingOwner); owner = pendingOwner; pendingOwner = address(0); transferSystemFreeze(); } } contract CoinHot is Releaseable { string public standard = '2018011603'; string public name = 'CoinHot'; string public symbol = 'CHT'; uint8 public decimals = 8; function CoinHot( address _operator, uint256 _initialSupply ) Releaseable(_operator, _initialSupply) public {} }
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":true,"inputs":[],"name":"releaseAmountPerDay","outputs":[{"name":"","type":"uint256"}],"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":false,"inputs":[{"name":"newOperator","type":"address"}],"name":"transferOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"releaseRecords","outputs":[{"name":"amount","type":"uint256"},{"name":"releaseTime","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":"timestamp","type":"uint256"},{"name":"sysAmount","type":"uint256"}],"name":"release","outputs":[{"name":"_actualRelease","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"releaseRecordsCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"operator","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"createTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unfreeze","outputs":[{"name":"releaseAmount","type":"uint256"}],"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":true,"inputs":[{"name":"","type":"uint256"}],"name":"frozenBalances","outputs":[{"name":"owner","type":"address"},{"name":"value","type":"uint256"},{"name":"unfreezeTime","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"standardReleaseAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"frozenBalanceCount","outputs":[{"name":"","type":"uint256"}],"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":true,"inputs":[],"name":"releasedSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"frozenBalanceOf","outputs":[{"name":"value","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","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":true,"inputs":[],"name":"pendingOwner","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":[{"name":"_operator","type":"address"},{"name":"_initialSupply","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"receiver","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"sysAmount","type":"uint256"},{"indexed":false,"name":"releaseTime","type":"uint256"}],"name":"Release","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"unfreezeTime","type":"uint256"}],"name":"SystemFreeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"unfreezeTime","type":"uint256"}],"name":"Unfreeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"time","type":"uint256"}],"name":"TransferSystemFreeze","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":"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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
60606040526006805460ff191690556305f5e10060098190556200003590620fa0006401000000006200128f620001f982021704565b600b556009546200005890620fa0006401000000006200128f620001f982021704565b600c556000600d556000600f5560408051908101604052600a81527f323031383031313630330000000000000000000000000000000000000000000060208201526010908051620000ae92916020019062000233565b5060408051908101604052600781527f436f696e486f740000000000000000000000000000000000000000000000000060208201526011908051620000f892916020019062000233565b5060408051908101604052600381527f4348540000000000000000000000000000000000000000000000000000000000602082015260129080516200014292916020019062000233565b506013805460ff1916600817905534156200015c57600080fd5b60405160408062001bbd833981016040528080519190602001805160008054600160a060020a03338116600160a060020a03199283161780845560028054838a16941693909317909255635a466680600a55600d8490551681526004602052604090208190556009549092508391508290620001eb90631602c4006401000000006200128f620001f982021704565b60035550620002d892505050565b6000808315156200020e57600091506200022c565b508282028284828115156200021f57fe5b04146200022857fe5b8091505b5092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200027657805160ff1916838001178555620002a6565b82800160010185558215620002a6579182015b82811115620002a657825182559160200191906001019062000289565b50620002b4929150620002b8565b5090565b620002d591905b80821115620002b45760008155600101620002bf565b90565b6118d580620002e86000396000f30060606040526004361061017f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461018457806308cb4cb51461020e578063095ea7b31461023357806318160ddd1461026957806323b872dd1461027c57806329605e77146102a45780632ac12fde146102c5578063313ce567146102f3578063366a41201461031c57806342966c68146103355780634e71e0c81461034b578063569fa9f91461035e578063570ca735146103715780635a3b7e42146103a057806361dcd7ab146103b357806366188463146103c65780636a28f000146103e857806370a08231146103fb5780637c2107081461041a5780637e7712f2146104665780638da5cb5b1461047957806391f5637a1461048c57806395d89b411461049f578063a9059cbb146104b2578063b813c627146104d4578063be91de53146104e7578063d73dd62314610506578063dd62ed3e14610528578063e30c39781461054d578063f2fde38b14610560575b600080fd5b341561018f57600080fd5b61019761057f565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101d35780820151838201526020016101bb565b50505050905090810190601f1680156102005780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021957600080fd5b61022161061d565b60405190815260200160405180910390f35b341561023e57600080fd5b610255600160a060020a0360043516602435610623565b604051901515815260200160405180910390f35b341561027457600080fd5b610221610690565b341561028757600080fd5b610255600160a060020a0360043581169060243516604435610696565b34156102af57600080fd5b6102c3600160a060020a0360043516610818565b005b34156102d057600080fd5b6102db60043561086a565b60405191825260208201526040908101905180910390f35b34156102fe57600080fd5b610306610883565b60405160ff909116815260200160405180910390f35b341561032757600080fd5b61022160043560243561088c565b341561034057600080fd5b610255600435610a91565b341561035657600080fd5b6102c3610b52565b341561036957600080fd5b610221610bdb565b341561037c57600080fd5b610384610be1565b604051600160a060020a03909116815260200160405180910390f35b34156103ab57600080fd5b610197610bf0565b34156103be57600080fd5b610221610c5b565b34156103d157600080fd5b610255600160a060020a0360043516602435610c61565b34156103f357600080fd5b610221610d5d565b341561040657600080fd5b610221600160a060020a0360043516610db5565b341561042557600080fd5b610430600435610dd4565b6040518084600160a060020a0316600160a060020a03168152602001838152602001828152602001935050505060405180910390f35b341561047157600080fd5b610221610dff565b341561048457600080fd5b610384610e05565b341561049757600080fd5b610221610e14565b34156104aa57600080fd5b610197610e1a565b34156104bd57600080fd5b610255600160a060020a0360043516602435610e85565b34156104df57600080fd5b610221610f80565b34156104f257600080fd5b610221600160a060020a0360043516610f86565b341561051157600080fd5b610255600160a060020a0360043516602435610fe4565b341561053357600080fd5b610221600160a060020a0360043581169060243516611088565b341561055857600080fd5b6103846110b3565b341561056b57600080fd5b6102c3600160a060020a03600435166110c2565b60118054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106155780601f106105ea57610100808354040283529160200191610615565b820191906000526020600020905b8154815290600101906020018083116105f857829003601f168201915b505050505081565b600c5481565b600160a060020a03338116600081815260056020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60035481565b6000600160a060020a03831615156106ad57600080fd5b600160a060020a0384166000908152600460205260409020548211156106d257600080fd5b600160a060020a038085166000908152600560209081526040808320339094168352929052205482111561070557600080fd5b600160a060020a03841660009081526004602052604090205461072e908363ffffffff6110ff16565b600160a060020a038086166000908152600460205260408082209390935590851681522054610763908363ffffffff61111116565b600160a060020a038085166000908152600460209081526040808320949094558783168252600581528382203390931682529190915220546107ab908363ffffffff6110ff16565b600160a060020a03808616600081815260056020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60005433600160a060020a0390811691161461083357600080fd5b600160a060020a038116151561084857600080fd5b60028054600160a060020a031916600160a060020a0392909216919091179055565b600e602052600090815260409020805460019091015482565b60135460ff1681565b60025460009033600160a060020a039081169116146108aa57600080fd5b600a5483101580156108bc5750428311155b15156108c757600080fd5b6108d083611127565b156108da57600080fd5b6108e38361120b565b61090a60056108fe6004600c5461128f90919063ffffffff16565b9063ffffffff6112ba16565b82111561091657600080fd5b600c54600d5461092b9163ffffffff61111116565b600354101561093957600080fd5b600c5460008054600160a060020a03168152600460205260409020546109649163ffffffff61111116565b60008054600160a060020a0316815260046020526040902055600c54600d546109929163ffffffff61111116565b600d55604080519081016040908152600c5482526020808301869052600f546000908152600e90915220815181556020820151600191820155600f8054909101905550600054600c54600160a060020a03909116907f6d0f8bf20fdbf0501c403fa7863679b821f006a63b09c689ee2687d00220edf990848660405180848152602001838152602001828152602001935050505060405180910390a2610a5a610a4283600563ffffffff6112ba16565b610a558562ed4e0063ffffffff61111116565b6112d1565b610a87610a73600a6108fe85600763ffffffff61128f16565b610a5585638394150063ffffffff61111116565b50600c5492915050565b600160a060020a0333166000908152600460205260408120548190831115610ab857600080fd5b5033600160a060020a038116600090815260046020526040902054610add90846110ff565b600160a060020a038216600090815260046020526040902055600354610b09908463ffffffff6110ff16565b600355600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58460405190815260200160405180910390a250600192915050565b60015433600160a060020a03908116911614610b6d57600080fd5b600154600054600160a060020a0391821691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001805460008054600160a060020a0319908116600160a060020a03841617909155169055610bd96113d1565b565b600f5481565b600254600160a060020a031681565b60108054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106155780601f106105ea57610100808354040283529160200191610615565b600a5481565b600160a060020a03338116600090815260056020908152604080832093861683529290529081205480831115610cbe57600160a060020a033381166000908152600560209081526040808320938816835292905290812055610cf5565b610cce818463ffffffff6110ff16565b600160a060020a033381166000908152600560209081526040808320938916835292905220555b600160a060020a0333811660008181526005602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b6000805b600854811015610db1576000818152600760205260409020600201544210610da8576000818152600760205260409020600101549190910190610da381611468565b610dac565b6001015b610d61565b5090565b600160a060020a0381166000908152600460205260409020545b919050565b600760205260009081526040902080546001820154600290920154600160a060020a03909116919083565b600b5481565b600054600160a060020a031681565b60085481565b60128054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106155780601f106105ea57610100808354040283529160200191610615565b6000600160a060020a0383161515610e9c57600080fd5b600160a060020a033316600090815260046020526040902054821115610ec157600080fd5b600160a060020a033316600090815260046020526040902054610eea908363ffffffff6110ff16565b600160a060020a033381166000908152600460205260408082209390935590851681522054610f1f908363ffffffff61111116565b600160a060020a0380851660008181526004602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600d5481565b600080805b600854821015610fdd575060008181526007602052604090208054600160a060020a0385811691161415610fd2576001810154610fcf90849063ffffffff61111116565b92505b600190910190610f8b565b5050919050565b600160a060020a03338116600090815260056020908152604080832093861683529290529081205461101c908363ffffffff61111116565b600160a060020a0333811660008181526005602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600154600160a060020a031681565b60005433600160a060020a039081169116146110dd57600080fd5b60018054600160a060020a031916600160a060020a0392909216919091179055565b60008282111561110b57fe5b50900390565b60008282018381101561112057fe5b9392505050565b60008060008091506000600f541115610d56575060005b600f54811015610d565761115184611587565b5161ffff16611175600e600084815260200190815260200160002060010154611587565b5161ffff161480156111ba575061118b84611587565b6020015160ff166111b1600e600084815260200190815260200160002060010154611587565b6020015160ff16145b80156111f957506111ca84611587565b6040015160ff166111f0600e600084815260200190815260200160002060010154611587565b6040015160ff16145b1561120357600191505b60010161113e565b6000806000611225600a54856110ff90919063ffffffff16565b925061123a8362ed4e0063ffffffff6112ba16565b9150600082111561128957600a82116112835750600b54600c5560005b8181101561127e57600c5461127390600263ffffffff6112ba16565b600c55600101611257565b611289565b6000600c555b50505050565b6000808315156112a25760009150610d56565b508282028284828115156112b257fe5b041461112057fe5b60008082848115156112c857fe5b04949350505050565b60008054600160a060020a03168152600460205260409020546112fa908363ffffffff6110ff16565b60008054600160a060020a0316815260046020526040908190209190915560609051908101604090815260008054600160a060020a0316835260208084018690528284018590526008548252600790522081518154600160a060020a031916600160a060020a039190911617815560208201518160010155604082015160029091015550600880546001019055600054600160a060020a03167fb55465b458f8f3565cd38fc86992b720f5bdddb4532ab881265c1275f0db53d4838360405191825260208201526040908101905180910390a25050565b6000805b60085481101561141e5760008054828252600760205260409091208054600160a060020a031916600160a060020a039092169190911781556001908101549290920191016113d5565b600054600160a060020a03167ff30cc5ec80ab2762ee5ff67b0095a94997e6f522a3e0c0fdbad49a454542f35f834260405191825260208201526040908101905180910390a25050565b600081815260076020908152604080832060018101548154600160a060020a0316855260049093529220546114a29163ffffffff61111116565b8154600160a060020a03908116600090815260046020526040908190209290925582546001840154600285015491909216927f7ed75eaf82098257819f0bd6dd7f79062e49152905980263c73ee48565a656a59291905191825260208201526040908101905180910390a2506008805460001990810160009081526007602052604080822094825280822085548154600160a060020a03909116600160a060020a031991821617825560018088015481840155600297880154928801929092558554850184529183208054909216825581018290559093019290925580549091019055565b61158f61186d565b600080808061159d866116a6565b61ffff1685526115ae6107b2611736565b6115bc865161ffff16611736565b039250826301e285000284019350826107b286600001510361ffff16036301e133800284019350600191505b600c60ff83161161162f576115fe828651611751565b60ff16620151800290508584820111156116205760ff8216602086015261162f565b928301926001909101906115e8565b600191505b61164385602001518651611751565b60ff168260ff161115156116805785846201518001111561166c5760ff82166040860152611680565b620151809390930192600190910190611634565b50506000606084018190526080840181905260a0840181905260c0840152509092915050565b6000806107b26301e13380840481019082906116c190611736565b6116ce8361ffff16611736565b039050806301e285000283019250806107b2830361ffff16036301e1338002830192505b8483111561172e5761170660018303611817565b15611719576301e2850083039250611723565b6301e13380830392505b6001820391506116f2565b509392505050565b60001901600061019082046064830460048404030192915050565b60008260ff166001148061176857508260ff166003145b8061177657508260ff166005145b8061178457508260ff166007145b8061179257508260ff166008145b806117a057508260ff16600a145b806117ae57508260ff16600c145b156117bb5750601f61068a565b8260ff16600414806117d057508260ff166006145b806117de57508260ff166009145b806117ec57508260ff16600b145b156117f95750601e61068a565b61180282611817565b1561180f5750601d61068a565b50601c61068a565b6000600461ffff83160661ffff161561183257506000610dcf565b606461ffff83160661ffff161561184b57506001610dcf565b61019061ffff83160661ffff161561186557506000610dcf565b506001919050565b60e06040519081016040908152600080835260208301819052908201819052606082018190526080820181905260a0820181905260c0820152905600a165627a7a723058208ce483a4935b0c29a41ef649832ee3d8bf3744976469f56c40139382f110d6530029000000000000000000000000002053fb39b623f7961822c581b0673a9c03de4300000000000000000000000000000000000000000000000000005af3107a4000
Deployed Bytecode
0x60606040526004361061017f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461018457806308cb4cb51461020e578063095ea7b31461023357806318160ddd1461026957806323b872dd1461027c57806329605e77146102a45780632ac12fde146102c5578063313ce567146102f3578063366a41201461031c57806342966c68146103355780634e71e0c81461034b578063569fa9f91461035e578063570ca735146103715780635a3b7e42146103a057806361dcd7ab146103b357806366188463146103c65780636a28f000146103e857806370a08231146103fb5780637c2107081461041a5780637e7712f2146104665780638da5cb5b1461047957806391f5637a1461048c57806395d89b411461049f578063a9059cbb146104b2578063b813c627146104d4578063be91de53146104e7578063d73dd62314610506578063dd62ed3e14610528578063e30c39781461054d578063f2fde38b14610560575b600080fd5b341561018f57600080fd5b61019761057f565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101d35780820151838201526020016101bb565b50505050905090810190601f1680156102005780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021957600080fd5b61022161061d565b60405190815260200160405180910390f35b341561023e57600080fd5b610255600160a060020a0360043516602435610623565b604051901515815260200160405180910390f35b341561027457600080fd5b610221610690565b341561028757600080fd5b610255600160a060020a0360043581169060243516604435610696565b34156102af57600080fd5b6102c3600160a060020a0360043516610818565b005b34156102d057600080fd5b6102db60043561086a565b60405191825260208201526040908101905180910390f35b34156102fe57600080fd5b610306610883565b60405160ff909116815260200160405180910390f35b341561032757600080fd5b61022160043560243561088c565b341561034057600080fd5b610255600435610a91565b341561035657600080fd5b6102c3610b52565b341561036957600080fd5b610221610bdb565b341561037c57600080fd5b610384610be1565b604051600160a060020a03909116815260200160405180910390f35b34156103ab57600080fd5b610197610bf0565b34156103be57600080fd5b610221610c5b565b34156103d157600080fd5b610255600160a060020a0360043516602435610c61565b34156103f357600080fd5b610221610d5d565b341561040657600080fd5b610221600160a060020a0360043516610db5565b341561042557600080fd5b610430600435610dd4565b6040518084600160a060020a0316600160a060020a03168152602001838152602001828152602001935050505060405180910390f35b341561047157600080fd5b610221610dff565b341561048457600080fd5b610384610e05565b341561049757600080fd5b610221610e14565b34156104aa57600080fd5b610197610e1a565b34156104bd57600080fd5b610255600160a060020a0360043516602435610e85565b34156104df57600080fd5b610221610f80565b34156104f257600080fd5b610221600160a060020a0360043516610f86565b341561051157600080fd5b610255600160a060020a0360043516602435610fe4565b341561053357600080fd5b610221600160a060020a0360043581169060243516611088565b341561055857600080fd5b6103846110b3565b341561056b57600080fd5b6102c3600160a060020a03600435166110c2565b60118054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106155780601f106105ea57610100808354040283529160200191610615565b820191906000526020600020905b8154815290600101906020018083116105f857829003601f168201915b505050505081565b600c5481565b600160a060020a03338116600081815260056020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60035481565b6000600160a060020a03831615156106ad57600080fd5b600160a060020a0384166000908152600460205260409020548211156106d257600080fd5b600160a060020a038085166000908152600560209081526040808320339094168352929052205482111561070557600080fd5b600160a060020a03841660009081526004602052604090205461072e908363ffffffff6110ff16565b600160a060020a038086166000908152600460205260408082209390935590851681522054610763908363ffffffff61111116565b600160a060020a038085166000908152600460209081526040808320949094558783168252600581528382203390931682529190915220546107ab908363ffffffff6110ff16565b600160a060020a03808616600081815260056020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60005433600160a060020a0390811691161461083357600080fd5b600160a060020a038116151561084857600080fd5b60028054600160a060020a031916600160a060020a0392909216919091179055565b600e602052600090815260409020805460019091015482565b60135460ff1681565b60025460009033600160a060020a039081169116146108aa57600080fd5b600a5483101580156108bc5750428311155b15156108c757600080fd5b6108d083611127565b156108da57600080fd5b6108e38361120b565b61090a60056108fe6004600c5461128f90919063ffffffff16565b9063ffffffff6112ba16565b82111561091657600080fd5b600c54600d5461092b9163ffffffff61111116565b600354101561093957600080fd5b600c5460008054600160a060020a03168152600460205260409020546109649163ffffffff61111116565b60008054600160a060020a0316815260046020526040902055600c54600d546109929163ffffffff61111116565b600d55604080519081016040908152600c5482526020808301869052600f546000908152600e90915220815181556020820151600191820155600f8054909101905550600054600c54600160a060020a03909116907f6d0f8bf20fdbf0501c403fa7863679b821f006a63b09c689ee2687d00220edf990848660405180848152602001838152602001828152602001935050505060405180910390a2610a5a610a4283600563ffffffff6112ba16565b610a558562ed4e0063ffffffff61111116565b6112d1565b610a87610a73600a6108fe85600763ffffffff61128f16565b610a5585638394150063ffffffff61111116565b50600c5492915050565b600160a060020a0333166000908152600460205260408120548190831115610ab857600080fd5b5033600160a060020a038116600090815260046020526040902054610add90846110ff565b600160a060020a038216600090815260046020526040902055600354610b09908463ffffffff6110ff16565b600355600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58460405190815260200160405180910390a250600192915050565b60015433600160a060020a03908116911614610b6d57600080fd5b600154600054600160a060020a0391821691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36001805460008054600160a060020a0319908116600160a060020a03841617909155169055610bd96113d1565b565b600f5481565b600254600160a060020a031681565b60108054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106155780601f106105ea57610100808354040283529160200191610615565b600a5481565b600160a060020a03338116600090815260056020908152604080832093861683529290529081205480831115610cbe57600160a060020a033381166000908152600560209081526040808320938816835292905290812055610cf5565b610cce818463ffffffff6110ff16565b600160a060020a033381166000908152600560209081526040808320938916835292905220555b600160a060020a0333811660008181526005602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b6000805b600854811015610db1576000818152600760205260409020600201544210610da8576000818152600760205260409020600101549190910190610da381611468565b610dac565b6001015b610d61565b5090565b600160a060020a0381166000908152600460205260409020545b919050565b600760205260009081526040902080546001820154600290920154600160a060020a03909116919083565b600b5481565b600054600160a060020a031681565b60085481565b60128054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106155780601f106105ea57610100808354040283529160200191610615565b6000600160a060020a0383161515610e9c57600080fd5b600160a060020a033316600090815260046020526040902054821115610ec157600080fd5b600160a060020a033316600090815260046020526040902054610eea908363ffffffff6110ff16565b600160a060020a033381166000908152600460205260408082209390935590851681522054610f1f908363ffffffff61111116565b600160a060020a0380851660008181526004602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600d5481565b600080805b600854821015610fdd575060008181526007602052604090208054600160a060020a0385811691161415610fd2576001810154610fcf90849063ffffffff61111116565b92505b600190910190610f8b565b5050919050565b600160a060020a03338116600090815260056020908152604080832093861683529290529081205461101c908363ffffffff61111116565b600160a060020a0333811660008181526005602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600154600160a060020a031681565b60005433600160a060020a039081169116146110dd57600080fd5b60018054600160a060020a031916600160a060020a0392909216919091179055565b60008282111561110b57fe5b50900390565b60008282018381101561112057fe5b9392505050565b60008060008091506000600f541115610d56575060005b600f54811015610d565761115184611587565b5161ffff16611175600e600084815260200190815260200160002060010154611587565b5161ffff161480156111ba575061118b84611587565b6020015160ff166111b1600e600084815260200190815260200160002060010154611587565b6020015160ff16145b80156111f957506111ca84611587565b6040015160ff166111f0600e600084815260200190815260200160002060010154611587565b6040015160ff16145b1561120357600191505b60010161113e565b6000806000611225600a54856110ff90919063ffffffff16565b925061123a8362ed4e0063ffffffff6112ba16565b9150600082111561128957600a82116112835750600b54600c5560005b8181101561127e57600c5461127390600263ffffffff6112ba16565b600c55600101611257565b611289565b6000600c555b50505050565b6000808315156112a25760009150610d56565b508282028284828115156112b257fe5b041461112057fe5b60008082848115156112c857fe5b04949350505050565b60008054600160a060020a03168152600460205260409020546112fa908363ffffffff6110ff16565b60008054600160a060020a0316815260046020526040908190209190915560609051908101604090815260008054600160a060020a0316835260208084018690528284018590526008548252600790522081518154600160a060020a031916600160a060020a039190911617815560208201518160010155604082015160029091015550600880546001019055600054600160a060020a03167fb55465b458f8f3565cd38fc86992b720f5bdddb4532ab881265c1275f0db53d4838360405191825260208201526040908101905180910390a25050565b6000805b60085481101561141e5760008054828252600760205260409091208054600160a060020a031916600160a060020a039092169190911781556001908101549290920191016113d5565b600054600160a060020a03167ff30cc5ec80ab2762ee5ff67b0095a94997e6f522a3e0c0fdbad49a454542f35f834260405191825260208201526040908101905180910390a25050565b600081815260076020908152604080832060018101548154600160a060020a0316855260049093529220546114a29163ffffffff61111116565b8154600160a060020a03908116600090815260046020526040908190209290925582546001840154600285015491909216927f7ed75eaf82098257819f0bd6dd7f79062e49152905980263c73ee48565a656a59291905191825260208201526040908101905180910390a2506008805460001990810160009081526007602052604080822094825280822085548154600160a060020a03909116600160a060020a031991821617825560018088015481840155600297880154928801929092558554850184529183208054909216825581018290559093019290925580549091019055565b61158f61186d565b600080808061159d866116a6565b61ffff1685526115ae6107b2611736565b6115bc865161ffff16611736565b039250826301e285000284019350826107b286600001510361ffff16036301e133800284019350600191505b600c60ff83161161162f576115fe828651611751565b60ff16620151800290508584820111156116205760ff8216602086015261162f565b928301926001909101906115e8565b600191505b61164385602001518651611751565b60ff168260ff161115156116805785846201518001111561166c5760ff82166040860152611680565b620151809390930192600190910190611634565b50506000606084018190526080840181905260a0840181905260c0840152509092915050565b6000806107b26301e13380840481019082906116c190611736565b6116ce8361ffff16611736565b039050806301e285000283019250806107b2830361ffff16036301e1338002830192505b8483111561172e5761170660018303611817565b15611719576301e2850083039250611723565b6301e13380830392505b6001820391506116f2565b509392505050565b60001901600061019082046064830460048404030192915050565b60008260ff166001148061176857508260ff166003145b8061177657508260ff166005145b8061178457508260ff166007145b8061179257508260ff166008145b806117a057508260ff16600a145b806117ae57508260ff16600c145b156117bb5750601f61068a565b8260ff16600414806117d057508260ff166006145b806117de57508260ff166009145b806117ec57508260ff16600b145b156117f95750601e61068a565b61180282611817565b1561180f5750601d61068a565b50601c61068a565b6000600461ffff83160661ffff161561183257506000610dcf565b606461ffff83160661ffff161561184b57506001610dcf565b61019061ffff83160661ffff161561186557506000610dcf565b506001919050565b60e06040519081016040908152600080835260208301819052908201819052606082018190526080820181905260a0820181905260c0820152905600a165627a7a723058208ce483a4935b0c29a41ef649832ee3d8bf3744976469f56c40139382f110d6530029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000002053fb39b623f7961822c581b0673a9c03de4300000000000000000000000000000000000000000000000000005af3107a4000
-----Decoded View---------------
Arg [0] : _operator (address): 0x002053Fb39b623F7961822c581B0673a9C03De43
Arg [1] : _initialSupply (uint256): 100000000000000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000002053fb39b623f7961822c581b0673a9c03de43
Arg [1] : 00000000000000000000000000000000000000000000000000005af3107a4000
Swarm Source
bzzr://8ce483a4935b0c29a41ef649832ee3d8bf3744976469f56c40139382f110d653
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.