Feature Tip: Add private address tag to any address under My Name Tag !
SPiCE VC token has been upgraded to a new token contract. The new token can be found here.
ERC-20
Overview
Max Total Supply
7,811,327 SPICE
Holders
208
Total Transfers
-
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 Name:
SpiceToken
Compiler Version
v0.4.15+commit.bbb8e64f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-04-02 */ pragma solidity ^0.4.13; 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); } 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]; } } 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); } contract LimitedTransferToken is ERC20 { /** * @dev Checks whether it can transfer or otherwise throws. */ modifier canTransfer(address _sender, uint256 _value) { require(_value <= transferableTokens(_sender, uint64(now))); _; } /** * @dev Checks modifier and allows transfer if tokens are not locked. * @param _to The address that will receive the tokens. * @param _value The amount of tokens to be transferred. */ function transfer(address _to, uint256 _value) canTransfer(msg.sender, _value) public returns (bool) { return super.transfer(_to, _value); } /** * @dev Checks modifier and allows transfer if tokens are not locked. * @param _from The address that will send the tokens. * @param _to The address that will receive the tokens. * @param _value The amount of tokens to be transferred. */ function transferFrom(address _from, address _to, uint256 _value) canTransfer(_from, _value) public returns (bool) { return super.transferFrom(_from, _to, _value); } /** * @dev Default transferable tokens function returns all tokens for a holder (no limit). * @dev Overwriting transferableTokens(address holder, uint64 time) is the way to provide the * specific logic for limiting token transferability for a holder over time. */ function transferableTokens(address holder, uint64 /*time*/) public constant returns (uint256) { return balanceOf(holder); } } library Math { function max64(uint64 a, uint64 b) internal constant returns (uint64) { return a >= b ? a : b; } function min64(uint64 a, uint64 b) internal constant returns (uint64) { return a < b ? a : b; } function max256(uint256 a, uint256 b) internal constant returns (uint256) { return a >= b ? a : b; } function min256(uint256 a, uint256 b) internal constant returns (uint256) { return a < b ? a : b; } } 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; } } contract CanReclaimToken is Ownable { using SafeERC20 for ERC20Basic; /** * @dev Reclaim all ERC20Basic compatible tokens * @param token ERC20Basic The address of the token contract */ function reclaimToken(ERC20Basic token) external onlyOwner { uint256 balance = token.balanceOf(this); token.safeTransfer(owner, balance); } } contract HasNoEther is Ownable { /** * @dev Constructor that rejects incoming Ether * @dev The `payable` flag is added so we can access `msg.value` without compiler warning. If we * leave out payable, then Solidity will allow inheriting contracts to implement a payable * constructor. By doing it this way we prevent a payable constructor from working. Alternatively * we could use assembly to access msg.value. */ function HasNoEther() payable { require(msg.value == 0); } /** * @dev Disallows direct send by settings a default function without the `payable` flag. */ function() external { } /** * @dev Transfer all Ether held by the contract to the owner. */ function reclaimEther() external onlyOwner { assert(owner.send(this.balance)); } } contract HasNoTokens is CanReclaimToken { /** * @dev Reject all ERC23 compatible tokens **/ function tokenFallback(address /*from_*/, uint256 /*value_*/, bytes /*data_*/) external { revert(); } } 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(); } } library SafeERC20 { function safeTransfer(ERC20Basic token, address to, uint256 value) internal { assert(token.transfer(to, value)); } function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal { assert(token.transferFrom(from, to, value)); } function safeApprove(ERC20 token, address spender, uint256 value) internal { assert(token.approve(spender, value)); } } 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; } } 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) { require(_value == 0 || allowed[msg.sender][_spender] == 0); 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; } } 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); } } contract RegulatedToken is StandardToken, PausableToken, LimitedTransferToken, HasNoEther, HasNoTokens { using SafeMath for uint256; using SafeERC20 for ERC20Basic; uint256 constant MAX_LOCKS_PER_ADDRESS = 20; enum RedeemReason{RegulatoryRedemption, Buyback, Other} enum LockReason{PreICO, Vesting, USPerson, FundOriginated, Other} struct TokenLock { uint64 id; LockReason reason; uint256 value; uint64 autoReleaseTime; //May be 0, for no release time } struct TokenRedemption { uint64 redemptionId; RedeemReason reason; uint256 value; } uint256 public totalInactive; uint64 private lockCounter = 1; //token admins mapping(address => bool) private admins; //locks mapping(address => TokenLock[]) private locks; //burn wallets mapping(address => bool) private burnWallets; //Redemptions made for users mapping(address => TokenRedemption[]) private tokenRedemptions; event Issued(address indexed to, uint256 value, uint256 valueLocked); event Locked(address indexed who, uint256 value, LockReason reason, uint releaseTime, uint64 lockId); event Unlocked(address indexed who, uint256 value, uint64 lockId); event AddedBurnWallet(address indexed burnWallet); event Redeemed(address indexed from, address indexed burnWallet, uint256 value, RedeemReason reason, uint64 indexed redemptionId); event Burned(address indexed burnWallet, uint256 value); event Destroyed(); event AdminAdded(address admin); event AdminRemoved(address admin); /** * @dev destroys the token * Only works from the owner, and when the total balance of all users is 0 (nobody has tokens). */ function destroy() onlyOwner public { require(totalSupply == 0); Destroyed(); selfdestruct(owner); } /******************************* CONTRACT ADMIN The contract can have 0 or more admins some functions are accessible on the admin level rather than the owner level the owner is always an admin ********************************/ function addAdmin(address _address) onlyOwner public{ admins[_address] = true; AdminAdded(_address); } function removeAdmin(address _address) onlyOwner public{ admins[_address] = false; AdminRemoved(_address); } /** * @dev Throws if called by any account other than an admin. */ modifier onlyAdmin() { require(msg.sender == owner || admins[msg.sender] == true); _; } /****************************** TOKEN ISSUING *******************************/ /** * @dev Issues unlocked tokens * @param _to address The address which is going to receive the newly issued tokens * @param _value uint256 the value of tokens to issue * @return true if successful */ function issueTokens(address _to, uint256 _value) onlyAdmin public returns (bool){ issueTokensWithLocking(_to, _value, 0, LockReason.Other, 0); } /** * @dev Issuing tokens from the fund * @param _to address The address which is going to receive the newly issued tokens * @param _value uint256 the value of tokens to issue * @param _valueLocked uint256 value of tokens, from those issued, to lock immediately. * @param _why reason for token locking * @param _releaseTime timestamp to release the lock (or 0 for locks which can only released by an unlockTokens call) * @return true if successful */ function issueTokensWithLocking(address _to, uint256 _value, uint256 _valueLocked, LockReason _why, uint64 _releaseTime) onlyAdmin public returns (bool){ //Check input values require(_to != address(0)); require(_value > 0); require(_valueLocked >= 0 && _valueLocked <= _value); //Make sure we have enough inactive tokens to issue require(totalInactive >= _value); //Adding and subtracting is done through safemath totalSupply = totalSupply.add(_value); totalInactive = totalInactive.sub(_value); balances[_to] = balances[_to].add(_value); Issued(_to, _value, _valueLocked); Transfer(0x0, _to, _value); if (_valueLocked > 0) { lockTokens(_to, _valueLocked, _why, _releaseTime); } } /****************************** TOKEN LOCKING Locking tokens means freezing a number of tokens belonging to an address. Locked tokens can not be transferred by the user to any other address. The contract owner (the fund) may still redeem those tokens, or unfreeze them. The token lock may expire automatically at a certain timestamp, or exist forever until the owner unlocks it. *******************************/ /** * @dev lock tokens * @param _who address to lock the tokens at * @param _value value of tokens to lock * @param _reason reason for lock * @param _releaseTime timestamp to release the lock (or 0 for locks which can only released by an unlockTokens call) * @return A unique id for the newly created lock. * Note: The user MAY have at a certain time more locked tokens than actual tokens */ function lockTokens(address _who, uint _value, LockReason _reason, uint64 _releaseTime) onlyAdmin public returns (uint64){ require(_who != address(0)); require(_value > 0); require(_releaseTime == 0 || _releaseTime > uint64(now)); //Only allow 20 locks per address, to prevent out-of-gas at transfer scenarios require(locks[_who].length < MAX_LOCKS_PER_ADDRESS); uint64 lockId = lockCounter++; //Create the lock locks[_who].push(TokenLock(lockId, _reason, _value, _releaseTime)); Locked(_who, _value, _reason, _releaseTime, lockId); return lockId; } /** * @dev Releases a specific token lock * @param _who address to release the tokens for * @param _lockId the unique lock-id to release * * note - this may change the order of the locks on an address, so if iterating the iteration should be restarted. * @return true on success */ function unlockTokens(address _who, uint64 _lockId) onlyAdmin public returns (bool) { require(_who != address(0)); require(_lockId > 0); for (uint8 i = 0; i < locks[_who].length; i++) { if (locks[_who][i].id == _lockId) { Unlocked(_who, locks[_who][i].value, _lockId); delete locks[_who][i]; locks[_who][i] = locks[_who][locks[_who].length.sub(1)]; locks[_who].length -= 1; return true; } } return false; } /** * @dev Get number of locks currently associated with an address * @param _who address to get token lock for * * @return number of locks * * Note - a lock can be inactive (due to its time expired) but still exists for a specific address */ function lockCount(address _who) public constant returns (uint8){ require(_who != address(0)); return uint8(locks[_who].length); } /** * @dev Get details of a specific lock associated with an address * can be used to iterate through the locks of a user * @param _who address to get token lock for * @param _index the 0 based index of the lock. * @return id the unique lock id * @return reason the reason for the lock * @return value the value of tokens locked * @return the timestamp in which the lock will be inactive (or 0 if it's always active until removed) * * Note - a lock can be inactive (due to its time expired) but still exists for a specific address */ function lockInfo(address _who, uint64 _index) public constant returns (uint64 id, uint8 reason, uint value, uint64 autoReleaseTime){ require(_who != address(0)); require(_index < locks[_who].length); id = locks[_who][_index].id; reason = uint8(locks[_who][_index].reason); value = locks[_who][_index].value; autoReleaseTime = locks[_who][_index].autoReleaseTime; } /** * @dev Get the total number of transferable (not locked) tokens the user has at a specific time * used by the LimitedTransferToken base class to block ERC20 transfer for locked tokens * @param holder address to get transferable count for * @param time block timestamp to check time-locks with. * @return total number of unlocked, transferable tokens * * Note - the timestamp is only used to check time-locks, the base balance used to check is always the current one. */ function transferableTokens(address holder, uint64 time) public constant returns (uint256) { require(time > 0); //If it's a burn wallet, tokens cannot be moved out if (isBurnWallet(holder)){ return 0; } uint8 holderLockCount = uint8(locks[holder].length); //No locks, go to base class implementation if (holderLockCount == 0) return super.transferableTokens(holder, time); uint256 totalLockedTokens = 0; for (uint8 i = 0; i < holderLockCount; i ++) { if (locks[holder][i].autoReleaseTime == 0 || locks[holder][i].autoReleaseTime > time) { totalLockedTokens = SafeMath.add(totalLockedTokens, locks[holder][i].value); } } uint balanceOfHolder = balanceOf(holder); //there may be more locked tokens than actual tokens, so the minimum between the two uint256 transferable = SafeMath.sub(balanceOfHolder, Math.min256(totalLockedTokens, balanceOfHolder)); //Check with super implementation for further reductions return Math.min256(transferable, super.transferableTokens(holder, time)); } /****************************** REDEMPTION AND BURNING Redeeming tokens involves removing them from an address's wallet and moving them to a (one or more) specially designed "burn wallets". The process is implemented such as the owner can choose to burn or not to burn the tokens after redeeming them, which is legally necessary on some buy-back scenarios Each redemption is associated with a global "redemption event" (a unique id, supplied by the owner), which can later be used to query the total value redeemed for the user in this event (and on the owner's backend, through event logs processing, the total value redeemed for all users in this event) *******************************/ /** * @dev designates an address as a burn wallet (there can be an unlimited number of burn wallets). * a burn wallet can only burn tokens - tokens may not be transferred out of it, and tokens do not participate * in redemptions * @param _burnWalletAddress the address to add to the burn wallet list */ function addBurnWallet(address _burnWalletAddress) onlyAdmin { require(_burnWalletAddress != address(0)); burnWallets[_burnWalletAddress] = true; AddedBurnWallet(_burnWalletAddress); } /** * @dev redeems (removes) tokens for an address and moves to to a burn wallet * @param _from the address to redeem tokens from * @param _burnWallet the burn wallet to move the tokens to * @param _reason the reason for the redemption * @param _redemptionId a redemptionId, supplied by the contract owner. usually assigned to a single global * redemption event (token buyback, or such). */ function redeemTokens(address _from, address _burnWallet, uint256 _value, RedeemReason _reason, uint64 _redemptionId) onlyAdmin { require(_from != address(0)); require(_redemptionId > 0); require(isBurnWallet(_burnWallet)); require(balances[_from] >= _value); balances[_from] = balances[_from].sub(_value); balances[_burnWallet] = balances[_burnWallet].add(_value); tokenRedemptions[_from].push(TokenRedemption(_redemptionId, _reason, _value)); Transfer(_from, _burnWallet, _value); Redeemed(_from, _burnWallet, _value, _reason, _redemptionId); } /** * @dev Burns tokens inside a burn wallet * The total number of inactive token is NOT increased * this means there is a finite number amount that can ever exist of this token * @param _burnWallet the address of the burn wallet * @param _value value of tokens to burn */ function burnTokens(address _burnWallet, uint256 _value) onlyAdmin { require(_value > 0); require(isBurnWallet(_burnWallet)); require(balances[_burnWallet] >= _value); balances[_burnWallet] = balances[_burnWallet].sub(_value); totalSupply = totalSupply.sub(_value); Burned(_burnWallet, _value); Transfer(_burnWallet,0x0,_value); } /** * @dev checks if a wallet is a burn wallet * @param _burnWalletAddress address to check */ function isBurnWallet(address _burnWalletAddress) constant public returns (bool){ return burnWallets[_burnWalletAddress]; } /** * @dev gets number of redemptions done on a specific address * @param _who address to check */ function redemptionCount(address _who) public constant returns (uint64){ require(_who != address(0)); return uint64(tokenRedemptions[_who].length); } /** * @dev gets data about a specific redemption done on a specific address * @param _who address to check * @param _index zero based index of the redemption * @return redemptionId the global redemptionId associated with this redemption * @return reason the reason for the redemption * @return value the value for the redemption */ function redemptionInfo(address _who, uint64 _index) public constant returns (uint64 redemptionId, uint8 reason, uint value){ require(_who != address(0)); require(_index < tokenRedemptions[_who].length); redemptionId = tokenRedemptions[_who][_index].redemptionId; reason = uint8(tokenRedemptions[_who][_index].reason); value = tokenRedemptions[_who][_index].value; } /** * @dev gets the total value redemeed from a specific address, for a single global redemption event * @param _who address to check * @param _redemptionId the global redemption event id * @return the total value associated with the redemption event */ function totalRedemptionIdValue(address _who, uint64 _redemptionId) public constant returns (uint256){ require(_who != address(0)); uint256 total = 0; uint64 numberOfRedemptions = redemptionCount(_who); for (uint64 i = 0; i < numberOfRedemptions; i++) { if (tokenRedemptions[_who][i].redemptionId == _redemptionId) { total = SafeMath.add(total, tokenRedemptions[_who][i].value); } } return total; } } contract SpiceToken is RegulatedToken { string public constant name = "SPiCE VC Token"; string public constant symbol = "SPICE"; uint8 public constant decimals = 8; uint256 private constant INITIAL_INACTIVE_TOKENS = 130 * 1000000 * (10 ** uint256(decimals)); //130 million tokens function SpiceToken() RegulatedToken() { totalInactive = INITIAL_INACTIVE_TOKENS; totalSupply = 0; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_burnWalletAddress","type":"address"}],"name":"addBurnWallet","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_burnWallet","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnTokens","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"removeAdmin","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"}],"name":"reclaimToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_who","type":"address"},{"name":"_lockId","type":"uint64"}],"name":"unlockTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"issueTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalInactive","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_valueLocked","type":"uint256"},{"name":"_why","type":"uint8"},{"name":"_releaseTime","type":"uint64"}],"name":"issueTokensWithLocking","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"addAdmin","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_burnWalletAddress","type":"address"}],"name":"isBurnWallet","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"destroy","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"reclaimEther","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_who","type":"address"},{"name":"_value","type":"uint256"},{"name":"_reason","type":"uint8"},{"name":"_releaseTime","type":"uint64"}],"name":"lockTokens","outputs":[{"name":"","type":"uint64"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_who","type":"address"},{"name":"_redemptionId","type":"uint64"}],"name":"totalRedemptionIdValue","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_burnWallet","type":"address"},{"name":"_value","type":"uint256"},{"name":"_reason","type":"uint8"},{"name":"_redemptionId","type":"uint64"}],"name":"redeemTokens","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"bytes"}],"name":"tokenFallback","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"holder","type":"address"},{"name":"time","type":"uint64"}],"name":"transferableTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_who","type":"address"}],"name":"lockCount","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_who","type":"address"},{"name":"_index","type":"uint64"}],"name":"redemptionInfo","outputs":[{"name":"redemptionId","type":"uint64"},{"name":"reason","type":"uint8"},{"name":"value","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_who","type":"address"},{"name":"_index","type":"uint64"}],"name":"lockInfo","outputs":[{"name":"id","type":"uint64"},{"name":"reason","type":"uint8"},{"name":"value","type":"uint256"},{"name":"autoReleaseTime","type":"uint64"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_who","type":"address"}],"name":"redemptionCount","outputs":[{"name":"","type":"uint64"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"valueLocked","type":"uint256"}],"name":"Issued","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"who","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"reason","type":"uint8"},{"indexed":false,"name":"releaseTime","type":"uint256"},{"indexed":false,"name":"lockId","type":"uint64"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"who","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"lockId","type":"uint64"}],"name":"Unlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burnWallet","type":"address"}],"name":"AddedBurnWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"burnWallet","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"reason","type":"uint8"},{"indexed":true,"name":"redemptionId","type":"uint64"}],"name":"Redeemed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burnWallet","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[],"name":"Destroyed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"admin","type":"address"}],"name":"AdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"admin","type":"address"}],"name":"AdminRemoved","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
60606040526003805460a060020a60ff02191690556005805467ffffffffffffffff19166001179055341561003357600080fd5b5b5b5b60038054600160a060020a03191633600160a060020a03161790555b341561005d57600080fd5b5b662e2f6e5e148000600455600080555b5b6128c08061007e6000396000f300606060405236156101b15763ffffffff60e060020a60003504166306fdde0381146101c0578063095ea7b31461024b5780630a9e24c1146102815780630d1118ce146102a25780631785f53c146102c657806317ffc320146102e757806318160ddd1461030857806323b872dd1461032d578063313ce567146103695780633f4ba83a1461039257806343cdc49e146103a7578063475a9fa9146103e75780635c975abb1461041d5780636377ff2014610444578063661884631461046957806369e375a71461049f57806370480275146104eb57806370a082311461050c5780637334b2d71461053d57806383197ef0146105705780638456cb59146105855780638da5cb5b1461059a57806395d89b41146105c95780639f727c27146106545780639f79edc214610669578063a9059cbb146106bb578063b41a9f22146106f1578063bc17ea4a1461072f578063c0ee0b8a1461076c578063d347c2051461079d578063d73dd623146107db578063dd62ed3e14610811578063df03458614610848578063f2bddf661461087d578063f2fde38b146108da578063f6a3e8c8146108fb578063f6b971311461095e575b34156101bc57600080fd5b5b5b005b34156101cb57600080fd5b6101d361099a565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102105780820151818401525b6020016101f7565b50505050905090810190601f16801561023d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561025657600080fd5b61026d600160a060020a03600435166024356109d1565b604051901515815260200160405180910390f35b341561028c57600080fd5b6101bc600160a060020a03600435166109ff565b005b34156102ad57600080fd5b6101bc600160a060020a0360043516602435610aae565b005b34156102d157600080fd5b6101bc600160a060020a0360043516610c03565b005b34156102f257600080fd5b6101bc600160a060020a0360043516610c82565b005b341561031357600080fd5b61031b610d3a565b60405190815260200160405180910390f35b341561033857600080fd5b61026d600160a060020a0360043581169060243516604435610d40565b604051901515815260200160405180910390f35b341561037457600080fd5b61037c610d72565b60405160ff909116815260200160405180910390f35b341561039d57600080fd5b6101bc610d77565b005b34156103b257600080fd5b61026d600160a060020a036004351667ffffffffffffffff60243516610df9565b604051901515815260200160405180910390f35b34156103f257600080fd5b61026d600160a060020a0360043516602435611123565b604051901515815260200160405180910390f35b341561042857600080fd5b61026d611184565b604051901515815260200160405180910390f35b341561044f57600080fd5b61031b611194565b60405190815260200160405180910390f35b341561047457600080fd5b61026d600160a060020a036004351660243561119a565b604051901515815260200160405180910390f35b34156104aa57600080fd5b61026d600160a060020a036004351660243560443560ff6064351667ffffffffffffffff608435166111c8565b604051901515815260200160405180910390f35b34156104f657600080fd5b6101bc600160a060020a036004351661135c565b005b341561051757600080fd5b61031b600160a060020a03600435166113de565b60405190815260200160405180910390f35b341561054857600080fd5b61026d600160a060020a03600435166113fd565b604051901515815260200160405180910390f35b341561057b57600080fd5b6101bc61141f565b005b341561059057600080fd5b6101bc611484565b005b34156105a557600080fd5b6105ad61150b565b604051600160a060020a03909116815260200160405180910390f35b34156105d457600080fd5b6101d361151a565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102105780820151818401525b6020016101f7565b50505050905090810190601f16801561023d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561065f57600080fd5b6101bc611551565b005b341561067457600080fd5b61069e600160a060020a036004351660243560ff6044351667ffffffffffffffff606435166115a6565b60405167ffffffffffffffff909116815260200160405180910390f35b34156106c657600080fd5b61026d600160a060020a0360043516602435611832565b604051901515815260200160405180910390f35b34156106fc57600080fd5b61031b600160a060020a036004351667ffffffffffffffff60243516611862565b60405190815260200160405180910390f35b341561073a57600080fd5b6101bc600160a060020a036004358116906024351660443560ff6064351667ffffffffffffffff6084351661196b565b005b341561077757600080fd5b6101bc60048035600160a060020a0316906024803591604435918201910135611bfc565b005b34156107a857600080fd5b61031b600160a060020a036004351667ffffffffffffffff60243516611c07565b60405190815260200160405180910390f35b34156107e657600080fd5b61026d600160a060020a0360043516602435611dca565b604051901515815260200160405180910390f35b341561081c57600080fd5b61031b600160a060020a0360043581169060243516611df8565b60405190815260200160405180910390f35b341561085357600080fd5b61037c600160a060020a0360043516611e25565b60405160ff909116815260200160405180910390f35b341561088857600080fd5b6108a9600160a060020a036004351667ffffffffffffffff60243516611e5c565b60405167ffffffffffffffff909316835260ff90911660208301526040808301919091526060909101905180910390f35b34156108e557600080fd5b6101bc600160a060020a0360043516611f98565b005b341561090657600080fd5b610927600160a060020a036004351667ffffffffffffffff60243516612031565b60405167ffffffffffffffff948516815260ff90931660208401526040808401929092529092166060820152608001905180910390f35b341561096957600080fd5b61069e600160a060020a03600435166121c2565b60405167ffffffffffffffff909116815260200160405180910390f35b60408051908101604052600e81527f535069434520564320546f6b656e000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff16156109eb57600080fd5b6109f583836121f9565b90505b5b92915050565b60035433600160a060020a0390811691161480610a395750600160a060020a03331660009081526006602052604090205460ff1615156001145b1515610a4457600080fd5b600160a060020a0381161515610a5957600080fd5b600160a060020a03811660008181526008602052604090819020805460ff191660011790557f3feaaaa178b19ed7f1c23aa51662afa77dbbb5cc64f30a200801ee016743e77d905160405180910390a25b5b50565b60035433600160a060020a0390811691161480610ae85750600160a060020a03331660009081526006602052604090205460ff1615156001145b1515610af357600080fd5b60008111610b0057600080fd5b610b09826113fd565b1515610b1457600080fd5b600160a060020a03821660009081526001602052604090205481901015610b3a57600080fd5b600160a060020a038216600090815260016020526040902054610b63908263ffffffff6122a016565b600160a060020a03831660009081526001602052604081209190915554610b90908263ffffffff6122a016565b600055600160a060020a0382167f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df78260405190815260200160405180910390a2600082600160a060020a03166000805160206128758339815191528360405190815260200160405180910390a35b5b5050565b60035433600160a060020a03908116911614610c1e57600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191690557fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f90829051600160a060020a03909116815260200160405180910390a15b5b50565b60035460009033600160a060020a03908116911614610ca057600080fd5b81600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610cf757600080fd5b6102c65a03f11515610d0857600080fd5b5050506040518051600354909250610bfe9150600160a060020a0384811691168363ffffffff6122b716565b5b5b5050565b60005481565b60008382610d4e8242611c07565b811115610d5a57600080fd5b610d6586868661233d565b92505b5b50509392505050565b600881565b60035433600160a060020a03908116911614610d9257600080fd5b60035460a060020a900460ff161515610daa57600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b600354600090819033600160a060020a0390811691161480610e385750600160a060020a03331660009081526006602052604090205460ff1615156001145b1515610e4357600080fd5b600160a060020a0384161515610e5857600080fd5b600067ffffffffffffffff841611610e6f57600080fd5b5060005b600160a060020a03841660009081526007602052604090205460ff8216101561111657600160a060020a0384166000908152600760205260409020805467ffffffffffffffff8516919060ff8416908110610eca57fe5b906000526020600020906003020160005b505467ffffffffffffffff16141561110d57600160a060020a038416600081815260076020526040902080547f626516e32a7d37edaec213953f84a8ada0e2b0dba669b9f2fc19c82c095d36c2919060ff8516908110610f3757fe5b906000526020600020906003020160005b50600101548560405191825267ffffffffffffffff1660208201526040908101905180910390a2600160a060020a0384166000908152600760205260409020805460ff8316908110610f9657fe5b906000526020600020906003020160005b50805468ffffffffffffffffff19168155600060018083018290556002909201805467ffffffffffffffff19169055600160a060020a038616815260076020526040902080549091610fff919063ffffffff6122a016565b8154811061100957fe5b906000526020600020906003020160005b50600160a060020a0385166000908152600760205260409020805460ff841690811061104257fe5b906000526020600020906003020160005b508154815467ffffffffffffffff191667ffffffffffffffff90911617808255825460ff68010000000000000000918290041691839168ff000000000000000019909116908360048111156110a457fe5b0217905550600182810154908201556002918201549101805467ffffffffffffffff191667ffffffffffffffff909216919091179055600160a060020a0384166000908152600760205260409020805460001901906111039082612763565b506001915061111b565b5b600101610e73565b600091505b5b5092915050565b60035460009033600160a060020a03908116911614806111605750600160a060020a03331660009081526006602052604090205460ff1615156001145b151561116b57600080fd5b61111b83836000600460006111c8565b505b5b92915050565b60035460a060020a900460ff1681565b60045481565b60035460009060a060020a900460ff16156111b457600080fd5b6109f5838361236d565b90505b5b92915050565b60035460009033600160a060020a03908116911614806112055750600160a060020a03331660009081526006602052604090205460ff1615156001145b151561121057600080fd5b600160a060020a038616151561122557600080fd5b6000851161123257600080fd5b600084101580156112435750848411155b151561124e57600080fd5b6004548590101561125e57600080fd5b600054611271908663ffffffff61246916565b600055600454611287908663ffffffff6122a016565b600455600160a060020a0386166000908152600160205260409020546112b3908663ffffffff61246916565b600160a060020a0387166000818152600160205260409081902092909255907f8269ee3da431ac4749e945c9753440ce6e9c96a9807c29e4228328cfab27225990879087905191825260208201526040908101905180910390a285600160a060020a031660006000805160206128758339815191528760405190815260200160405180910390a360008411156113515761134f868585856115a6565b505b5b5b95945050505050565b60035433600160a060020a0390811691161461137757600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191660011790557f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33990829051600160a060020a03909116815260200160405180910390a15b5b50565b600160a060020a0381166000908152600160205260409020545b919050565b600160a060020a03811660009081526008602052604090205460ff165b919050565b60035433600160a060020a0390811691161461143a57600080fd5b6000541561144757600080fd5b7fcc0e82c1b8fa4695d6ae60217024b293814bde0f381a23cafaa0a1e25973c14b60405160405180910390a1600354600160a060020a0316ff5b5b565b60035433600160a060020a0390811691161461149f57600080fd5b60035460a060020a900460ff16156114b657600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b600354600160a060020a031681565b60408051908101604052600581527f5350494345000000000000000000000000000000000000000000000000000000602082015281565b60035433600160a060020a0390811691161461156c57600080fd5b600354600160a060020a039081169030163180156108fc0290604051600060405180830381858888f193505050501515610df557fe5b5b5b565b600354600090819033600160a060020a03908116911614806115e55750600160a060020a03331660009081526006602052604090205460ff1615156001145b15156115f057600080fd5b600160a060020a038616151561160557600080fd5b6000851161161257600080fd5b67ffffffffffffffff8316158061163c57504267ffffffffffffffff168367ffffffffffffffff16115b151561164757600080fd5b600160a060020a0386166000908152600760205260409020546014901061166d57600080fd5b506005805467ffffffffffffffff198116600167ffffffffffffffff92831681810190931691909117909255600160a060020a03871660009081526007602052604090208054919290919081016116c48382612763565b916000526020600020906003020160005b6080604051908101604052808567ffffffffffffffff1681526020018860048111156116fd57fe5b8152602081018a905267ffffffffffffffff88166040909101529190508151815467ffffffffffffffff191667ffffffffffffffff9190911617815560208201518154829068ff000000000000000019166801000000000000000083600481111561176457fe5b0217905550604082015181600101556060820151600291909101805467ffffffffffffffff191667ffffffffffffffff9092169190911790555050600160a060020a0386167f5e983011d4c7fb1a781260072ce1d9f1beb0485f07d36ea56f3c546b0c7b5bf786868685604051808581526020018460048111156117e457fe5b60ff1681526020018367ffffffffffffffff1681526020018267ffffffffffffffff1667ffffffffffffffff16815260200194505050505060405180910390a28091505b5b50949350505050565b600033826118408242611c07565b81111561184c57600080fd5b6118568585612483565b92505b5b505092915050565b6000808080600160a060020a038616151561187c57600080fd5b60009250611889866121c2565b9150600090505b8167ffffffffffffffff168167ffffffffffffffff16101561195e57600160a060020a0386166000908152600960205260409020805467ffffffffffffffff80881692919084169081106118e057fe5b906000526020600020906002020160005b505467ffffffffffffffff16141561195557600160a060020a0386166000908152600960205260409020805461195291859167ffffffffffffffff851690811061193757fe5b906000526020600020906002020160005b5060010154612469565b92505b5b600101611890565b8293505b50505092915050565b60035433600160a060020a03908116911614806119a55750600160a060020a03331660009081526006602052604090205460ff1615156001145b15156119b057600080fd5b600160a060020a03851615156119c557600080fd5b600067ffffffffffffffff8216116119dc57600080fd5b6119e5846113fd565b15156119f057600080fd5b600160a060020a03851660009081526001602052604090205483901015611a1657600080fd5b600160a060020a038516600090815260016020526040902054611a3f908463ffffffff6122a016565b600160a060020a038087166000908152600160205260408082209390935590861681522054611a74908463ffffffff61246916565b600160a060020a038086166000908152600160208181526040808420959095559289168252600990925291909120805490918101611ab283826127c7565b916000526020600020906002020160005b6060604051908101604052808567ffffffffffffffff168152602001866002811115611aeb57fe5b81526020018790529190508151815467ffffffffffffffff191667ffffffffffffffff9190911617815560208201518154829068ff0000000000000000191668010000000000000000836002811115611b4057fe5b02179055506040820151816001015550505083600160a060020a031685600160a060020a03166000805160206128758339815191528560405190815260200160405180910390a38067ffffffffffffffff1684600160a060020a031686600160a060020a03167f7cbc04f1f0db0ccdb849a408acb3a0617d213adda87d138847f6b9565f5b6653868660405180838152602001826002811115611bdf57fe5b60ff1681526020019250505060405180910390a45b5b5050505050565b600080fd5b50505050565b6000808080808067ffffffffffffffff8716819011611c2557600080fd5b611c2e886113fd565b15611c3c5760009550611dbf565b600160a060020a038816600090815260076020526040902054945060ff85161515611c7257611c6b88886124b1565b9550611dbf565b60009350600092505b8460ff168360ff161015611d8957600160a060020a0388166000908152600760205260409020805460ff8516908110611cb057fe5b906000526020600020906003020160005b506002015467ffffffffffffffff161580611d2d5750600160a060020a0388166000908152600760205260409020805467ffffffffffffffff8916919060ff8616908110611d0b57fe5b906000526020600020906003020160005b506002015467ffffffffffffffff16115b15611d7d57600160a060020a03881660009081526007602052604090208054611d7a91869160ff8716908110611d5f57fe5b906000526020600020906003020160005b5060010154612469565b93505b5b600190920191611c7b565b611d92886113de565b9150611da782611da286856124c5565b6122a0565b9050611dbc81611db78a8a6124b1565b6124c5565b95505b505050505092915050565b60035460009060a060020a900460ff1615611de457600080fd5b6109f583836124df565b90505b5b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b6000600160a060020a0382161515611e3c57600080fd5b50600160a060020a0381166000908152600760205260409020545b919050565b60008080600160a060020a0385161515611e7557600080fd5b600160a060020a03851660009081526009602052604090205467ffffffffffffffff851610611ea357600080fd5b600160a060020a0385166000908152600960205260409020805467ffffffffffffffff8616908110611ed157fe5b906000526020600020906002020160005b5054600160a060020a0386166000908152600960205260409020805467ffffffffffffffff928316955090918616908110611f1957fe5b906000526020600020906002020160005b505468010000000000000000900460ff166002811115611f4657fe5b600160a060020a038616600090815260096020526040902080549193509067ffffffffffffffff8616908110611f7857fe5b906000526020600020906002020160005b506001015490505b9250925092565b60035433600160a060020a03908116911614611fb357600080fd5b600160a060020a0381161515611fc857600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b6000808080600160a060020a038616151561204b57600080fd5b600160a060020a03861660009081526007602052604090205467ffffffffffffffff86161061207957600080fd5b600160a060020a0386166000908152600760205260409020805467ffffffffffffffff87169081106120a757fe5b906000526020600020906003020160005b5054600160a060020a0387166000908152600760205260409020805467ffffffffffffffff9283169650909187169081106120ef57fe5b906000526020600020906003020160005b505468010000000000000000900460ff16600481111561211c57fe5b600160a060020a038716600090815260076020526040902080549194509067ffffffffffffffff871690811061214e57fe5b906000526020600020906003020160005b5060010154600160a060020a038716600090815260076020526040902080549193509067ffffffffffffffff871690811061219657fe5b906000526020600020906003020160005b506002015467ffffffffffffffff1690505b92959194509250565b6000600160a060020a03821615156121d957600080fd5b50600160a060020a0381166000908152600960205260409020545b919050565b600081158061222b5750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b151561223657600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b6000828211156122ac57fe5b508082035b92915050565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561231457600080fd5b6102c65a03f1151561232557600080fd5b50505060405180519050151561233757fe5b5b505050565b60035460009060a060020a900460ff161561235757600080fd5b612362848484612584565b90505b5b9392505050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156123ca57600160a060020a033381166000908152600260209081526040808320938816835292905290812055612401565b6123da818463ffffffff6122a016565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b60008282018381101561247857fe5b8091505b5092915050565b60035460009060a060020a900460ff161561249d57600080fd5b6109f5838361269e565b90505b5b92915050565b60006109f5836113de565b90505b92915050565b60008183106124d457816109f5565b825b90505b92915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054612517908363ffffffff61246916565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b600080600160a060020a038416151561259c57600080fd5b50600160a060020a038085166000818152600260209081526040808320339095168352938152838220549282526001905291909120546125e2908463ffffffff6122a016565b600160a060020a038087166000908152600160205260408082209390935590861681522054612617908463ffffffff61246916565b600160a060020a038516600090815260016020526040902055612640818463ffffffff6122a016565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616916000805160206128758339815191529086905190815260200160405180910390a3600191505b509392505050565b6000600160a060020a03831615156126b557600080fd5b600160a060020a0333166000908152600160205260409020546126de908363ffffffff6122a016565b600160a060020a033381166000908152600160205260408082209390935590851681522054612713908363ffffffff61246916565b600160a060020a0380851660008181526001602052604090819020939093559133909116906000805160206128758339815191529085905190815260200160405180910390a35060015b92915050565b8154818355818115116123375760030281600302836000526020600020918201910161233791906127f9565b5b505050565b8154818355818115116123375760030281600302836000526020600020918201910161233791906127f9565b5b505050565b815481835581811511612337576002028160020283600052602060002091820191016123379190612840565b5b505050565b61283d91905b8082111561283957805468ffffffffffffffffff191681556000600182015560028101805467ffffffffffffffff191690556003016127ff565b5090565b90565b61283d91905b8082111561283957805468ffffffffffffffffff1916815560006001820155600201612846565b5090565b905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058203edc5c37f10c42d401cf4161af41b957d26c1a67448c35b62e76ae0bf53478a90029
Deployed Bytecode
0x606060405236156101b15763ffffffff60e060020a60003504166306fdde0381146101c0578063095ea7b31461024b5780630a9e24c1146102815780630d1118ce146102a25780631785f53c146102c657806317ffc320146102e757806318160ddd1461030857806323b872dd1461032d578063313ce567146103695780633f4ba83a1461039257806343cdc49e146103a7578063475a9fa9146103e75780635c975abb1461041d5780636377ff2014610444578063661884631461046957806369e375a71461049f57806370480275146104eb57806370a082311461050c5780637334b2d71461053d57806383197ef0146105705780638456cb59146105855780638da5cb5b1461059a57806395d89b41146105c95780639f727c27146106545780639f79edc214610669578063a9059cbb146106bb578063b41a9f22146106f1578063bc17ea4a1461072f578063c0ee0b8a1461076c578063d347c2051461079d578063d73dd623146107db578063dd62ed3e14610811578063df03458614610848578063f2bddf661461087d578063f2fde38b146108da578063f6a3e8c8146108fb578063f6b971311461095e575b34156101bc57600080fd5b5b5b005b34156101cb57600080fd5b6101d361099a565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102105780820151818401525b6020016101f7565b50505050905090810190601f16801561023d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561025657600080fd5b61026d600160a060020a03600435166024356109d1565b604051901515815260200160405180910390f35b341561028c57600080fd5b6101bc600160a060020a03600435166109ff565b005b34156102ad57600080fd5b6101bc600160a060020a0360043516602435610aae565b005b34156102d157600080fd5b6101bc600160a060020a0360043516610c03565b005b34156102f257600080fd5b6101bc600160a060020a0360043516610c82565b005b341561031357600080fd5b61031b610d3a565b60405190815260200160405180910390f35b341561033857600080fd5b61026d600160a060020a0360043581169060243516604435610d40565b604051901515815260200160405180910390f35b341561037457600080fd5b61037c610d72565b60405160ff909116815260200160405180910390f35b341561039d57600080fd5b6101bc610d77565b005b34156103b257600080fd5b61026d600160a060020a036004351667ffffffffffffffff60243516610df9565b604051901515815260200160405180910390f35b34156103f257600080fd5b61026d600160a060020a0360043516602435611123565b604051901515815260200160405180910390f35b341561042857600080fd5b61026d611184565b604051901515815260200160405180910390f35b341561044f57600080fd5b61031b611194565b60405190815260200160405180910390f35b341561047457600080fd5b61026d600160a060020a036004351660243561119a565b604051901515815260200160405180910390f35b34156104aa57600080fd5b61026d600160a060020a036004351660243560443560ff6064351667ffffffffffffffff608435166111c8565b604051901515815260200160405180910390f35b34156104f657600080fd5b6101bc600160a060020a036004351661135c565b005b341561051757600080fd5b61031b600160a060020a03600435166113de565b60405190815260200160405180910390f35b341561054857600080fd5b61026d600160a060020a03600435166113fd565b604051901515815260200160405180910390f35b341561057b57600080fd5b6101bc61141f565b005b341561059057600080fd5b6101bc611484565b005b34156105a557600080fd5b6105ad61150b565b604051600160a060020a03909116815260200160405180910390f35b34156105d457600080fd5b6101d361151a565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102105780820151818401525b6020016101f7565b50505050905090810190601f16801561023d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561065f57600080fd5b6101bc611551565b005b341561067457600080fd5b61069e600160a060020a036004351660243560ff6044351667ffffffffffffffff606435166115a6565b60405167ffffffffffffffff909116815260200160405180910390f35b34156106c657600080fd5b61026d600160a060020a0360043516602435611832565b604051901515815260200160405180910390f35b34156106fc57600080fd5b61031b600160a060020a036004351667ffffffffffffffff60243516611862565b60405190815260200160405180910390f35b341561073a57600080fd5b6101bc600160a060020a036004358116906024351660443560ff6064351667ffffffffffffffff6084351661196b565b005b341561077757600080fd5b6101bc60048035600160a060020a0316906024803591604435918201910135611bfc565b005b34156107a857600080fd5b61031b600160a060020a036004351667ffffffffffffffff60243516611c07565b60405190815260200160405180910390f35b34156107e657600080fd5b61026d600160a060020a0360043516602435611dca565b604051901515815260200160405180910390f35b341561081c57600080fd5b61031b600160a060020a0360043581169060243516611df8565b60405190815260200160405180910390f35b341561085357600080fd5b61037c600160a060020a0360043516611e25565b60405160ff909116815260200160405180910390f35b341561088857600080fd5b6108a9600160a060020a036004351667ffffffffffffffff60243516611e5c565b60405167ffffffffffffffff909316835260ff90911660208301526040808301919091526060909101905180910390f35b34156108e557600080fd5b6101bc600160a060020a0360043516611f98565b005b341561090657600080fd5b610927600160a060020a036004351667ffffffffffffffff60243516612031565b60405167ffffffffffffffff948516815260ff90931660208401526040808401929092529092166060820152608001905180910390f35b341561096957600080fd5b61069e600160a060020a03600435166121c2565b60405167ffffffffffffffff909116815260200160405180910390f35b60408051908101604052600e81527f535069434520564320546f6b656e000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff16156109eb57600080fd5b6109f583836121f9565b90505b5b92915050565b60035433600160a060020a0390811691161480610a395750600160a060020a03331660009081526006602052604090205460ff1615156001145b1515610a4457600080fd5b600160a060020a0381161515610a5957600080fd5b600160a060020a03811660008181526008602052604090819020805460ff191660011790557f3feaaaa178b19ed7f1c23aa51662afa77dbbb5cc64f30a200801ee016743e77d905160405180910390a25b5b50565b60035433600160a060020a0390811691161480610ae85750600160a060020a03331660009081526006602052604090205460ff1615156001145b1515610af357600080fd5b60008111610b0057600080fd5b610b09826113fd565b1515610b1457600080fd5b600160a060020a03821660009081526001602052604090205481901015610b3a57600080fd5b600160a060020a038216600090815260016020526040902054610b63908263ffffffff6122a016565b600160a060020a03831660009081526001602052604081209190915554610b90908263ffffffff6122a016565b600055600160a060020a0382167f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df78260405190815260200160405180910390a2600082600160a060020a03166000805160206128758339815191528360405190815260200160405180910390a35b5b5050565b60035433600160a060020a03908116911614610c1e57600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191690557fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f90829051600160a060020a03909116815260200160405180910390a15b5b50565b60035460009033600160a060020a03908116911614610ca057600080fd5b81600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610cf757600080fd5b6102c65a03f11515610d0857600080fd5b5050506040518051600354909250610bfe9150600160a060020a0384811691168363ffffffff6122b716565b5b5b5050565b60005481565b60008382610d4e8242611c07565b811115610d5a57600080fd5b610d6586868661233d565b92505b5b50509392505050565b600881565b60035433600160a060020a03908116911614610d9257600080fd5b60035460a060020a900460ff161515610daa57600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15b5b5b565b600354600090819033600160a060020a0390811691161480610e385750600160a060020a03331660009081526006602052604090205460ff1615156001145b1515610e4357600080fd5b600160a060020a0384161515610e5857600080fd5b600067ffffffffffffffff841611610e6f57600080fd5b5060005b600160a060020a03841660009081526007602052604090205460ff8216101561111657600160a060020a0384166000908152600760205260409020805467ffffffffffffffff8516919060ff8416908110610eca57fe5b906000526020600020906003020160005b505467ffffffffffffffff16141561110d57600160a060020a038416600081815260076020526040902080547f626516e32a7d37edaec213953f84a8ada0e2b0dba669b9f2fc19c82c095d36c2919060ff8516908110610f3757fe5b906000526020600020906003020160005b50600101548560405191825267ffffffffffffffff1660208201526040908101905180910390a2600160a060020a0384166000908152600760205260409020805460ff8316908110610f9657fe5b906000526020600020906003020160005b50805468ffffffffffffffffff19168155600060018083018290556002909201805467ffffffffffffffff19169055600160a060020a038616815260076020526040902080549091610fff919063ffffffff6122a016565b8154811061100957fe5b906000526020600020906003020160005b50600160a060020a0385166000908152600760205260409020805460ff841690811061104257fe5b906000526020600020906003020160005b508154815467ffffffffffffffff191667ffffffffffffffff90911617808255825460ff68010000000000000000918290041691839168ff000000000000000019909116908360048111156110a457fe5b0217905550600182810154908201556002918201549101805467ffffffffffffffff191667ffffffffffffffff909216919091179055600160a060020a0384166000908152600760205260409020805460001901906111039082612763565b506001915061111b565b5b600101610e73565b600091505b5b5092915050565b60035460009033600160a060020a03908116911614806111605750600160a060020a03331660009081526006602052604090205460ff1615156001145b151561116b57600080fd5b61111b83836000600460006111c8565b505b5b92915050565b60035460a060020a900460ff1681565b60045481565b60035460009060a060020a900460ff16156111b457600080fd5b6109f5838361236d565b90505b5b92915050565b60035460009033600160a060020a03908116911614806112055750600160a060020a03331660009081526006602052604090205460ff1615156001145b151561121057600080fd5b600160a060020a038616151561122557600080fd5b6000851161123257600080fd5b600084101580156112435750848411155b151561124e57600080fd5b6004548590101561125e57600080fd5b600054611271908663ffffffff61246916565b600055600454611287908663ffffffff6122a016565b600455600160a060020a0386166000908152600160205260409020546112b3908663ffffffff61246916565b600160a060020a0387166000818152600160205260409081902092909255907f8269ee3da431ac4749e945c9753440ce6e9c96a9807c29e4228328cfab27225990879087905191825260208201526040908101905180910390a285600160a060020a031660006000805160206128758339815191528760405190815260200160405180910390a360008411156113515761134f868585856115a6565b505b5b5b95945050505050565b60035433600160a060020a0390811691161461137757600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191660011790557f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33990829051600160a060020a03909116815260200160405180910390a15b5b50565b600160a060020a0381166000908152600160205260409020545b919050565b600160a060020a03811660009081526008602052604090205460ff165b919050565b60035433600160a060020a0390811691161461143a57600080fd5b6000541561144757600080fd5b7fcc0e82c1b8fa4695d6ae60217024b293814bde0f381a23cafaa0a1e25973c14b60405160405180910390a1600354600160a060020a0316ff5b5b565b60035433600160a060020a0390811691161461149f57600080fd5b60035460a060020a900460ff16156114b657600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15b5b5b565b600354600160a060020a031681565b60408051908101604052600581527f5350494345000000000000000000000000000000000000000000000000000000602082015281565b60035433600160a060020a0390811691161461156c57600080fd5b600354600160a060020a039081169030163180156108fc0290604051600060405180830381858888f193505050501515610df557fe5b5b5b565b600354600090819033600160a060020a03908116911614806115e55750600160a060020a03331660009081526006602052604090205460ff1615156001145b15156115f057600080fd5b600160a060020a038616151561160557600080fd5b6000851161161257600080fd5b67ffffffffffffffff8316158061163c57504267ffffffffffffffff168367ffffffffffffffff16115b151561164757600080fd5b600160a060020a0386166000908152600760205260409020546014901061166d57600080fd5b506005805467ffffffffffffffff198116600167ffffffffffffffff92831681810190931691909117909255600160a060020a03871660009081526007602052604090208054919290919081016116c48382612763565b916000526020600020906003020160005b6080604051908101604052808567ffffffffffffffff1681526020018860048111156116fd57fe5b8152602081018a905267ffffffffffffffff88166040909101529190508151815467ffffffffffffffff191667ffffffffffffffff9190911617815560208201518154829068ff000000000000000019166801000000000000000083600481111561176457fe5b0217905550604082015181600101556060820151600291909101805467ffffffffffffffff191667ffffffffffffffff9092169190911790555050600160a060020a0386167f5e983011d4c7fb1a781260072ce1d9f1beb0485f07d36ea56f3c546b0c7b5bf786868685604051808581526020018460048111156117e457fe5b60ff1681526020018367ffffffffffffffff1681526020018267ffffffffffffffff1667ffffffffffffffff16815260200194505050505060405180910390a28091505b5b50949350505050565b600033826118408242611c07565b81111561184c57600080fd5b6118568585612483565b92505b5b505092915050565b6000808080600160a060020a038616151561187c57600080fd5b60009250611889866121c2565b9150600090505b8167ffffffffffffffff168167ffffffffffffffff16101561195e57600160a060020a0386166000908152600960205260409020805467ffffffffffffffff80881692919084169081106118e057fe5b906000526020600020906002020160005b505467ffffffffffffffff16141561195557600160a060020a0386166000908152600960205260409020805461195291859167ffffffffffffffff851690811061193757fe5b906000526020600020906002020160005b5060010154612469565b92505b5b600101611890565b8293505b50505092915050565b60035433600160a060020a03908116911614806119a55750600160a060020a03331660009081526006602052604090205460ff1615156001145b15156119b057600080fd5b600160a060020a03851615156119c557600080fd5b600067ffffffffffffffff8216116119dc57600080fd5b6119e5846113fd565b15156119f057600080fd5b600160a060020a03851660009081526001602052604090205483901015611a1657600080fd5b600160a060020a038516600090815260016020526040902054611a3f908463ffffffff6122a016565b600160a060020a038087166000908152600160205260408082209390935590861681522054611a74908463ffffffff61246916565b600160a060020a038086166000908152600160208181526040808420959095559289168252600990925291909120805490918101611ab283826127c7565b916000526020600020906002020160005b6060604051908101604052808567ffffffffffffffff168152602001866002811115611aeb57fe5b81526020018790529190508151815467ffffffffffffffff191667ffffffffffffffff9190911617815560208201518154829068ff0000000000000000191668010000000000000000836002811115611b4057fe5b02179055506040820151816001015550505083600160a060020a031685600160a060020a03166000805160206128758339815191528560405190815260200160405180910390a38067ffffffffffffffff1684600160a060020a031686600160a060020a03167f7cbc04f1f0db0ccdb849a408acb3a0617d213adda87d138847f6b9565f5b6653868660405180838152602001826002811115611bdf57fe5b60ff1681526020019250505060405180910390a45b5b5050505050565b600080fd5b50505050565b6000808080808067ffffffffffffffff8716819011611c2557600080fd5b611c2e886113fd565b15611c3c5760009550611dbf565b600160a060020a038816600090815260076020526040902054945060ff85161515611c7257611c6b88886124b1565b9550611dbf565b60009350600092505b8460ff168360ff161015611d8957600160a060020a0388166000908152600760205260409020805460ff8516908110611cb057fe5b906000526020600020906003020160005b506002015467ffffffffffffffff161580611d2d5750600160a060020a0388166000908152600760205260409020805467ffffffffffffffff8916919060ff8616908110611d0b57fe5b906000526020600020906003020160005b506002015467ffffffffffffffff16115b15611d7d57600160a060020a03881660009081526007602052604090208054611d7a91869160ff8716908110611d5f57fe5b906000526020600020906003020160005b5060010154612469565b93505b5b600190920191611c7b565b611d92886113de565b9150611da782611da286856124c5565b6122a0565b9050611dbc81611db78a8a6124b1565b6124c5565b95505b505050505092915050565b60035460009060a060020a900460ff1615611de457600080fd5b6109f583836124df565b90505b5b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b6000600160a060020a0382161515611e3c57600080fd5b50600160a060020a0381166000908152600760205260409020545b919050565b60008080600160a060020a0385161515611e7557600080fd5b600160a060020a03851660009081526009602052604090205467ffffffffffffffff851610611ea357600080fd5b600160a060020a0385166000908152600960205260409020805467ffffffffffffffff8616908110611ed157fe5b906000526020600020906002020160005b5054600160a060020a0386166000908152600960205260409020805467ffffffffffffffff928316955090918616908110611f1957fe5b906000526020600020906002020160005b505468010000000000000000900460ff166002811115611f4657fe5b600160a060020a038616600090815260096020526040902080549193509067ffffffffffffffff8616908110611f7857fe5b906000526020600020906002020160005b506001015490505b9250925092565b60035433600160a060020a03908116911614611fb357600080fd5b600160a060020a0381161515611fc857600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b6000808080600160a060020a038616151561204b57600080fd5b600160a060020a03861660009081526007602052604090205467ffffffffffffffff86161061207957600080fd5b600160a060020a0386166000908152600760205260409020805467ffffffffffffffff87169081106120a757fe5b906000526020600020906003020160005b5054600160a060020a0387166000908152600760205260409020805467ffffffffffffffff9283169650909187169081106120ef57fe5b906000526020600020906003020160005b505468010000000000000000900460ff16600481111561211c57fe5b600160a060020a038716600090815260076020526040902080549194509067ffffffffffffffff871690811061214e57fe5b906000526020600020906003020160005b5060010154600160a060020a038716600090815260076020526040902080549193509067ffffffffffffffff871690811061219657fe5b906000526020600020906003020160005b506002015467ffffffffffffffff1690505b92959194509250565b6000600160a060020a03821615156121d957600080fd5b50600160a060020a0381166000908152600960205260409020545b919050565b600081158061222b5750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b151561223657600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b6000828211156122ac57fe5b508082035b92915050565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561231457600080fd5b6102c65a03f1151561232557600080fd5b50505060405180519050151561233757fe5b5b505050565b60035460009060a060020a900460ff161561235757600080fd5b612362848484612584565b90505b5b9392505050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156123ca57600160a060020a033381166000908152600260209081526040808320938816835292905290812055612401565b6123da818463ffffffff6122a016565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b60008282018381101561247857fe5b8091505b5092915050565b60035460009060a060020a900460ff161561249d57600080fd5b6109f5838361269e565b90505b5b92915050565b60006109f5836113de565b90505b92915050565b60008183106124d457816109f5565b825b90505b92915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054612517908363ffffffff61246916565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b600080600160a060020a038416151561259c57600080fd5b50600160a060020a038085166000818152600260209081526040808320339095168352938152838220549282526001905291909120546125e2908463ffffffff6122a016565b600160a060020a038087166000908152600160205260408082209390935590861681522054612617908463ffffffff61246916565b600160a060020a038516600090815260016020526040902055612640818463ffffffff6122a016565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616916000805160206128758339815191529086905190815260200160405180910390a3600191505b509392505050565b6000600160a060020a03831615156126b557600080fd5b600160a060020a0333166000908152600160205260409020546126de908363ffffffff6122a016565b600160a060020a033381166000908152600160205260408082209390935590851681522054612713908363ffffffff61246916565b600160a060020a0380851660008181526001602052604090819020939093559133909116906000805160206128758339815191529085905190815260200160405180910390a35060015b92915050565b8154818355818115116123375760030281600302836000526020600020918201910161233791906127f9565b5b505050565b8154818355818115116123375760030281600302836000526020600020918201910161233791906127f9565b5b505050565b815481835581811511612337576002028160020283600052602060002091820191016123379190612840565b5b505050565b61283d91905b8082111561283957805468ffffffffffffffffff191681556000600182015560028101805467ffffffffffffffff191690556003016127ff565b5090565b90565b61283d91905b8082111561283957805468ffffffffffffffffff1916815560006001820155600201612846565b5090565b905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058203edc5c37f10c42d401cf4161af41b957d26c1a67448c35b62e76ae0bf53478a90029
Swarm Source
bzzr://3edc5c37f10c42d401cf4161af41b957d26c1a67448c35b62e76ae0bf53478a9
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.