ETH Price: $3,400.26 (+2.61%)

Token

CryptoColor (CCLR)
 

Overview

Max Total Supply

50 CCLR

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
2 CCLR

Value
$0.00
0x327bfb6286026bd1A017ba6693e0f47C8B98731b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x03C60795...D8C62e13C
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
CryptoColors

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-02-27
*/

pragma solidity ^0.4.18;

/**
 * @title ERC721 interface
 * @dev see https://github.com/ethereum/eips/issues/721
 */
contract ERC721 {
  event Transfer(address indexed _from, address indexed _to, uint256 _tokenId);
  event Approval(address indexed _owner, address indexed _approved, uint256 _tokenId);

  function balanceOf(address _owner) public view returns (uint256 _balance);
  function ownerOf(uint256 _tokenId) public view returns (address _owner);
  function transfer(address _to, uint256 _tokenId) public;
  function approve(address _to, uint256 _tokenId) public;
  function takeOwnership(uint256 _tokenId) public;
}

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


  event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() public {
    owner = msg.sender;
  }


  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }


  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) onlyOwner public {
    require(newOwner != address(0));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }
  
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

/**
 * @title ERC721Token
 * Generic implementation for the required functionality of the ERC721 standard
 */
contract CryptoColors is ERC721, Ownable {
  using SafeMath for uint256;

  // Total amount of tokens
  uint256 private totalTokens;
  uint256[] private listedCryptoColors;
  uint256 public devOwed;
  uint256 public poolTotal;
  uint256 public lastPurchase;

  // CryptoColor Data
  mapping (uint256 => CryptoColor) public cryptoColorData;

  // Mapping from token ID to owner
  mapping (uint256 => address) private tokenOwner;

  // Mapping from token ID to approved address
  mapping (uint256 => address) private tokenApprovals;

  // Mapping from owner to list of owned token IDs
  mapping (address => uint256[]) private ownedTokens;

  // Mapping from token ID to index of the owner tokens list
  mapping(uint256 => uint256) private ownedTokensIndex;

  // Balances from % payouts.
  mapping (address => uint256) private payoutBalances; 

  // Events
  event TokenSold(uint256 indexed _tokenId, address indexed _owner, uint256 _purchasePrice, uint256 _price, address indexed _prevOwner);

  // Purchasing Caps for Determining Next Pool Cut
  uint256 private firstCap  = 0.5 ether;
  uint256 private secondCap = 1.0 ether;
  uint256 private thirdCap  = 3.0 ether;
  uint256 private finalCap  = 5.0 ether;

  // Struct to store CryptoColor Data
  struct CryptoColor {
      uint256 startingPrice; // Price the item started at.
      uint256 price;         // Current price of the item.
      uint256 lastPrice;     // lastPrice this was sold for, used for adding to pool.
      uint256 payout;        // The percent of the pool rewarded.
      uint256 withdrawn;     // The amount of Eth this CryptoColor has withdrawn from the pool.
      address owner;         // Current owner of the item.
  }

  /**
  * @dev createContractToken Adds new ERC721 Token
  * @param _tokenId uint256 ID of new token
  * @param _startingPrice uint256 starting price in wei
  * @param _payoutPercentage uint256 payout percentage (divisible by 10)
  * @param _owner address of new owner
  */
  function createContractToken(uint256 _tokenId, uint256 _startingPrice, uint256 _payoutPercentage, address _owner) onlyOwner() public {

    // make sure price > 0
    require(_startingPrice > 0);
    // make sure token hasn't been used yet
    require(cryptoColorData[_tokenId].price == 0);
    
    // create new token
    CryptoColor storage newCryptoColor = cryptoColorData[_tokenId];

    newCryptoColor.owner = _owner;
    newCryptoColor.price = getNextPrice(_startingPrice);
    newCryptoColor.lastPrice = _startingPrice;
    newCryptoColor.payout = _payoutPercentage;
    newCryptoColor.startingPrice = _startingPrice;

    // store cryptoColor in storage
    listedCryptoColors.push(_tokenId);
    
    // mint new token
    _mint(_owner, _tokenId);
  }

  function createMultiple (uint256[] _itemIds, uint256[] _prices, uint256[] _payouts, address[] _owners) onlyOwner() external {
    for (uint256 i = 0; i < _itemIds.length; i++) {
      createContractToken(_itemIds[i], _prices[i], _payouts[i], _owners[i]);
    }
  }

  /**
  * @dev Determines next price of token
  * @param _price uint256 ID of current price
  */
  function getNextPrice (uint256 _price) private view returns (uint256 _nextPrice) {
    if (_price < firstCap) {
      return _price.mul(200).div(100);
    } else if (_price < secondCap) {
      return _price.mul(135).div(100);
    } else if (_price < thirdCap) {
      return _price.mul(125).div(100);
    } else if (_price < finalCap) {
      return _price.mul(117).div(100);
    } else {
      return _price.mul(115).div(100);
    }
  }

  function calculatePoolCut (uint256 _price) public view returns (uint256 _poolCut) {
    if (_price < firstCap) {
      return _price.mul(10).div(100); // 5%
    } else if (_price < secondCap) {
      return _price.mul(9).div(100); // 4%
    } else if (_price < thirdCap) {
      return _price.mul(8).div(100); // 3%
    } else if (_price < finalCap) {
      return _price.mul(7).div(100); // 3%
    } else {
      return _price.mul(5).div(100); // 2%
    }
  }

  /**
  * @dev Purchase CryptoColor from previous owner
  * @param _tokenId uint256 of token
  */
  function purchase(uint256 _tokenId) public 
    payable
    isNotContract(msg.sender)
  {

    // get data from storage
    CryptoColor storage cryptoColor = cryptoColorData[_tokenId];
    uint256 price = cryptoColor.price;
    address oldOwner = cryptoColor.owner;
    address newOwner = msg.sender;
    uint256 excess = msg.value.sub(price);

    // revert checks
    require(price > 0);
    require(msg.value >= price);
    require(oldOwner != msg.sender);

    // Calculate pool cut for dividents.
    uint256 profit = price.sub(cryptoColor.lastPrice);
    uint256 poolCut = calculatePoolCut(profit);
    poolTotal += poolCut;
    
    //% goes to developers
    uint256 devCut = price.mul(5).div(100);
    devOwed = devOwed.add(devCut);

    transfer(oldOwner, newOwner, _tokenId);

    // set new prices
    cryptoColor.lastPrice = price;
    cryptoColor.price = getNextPrice(price);

    // raise event
    TokenSold(_tokenId, newOwner, price, cryptoColor.price, oldOwner);

    // Transfer payment to old owner minus the developer's and pool's cut.
    oldOwner.transfer(price.sub(devCut.add(poolCut)));

    // Send refund to owner if needed
    if (excess > 0) {
      newOwner.transfer(excess);
    }
    
    // Set last purchase price to storage
    lastPurchase = now;

  }

  /**
  * @dev Transfer CryptoColor from Previous Owner to New Owner
  * @param _from previous owner address
  * @param _to new owner address
  * @param _tokenId uint256 ID of token
  */
  function transfer(address _from, address _to, uint256 _tokenId) internal {

    // check token exists
    require(tokenExists(_tokenId));

    // make sure previous owner is correct
    require(cryptoColorData[_tokenId].owner == _from);

    require(_to != address(0));
    require(_to != address(this));

    // pay any unpaid payouts to previous owner of cryptoColor
    updateSinglePayout(_from, _tokenId);

    // clear approvals linked to this token
    clearApproval(_from, _tokenId);

    // remove token from previous owner
    removeToken(_from, _tokenId);

    // update owner and add token to new owner
    cryptoColorData[_tokenId].owner = _to;
    addToken(_to, _tokenId);

   //raise event
    Transfer(_from, _to, _tokenId);
  }

  /**
  * @dev Withdraw dev's cut
  */
  function withdraw() onlyOwner public {
    owner.transfer(devOwed);
    devOwed = 0;
  }

  /**
  * @dev Updates the payout for the cryptoColors the owner has
  * @param _owner address of token owner
  */
  function updatePayout(address _owner) public {
    uint256[] memory cryptoColors = ownedTokens[_owner];
    uint256 owed;
    for (uint256 i = 0; i < cryptoColors.length; i++) {
        uint256 totalcryptoColorOwed = poolTotal * cryptoColorData[cryptoColors[i]].payout / 10000;
        uint256 cryptoColorOwed = totalcryptoColorOwed.sub(cryptoColorData[cryptoColors[i]].withdrawn);
        owed += cryptoColorOwed;
        
        cryptoColorData[cryptoColors[i]].withdrawn += cryptoColorOwed;
    }
    payoutBalances[_owner] += owed;
  }

  /**
   * @dev Update a single cryptoColor payout for transfers.
   * @param _owner Address of the owner of the cryptoColor.
   * @param _itemId Unique Id of the token.
  **/
  function updateSinglePayout(address _owner, uint256 _itemId) internal {
    uint256 totalcryptoColorOwed = poolTotal * cryptoColorData[_itemId].payout / 10000;
    uint256 cryptoColorOwed = totalcryptoColorOwed.sub(cryptoColorData[_itemId].withdrawn);
        
    cryptoColorData[_itemId].withdrawn += cryptoColorOwed;
    payoutBalances[_owner] += cryptoColorOwed;
  }

  /**
  * @dev Owner can withdraw their accumulated payouts
  * @param _owner address of token owner
  */
  function withdrawRent(address _owner) public payable {
      updatePayout(_owner);
      uint256 payout = payoutBalances[_owner];
      payoutBalances[_owner] = 0;
      _owner.transfer(payout);
  }

  function getRentOwed(address _owner) public view returns (uint256 owed) {
    updatePayout(_owner);
    return payoutBalances[_owner];
  }

  /**
  * @dev Return all cryptoColor data
  * @param _tokenId uint256 of token
  */
  function getToken (uint256 _tokenId) external view 
  returns (address _owner, uint256 _startingPrice, uint256 _price, uint256 _nextPrice, uint256 _payout, uint256 _id) 
  {
    CryptoColor memory cryptoColor = cryptoColorData[_tokenId];
    return (cryptoColor.owner, cryptoColor.startingPrice, cryptoColor.price, getNextPrice(cryptoColor.price), cryptoColor.payout, _tokenId);
  }

  /**
  * @dev Determines if token exists by checking it's price
  * @param _tokenId uint256 ID of token
  */
  function tokenExists (uint256 _tokenId) public view returns (bool _exists) {
    return cryptoColorData[_tokenId].price > 0;
  }

  /**
  * @dev Guarantees msg.sender is owner of the given token
  * @param _tokenId uint256 ID of the token to validate its ownership belongs to msg.sender
  */
  modifier onlyOwnerOf(uint256 _tokenId) {
    require(ownerOf(_tokenId) == msg.sender);
    _;
  }

  /**
  * @dev Guarantees msg.sender is not a contract
  * @param _buyer address of person buying cryptoColor
  */
  modifier isNotContract(address _buyer) {
    uint size;
    assembly { size := extcodesize(_buyer) }
    require(size == 0);
    _;
  }

  /**
  * @dev Gets the total amount of tokens stored by the contract
  * @return uint256 representing the total amount of tokens
  */
  function totalSupply() public view returns (uint256) {
    return totalTokens;
  }

  /**
  * @dev Gets the balance of the specified address
  * @param _owner address to query the balance of
  * @return uint256 representing the amount owned by the passed address
  */
  function balanceOf(address _owner) public view returns (uint256) {
    return ownedTokens[_owner].length;
  }

  /**
  * @dev Gets the list of tokens owned by a given address
  * @param _owner address to query the tokens of
  * @return uint256[] representing the list of tokens owned by the passed address
  */
  function tokensOf(address _owner) public view returns (uint256[]) {
    return ownedTokens[_owner];
  }

  /**
  * @dev Gets the owner of the specified token ID
  * @param _tokenId uint256 ID of the token to query the owner of
  * @return owner address currently marked as the owner of the given token ID
  */
  function ownerOf(uint256 _tokenId) public view returns (address) {
    address owner = tokenOwner[_tokenId];
    require(owner != address(0));
    return owner;
  }

  /**
   * @dev Gets the approved address to take ownership of a given token ID
   * @param _tokenId uint256 ID of the token to query the approval of
   * @return address currently approved to take ownership of the given token ID
   */
  function approvedFor(uint256 _tokenId) public view returns (address) {
    return tokenApprovals[_tokenId];
  }

  /**
  * @dev Transfers the ownership of a given token ID to another address
  * @param _to address to receive the ownership of the given token ID
  * @param _tokenId uint256 ID of the token to be transferred
  */
  function transfer(address _to, uint256 _tokenId) public onlyOwnerOf(_tokenId) {
    clearApprovalAndTransfer(msg.sender, _to, _tokenId);
  }

  /**
  * @dev Approves another address to claim for the ownership of the given token ID
  * @param _to address to be approved for the given token ID
  * @param _tokenId uint256 ID of the token to be approved
  */
  function approve(address _to, uint256 _tokenId) public onlyOwnerOf(_tokenId) {
    address owner = ownerOf(_tokenId);
    require(_to != owner);
    if (approvedFor(_tokenId) != 0 || _to != 0) {
      tokenApprovals[_tokenId] = _to;
      Approval(owner, _to, _tokenId);
    }
  }

  /**
  * @dev Claims the ownership of a given token ID
  * @param _tokenId uint256 ID of the token being claimed by the msg.sender
  */
  function takeOwnership(uint256 _tokenId) public {
    require(isApprovedFor(msg.sender, _tokenId));
    clearApprovalAndTransfer(ownerOf(_tokenId), msg.sender, _tokenId);
  }

  /**
   * @dev Tells whether the msg.sender is approved for the given token ID or not
   * This function is not private so it can be extended in further implementations like the operatable ERC721
   * @param _owner address of the owner to query the approval of
   * @param _tokenId uint256 ID of the token to query the approval of
   * @return bool whether the msg.sender is approved for the given token ID or not
   */
  function isApprovedFor(address _owner, uint256 _tokenId) internal view returns (bool) {
    return approvedFor(_tokenId) == _owner;
  }
  
  /**
  * @dev Internal function to clear current approval and transfer the ownership of a given token ID
  * @param _from address which you want to send tokens from
  * @param _to address which you want to transfer the token to
  * @param _tokenId uint256 ID of the token to be transferred
  */
  function clearApprovalAndTransfer(address _from, address _to, uint256 _tokenId) internal isNotContract(_to) {
    require(_to != address(0));
    require(_to != ownerOf(_tokenId));
    require(ownerOf(_tokenId) == _from);

    clearApproval(_from, _tokenId);
    updateSinglePayout(_from, _tokenId);
    removeToken(_from, _tokenId);
    addToken(_to, _tokenId);
    Transfer(_from, _to, _tokenId);
  }

  /**
  * @dev Internal function to clear current approval of a given token ID
  * @param _tokenId uint256 ID of the token to be transferred
  */
  function clearApproval(address _owner, uint256 _tokenId) private {
    require(ownerOf(_tokenId) == _owner);
    tokenApprovals[_tokenId] = 0;
    Approval(_owner, 0, _tokenId);
  }


    /**
  * @dev Mint token function
  * @param _to The address that will own the minted token
  * @param _tokenId uint256 ID of the token to be minted by the msg.sender
  */
  function _mint(address _to, uint256 _tokenId) internal {
    require(_to != address(0));
    addToken(_to, _tokenId);
    Transfer(0x0, _to, _tokenId);
  }

  /**
  * @dev Internal function to add a token ID to the list of a given address
  * @param _to address representing the new owner of the given token ID
  * @param _tokenId uint256 ID of the token to be added to the tokens list of the given address
  */
  function addToken(address _to, uint256 _tokenId) private {
    require(tokenOwner[_tokenId] == address(0));
    tokenOwner[_tokenId] = _to;
    cryptoColorData[_tokenId].owner = _to;
    uint256 length = balanceOf(_to);
    ownedTokens[_to].push(_tokenId);
    ownedTokensIndex[_tokenId] = length;
    totalTokens = totalTokens.add(1);
  }

  /**
  * @dev Internal function to remove a token ID from the list of a given address
  * @param _from address representing the previous owner of the given token ID
  * @param _tokenId uint256 ID of the token to be removed from the tokens list of the given address
  */
  function removeToken(address _from, uint256 _tokenId) private {
    require(ownerOf(_tokenId) == _from);

    uint256 tokenIndex = ownedTokensIndex[_tokenId];
    uint256 lastTokenIndex = balanceOf(_from).sub(1);
    uint256 lastToken = ownedTokens[_from][lastTokenIndex];

    tokenOwner[_tokenId] = 0;
    ownedTokens[_from][tokenIndex] = lastToken;
    ownedTokens[_from][lastTokenIndex] = 0;
    // Note that this will handle single-element arrays. In that case, both tokenIndex and lastTokenIndex are going to
    // be zero. Then we can make sure that we will remove _tokenId from the ownedTokens list since we are first swapping
    // the lastToken to the first position, and then dropping the element placed in the last position of the list

    ownedTokens[_from].length--;
    ownedTokensIndex[_tokenId] = 0;
    ownedTokensIndex[lastToken] = tokenIndex;
    totalTokens = totalTokens.sub(1);
  }

  function name() public pure returns (string _name) {
    return "CryptoColor";
  }

  function symbol() public pure returns (string _symbol) {
    return "CCLR";
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"tokenExists","outputs":[{"name":"_exists","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"getRentOwed","outputs":[{"name":"owed","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"_name","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"approvedFor","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"},{"name":"_startingPrice","type":"uint256"},{"name":"_payoutPercentage","type":"uint256"},{"name":"_owner","type":"address"}],"name":"createContractToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lastPurchase","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_price","type":"uint256"}],"name":"calculatePoolCut","outputs":[{"name":"_poolCut","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"tokensOf","outputs":[{"name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"withdrawRent","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"poolTotal","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_itemIds","type":"uint256[]"},{"name":"_prices","type":"uint256[]"},{"name":"_payouts","type":"uint256[]"},{"name":"_owners","type":"address[]"}],"name":"createMultiple","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"_symbol","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"takeOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"devOwed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"getToken","outputs":[{"name":"_owner","type":"address"},{"name":"_startingPrice","type":"uint256"},{"name":"_price","type":"uint256"},{"name":"_nextPrice","type":"uint256"},{"name":"_payout","type":"uint256"},{"name":"_id","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"updatePayout","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"purchase","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"cryptoColorData","outputs":[{"name":"startingPrice","type":"uint256"},{"name":"price","type":"uint256"},{"name":"lastPrice","type":"uint256"},{"name":"payout","type":"uint256"},{"name":"withdrawn","type":"uint256"},{"name":"owner","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_tokenId","type":"uint256"},{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_purchasePrice","type":"uint256"},{"indexed":false,"name":"_price","type":"uint256"},{"indexed":true,"name":"_prevOwner","type":"address"}],"name":"TokenSold","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":false,"name":"_tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_approved","type":"address"},{"indexed":false,"name":"_tokenId","type":"uint256"}],"name":"Approval","type":"event"}]

