ERC-20
Overview
Max Total Supply
22,000,000 KTY
Holders
1,348
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
300.71 KTYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KittiefightToken
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-12-06 */ pragma solidity ^0.4.24; contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } 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 SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ 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; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } 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); } 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(); } } contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); // 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]; } } contract ERC865 is ERC20 { function transferPreSigned( bytes _signature, address _to, uint256 _value, uint256 _fee, uint256 _nonce ) public returns (bool); function approvePreSigned( bytes _signature, address _spender, uint256 _value, uint256 _fee, uint256 _nonce ) public returns (bool); function increaseApprovalPreSigned( bytes _signature, address _spender, uint256 _addedValue, uint256 _fee, uint256 _nonce ) public returns (bool); function decreaseApprovalPreSigned( bytes _signature, address _spender, uint256 _subtractedValue, uint256 _fee, uint256 _nonce ) public returns (bool); function transferFromPreSigned( bytes _signature, address _from, address _to, uint256 _value, uint256 _fee, uint256 _nonce ) public returns (bool); } 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; } } contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) { totalSupply_ = totalSupply_.add(_amount); balances[_to] = balances[_to].add(_amount); Mint(_to, _amount); Transfer(address(0), _to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner canMint public returns (bool) { mintingFinished = true; MintFinished(); 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 ERC865Token is ERC865, StandardToken { /* Nonces of transfers performed */ mapping(bytes => bool) signatures; event TransferPreSigned(address indexed from, address indexed to, address indexed delegate, uint256 amount, uint256 fee); event ApprovalPreSigned(address indexed from, address indexed to, address indexed delegate, uint256 amount, uint256 fee); /** * @notice Submit a presigned transfer * @param _signature bytes The signature, issued by the owner. * @param _to address The address which you want to transfer to. * @param _value uint256 The amount of tokens to be transferred. * @param _fee uint256 The amount of tokens paid to msg.sender, by the owner. * @param _nonce uint256 Presigned transaction number. */ function transferPreSigned( bytes _signature, address _to, uint256 _value, uint256 _fee, uint256 _nonce ) public returns (bool) { require(_to != address(0), "No address provided"); require(signatures[_signature] == false, "No signature"); bytes32 hashedTx = transferPreSignedHashing(address(this), _to, _value, _fee, _nonce); address from = recover(hashedTx, _signature); require(from != address(0), "From address is not provided"); balances[from] = balances[from].sub(_value).sub(_fee); balances[_to] = balances[_to].add(_value); balances[msg.sender] = balances[msg.sender].add(_fee); signatures[_signature] = true; emit Transfer(from, _to, _value); emit Transfer(from, msg.sender, _fee); emit TransferPreSigned(from, _to, msg.sender, _value, _fee); return true; } /** * @notice Submit a presigned approval * @param _signature bytes The signature, issued by the owner. * @param _spender address The address which will spend the funds. * @param _value uint256 The amount of tokens to allow. * @param _fee uint256 The amount of tokens paid to msg.sender, by the owner. * @param _nonce uint256 Presigned transaction number. */ function approvePreSigned( bytes _signature, address _spender, uint256 _value, uint256 _fee, uint256 _nonce ) public returns (bool) { require(_spender != address(0), "Spender is not provided"); require(signatures[_signature] == false, "No signature"); bytes32 hashedTx = approvePreSignedHashing(address(this), _spender, _value, _fee, _nonce); address from = recover(hashedTx, _signature); require(from != address(0), "From addres is not provided"); allowed[from][_spender] = _value; balances[from] = balances[from].sub(_fee); balances[msg.sender] = balances[msg.sender].add(_fee); signatures[_signature] = true; emit Approval(from, _spender, _value); emit Transfer(from, msg.sender, _fee); emit ApprovalPreSigned(from, _spender, msg.sender, _value, _fee); return true; } /** * @notice Increase the amount of tokens that an owner allowed to a spender. * @param _signature bytes The signature, issued by the owner. * @param _spender address The address which will spend the funds. * @param _addedValue uint256 The amount of tokens to increase the allowance by. * @param _fee uint256 The amount of tokens paid to msg.sender, by the owner. * @param _nonce uint256 Presigned transaction number. */ function increaseApprovalPreSigned( bytes _signature, address _spender, uint256 _addedValue, uint256 _fee, uint256 _nonce ) public returns (bool) { require(_spender != address(0), "Spender address is not provided"); require(signatures[_signature] == false, "No Signature"); bytes32 hashedTx = increaseApprovalPreSignedHashing(address(this), _spender, _addedValue, _fee, _nonce); address from = recover(hashedTx, _signature); require(from != address(0), "From address is not provided"); allowed[from][_spender] = allowed[from][_spender].add(_addedValue); balances[from] = balances[from].sub(_fee); balances[msg.sender] = balances[msg.sender].add(_fee); signatures[_signature] = true; emit Approval(from, _spender, allowed[from][_spender]); emit Transfer(from, msg.sender, _fee); emit ApprovalPreSigned(from, _spender, msg.sender, allowed[from][_spender], _fee); return true; } /** * @notice Decrease the amount of tokens that an owner allowed to a spender. * @param _signature bytes The signature, issued by the owner * @param _spender address The address which will spend the funds. * @param _subtractedValue uint256 The amount of tokens to decrease the allowance by. * @param _fee uint256 The amount of tokens paid to msg.sender, by the owner. * @param _nonce uint256 Presigned transaction number. */ function decreaseApprovalPreSigned( bytes _signature, address _spender, uint256 _subtractedValue, uint256 _fee, uint256 _nonce ) public returns (bool) { require(_spender != address(0), "Spender address is not provided"); require(signatures[_signature] == false, "No sognature"); bytes32 hashedTx = decreaseApprovalPreSignedHashing(address(this), _spender, _subtractedValue, _fee, _nonce); address from = recover(hashedTx, _signature); require(from != address(0), "From address is not provided"); uint oldValue = allowed[from][_spender]; if (_subtractedValue > oldValue) { allowed[from][_spender] = 0; } else { allowed[from][_spender] = oldValue.sub(_subtractedValue); } balances[from] = balances[from].sub(_fee); balances[msg.sender] = balances[msg.sender].add(_fee); signatures[_signature] = true; emit Approval(from, _spender, _subtractedValue); emit Transfer(from, msg.sender, _fee); emit ApprovalPreSigned(from, _spender, msg.sender, allowed[from][_spender], _fee); return true; } /** * @notice Transfer tokens from one address to another * @param _signature bytes The signature, issued by the spender. * @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. * @param _fee uint256 The amount of tokens paid to msg.sender, by the spender. * @param _nonce uint256 Presigned transaction number. */ function transferFromPreSigned( bytes _signature, address _from, address _to, uint256 _value, uint256 _fee, uint256 _nonce ) public returns (bool) { require(_to != address(0), "No [to] address provided"); require(signatures[_signature] == false, "No signature provided"); bytes32 hashedTx = transferFromPreSignedHashing(address(this), _from, _to, _value, _fee, _nonce); address spender = recover(hashedTx, _signature); require(spender != address(0), "Spender address is not provided"); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][spender] = allowed[_from][spender].sub(_value); balances[spender] = balances[spender].sub(_fee); balances[msg.sender] = balances[msg.sender].add(_fee); signatures[_signature] = true; emit Transfer(_from, _to, _value); emit Transfer(spender, msg.sender, _fee); return true; } /** * @notice Hash (keccak256) of the payload used by transferPreSigned * @param _token address The address of the token. * @param _to address The address which you want to transfer to. * @param _value uint256 The amount of tokens to be transferred. * @param _fee uint256 The amount of tokens paid to msg.sender, by the owner. * @param _nonce uint256 Presigned transaction number. */ function transferPreSignedHashing( address _token, address _to, uint256 _value, uint256 _fee, uint256 _nonce ) public pure returns (bytes32) { /* "48664c16": transferPreSignedHashing(address,address,address,uint256,uint256,uint256) */ return keccak256(abi.encodePacked(bytes4(0x48664c16), _token, _to, _value, _fee, _nonce)); } /** * @notice Hash (keccak256) of the payload used by approvePreSigned * @param _token address The address of the token * @param _spender address The address which will spend the funds. * @param _value uint256 The amount of tokens to allow. * @param _fee uint256 The amount of tokens paid to msg.sender, by the owner. * @param _nonce uint256 Presigned transaction number. */ function approvePreSignedHashing( address _token, address _spender, uint256 _value, uint256 _fee, uint256 _nonce ) public pure returns (bytes32) { /* "f7ac9c2e": approvePreSignedHashing(address,address,uint256,uint256,uint256) */ return keccak256(abi.encodePacked(bytes4(0xf7ac9c2e), _token, _spender, _value, _fee, _nonce)); } /** * @notice Hash (keccak256) of the payload used by increaseApprovalPreSigned * @param _token address The address of the token * @param _spender address The address which will spend the funds. * @param _addedValue uint256 The amount of tokens to increase the allowance by. * @param _fee uint256 The amount of tokens paid to msg.sender, by the owner. * @param _nonce uint256 Presigned transaction number. */ function increaseApprovalPreSignedHashing( address _token, address _spender, uint256 _addedValue, uint256 _fee, uint256 _nonce ) public pure returns (bytes32) { /* "a45f71ff": increaseApprovalPreSignedHashing(address,address,uint256,uint256,uint256) */ return keccak256(abi.encodePacked(bytes4(0xa45f71ff), _token, _spender, _addedValue, _fee, _nonce)); } /** * @notice Hash (keccak256) of the payload used by decreaseApprovalPreSigned * @param _token address The address of the token * @param _spender address The address which will spend the funds. * @param _subtractedValue uint256 The amount of tokens to decrease the allowance by. * @param _fee uint256 The amount of tokens paid to msg.sender, by the owner. * @param _nonce uint256 Presigned transaction number. */ function decreaseApprovalPreSignedHashing( address _token, address _spender, uint256 _subtractedValue, uint256 _fee, uint256 _nonce ) public pure returns (bytes32) { /* "59388d78": decreaseApprovalPreSignedHashing(address,address,uint256,uint256,uint256) */ return keccak256(abi.encodePacked(bytes4(0x59388d78), _token, _spender, _subtractedValue, _fee, _nonce)); } /** * @notice Hash (keccak256) of the payload used by transferFromPreSigned * @param _token address The address of the token * @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. * @param _fee uint256 The amount of tokens paid to msg.sender, by the spender. * @param _nonce uint256 Presigned transaction number. */ function transferFromPreSignedHashing( address _token, address _from, address _to, uint256 _value, uint256 _fee, uint256 _nonce ) public pure returns (bytes32) { /* "b7656dc5": transferFromPreSignedHashing(address,address,address,uint256,uint256,uint256) */ return keccak256(abi.encodePacked(bytes4(0xb7656dc5), _token, _from, _to, _value, _fee, _nonce)); } /** * @notice Recover signer address from a message by using his signature * @param hash bytes32 message, the hash is the signed message. What is recovered is the signer address. * @param sig bytes signature, the signature is generated using web3.eth.sign() */ function recover(bytes32 hash, bytes sig) public pure returns (address) { bytes32 r; bytes32 s; uint8 v; //Check the signature length if (sig.length != 65) { return (address(0)); } // Divide the signature in r, s and v variables assembly { r := mload(add(sig, 32)) s := mload(add(sig, 64)) v := byte(0, mload(add(sig, 96))) } // Version of signature should be 27 or 28, but 0 and 1 are also possible versions if (v < 27) { v += 27; } // If the version is correct return the signer address if (v != 27 && v != 28) { return (address(0)); } else { return ecrecover(hash, v, r, s); } } } contract CappedToken is MintableToken { uint256 public cap; constructor(uint256 _cap) public { require(_cap > 0); cap = _cap; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) { require(totalSupply_.add(_amount) <= cap); return super.mint(_to, _amount); } } contract KittiefightToken is ERC865Token, PausableToken, CappedToken { /* Set the token name for display */ string public constant symbol = "KTY"; /* Set the token symbol for display */ string public constant name = "Kittiefight"; /* Set the number of decimals for display */ uint8 public constant decimals = 18; /* 100 milion KTY specified */ uint256 public constant amountOfTokenToMint = 10**8 * 10**uint256(decimals); /* Is crowdsale filtering non registered users. false by default */ bool public isTransferWhitelistOnly = false; /* Mapping of whitelisted users */ mapping (address => bool) transfersWhitelist; event UserAllowedToTransfer(address user); event TransferWhitelistOnly(bool flag); constructor() CappedToken(amountOfTokenToMint) { } /** * @notice Is the address allowed to transfer * @return true if the sender can transfer */ function isUserAllowedToTransfer(address _user) public constant returns (bool) { require(_user != 0x0); return transfersWhitelist[_user]; } /** * @notice Enabling / Disabling transfers of non whitelisted users */ function setWhitelistedOnly(bool _isWhitelistOnly) onlyOwner public { if (isTransferWhitelistOnly != _isWhitelistOnly) { isTransferWhitelistOnly = _isWhitelistOnly; TransferWhitelistOnly(_isWhitelistOnly); } } /** * @notice Adding a user to the whitelist */ function whitelistUserForTransfers(address _user) onlyOwner public { require(!isUserAllowedToTransfer(_user)); transfersWhitelist[_user] = true; UserAllowedToTransfer(_user); } /** * @notice Remove a user from the whitelist */ function blacklistUserForTransfers(address _user) onlyOwner public { require(isUserAllowedToTransfer(_user)); transfersWhitelist[_user] = false; UserAllowedToTransfer(_user); } /** * @notice 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) { if (isTransferWhitelistOnly) { require(isUserAllowedToTransfer(msg.sender)); } return super.transfer(_to, _value); } /** * @notice 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) { if (isTransferWhitelistOnly) { require(isUserAllowedToTransfer(_from)); } return super.transferFrom(_from, _to, _value); } /** * @notice Submit a presigned transfer * @param _signature bytes The signature, issued by the owner. * @param _to address The address which you want to transfer to. * @param _value uint256 The amount of tokens to be transferred. * @param _fee uint256 The amount of tokens paid to msg.sender, by the owner. * @param _nonce uint256 Presigned transaction number. */ function transferPreSigned( bytes _signature, address _to, uint256 _value, uint256 _fee, uint256 _nonce ) whenNotPaused public returns (bool) { if (isTransferWhitelistOnly) { bytes32 hashedTx = super.transferPreSignedHashing(address(this), _to, _value, _fee, _nonce); address from = recover(hashedTx, _signature); require(isUserAllowedToTransfer(from)); } return super.transferPreSigned(_signature, _to, _value, _fee, _nonce); } /** * @notice Submit a presigned approval * @param _signature bytes The signature, issued by the owner. * @param _spender address The address which will spend the funds. * @param _value uint256 The amount of tokens to allow. * @param _fee uint256 The amount of tokens paid to msg.sender, by the owner. * @param _nonce uint256 Presigned transaction number. */ function approvePreSigned( bytes _signature, address _spender, uint256 _value, uint256 _fee, uint256 _nonce ) whenNotPaused public returns (bool) { if (isTransferWhitelistOnly) { bytes32 hashedTx = super.approvePreSignedHashing(address(this), _spender, _value, _fee, _nonce); address from = recover(hashedTx, _signature); require(isUserAllowedToTransfer(from)); } return super.approvePreSigned(_signature, _spender, _value, _fee, _nonce); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_signature","type":"bytes"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_fee","type":"uint256"},{"name":"_nonce","type":"uint256"}],"name":"transferPreSigned","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_token","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_fee","type":"uint256"},{"name":"_nonce","type":"uint256"}],"name":"transferPreSignedHashing","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"hash","type":"bytes32"},{"name":"sig","type":"bytes"}],"name":"recover","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"pure","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":"_user","type":"address"}],"name":"blacklistUserForTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isTransferWhitelistOnly","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"amountOfTokenToMint","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_token","type":"address"},{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"},{"name":"_fee","type":"uint256"},{"name":"_nonce","type":"uint256"}],"name":"decreaseApprovalPreSignedHashing","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_signature","type":"bytes"},{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_fee","type":"uint256"},{"name":"_nonce","type":"uint256"}],"name":"approvePreSigned","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_signature","type":"bytes"},{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"},{"name":"_fee","type":"uint256"},{"name":"_nonce","type":"uint256"}],"name":"decreaseApprovalPreSigned","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_isWhitelistOnly","type":"bool"}],"name":"setWhitelistedOnly","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_user","type":"address"}],"name":"isUserAllowedToTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_token","type":"address"},{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"},{"name":"_fee","type":"uint256"},{"name":"_nonce","type":"uint256"}],"name":"increaseApprovalPreSignedHashing","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_signature","type":"bytes"},{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"},{"name":"_fee","type":"uint256"},{"name":"_nonce","type":"uint256"}],"name":"increaseApprovalPreSigned","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_token","type":"address"},{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_fee","type":"uint256"},{"name":"_nonce","type":"uint256"}],"name":"transferFromPreSignedHashing","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_signature","type":"bytes"},{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_fee","type":"uint256"},{"name":"_nonce","type":"uint256"}],"name":"transferFromPreSigned","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_token","type":"address"},{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_fee","type":"uint256"},{"name":"_nonce","type":"uint256"}],"name":"approvePreSignedHashing","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"}],"name":"whitelistUserForTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"user","type":"address"}],"name":"UserAllowedToTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"flag","type":"bool"}],"name":"TransferWhitelistOnly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":true,"name":"delegate","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"fee","type":"uint256"}],"name":"TransferPreSigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":true,"name":"delegate","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"fee","type":"uint256"}],"name":"ApprovalPreSigned","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
60806040526004805460a060020a61ffff02191690556006805460ff1916905534801561002b57600080fd5b5060048054600160a060020a031916331790556a52b7d2dcc80cd2e4000000600555612cb18061005c6000396000f3006080604052600436106101cc5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b81146101d157806306fdde03146101fa578063095ea7b3146102845780631296830d146102a857806315420b711461031b57806318160ddd1461035d57806319045a251461037257806323b872dd146103ec578063260d387b146104165780632b2be30914610439578063313ce5671461044e578063355274ea146104795780633f4ba83a1461048e57806340c10f19146104a35780635478bc6b146104c757806359388d78146104dc5780635c975abb1461050c578063617b390b14610521578063661884631461059457806370a08231146105b85780637d64bcb4146105d95780638456cb59146105ee5780638be52783146106035780638da5cb5b1461067657806395d89b411461068b578063a157696b146106a0578063a25b9384146106ba578063a45f71ff146106db578063a9059cbb1461070b578063adb8249e1461072f578063b7656dc5146107a2578063bca50515146107d8578063d73dd62314610855578063dd62ed3e14610879578063f2fde38b146108a0578063f7ac9c2e146108c1578063fb37baa1146108f1575b600080fd5b3480156101dd57600080fd5b506101e6610912565b604080519115158252519081900360200190f35b34801561020657600080fd5b5061020f610922565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610249578181015183820152602001610231565b50505050905090810190601f1680156102765780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561029057600080fd5b506101e6600160a060020a0360043516602435610959565b3480156102b457600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526101e694369492936024939284019190819084018382808284375094975050508335600160a060020a0316945050506020820135916040810135915060600135610984565b34801561032757600080fd5b5061034b600160a060020a03600435811690602435166044356064356084356109f5565b60408051918252519081900360200190f35b34801561036957600080fd5b5061034b610ad9565b34801561037e57600080fd5b5060408051602060046024803582810135601f81018590048502860185019096528585526103d0958335953695604494919390910191908190840183828082843750949750610adf9650505050505050565b60408051600160a060020a039092168252519081900360200190f35b3480156103f857600080fd5b506101e6600160a060020a0360043581169060243516604435610bb4565b34801561042257600080fd5b50610437600160a060020a0360043516610be9565b005b34801561044557600080fd5b506101e6610c6c565b34801561045a57600080fd5b50610463610c75565b6040805160ff9092168252519081900360200190f35b34801561048557600080fd5b5061034b610c7a565b34801561049a57600080fd5b50610437610c80565b3480156104af57600080fd5b506101e6600160a060020a0360043516602435610cf8565b3480156104d357600080fd5b5061034b610d54565b3480156104e857600080fd5b5061034b600160a060020a0360043581169060243516604435606435608435610d63565b34801561051857600080fd5b506101e6610e10565b34801561052d57600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526101e694369492936024939284019190819084018382808284375094975050508335600160a060020a0316945050506020820135916040810135915060600135610e20565b3480156105a057600080fd5b506101e6600160a060020a0360043516602435610e85565b3480156105c457600080fd5b5061034b600160a060020a0360043516610ea9565b3480156105e557600080fd5b506101e6610ec4565b3480156105fa57600080fd5b50610437610f49565b34801561060f57600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526101e694369492936024939284019190819084018382808284375094975050508335600160a060020a0316945050506020820135916040810135915060600135610fc6565b34801561068257600080fd5b506103d06113b3565b34801561069757600080fd5b5061020f6113c2565b3480156106ac57600080fd5b5061043760043515156113f9565b3480156106c657600080fd5b506101e6600160a060020a0360043516611468565b3480156106e757600080fd5b5061034b600160a060020a036004358116906024351660443560643560843561149e565b34801561071757600080fd5b506101e6600160a060020a036004351660243561154b565b34801561073b57600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526101e694369492936024939284019190819084018382808284375094975050508335600160a060020a0316945050506020820135916040810135915060600135611577565b3480156107ae57600080fd5b5061034b600160a060020a036004358116906024358116906044351660643560843560a435611939565b3480156107e457600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526101e694369492936024939284019190819084018382808284375094975050600160a060020a03853581169650602086013516946040810135945060608101359350608001359150611a289050565b34801561086157600080fd5b506101e6600160a060020a0360043516602435611ddb565b34801561088557600080fd5b5061034b600160a060020a0360043581169060243516611dff565b3480156108ac57600080fd5b50610437600160a060020a0360043516611e2a565b3480156108cd57600080fd5b5061034b600160a060020a0360043581169060243516604435606435608435611ebf565b3480156108fd57600080fd5b50610437600160a060020a0360043516611f6c565b60045460a860020a900460ff1681565b60408051808201909152600b81527f4b69747469656669676874000000000000000000000000000000000000000000602082015281565b60045460009060a060020a900460ff161561097357600080fd5b61097d8383611ff1565b9392505050565b6004546000908190819060a060020a900460ff16156109a257600080fd5b60065460ff16156109dc576109ba30888888886109f5565b91506109c68289610adf565b90506109d181611468565b15156109dc57600080fd5b6109e98888888888612045565b98975050505050505050565b604080517f48664c16000000000000000000000000000000000000000000000000000000006020808301919091526c01000000000000000000000000600160a060020a03808a16820260248501528816026038830152604c8201869052606c8201859052608c8083018590528351808403909101815260ac909201928390528151600093918291908401908083835b60208310610aa35780518252601f199092019160209182019101610a84565b5181516020939093036101000a600019018019909116921691909117905260405192018290039091209998505050505050505050565b60015490565b60008060008084516041141515610af95760009350610bab565b50505060208201516040830151606084015160001a601b60ff82161015610b1e57601b015b8060ff16601b14158015610b3657508060ff16601c14155b15610b445760009350610bab565b60408051600080825260208083018085528a905260ff8516838501526060830187905260808301869052925160019360a0808501949193601f19840193928390039091019190865af1158015610b9e573d6000803e3d6000fd5b5050506020604051035193505b50505092915050565b60065460009060ff1615610bd657610bcb84611468565b1515610bd657600080fd5b610be18484846123de565b949350505050565b600454600160a060020a03163314610c0057600080fd5b610c0981611468565b1515610c1457600080fd5b600160a060020a038116600081815260076020908152604091829020805460ff19169055815192835290517fad88aec34f4861d5a8a34d064eba1c3ce7222a541db6a6cfbcef0e6aa0dac53c9281900390910190a150565b60065460ff1681565b601281565b60055481565b600454600160a060020a03163314610c9757600080fd5b60045460a060020a900460ff161515610caf57600080fd5b6004805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600454600090600160a060020a03163314610d1257600080fd5b60045460a860020a900460ff1615610d2957600080fd5b600554600154610d3f908463ffffffff61240316565b1115610d4a57600080fd5b61097d8383612412565b6a52b7d2dcc80cd2e400000081565b604080517f59388d78000000000000000000000000000000000000000000000000000000006020808301919091526c01000000000000000000000000600160a060020a03808a16820260248501528816026038830152604c8201869052606c8201859052608c8083018590528351808403909101815260ac9092019283905281516000939182919084019080838360208310610aa35780518252601f199092019160209182019101610a84565b60045460a060020a900460ff1681565b6004546000908190819060a060020a900460ff1615610e3e57600080fd5b60065460ff1615610e7857610e563088888888611ebf565b9150610e628289610adf565b9050610e6d81611468565b1515610e7857600080fd5b6109e9888888888861250a565b60045460009060a060020a900460ff1615610e9f57600080fd5b61097d8383612876565b600160a060020a031660009081526020819052604090205490565b600454600090600160a060020a03163314610ede57600080fd5b60045460a860020a900460ff1615610ef557600080fd5b6004805475ff000000000000000000000000000000000000000000191660a860020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600454600160a060020a03163314610f6057600080fd5b60045460a060020a900460ff1615610f7757600080fd5b6004805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6000808080600160a060020a038816151561102b576040805160e560020a62461bcd02815260206004820152601f60248201527f5370656e6465722061646472657373206973206e6f742070726f766964656400604482015290519081900360640190fd5b6003896040518082805190602001908083835b6020831061105d5780518252601f19909201916020918201910161103e565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092205460ff161591506110e59050576040805160e560020a62461bcd02815260206004820152600c60248201527f4e6f20736f676e61747572650000000000000000000000000000000000000000604482015290519081900360640190fd5b6110f23089898989610d63565b92506110fe838a610adf565b9150600160a060020a0382161515611160576040805160e560020a62461bcd02815260206004820152601c60248201527f46726f6d2061646472657373206973206e6f742070726f766964656400000000604482015290519081900360640190fd5b50600160a060020a038082166000908152600260209081526040808320938b1683529290522054808711156111bc57600160a060020a038083166000908152600260209081526040808320938c168352929052908120556111f3565b6111cc818863ffffffff61295416565b600160a060020a038084166000908152600260209081526040808320938d16835292905220555b600160a060020a03821660009081526020819052604090205461121c908763ffffffff61295416565b600160a060020a03831660009081526020819052604080822092909255338152205461124e908763ffffffff61240316565b60008033600160a060020a0316600160a060020a0316815260200190815260200160002081905550600160038a6040518082805190602001908083835b602083106112aa5780518252601f19909201916020918201910161128b565b51815160209384036101000a6000190180199092169116179052920194855250604080519485900382018520805460ff1916961515969096179095558b84529351600160a060020a038d81169590881694600080516020612c668339815191529450829003019150a36040805187815290513391600160a060020a03851691600080516020612c468339815191529181900360200190a3600160a060020a038281166000818152600260209081526040808320948d16808452948252918290205482519081529081018a90528151339493927f43a220267705e74ee2ceafd46afc841850db6f85a662189a7def697bbdd90ffb928290030190a450600198975050505050505050565b600454600160a060020a031681565b60408051808201909152600381527f4b54590000000000000000000000000000000000000000000000000000000000602082015281565b600454600160a060020a0316331461141057600080fd5b60065460ff16151581151514611465576006805482151560ff19909116811790915560408051918252517f757db31e37ddce6c8bda07399e53891f513ac7cacd86ae8f781bab706c74d45f9181900360200190a15b50565b6000600160a060020a038216151561147f57600080fd5b50600160a060020a031660009081526007602052604090205460ff1690565b604080517fa45f71ff000000000000000000000000000000000000000000000000000000006020808301919091526c01000000000000000000000000600160a060020a03808a16820260248501528816026038830152604c8201869052606c8201859052608c8083018590528351808403909101815260ac9092019283905281516000939182919084019080838360208310610aa35780518252601f199092019160209182019101610a84565b60065460009060ff161561156d5761156233611468565b151561156d57600080fd5b61097d8383612966565b60008080600160a060020a03871615156115db576040805160e560020a62461bcd02815260206004820152601f60248201527f5370656e6465722061646472657373206973206e6f742070726f766964656400604482015290519081900360640190fd5b6003886040518082805190602001908083835b6020831061160d5780518252601f1990920191602091820191016115ee565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092205460ff161591506116959050576040805160e560020a62461bcd02815260206004820152600c60248201527f4e6f205369676e61747572650000000000000000000000000000000000000000604482015290519081900360640190fd5b6116a2308888888861149e565b91506116ae8289610adf565b9050600160a060020a0381161515611710576040805160e560020a62461bcd02815260206004820152601c60248201527f46726f6d2061646472657373206973206e6f742070726f766964656400000000604482015290519081900360640190fd5b600160a060020a038082166000908152600260209081526040808320938b1683529290522054611746908763ffffffff61240316565b600160a060020a038083166000818152600260209081526040808320948d168352938152838220949094559081529182905290205461178b908663ffffffff61295416565b600160a060020a0382166000908152602081905260408082209290925533815220546117bd908663ffffffff61240316565b60008033600160a060020a0316600160a060020a031681526020019081526020016000208190555060016003896040518082805190602001908083835b602083106118195780518252601f1990920191602091820191016117fa565b51815160209384036101000a6000190180199092169116179052920194855250604080519485900382018520805460ff191696151596909617909555600160a060020a03868116600081815260028452878120928f168082529284528790205486529551909594600080516020612c6683398151915294508190039091019150a36040805186815290513391600160a060020a03841691600080516020612c468339815191529181900360200190a3600160a060020a038181166000818152600260209081526040808320948c16808452948252918290205482519081529081018990528151339493927f43a220267705e74ee2ceafd46afc841850db6f85a662189a7def697bbdd90ffb928290030190a4506001979650505050505050565b604080517fb7656dc5000000000000000000000000000000000000000000000000000000006020808301919091526c01000000000000000000000000600160a060020a03808b1682026024850152808a1682026038850152881602604c830152606082018690526080820185905260a08083018590528351808403909101815260c0909201928390528151600093918291908401908083835b602083106119f15780518252601f1990920191602091820191016119d2565b5181516020939093036101000a600019018019909116921691909117905260405192018290039091209a9950505050505050505050565b60008080600160a060020a0387161515611a8c576040805160e560020a62461bcd02815260206004820152601860248201527f4e6f205b746f5d20616464726573732070726f76696465640000000000000000604482015290519081900360640190fd5b6003896040518082805190602001908083835b60208310611abe5780518252601f199092019160209182019101611a9f565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092205460ff16159150611b469050576040805160e560020a62461bcd02815260206004820152601560248201527f4e6f207369676e61747572652070726f76696465640000000000000000000000604482015290519081900360640190fd5b611b54308989898989611939565b9150611b60828a610adf565b9050600160a060020a0381161515611bc2576040805160e560020a62461bcd02815260206004820152601f60248201527f5370656e6465722061646472657373206973206e6f742070726f766964656400604482015290519081900360640190fd5b600160a060020a038816600090815260208190526040902054611beb908763ffffffff61295416565b600160a060020a03808a166000908152602081905260408082209390935590891681522054611c20908763ffffffff61240316565b600160a060020a03808916600090815260208181526040808320949094558b83168252600281528382209285168252919091522054611c65908763ffffffff61295416565b600160a060020a03808a16600090815260026020908152604080832093861683529281528282209390935591829052902054611ca7908663ffffffff61295416565b600160a060020a038216600090815260208190526040808220929092553381522054611cd9908663ffffffff61240316565b60008033600160a060020a0316600160a060020a0316815260200190815260200160002081905550600160038a6040518082805190602001908083835b60208310611d355780518252601f199092019160209182019101611d16565b51815160209384036101000a6000190180199092169116179052920194855250604080519485900382018520805460ff1916961515969096179095558a84529351600160a060020a038c811695908e1694600080516020612c468339815191529450829003019150a36040805186815290513391600160a060020a03841691600080516020612c468339815191529181900360200190a350600198975050505050505050565b60045460009060a060020a900460ff1615611df557600080fd5b61097d838361298a565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600454600160a060020a03163314611e4157600080fd5b600160a060020a0381161515611e5657600080fd5b600454604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b604080517ff7ac9c2e000000000000000000000000000000000000000000000000000000006020808301919091526c01000000000000000000000000600160a060020a03808a16820260248501528816026038830152604c8201869052606c8201859052608c8083018590528351808403909101815260ac9092019283905281516000939182919084019080838360208310610aa35780518252601f199092019160209182019101610a84565b600454600160a060020a03163314611f8357600080fd5b611f8c81611468565b15611f9657600080fd5b600160a060020a038116600081815260076020908152604091829020805460ff19166001179055815192835290517fad88aec34f4861d5a8a34d064eba1c3ce7222a541db6a6cfbcef0e6aa0dac53c9281900390910190a150565b336000818152600260209081526040808320600160a060020a03871680855290835281842086905581518681529151939490939092600080516020612c66833981519152928290030190a350600192915050565b60008080600160a060020a03871615156120a9576040805160e560020a62461bcd02815260206004820152601360248201527f4e6f20616464726573732070726f766964656400000000000000000000000000604482015290519081900360640190fd5b6003886040518082805190602001908083835b602083106120db5780518252601f1990920191602091820191016120bc565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092205460ff161591506121639050576040805160e560020a62461bcd02815260206004820152600c60248201527f4e6f207369676e61747572650000000000000000000000000000000000000000604482015290519081900360640190fd5b61217030888888886109f5565b915061217c8289610adf565b9050600160a060020a03811615156121de576040805160e560020a62461bcd02815260206004820152601c60248201527f46726f6d2061646472657373206973206e6f742070726f766964656400000000604482015290519081900360640190fd5b600160a060020a03811660009081526020819052604090205461221990869061220d908963ffffffff61295416565b9063ffffffff61295416565b600160a060020a03808316600090815260208190526040808220939093559089168152205461224e908763ffffffff61240316565b600160a060020a038816600090815260208190526040808220929092553381522054612280908663ffffffff61240316565b60008033600160a060020a0316600160a060020a031681526020019081526020016000208190555060016003896040518082805190602001908083835b602083106122dc5780518252601f1990920191602091820191016122bd565b51815160209384036101000a6000190180199092169116179052920194855250604080519485900382018520805460ff1916961515969096179095558a84529351600160a060020a038c81169590871694600080516020612c468339815191529450829003019150a36040805186815290513391600160a060020a03841691600080516020612c468339815191529181900360200190a333600160a060020a031687600160a060020a031682600160a060020a03167fec5a73fd1f178be20c1bca1b406cbf4b5c20d833b66e582fc122fb4baa0fc2a48989604051808381526020018281526020019250505060405180910390a4506001979650505050505050565b60045460009060a060020a900460ff16156123f857600080fd5b610be1848484612a11565b60008282018381101561097d57fe5b600454600090600160a060020a0316331461242c57600080fd5b60045460a860020a900460ff161561244357600080fd5b600154612456908363ffffffff61240316565b600155600160a060020a038316600090815260208190526040902054612482908363ffffffff61240316565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020612c468339815191529181900360200190a350600192915050565b60008080600160a060020a038716151561256e576040805160e560020a62461bcd02815260206004820152601760248201527f5370656e646572206973206e6f742070726f7669646564000000000000000000604482015290519081900360640190fd5b6003886040518082805190602001908083835b602083106125a05780518252601f199092019160209182019101612581565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092205460ff161591506126289050576040805160e560020a62461bcd02815260206004820152600c60248201527f4e6f207369676e61747572650000000000000000000000000000000000000000604482015290519081900360640190fd5b6126353088888888611ebf565b91506126418289610adf565b9050600160a060020a03811615156126a3576040805160e560020a62461bcd02815260206004820152601b60248201527f46726f6d20616464726573206973206e6f742070726f76696465640000000000604482015290519081900360640190fd5b600160a060020a038082166000818152600260209081526040808320948c1683529381528382208a90559181529081905220546126e6908663ffffffff61295416565b600160a060020a038216600090815260208190526040808220929092553381522054612718908663ffffffff61240316565b60008033600160a060020a0316600160a060020a031681526020019081526020016000208190555060016003896040518082805190602001908083835b602083106127745780518252601f199092019160209182019101612755565b51815160209384036101000a6000190180199092169116179052920194855250604080519485900382018520805460ff1916961515969096179095558a84529351600160a060020a038c81169590871694600080516020612c668339815191529450829003019150a36040805186815290513391600160a060020a03841691600080516020612c468339815191529181900360200190a333600160a060020a031687600160a060020a031682600160a060020a03167f43a220267705e74ee2ceafd46afc841850db6f85a662189a7def697bbdd90ffb8989604051808381526020018281526020019250505060405180910390a4506001979650505050505050565b336000908152600260209081526040808320600160a060020a0386168452909152812054808311156128cb57336000908152600260209081526040808320600160a060020a0388168452909152812055612900565b6128db818463ffffffff61295416565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a038916808552908352928190205481519081529051929392600080516020612c66833981519152929181900390910190a35060019392505050565b60008282111561296057fe5b50900390565b60045460009060a060020a900460ff161561298057600080fd5b61097d8383612b76565b336000908152600260209081526040808320600160a060020a03861684529091528120546129be908363ffffffff61240316565b336000818152600260209081526040808320600160a060020a038916808552908352928190208590558051948552519193600080516020612c66833981519152929081900390910190a350600192915050565b6000600160a060020a0383161515612a2857600080fd5b600160a060020a038416600090815260208190526040902054821115612a4d57600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115612a7d57600080fd5b600160a060020a038416600090815260208190526040902054612aa6908363ffffffff61295416565b600160a060020a038086166000908152602081905260408082209390935590851681522054612adb908363ffffffff61240316565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054612b1d908363ffffffff61295416565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020612c46833981519152929181900390910190a35060019392505050565b6000600160a060020a0383161515612b8d57600080fd5b33600090815260208190526040902054821115612ba957600080fd5b33600090815260208190526040902054612bc9908363ffffffff61295416565b3360009081526020819052604080822092909255600160a060020a03851681522054612bfb908363ffffffff61240316565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020612c468339815191529281900390910190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a72305820963247c30fb17ada10ceca50eae900596f6c803e570dea3f3b51d7f8f3a8a88e0029
Deployed Bytecode
0x6080604052600436106101cc5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b81146101d157806306fdde03146101fa578063095ea7b3146102845780631296830d146102a857806315420b711461031b57806318160ddd1461035d57806319045a251461037257806323b872dd146103ec578063260d387b146104165780632b2be30914610439578063313ce5671461044e578063355274ea146104795780633f4ba83a1461048e57806340c10f19146104a35780635478bc6b146104c757806359388d78146104dc5780635c975abb1461050c578063617b390b14610521578063661884631461059457806370a08231146105b85780637d64bcb4146105d95780638456cb59146105ee5780638be52783146106035780638da5cb5b1461067657806395d89b411461068b578063a157696b146106a0578063a25b9384146106ba578063a45f71ff146106db578063a9059cbb1461070b578063adb8249e1461072f578063b7656dc5146107a2578063bca50515146107d8578063d73dd62314610855578063dd62ed3e14610879578063f2fde38b146108a0578063f7ac9c2e146108c1578063fb37baa1146108f1575b600080fd5b3480156101dd57600080fd5b506101e6610912565b604080519115158252519081900360200190f35b34801561020657600080fd5b5061020f610922565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610249578181015183820152602001610231565b50505050905090810190601f1680156102765780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561029057600080fd5b506101e6600160a060020a0360043516602435610959565b3480156102b457600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526101e694369492936024939284019190819084018382808284375094975050508335600160a060020a0316945050506020820135916040810135915060600135610984565b34801561032757600080fd5b5061034b600160a060020a03600435811690602435166044356064356084356109f5565b60408051918252519081900360200190f35b34801561036957600080fd5b5061034b610ad9565b34801561037e57600080fd5b5060408051602060046024803582810135601f81018590048502860185019096528585526103d0958335953695604494919390910191908190840183828082843750949750610adf9650505050505050565b60408051600160a060020a039092168252519081900360200190f35b3480156103f857600080fd5b506101e6600160a060020a0360043581169060243516604435610bb4565b34801561042257600080fd5b50610437600160a060020a0360043516610be9565b005b34801561044557600080fd5b506101e6610c6c565b34801561045a57600080fd5b50610463610c75565b6040805160ff9092168252519081900360200190f35b34801561048557600080fd5b5061034b610c7a565b34801561049a57600080fd5b50610437610c80565b3480156104af57600080fd5b506101e6600160a060020a0360043516602435610cf8565b3480156104d357600080fd5b5061034b610d54565b3480156104e857600080fd5b5061034b600160a060020a0360043581169060243516604435606435608435610d63565b34801561051857600080fd5b506101e6610e10565b34801561052d57600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526101e694369492936024939284019190819084018382808284375094975050508335600160a060020a0316945050506020820135916040810135915060600135610e20565b3480156105a057600080fd5b506101e6600160a060020a0360043516602435610e85565b3480156105c457600080fd5b5061034b600160a060020a0360043516610ea9565b3480156105e557600080fd5b506101e6610ec4565b3480156105fa57600080fd5b50610437610f49565b34801561060f57600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526101e694369492936024939284019190819084018382808284375094975050508335600160a060020a0316945050506020820135916040810135915060600135610fc6565b34801561068257600080fd5b506103d06113b3565b34801561069757600080fd5b5061020f6113c2565b3480156106ac57600080fd5b5061043760043515156113f9565b3480156106c657600080fd5b506101e6600160a060020a0360043516611468565b3480156106e757600080fd5b5061034b600160a060020a036004358116906024351660443560643560843561149e565b34801561071757600080fd5b506101e6600160a060020a036004351660243561154b565b34801561073b57600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526101e694369492936024939284019190819084018382808284375094975050508335600160a060020a0316945050506020820135916040810135915060600135611577565b3480156107ae57600080fd5b5061034b600160a060020a036004358116906024358116906044351660643560843560a435611939565b3480156107e457600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526101e694369492936024939284019190819084018382808284375094975050600160a060020a03853581169650602086013516946040810135945060608101359350608001359150611a289050565b34801561086157600080fd5b506101e6600160a060020a0360043516602435611ddb565b34801561088557600080fd5b5061034b600160a060020a0360043581169060243516611dff565b3480156108ac57600080fd5b50610437600160a060020a0360043516611e2a565b3480156108cd57600080fd5b5061034b600160a060020a0360043581169060243516604435606435608435611ebf565b3480156108fd57600080fd5b50610437600160a060020a0360043516611f6c565b60045460a860020a900460ff1681565b60408051808201909152600b81527f4b69747469656669676874000000000000000000000000000000000000000000602082015281565b60045460009060a060020a900460ff161561097357600080fd5b61097d8383611ff1565b9392505050565b6004546000908190819060a060020a900460ff16156109a257600080fd5b60065460ff16156109dc576109ba30888888886109f5565b91506109c68289610adf565b90506109d181611468565b15156109dc57600080fd5b6109e98888888888612045565b98975050505050505050565b604080517f48664c16000000000000000000000000000000000000000000000000000000006020808301919091526c01000000000000000000000000600160a060020a03808a16820260248501528816026038830152604c8201869052606c8201859052608c8083018590528351808403909101815260ac909201928390528151600093918291908401908083835b60208310610aa35780518252601f199092019160209182019101610a84565b5181516020939093036101000a600019018019909116921691909117905260405192018290039091209998505050505050505050565b60015490565b60008060008084516041141515610af95760009350610bab565b50505060208201516040830151606084015160001a601b60ff82161015610b1e57601b015b8060ff16601b14158015610b3657508060ff16601c14155b15610b445760009350610bab565b60408051600080825260208083018085528a905260ff8516838501526060830187905260808301869052925160019360a0808501949193601f19840193928390039091019190865af1158015610b9e573d6000803e3d6000fd5b5050506020604051035193505b50505092915050565b60065460009060ff1615610bd657610bcb84611468565b1515610bd657600080fd5b610be18484846123de565b949350505050565b600454600160a060020a03163314610c0057600080fd5b610c0981611468565b1515610c1457600080fd5b600160a060020a038116600081815260076020908152604091829020805460ff19169055815192835290517fad88aec34f4861d5a8a34d064eba1c3ce7222a541db6a6cfbcef0e6aa0dac53c9281900390910190a150565b60065460ff1681565b601281565b60055481565b600454600160a060020a03163314610c9757600080fd5b60045460a060020a900460ff161515610caf57600080fd5b6004805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600454600090600160a060020a03163314610d1257600080fd5b60045460a860020a900460ff1615610d2957600080fd5b600554600154610d3f908463ffffffff61240316565b1115610d4a57600080fd5b61097d8383612412565b6a52b7d2dcc80cd2e400000081565b604080517f59388d78000000000000000000000000000000000000000000000000000000006020808301919091526c01000000000000000000000000600160a060020a03808a16820260248501528816026038830152604c8201869052606c8201859052608c8083018590528351808403909101815260ac9092019283905281516000939182919084019080838360208310610aa35780518252601f199092019160209182019101610a84565b60045460a060020a900460ff1681565b6004546000908190819060a060020a900460ff1615610e3e57600080fd5b60065460ff1615610e7857610e563088888888611ebf565b9150610e628289610adf565b9050610e6d81611468565b1515610e7857600080fd5b6109e9888888888861250a565b60045460009060a060020a900460ff1615610e9f57600080fd5b61097d8383612876565b600160a060020a031660009081526020819052604090205490565b600454600090600160a060020a03163314610ede57600080fd5b60045460a860020a900460ff1615610ef557600080fd5b6004805475ff000000000000000000000000000000000000000000191660a860020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600454600160a060020a03163314610f6057600080fd5b60045460a060020a900460ff1615610f7757600080fd5b6004805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6000808080600160a060020a038816151561102b576040805160e560020a62461bcd02815260206004820152601f60248201527f5370656e6465722061646472657373206973206e6f742070726f766964656400604482015290519081900360640190fd5b6003896040518082805190602001908083835b6020831061105d5780518252601f19909201916020918201910161103e565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092205460ff161591506110e59050576040805160e560020a62461bcd02815260206004820152600c60248201527f4e6f20736f676e61747572650000000000000000000000000000000000000000604482015290519081900360640190fd5b6110f23089898989610d63565b92506110fe838a610adf565b9150600160a060020a0382161515611160576040805160e560020a62461bcd02815260206004820152601c60248201527f46726f6d2061646472657373206973206e6f742070726f766964656400000000604482015290519081900360640190fd5b50600160a060020a038082166000908152600260209081526040808320938b1683529290522054808711156111bc57600160a060020a038083166000908152600260209081526040808320938c168352929052908120556111f3565b6111cc818863ffffffff61295416565b600160a060020a038084166000908152600260209081526040808320938d16835292905220555b600160a060020a03821660009081526020819052604090205461121c908763ffffffff61295416565b600160a060020a03831660009081526020819052604080822092909255338152205461124e908763ffffffff61240316565b60008033600160a060020a0316600160a060020a0316815260200190815260200160002081905550600160038a6040518082805190602001908083835b602083106112aa5780518252601f19909201916020918201910161128b565b51815160209384036101000a6000190180199092169116179052920194855250604080519485900382018520805460ff1916961515969096179095558b84529351600160a060020a038d81169590881694600080516020612c668339815191529450829003019150a36040805187815290513391600160a060020a03851691600080516020612c468339815191529181900360200190a3600160a060020a038281166000818152600260209081526040808320948d16808452948252918290205482519081529081018a90528151339493927f43a220267705e74ee2ceafd46afc841850db6f85a662189a7def697bbdd90ffb928290030190a450600198975050505050505050565b600454600160a060020a031681565b60408051808201909152600381527f4b54590000000000000000000000000000000000000000000000000000000000602082015281565b600454600160a060020a0316331461141057600080fd5b60065460ff16151581151514611465576006805482151560ff19909116811790915560408051918252517f757db31e37ddce6c8bda07399e53891f513ac7cacd86ae8f781bab706c74d45f9181900360200190a15b50565b6000600160a060020a038216151561147f57600080fd5b50600160a060020a031660009081526007602052604090205460ff1690565b604080517fa45f71ff000000000000000000000000000000000000000000000000000000006020808301919091526c01000000000000000000000000600160a060020a03808a16820260248501528816026038830152604c8201869052606c8201859052608c8083018590528351808403909101815260ac9092019283905281516000939182919084019080838360208310610aa35780518252601f199092019160209182019101610a84565b60065460009060ff161561156d5761156233611468565b151561156d57600080fd5b61097d8383612966565b60008080600160a060020a03871615156115db576040805160e560020a62461bcd02815260206004820152601f60248201527f5370656e6465722061646472657373206973206e6f742070726f766964656400604482015290519081900360640190fd5b6003886040518082805190602001908083835b6020831061160d5780518252601f1990920191602091820191016115ee565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092205460ff161591506116959050576040805160e560020a62461bcd02815260206004820152600c60248201527f4e6f205369676e61747572650000000000000000000000000000000000000000604482015290519081900360640190fd5b6116a2308888888861149e565b91506116ae8289610adf565b9050600160a060020a0381161515611710576040805160e560020a62461bcd02815260206004820152601c60248201527f46726f6d2061646472657373206973206e6f742070726f766964656400000000604482015290519081900360640190fd5b600160a060020a038082166000908152600260209081526040808320938b1683529290522054611746908763ffffffff61240316565b600160a060020a038083166000818152600260209081526040808320948d168352938152838220949094559081529182905290205461178b908663ffffffff61295416565b600160a060020a0382166000908152602081905260408082209290925533815220546117bd908663ffffffff61240316565b60008033600160a060020a0316600160a060020a031681526020019081526020016000208190555060016003896040518082805190602001908083835b602083106118195780518252601f1990920191602091820191016117fa565b51815160209384036101000a6000190180199092169116179052920194855250604080519485900382018520805460ff191696151596909617909555600160a060020a03868116600081815260028452878120928f168082529284528790205486529551909594600080516020612c6683398151915294508190039091019150a36040805186815290513391600160a060020a03841691600080516020612c468339815191529181900360200190a3600160a060020a038181166000818152600260209081526040808320948c16808452948252918290205482519081529081018990528151339493927f43a220267705e74ee2ceafd46afc841850db6f85a662189a7def697bbdd90ffb928290030190a4506001979650505050505050565b604080517fb7656dc5000000000000000000000000000000000000000000000000000000006020808301919091526c01000000000000000000000000600160a060020a03808b1682026024850152808a1682026038850152881602604c830152606082018690526080820185905260a08083018590528351808403909101815260c0909201928390528151600093918291908401908083835b602083106119f15780518252601f1990920191602091820191016119d2565b5181516020939093036101000a600019018019909116921691909117905260405192018290039091209a9950505050505050505050565b60008080600160a060020a0387161515611a8c576040805160e560020a62461bcd02815260206004820152601860248201527f4e6f205b746f5d20616464726573732070726f76696465640000000000000000604482015290519081900360640190fd5b6003896040518082805190602001908083835b60208310611abe5780518252601f199092019160209182019101611a9f565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092205460ff16159150611b469050576040805160e560020a62461bcd02815260206004820152601560248201527f4e6f207369676e61747572652070726f76696465640000000000000000000000604482015290519081900360640190fd5b611b54308989898989611939565b9150611b60828a610adf565b9050600160a060020a0381161515611bc2576040805160e560020a62461bcd02815260206004820152601f60248201527f5370656e6465722061646472657373206973206e6f742070726f766964656400604482015290519081900360640190fd5b600160a060020a038816600090815260208190526040902054611beb908763ffffffff61295416565b600160a060020a03808a166000908152602081905260408082209390935590891681522054611c20908763ffffffff61240316565b600160a060020a03808916600090815260208181526040808320949094558b83168252600281528382209285168252919091522054611c65908763ffffffff61295416565b600160a060020a03808a16600090815260026020908152604080832093861683529281528282209390935591829052902054611ca7908663ffffffff61295416565b600160a060020a038216600090815260208190526040808220929092553381522054611cd9908663ffffffff61240316565b60008033600160a060020a0316600160a060020a0316815260200190815260200160002081905550600160038a6040518082805190602001908083835b60208310611d355780518252601f199092019160209182019101611d16565b51815160209384036101000a6000190180199092169116179052920194855250604080519485900382018520805460ff1916961515969096179095558a84529351600160a060020a038c811695908e1694600080516020612c468339815191529450829003019150a36040805186815290513391600160a060020a03841691600080516020612c468339815191529181900360200190a350600198975050505050505050565b60045460009060a060020a900460ff1615611df557600080fd5b61097d838361298a565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600454600160a060020a03163314611e4157600080fd5b600160a060020a0381161515611e5657600080fd5b600454604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b604080517ff7ac9c2e000000000000000000000000000000000000000000000000000000006020808301919091526c01000000000000000000000000600160a060020a03808a16820260248501528816026038830152604c8201869052606c8201859052608c8083018590528351808403909101815260ac9092019283905281516000939182919084019080838360208310610aa35780518252601f199092019160209182019101610a84565b600454600160a060020a03163314611f8357600080fd5b611f8c81611468565b15611f9657600080fd5b600160a060020a038116600081815260076020908152604091829020805460ff19166001179055815192835290517fad88aec34f4861d5a8a34d064eba1c3ce7222a541db6a6cfbcef0e6aa0dac53c9281900390910190a150565b336000818152600260209081526040808320600160a060020a03871680855290835281842086905581518681529151939490939092600080516020612c66833981519152928290030190a350600192915050565b60008080600160a060020a03871615156120a9576040805160e560020a62461bcd02815260206004820152601360248201527f4e6f20616464726573732070726f766964656400000000000000000000000000604482015290519081900360640190fd5b6003886040518082805190602001908083835b602083106120db5780518252601f1990920191602091820191016120bc565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092205460ff161591506121639050576040805160e560020a62461bcd02815260206004820152600c60248201527f4e6f207369676e61747572650000000000000000000000000000000000000000604482015290519081900360640190fd5b61217030888888886109f5565b915061217c8289610adf565b9050600160a060020a03811615156121de576040805160e560020a62461bcd02815260206004820152601c60248201527f46726f6d2061646472657373206973206e6f742070726f766964656400000000604482015290519081900360640190fd5b600160a060020a03811660009081526020819052604090205461221990869061220d908963ffffffff61295416565b9063ffffffff61295416565b600160a060020a03808316600090815260208190526040808220939093559089168152205461224e908763ffffffff61240316565b600160a060020a038816600090815260208190526040808220929092553381522054612280908663ffffffff61240316565b60008033600160a060020a0316600160a060020a031681526020019081526020016000208190555060016003896040518082805190602001908083835b602083106122dc5780518252601f1990920191602091820191016122bd565b51815160209384036101000a6000190180199092169116179052920194855250604080519485900382018520805460ff1916961515969096179095558a84529351600160a060020a038c81169590871694600080516020612c468339815191529450829003019150a36040805186815290513391600160a060020a03841691600080516020612c468339815191529181900360200190a333600160a060020a031687600160a060020a031682600160a060020a03167fec5a73fd1f178be20c1bca1b406cbf4b5c20d833b66e582fc122fb4baa0fc2a48989604051808381526020018281526020019250505060405180910390a4506001979650505050505050565b60045460009060a060020a900460ff16156123f857600080fd5b610be1848484612a11565b60008282018381101561097d57fe5b600454600090600160a060020a0316331461242c57600080fd5b60045460a860020a900460ff161561244357600080fd5b600154612456908363ffffffff61240316565b600155600160a060020a038316600090815260208190526040902054612482908363ffffffff61240316565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020612c468339815191529181900360200190a350600192915050565b60008080600160a060020a038716151561256e576040805160e560020a62461bcd02815260206004820152601760248201527f5370656e646572206973206e6f742070726f7669646564000000000000000000604482015290519081900360640190fd5b6003886040518082805190602001908083835b602083106125a05780518252601f199092019160209182019101612581565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092205460ff161591506126289050576040805160e560020a62461bcd02815260206004820152600c60248201527f4e6f207369676e61747572650000000000000000000000000000000000000000604482015290519081900360640190fd5b6126353088888888611ebf565b91506126418289610adf565b9050600160a060020a03811615156126a3576040805160e560020a62461bcd02815260206004820152601b60248201527f46726f6d20616464726573206973206e6f742070726f76696465640000000000604482015290519081900360640190fd5b600160a060020a038082166000818152600260209081526040808320948c1683529381528382208a90559181529081905220546126e6908663ffffffff61295416565b600160a060020a038216600090815260208190526040808220929092553381522054612718908663ffffffff61240316565b60008033600160a060020a0316600160a060020a031681526020019081526020016000208190555060016003896040518082805190602001908083835b602083106127745780518252601f199092019160209182019101612755565b51815160209384036101000a6000190180199092169116179052920194855250604080519485900382018520805460ff1916961515969096179095558a84529351600160a060020a038c81169590871694600080516020612c668339815191529450829003019150a36040805186815290513391600160a060020a03841691600080516020612c468339815191529181900360200190a333600160a060020a031687600160a060020a031682600160a060020a03167f43a220267705e74ee2ceafd46afc841850db6f85a662189a7def697bbdd90ffb8989604051808381526020018281526020019250505060405180910390a4506001979650505050505050565b336000908152600260209081526040808320600160a060020a0386168452909152812054808311156128cb57336000908152600260209081526040808320600160a060020a0388168452909152812055612900565b6128db818463ffffffff61295416565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a038916808552908352928190205481519081529051929392600080516020612c66833981519152929181900390910190a35060019392505050565b60008282111561296057fe5b50900390565b60045460009060a060020a900460ff161561298057600080fd5b61097d8383612b76565b336000908152600260209081526040808320600160a060020a03861684529091528120546129be908363ffffffff61240316565b336000818152600260209081526040808320600160a060020a038916808552908352928190208590558051948552519193600080516020612c66833981519152929081900390910190a350600192915050565b6000600160a060020a0383161515612a2857600080fd5b600160a060020a038416600090815260208190526040902054821115612a4d57600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115612a7d57600080fd5b600160a060020a038416600090815260208190526040902054612aa6908363ffffffff61295416565b600160a060020a038086166000908152602081905260408082209390935590851681522054612adb908363ffffffff61240316565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054612b1d908363ffffffff61295416565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020612c46833981519152929181900390910190a35060019392505050565b6000600160a060020a0383161515612b8d57600080fd5b33600090815260208190526040902054821115612ba957600080fd5b33600090815260208190526040902054612bc9908363ffffffff61295416565b3360009081526020819052604080822092909255600160a060020a03851681522054612bfb908363ffffffff61240316565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020612c468339815191529281900390910190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a72305820963247c30fb17ada10ceca50eae900596f6c803e570dea3f3b51d7f8f3a8a88e0029
Swarm Source
bzzr://963247c30fb17ada10ceca50eae900596f6c803e570dea3f3b51d7f8f3a8a88e
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.