60606040526706f05b59d3b20000600c55670de0b6b3a7640000600d556729a2241af62c0000600e55674563918244f40000600f5560008054600160a060020a033316600160a060020a03199091161790556117ac806100606000396000f3006060604052600436106101525763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041662923f9e811461015757806303dec4631461018157806306fdde03146101b2578063095ea7b31461023c57806318160ddd146102605780632a6dd48f146102735780633ccfd60b146102a557806342b39ca5146102b85780634528f3ec146102e05780634ba336e5146102f35780635a3f2672146103095780635a5ebebf1461037b5780636352211e1461038f578063704d4db0146103a557806370a08231146103b85780637ecaf696146103d75780638da5cb5b1461041957806395d89b411461042c578063a9059cbb1461043f578063b2e6ceeb14610461578063bf37b8f114610477578063e4b50cb81461048a578063edcb9e9e146104eb578063efef39a11461050a578063f2fde38b14610515578063fdbbae7214610534575b600080fd5b341561016257600080fd5b61016d60043561058b565b604051901515815260200160405180910390f35b341561018c57600080fd5b6101a0600160a060020a03600435166105a4565b60405190815260200160405180910390f35b34156101bd57600080fd5b6101c56105cb565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102015780820151838201526020016101e9565b50505050905090810190601f16801561022e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561024757600080fd5b61025e600160a060020a036004351660243561060d565b005b341561026b57600080fd5b6101a06106f2565b341561027e57600080fd5b6102896004356106f8565b604051600160a060020a03909116815260200160405180910390f35b34156102b057600080fd5b61025e610713565b34156102c357600080fd5b61025e600435602435604435600160a060020a036064351661076e565b34156102eb57600080fd5b6101a0610833565b34156102fe57600080fd5b6101a0600435610839565b341561031457600080fd5b610328600160a060020a03600435166108e4565b60405160208082528190810183818151815260200191508051906020019060200280838360005b8381101561036757808201518382015260200161034f565b505050509050019250505060405180910390f35b61025e600160a060020a0360043516610967565b341561039a57600080fd5b6102896004356109bf565b34156103b057600080fd5b6101a06109e9565b34156103c357600080fd5b6101a0600160a060020a03600435166109ef565b34156103e257600080fd5b61025e6024600480358281019290820135918135808301929082013591604435808301929082013591606435918201910135610a0a565b341561042457600080fd5b610289610aa8565b341561043757600080fd5b6101c5610ab7565b341561044a57600080fd5b61025e600160a060020a0360043516602435610af8565b341561046c57600080fd5b61025e600435610b2f565b341561048257600080fd5b6101a0610b5a565b341561049557600080fd5b6104a0600435610b60565b6040518087600160a060020a0316600160a060020a03168152602001868152602001858152602001848152602001838152602001828152602001965050505050505060405180910390f35b34156104f657600080fd5b61025e600160a060020a0360043516610c01565b61025e600435610d7e565b341561052057600080fd5b61025e600160a060020a0360043516610f7b565b341561053f57600080fd5b61054a600435611009565b604051958652602086019490945260408086019390935260608501919091526080840152600160a060020a0390911660a083015260c0909101905180910390f35b600081815260066020526040812060010154115b919050565b60006105af82610c01565b50600160a060020a03166000908152600b602052604090205490565b6105d36116ec565b60408051908101604052600b81527f43727970746f436f6c6f72000000000000000000000000000000000000000000602082015290505b90565b60008133600160a060020a0316610623826109bf565b600160a060020a03161461063657600080fd5b61063f836109bf565b9150600160a060020a03848116908316141561065a57600080fd5b610663836106f8565b600160a060020a03161515806106815750600160a060020a03841615155b156106ec57600083815260086020526040908190208054600160a060020a031916600160a060020a0387811691821790925591908416907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259086905190815260200160405180910390a35b50505050565b60015490565b600090815260086020526040902054600160a060020a031690565b60005433600160a060020a0390811691161461072e57600080fd5b600054600354600160a060020a039091169080156108fc0290604051600060405180830381858888f19350505050151561076757600080fd5b6000600355565b6000805433600160a060020a0390811691161461078a57600080fd5b6000841161079757600080fd5b600085815260066020526040902060010154156107b357600080fd5b506000848152600660205260409020600581018054600160a060020a031916600160a060020a0384161790556107e884611047565b60018083019190915560028083018690556003830185905585835580549091810161081383826116fe565b50600091825260209091200185905561082c82866110df565b5050505050565b60055481565b6000600c5482101561086e57610867606461085b84600a63ffffffff61114116565b9063ffffffff61116c16565b905061059f565b600d5482101561088e57610867606461085b84600963ffffffff61114116565b600e548210156108ae57610867606461085b84600863ffffffff61114116565b600f548210156108ce57610867606461085b84600763ffffffff61114116565b610867606461085b84600563ffffffff61114116565b6108ec6116ec565b6009600083600160a060020a0316600160a060020a0316815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561095b57602002820191906000526020600020905b815481526020019060010190808311610947575b50505050509050919050565b600061097282610c01565b50600160a060020a0381166000818152600b6020526040808220805492905590919082156108fc0290839051600060405180830381858888f1935050505015156109bb57600080fd5b5050565b600081815260076020526040812054600160a060020a03168015156109e357600080fd5b92915050565b60045481565b600160a060020a031660009081526009602052604090205490565b6000805433600160a060020a03908116911614610a2657600080fd5b5060005b87811015610a9d57610a95898983818110610a4157fe5b905060200201358888848181101515610a5657fe5b905060200201358787858181101515610a6b57fe5b905060200201358686868181101515610a8057fe5b90506020020135600160a060020a031661076e565b600101610a2a565b505050505050505050565b600054600160a060020a031681565b610abf6116ec565b60408051908101604052600481527f43434c52000000000000000000000000000000000000000000000000000000006020820152905090565b8033600160a060020a0316610b0c826109bf565b600160a060020a031614610b1f57600080fd5b610b2a338484611183565b505050565b610b393382611263565b1515610b4457600080fd5b610b57610b50826109bf565b3383611183565b50565b60035481565b600080600080600080610b71611722565b600088815260066020526040908190209060c09051908101604090815282548252600183015460208301526002830154908201526003820154606082015260048201546080820152600590910154600160a060020a031660a082019081529091505181518260200151610be78460200151611047565b8460600151939c929b919a50985091965090945092505050565b610c096116ec565b6000806000806009600087600160a060020a0316600160a060020a03168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610c7e57602002820191906000526020600020905b815481526020019060010190808311610c6a575b50505050509450600092505b8451831015610d575761271060066000878681518110610ca657fe5b9060200190602002015181526020019081526020016000206003015460045402811515610ccf57fe5b049150610d1060066000878681518110610ce557fe5b906020019060200201518152602001908152602001600020600401548361128990919063ffffffff16565b9384019390508060066000878681518110610d2757fe5b90602001906020020151815260208101919091526040016000206004018054909101905560019290920191610c8a565b505050600160a060020a039092166000908152600b60205260409020805490920190915550565b60008080808080808033803b8015610d9557600080fd5b60008b815260066020526040902060018101546005820154919b509950600160a060020a03169750339650610dd0348a63ffffffff61128916565b955060008911610ddf57600080fd5b3489901015610ded57600080fd5b33600160a060020a031688600160a060020a031614151515610e0e57600080fd5b60028a0154610e24908a9063ffffffff61128916565b9450610e2f85610839565b60048054820190559350610e4f606461085b8b600563ffffffff61114116565b600354909350610e65908463ffffffff61129b16565b600355610e7388888d6112aa565b60028a01899055610e8389611047565b8a6001018190555087600160a060020a031687600160a060020a03168c7f214b5ebbeea313f6a1bcb61e202dfdccb960cd2296f7f23f662f859395c7e18c8c8e6001015460405191825260208201526040908101905180910390a4600160a060020a0388166108fc610f0b610efe868863ffffffff61129b16565b8c9063ffffffff61128916565b9081150290604051600060405180830381858888f193505050501515610f3057600080fd5b6000861115610f6a57600160a060020a03871686156108fc0287604051600060405180830381858888f193505050501515610f6a57600080fd5b505042600555505050505050505050565b60005433600160a060020a03908116911614610f9657600080fd5b600160a060020a0381161515610fab57600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008054600160a060020a031916600160a060020a0392909216919091179055565b6006602052600090815260409020805460018201546002830154600384015460048501546005909501549394929391929091600160a060020a031686565b6000600c5482101561106957610867606461085b8460c863ffffffff61114116565b600d5482101561108957610867606461085b84608763ffffffff61114116565b600e548210156110a957610867606461085b84607d63ffffffff61114116565b600f548210156110c957610867606461085b84607563ffffffff61114116565b610867606461085b84607363ffffffff61114116565b600160a060020a03821615156110f457600080fd5b6110fe82826113bb565b81600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b600082820283158061115d575082848281151561115a57fe5b04145b151561116557fe5b9392505050565b600080828481151561117a57fe5b04949350505050565b81803b801561119157600080fd5b600160a060020a03841615156111a657600080fd5b6111af836109bf565b600160a060020a03858116911614156111c757600080fd5b84600160a060020a03166111da846109bf565b600160a060020a0316146111ed57600080fd5b6111f7858461148f565b6112018584611514565b61120b8584611581565b61121584846113bb565b83600160a060020a031685600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405190815260200160405180910390a35050505050565b600082600160a060020a0316611278836106f8565b600160a060020a0316149392505050565b60008282111561129557fe5b50900390565b60008282018381101561116557fe5b6112b38161058b565b15156112be57600080fd5b600081815260066020526040902060050154600160a060020a038481169116146112e757600080fd5b600160a060020a03821615156112fc57600080fd5b30600160a060020a031682600160a060020a03161415151561131d57600080fd5b6113278382611514565b611331838261148f565b61133b8382611581565b60008181526006602052604090206005018054600160a060020a031916600160a060020a03841617905561136f82826113bb565b81600160a060020a031683600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a3505050565b600081815260076020526040812054600160a060020a0316156113dd57600080fd5b60008281526007602090815260408083208054600160a060020a038816600160a060020a031991821681179092556006909352922060050180549091169091179055611428836109ef565b600160a060020a03841660009081526009602052604090208054919250906001810161145483826116fe565b506000918252602080832091909101849055838252600a905260409020819055600180546114879163ffffffff61129b16565b600155505050565b81600160a060020a03166114a2826109bf565b600160a060020a0316146114b557600080fd5b6000818152600860205260408082208054600160a060020a0319169055600160a060020a038416907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259084905190815260200160405180910390a35050565b600081815260066020526040812060038101546004805492015461271092909102919091049190611546908390611289565b6000938452600660209081526040808620600401805484019055600160a060020a039096168552600b90529390922080549093019092555050565b600080600084600160a060020a0316611599856109bf565b600160a060020a0316146115ac57600080fd5b6000848152600a602052604090205492506115d760016115cb876109ef565b9063ffffffff61128916565b600160a060020a0386166000908152600960205260409020805491935090839081106115ff57fe5b60009182526020808320909101548683526007825260408084208054600160a060020a0319169055600160a060020a038916845260099092529120805491925082918590811061164b57fe5b6000918252602080832090910192909255600160a060020a038716815260099091526040812080548490811061167d57fe5b6000918252602080832090910192909255600160a060020a03871681526009909152604090208054906116b49060001983016116fe565b506000848152600a60205260408082208290558282529020839055600180546116e29163ffffffff61128916565b6001555050505050565b60206040519081016040526000815290565b815481835581811511610b2a57600083815260209020610b2a918101908301611762565b60c06040519081016040528060008152602001600081526020016000815260200160008152602001600081526020016000600160a060020a031681525090565b61060a91905b8082111561177c5760008155600101611768565b50905600a165627a7a72305820d959e2c3c8d47d6c5338dcd48d6e1e4d9afc66147d0e8b5876bc98dc8e6697c20029

Deployed Bytecode

0x6060604052600436106101525763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041662923f9e811461015757806303dec4631461018157806306fdde03146101b2578063095ea7b31461023c57806318160ddd146102605780632a6dd48f146102735780633ccfd60b146102a557806342b39ca5146102b85780634528f3ec146102e05780634ba336e5146102f35780635a3f2672146103095780635a5ebebf1461037b5780636352211e1461038f578063704d4db0146103a557806370a08231146103b85780637ecaf696146103d75780638da5cb5b1461041957806395d89b411461042c578063a9059cbb1461043f578063b2e6ceeb14610461578063bf37b8f114610477578063e4b50cb81461048a578063edcb9e9e146104eb578063efef39a11461050a578063f2fde38b14610515578063fdbbae7214610534575b600080fd5b341561016257600080fd5b61016d60043561058b565b604051901515815260200160405180910390f35b341561018c57600080fd5b6101a0600160a060020a03600435166105a4565b60405190815260200160405180910390f35b34156101bd57600080fd5b6101c56105cb565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102015780820151838201526020016101e9565b50505050905090810190601f16801561022e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561024757600080fd5b61025e600160a060020a036004351660243561060d565b005b341561026b57600080fd5b6101a06106f2565b341561027e57600080fd5b6102896004356106f8565b604051600160a060020a03909116815260200160405180910390f35b34156102b057600080fd5b61025e610713565b34156102c357600080fd5b61025e600435602435604435600160a060020a036064351661076e565b34156102eb57600080fd5b6101a0610833565b34156102fe57600080fd5b6101a0600435610839565b341561031457600080fd5b610328600160a060020a03600435166108e4565b60405160208082528190810183818151815260200191508051906020019060200280838360005b8381101561036757808201518382015260200161034f565b505050509050019250505060405180910390f35b61025e600160a060020a0360043516610967565b341561039a57600080fd5b6102896004356109bf565b34156103b057600080fd5b6101a06109e9565b34156103c357600080fd5b6101a0600160a060020a03600435166109ef565b34156103e257600080fd5b61025e6024600480358281019290820135918135808301929082013591604435808301929082013591606435918201910135610a0a565b341561042457600080fd5b610289610aa8565b341561043757600080fd5b6101c5610ab7565b341561044a57600080fd5b61025e600160a060020a0360043516602435610af8565b341561046c57600080fd5b61025e600435610b2f565b341561048257600080fd5b6101a0610b5a565b341561049557600080fd5b6104a0600435610b60565b6040518087600160a060020a0316600160a060020a03168152602001868152602001858152602001848152602001838152602001828152602001965050505050505060405180910390f35b34156104f657600080fd5b61025e600160a060020a0360043516610c01565b61025e600435610d7e565b341561052057600080fd5b61025e600160a060020a0360043516610f7b565b341561053f57600080fd5b61054a600435611009565b604051958652602086019490945260408086019390935260608501919091526080840152600160a060020a0390911660a083015260c0909101905180910390f35b600081815260066020526040812060010154115b919050565b60006105af82610c01565b50600160a060020a03166000908152600b602052604090205490565b6105d36116ec565b60408051908101604052600b81527f43727970746f436f6c6f72000000000000000000000000000000000000000000602082015290505b90565b60008133600160a060020a0316610623826109bf565b600160a060020a03161461063657600080fd5b61063f836109bf565b9150600160a060020a03848116908316141561065a57600080fd5b610663836106f8565b600160a060020a03161515806106815750600160a060020a03841615155b156106ec57600083815260086020526040908190208054600160a060020a031916600160a060020a0387811691821790925591908416907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259086905190815260200160405180910390a35b50505050565b60015490565b600090815260086020526040902054600160a060020a031690565b60005433600160a060020a0390811691161461072e57600080fd5b600054600354600160a060020a039091169080156108fc0290604051600060405180830381858888f19350505050151561076757600080fd5b6000600355565b6000805433600160a060020a0390811691161461078a57600080fd5b6000841161079757600080fd5b600085815260066020526040902060010154156107b357600080fd5b506000848152600660205260409020600581018054600160a060020a031916600160a060020a0384161790556107e884611047565b60018083019190915560028083018690556003830185905585835580549091810161081383826116fe565b50600091825260209091200185905561082c82866110df565b5050505050565b60055481565b6000600c5482101561086e57610867606461085b84600a63ffffffff61114116565b9063ffffffff61116c16565b905061059f565b600d5482101561088e57610867606461085b84600963ffffffff61114116565b600e548210156108ae57610867606461085b84600863ffffffff61114116565b600f548210156108ce57610867606461085b84600763ffffffff61114116565b610867606461085b84600563ffffffff61114116565b6108ec6116ec565b6009600083600160a060020a0316600160a060020a0316815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561095b57602002820191906000526020600020905b815481526020019060010190808311610947575b50505050509050919050565b600061097282610c01565b50600160a060020a0381166000818152600b6020526040808220805492905590919082156108fc0290839051600060405180830381858888f1935050505015156109bb57600080fd5b5050565b600081815260076020526040812054600160a060020a03168015156109e357600080fd5b92915050565b60045481565b600160a060020a031660009081526009602052604090205490565b6000805433600160a060020a03908116911614610a2657600080fd5b5060005b87811015610a9d57610a95898983818110610a4157fe5b905060200201358888848181101515610a5657fe5b905060200201358787858181101515610a6b57fe5b905060200201358686868181101515610a8057fe5b90506020020135600160a060020a031661076e565b600101610a2a565b505050505050505050565b600054600160a060020a031681565b610abf6116ec565b60408051908101604052600481527f43434c52000000000000000000000000000000000000000000000000000000006020820152905090565b8033600160a060020a0316610b0c826109bf565b600160a060020a031614610b1f57600080fd5b610b2a338484611183565b505050565b610b393382611263565b1515610b4457600080fd5b610b57610b50826109bf565b3383611183565b50565b60035481565b600080600080600080610b71611722565b600088815260066020526040908190209060c09051908101604090815282548252600183015460208301526002830154908201526003820154606082015260048201546080820152600590910154600160a060020a031660a082019081529091505181518260200151610be78460200151611047565b8460600151939c929b919a50985091965090945092505050565b610c096116ec565b6000806000806009600087600160a060020a0316600160a060020a03168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015610c7e57602002820191906000526020600020905b815481526020019060010190808311610c6a575b50505050509450600092505b8451831015610d575761271060066000878681518110610ca657fe5b9060200190602002015181526020019081526020016000206003015460045402811515610ccf57fe5b049150610d1060066000878681518110610ce557fe5b906020019060200201518152602001908152602001600020600401548361128990919063ffffffff16565b9384019390508060066000878681518110610d2757fe5b90602001906020020151815260208101919091526040016000206004018054909101905560019290920191610c8a565b505050600160a060020a039092166000908152600b60205260409020805490920190915550565b60008080808080808033803b8015610d9557600080fd5b60008b815260066020526040902060018101546005820154919b509950600160a060020a03169750339650610dd0348a63ffffffff61128916565b955060008911610ddf57600080fd5b3489901015610ded57600080fd5b33600160a060020a031688600160a060020a031614151515610e0e57600080fd5b60028a0154610e24908a9063ffffffff61128916565b9450610e2f85610839565b60048054820190559350610e4f606461085b8b600563ffffffff61114116565b600354909350610e65908463ffffffff61129b16565b600355610e7388888d6112aa565b60028a01899055610e8389611047565b8a6001018190555087600160a060020a031687600160a060020a03168c7f214b5ebbeea313f6a1bcb61e202dfdccb960cd2296f7f23f662f859395c7e18c8c8e6001015460405191825260208201526040908101905180910390a4600160a060020a0388166108fc610f0b610efe868863ffffffff61129b16565b8c9063ffffffff61128916565b9081150290604051600060405180830381858888f193505050501515610f3057600080fd5b6000861115610f6a57600160a060020a03871686156108fc0287604051600060405180830381858888f193505050501515610f6a57600080fd5b505042600555505050505050505050565b60005433600160a060020a03908116911614610f9657600080fd5b600160a060020a0381161515610fab57600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008054600160a060020a031916600160a060020a0392909216919091179055565b6006602052600090815260409020805460018201546002830154600384015460048501546005909501549394929391929091600160a060020a031686565b6000600c5482101561106957610867606461085b8460c863ffffffff61114116565b600d5482101561108957610867606461085b84608763ffffffff61114116565b600e548210156110a957610867606461085b84607d63ffffffff61114116565b600f548210156110c957610867606461085b84607563ffffffff61114116565b610867606461085b84607363ffffffff61114116565b600160a060020a03821615156110f457600080fd5b6110fe82826113bb565b81600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b600082820283158061115d575082848281151561115a57fe5b04145b151561116557fe5b9392505050565b600080828481151561117a57fe5b04949350505050565b81803b801561119157600080fd5b600160a060020a03841615156111a657600080fd5b6111af836109bf565b600160a060020a03858116911614156111c757600080fd5b84600160a060020a03166111da846109bf565b600160a060020a0316146111ed57600080fd5b6111f7858461148f565b6112018584611514565b61120b8584611581565b61121584846113bb565b83600160a060020a031685600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405190815260200160405180910390a35050505050565b600082600160a060020a0316611278836106f8565b600160a060020a0316149392505050565b60008282111561129557fe5b50900390565b60008282018381101561116557fe5b6112b38161058b565b15156112be57600080fd5b600081815260066020526040902060050154600160a060020a038481169116146112e757600080fd5b600160a060020a03821615156112fc57600080fd5b30600160a060020a031682600160a060020a03161415151561131d57600080fd5b6113278382611514565b611331838261148f565b61133b8382611581565b60008181526006602052604090206005018054600160a060020a031916600160a060020a03841617905561136f82826113bb565b81600160a060020a031683600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a3505050565b600081815260076020526040812054600160a060020a0316156113dd57600080fd5b60008281526007602090815260408083208054600160a060020a038816600160a060020a031991821681179092556006909352922060050180549091169091179055611428836109ef565b600160a060020a03841660009081526009602052604090208054919250906001810161145483826116fe565b506000918252602080832091909101849055838252600a905260409020819055600180546114879163ffffffff61129b16565b600155505050565b81600160a060020a03166114a2826109bf565b600160a060020a0316146114b557600080fd5b6000818152600860205260408082208054600160a060020a0319169055600160a060020a038416907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259084905190815260200160405180910390a35050565b600081815260066020526040812060038101546004805492015461271092909102919091049190611546908390611289565b6000938452600660209081526040808620600401805484019055600160a060020a039096168552600b90529390922080549093019092555050565b600080600084600160a060020a0316611599856109bf565b600160a060020a0316146115ac57600080fd5b6000848152600a602052604090205492506115d760016115cb876109ef565b9063ffffffff61128916565b600160a060020a0386166000908152600960205260409020805491935090839081106115ff57fe5b60009182526020808320909101548683526007825260408084208054600160a060020a0319169055600160a060020a038916845260099092529120805491925082918590811061164b57fe5b6000918252602080832090910192909255600160a060020a038716815260099091526040812080548490811061167d57fe5b6000918252602080832090910192909255600160a060020a03871681526009909152604090208054906116b49060001983016116fe565b506000848152600a60205260408082208290558282529020839055600180546116e29163ffffffff61128916565b6001555050505050565b60206040519081016040526000815290565b815481835581811511610b2a57600083815260209020610b2a918101908301611762565b60c06040519081016040528060008152602001600081526020016000815260200160008152602001600081526020016000600160a060020a031681525090565b61060a91905b8082111561177c5760008155600101611768565b50905600a165627a7a72305820d959e2c3c8d47d6c5338dcd48d6e1e4d9afc66147d0e8b5876bc98dc8e6697c20029

Swarm Source

bzzr://d959e2c3c8d47d6c5338dcd48d6e1e4d9afc66147d0e8b5876bc98dc8e6697c2
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.