ETH Price: $2,684.48 (+2.49%)

Token

WBA (WBA)
 

Overview

Max Total Supply

270 WBA

Holders

2

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WBA
0x0dF63Ff925a5E0e9632a109E5115D9936A33036b
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
WOBCore

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-09-05
*/

pragma solidity ^0.4.18;
	
	/*
	ERC721 asset for world of blockchain game
	*/

	/**
	 * @title SafeMath
	 * @dev Math operations with safety checks that throw on error
	 */
    library SafeMath {

	  /**
	  * @dev Multiplies two numbers, throws on overflow.
	  */
	  function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
		// Gas optimization: this is cheaper than asserting 'a' not being zero, but the
		// benefit is lost if 'b' is also tested.
		// See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
		if (a == 0) {
		  return 0;
		}

		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 a / b;
	  }

	  /**
	  * @dev Subtracts 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 c) {
		c = a + b;
		assert(c >= a);
		return c;
	  }
    }

	/**
	 * @title ERC165
	 * @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md
	 */
    interface ERC165 {

	  /**
	   * @notice Query if a contract implements an interface
	   * @param _interfaceId The interface identifier, as specified in ERC-165
	   * @dev Interface identification is specified in ERC-165. This function
	   * uses less than 30,000 gas.
	   */
	  function supportsInterface(bytes4 _interfaceId)
		external
		view
		returns (bool);
    }

	/**
	 * @title ERC721 token receiver interface
	 * @dev Interface for any contract that wants to support safeTransfers
	 * from ERC721 asset contracts.
	 */
    contract ERC721Receiver {
	  /**
	   * @dev Magic value to be returned upon successful reception of an NFT
	   *  Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`,
	   *  which can be also obtained as `ERC721Receiver(0).onERC721Received.selector`
	   */
	  bytes4 internal constant ERC721_RECEIVED = 0x150b7a02;

	  /**
	   * @notice Handle the receipt of an NFT
	   * @dev The ERC721 smart contract calls this function on the recipient
	   * after a `safetransfer`. This function MAY throw to revert and reject the
	   * transfer. Return of other than the magic value MUST result in the 
	   * transaction being reverted.
	   * Note: the contract address is always the message sender.
	   * @param _operator The address which called `safeTransferFrom` function
	   * @param _from The address which previously owned the token
	   * @param _tokenId The NFT identifier which is being transfered
	   * @param _data Additional data with no specified format
	   * @return `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
	   */
	  function onERC721Received(
		address _operator,
		address _from,
		uint256 _tokenId,
		bytes _data
	  )
		public
		returns(bytes4);
	}

	/**
	 * Utility library of inline functions on addresses
	 */
	library AddressUtils {

	  /**
	   * Returns whether the target address is a contract
	   * @dev This function will return false if invoked during the constructor of a contract,
	   * as the code is not actually created until after the constructor finishes.
	   * @param addr address to check
	   * @return whether the target address is a contract
	   */
	  function isContract(address addr) internal view returns (bool) {
		uint256 size;
		// XXX Currently there is no better way to check if there is a contract in an address
		// than to check the size of the code at that address.
		// See https://ethereum.stackexchange.com/a/14016/36603
		// for more details about how this works.
		// TODO Check this again before the Serenity release, because all addresses will be
		// contracts then.
		// solium-disable-next-line security/no-inline-assembly
		assembly { size := extcodesize(addr) }
		return size > 0;
	  }

	}

	/**
	 * @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 OwnershipRenounced(address indexed previousOwner);
	  event OwnershipTransferred(
		address indexed previousOwner,
		address indexed newOwner
	  );


	  /**
	   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
	   * account.
	   */
	  constructor() 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 relinquish control of the contract.
	   * @notice Renouncing to ownership will leave the contract without an owner.
	   * It will not be possible to call the functions with the `onlyOwner`
	   * modifier anymore.
	   */
	  function renounceOwnership() public onlyOwner {
		emit OwnershipRenounced(owner);
		owner = address(0);
	  }

	  /**
	   * @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 {
		_transferOwnership(_newOwner);
	  }

	  /**
	   * @dev Transfers control of the contract to a newOwner.
	   * @param _newOwner The address to transfer ownership to.
	   */
	  function _transferOwnership(address _newOwner) internal {
		require(_newOwner != address(0));
		emit OwnershipTransferred(owner, _newOwner);
		owner = _newOwner;
	  }
	}

	/**
	 * @title SupportsInterfaceWithLookup
	 * @author Matt Condon (@shrugs)
	 * @dev Implements ERC165 using a lookup table.
	 */
	contract SupportsInterfaceWithLookup is ERC165 {
	  bytes4 public constant InterfaceId_ERC165 = 0x01ffc9a7;
	  /**
	   * 0x01ffc9a7 ===
	   *   bytes4(keccak256('supportsInterface(bytes4)'))
	   */

	  /**
	   * @dev a mapping of interface id to whether or not it's supported
	   */
	  mapping(bytes4 => bool) internal supportedInterfaces;

	  /**
	   * @dev A contract implementing SupportsInterfaceWithLookup
	   * implement ERC165 itself
	   */
	  constructor()
		public
	  {
		_registerInterface(InterfaceId_ERC165);
	  }

	  /**
	   * @dev implement supportsInterface(bytes4) using a lookup table
	   */
	  function supportsInterface(bytes4 _interfaceId)
		external
		view
		returns (bool)
	  {
		return supportedInterfaces[_interfaceId];
	  }

	  /**
	   * @dev private method for registering an interface
	   */
	  function _registerInterface(bytes4 _interfaceId)
		internal
	  {
		require(_interfaceId != 0xffffffff);
		supportedInterfaces[_interfaceId] = true;
	  }
	}

	/**
	 * @title ERC721 Non-Fungible Token Standard basic interface
	 * @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
	 */
	contract ERC721Basic is ERC165 {
	  event Transfer(
		address indexed _from,
		address indexed _to,
		uint256 indexed _tokenId
	  );
	  event Approval(
		address indexed _owner,
		address indexed _approved,
		uint256 indexed _tokenId
	  );
	  event ApprovalForAll(
		address indexed _owner,
		address indexed _operator,
		bool _approved
	  );

	  function balanceOf(address _owner) public view returns (uint256 _balance);
	  function ownerOf(uint256 _tokenId) public view returns (address _owner);
	  function exists(uint256 _tokenId) public view returns (bool _exists);

	  function approve(address _to, uint256 _tokenId) public;
	  function getApproved(uint256 _tokenId)
		public view returns (address _operator);

	  function setApprovalForAll(address _operator, bool _approved) public;
	  function isApprovedForAll(address _owner, address _operator)
		public view returns (bool);

	  function transferFrom(address _from, address _to, uint256 _tokenId) public;
	  function safeTransferFrom(address _from, address _to, uint256 _tokenId)
		public;

	  function safeTransferFrom(
		address _from,
		address _to,
		uint256 _tokenId,
		bytes _data
	  )
		public;
	}

	/**
	 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
	 * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
	 */
	contract ERC721Enumerable is ERC721Basic {
	  function totalSupply() public view returns (uint256);
	  function tokenOfOwnerByIndex(
		address _owner,
		uint256 _index
	  )
		public
		view
		returns (uint256 _tokenId);

	  function tokenByIndex(uint256 _index) public view returns (uint256);
	}


	/**
	 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
	 * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
	 */
	contract ERC721Metadata is ERC721Basic {
	  function name() external view returns (string _name);
	  function symbol() external view returns (string _symbol);
	  function tokenURI(uint256 _tokenId) public view returns (string);
	}


	/**
	 * @title ERC-721 Non-Fungible Token Standard, full implementation interface
	 * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
	 */
	contract ERC721 is ERC721Basic, ERC721Enumerable, ERC721Metadata {
	}

	/**
	 * @title ERC721 Non-Fungible Token Standard basic implementation
	 * @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
	 */
	contract ERC721BasicToken is SupportsInterfaceWithLookup, ERC721Basic {

	  bytes4 private constant InterfaceId_ERC721 = 0x80ac58cd;
	  /*
	   * 0x80ac58cd ===
	   *   bytes4(keccak256('balanceOf(address)')) ^
	   *   bytes4(keccak256('ownerOf(uint256)')) ^
	   *   bytes4(keccak256('approve(address,uint256)')) ^
	   *   bytes4(keccak256('getApproved(uint256)')) ^
	   *   bytes4(keccak256('setApprovalForAll(address,bool)')) ^
	   *   bytes4(keccak256('isApprovedForAll(address,address)')) ^
	   *   bytes4(keccak256('transferFrom(address,address,uint256)')) ^
	   *   bytes4(keccak256('safeTransferFrom(address,address,uint256)')) ^
	   *   bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)'))
	   */

	  bytes4 private constant InterfaceId_ERC721Exists = 0x4f558e79;
	  /*
	   * 0x4f558e79 ===
	   *   bytes4(keccak256('exists(uint256)'))
	   */

	  using SafeMath for uint256;
	  using AddressUtils for address;

	  // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
	  // which can be also obtained as `ERC721Receiver(0).onERC721Received.selector`
	  bytes4 private constant ERC721_RECEIVED = 0x150b7a02;

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

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

	  // Mapping from owner to number of owned token
	  mapping (address => uint256) internal ownedTokensCount;

	  // Mapping from owner to operator approvals
	  mapping (address => mapping (address => bool)) internal operatorApprovals;

	  /**
	   * @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 Checks msg.sender can transfer a token, by being owner, approved, or operator
	   * @param _tokenId uint256 ID of the token to validate
	   */
	  modifier canTransfer(uint256 _tokenId) {
		require(isApprovedOrOwner(msg.sender, _tokenId));
		_;
	  }

	  constructor()
		public
	  {
		// register the supported interfaces to conform to ERC721 via ERC165
		_registerInterface(InterfaceId_ERC721);
		_registerInterface(InterfaceId_ERC721Exists);
	  }

	  /**
	   * @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) {
		require(_owner != address(0));
		return ownedTokensCount[_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 Returns whether the specified token exists
	   * @param _tokenId uint256 ID of the token to query the existence of
	   * @return whether the token exists
	   */
	  function exists(uint256 _tokenId) public view returns (bool) {
		address owner = tokenOwner[_tokenId];
		return owner != address(0);
	  }

	  /**
	   * @dev Approves another address to transfer the given token ID
	   * The zero address indicates there is no approved address.
	   * There can only be one approved address per token at a given time.
	   * Can only be called by the token owner or an approved operator.
	   * @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 {
		address owner = ownerOf(_tokenId);
		require(_to != owner);
		require(msg.sender == owner || isApprovedForAll(owner, msg.sender));

		tokenApprovals[_tokenId] = _to;
		emit Approval(owner, _to, _tokenId);
	  }

	  /**
	   * @dev Gets the approved address for a token ID, or zero if no address set
	   * @param _tokenId uint256 ID of the token to query the approval of
	   * @return address currently approved for the given token ID
	   */
	  function getApproved(uint256 _tokenId) public view returns (address) {
		return tokenApprovals[_tokenId];
	  }

	  /**
	   * @dev Sets or unsets the approval of a given operator
	   * An operator is allowed to transfer all tokens of the sender on their behalf
	   * @param _to operator address to set the approval
	   * @param _approved representing the status of the approval to be set
	   */
	  function setApprovalForAll(address _to, bool _approved) public {
		require(_to != msg.sender);
		operatorApprovals[msg.sender][_to] = _approved;
		emit ApprovalForAll(msg.sender, _to, _approved);
	  }

	  /**
	   * @dev Tells whether an operator is approved by a given owner
	   * @param _owner owner address which you want to query the approval of
	   * @param _operator operator address which you want to query the approval of
	   * @return bool whether the given operator is approved by the given owner
	   */
	  function isApprovedForAll(
		address _owner,
		address _operator
	  )
		public
		view
		returns (bool)
	  {
		return operatorApprovals[_owner][_operator];
	  }

	  /**
	   * @dev Transfers the ownership of a given token ID to another address
	   * Usage of this method is discouraged, use `safeTransferFrom` whenever possible
	   * Requires the msg sender to be the owner, approved, or operator
	   * @param _from current owner of the token
	   * @param _to address to receive the ownership of the given token ID
	   * @param _tokenId uint256 ID of the token to be transferred
	  */
	  function transferFrom(
		address _from,
		address _to,
		uint256 _tokenId
	  )
		public
		canTransfer(_tokenId)
	  {
		require(_from != address(0));
		require(_to != address(0));

		clearApproval(_from, _tokenId);
		removeTokenFrom(_from, _tokenId);
		addTokenTo(_to, _tokenId);

		emit Transfer(_from, _to, _tokenId);
	  }

	  /**
	   * @dev Safely transfers the ownership of a given token ID to another address
	   * If the target address is a contract, it must implement `onERC721Received`,
	   * which is called upon a safe transfer, and return the magic value
	   * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
	   * the transfer is reverted.
	   *
	   * Requires the msg sender to be the owner, approved, or operator
	   * @param _from current owner of the token
	   * @param _to address to receive the ownership of the given token ID
	   * @param _tokenId uint256 ID of the token to be transferred
	  */
	  function safeTransferFrom(
		address _from,
		address _to,
		uint256 _tokenId
	  )
		public
		canTransfer(_tokenId)
	  {
		// solium-disable-next-line arg-overflow
		safeTransferFrom(_from, _to, _tokenId, "");
	  }

	  /**
	   * @dev Safely transfers the ownership of a given token ID to another address
	   * If the target address is a contract, it must implement `onERC721Received`,
	   * which is called upon a safe transfer, and return the magic value
	   * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
	   * the transfer is reverted.
	   * Requires the msg sender to be the owner, approved, or operator
	   * @param _from current owner of the token
	   * @param _to address to receive the ownership of the given token ID
	   * @param _tokenId uint256 ID of the token to be transferred
	   * @param _data bytes data to send along with a safe transfer check
	   */
	  function safeTransferFrom(
		address _from,
		address _to,
		uint256 _tokenId,
		bytes _data
	  )
		public
		canTransfer(_tokenId)
	  {
		transferFrom(_from, _to, _tokenId);
		// solium-disable-next-line arg-overflow
		require(checkAndCallSafeTransfer(_from, _to, _tokenId, _data));
	  }

	  /**
	   * @dev Returns whether the given spender can transfer a given token ID
	   * @param _spender address of the spender to query
	   * @param _tokenId uint256 ID of the token to be transferred
	   * @return bool whether the msg.sender is approved for the given token ID,
	   *  is an operator of the owner, or is the owner of the token
	   */
	  function isApprovedOrOwner(
		address _spender,
		uint256 _tokenId
	  )
		internal
		view
		returns (bool)
	  {
		address owner = ownerOf(_tokenId);
		// Disable solium check because of
		// https://github.com/duaraghav8/Solium/issues/175
		// solium-disable-next-line operator-whitespace
		return (
		  _spender == owner ||
		  getApproved(_tokenId) == _spender ||
		  isApprovedForAll(owner, _spender)
		);
	  }

	  /**
	   * @dev Internal function to mint a new token
	   * Reverts if the given token ID already exists
	   * @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));
		addTokenTo(_to, _tokenId);
		emit Transfer(address(0), _to, _tokenId);
	  }

	  /**
	   * @dev Internal function to burn a specific token
	   * Reverts if the token does not exist
	   * @param _tokenId uint256 ID of the token being burned by the msg.sender
	   */
	  function _burn(address _owner, uint256 _tokenId) internal {
		clearApproval(_owner, _tokenId);
		removeTokenFrom(_owner, _tokenId);
		emit Transfer(_owner, address(0), _tokenId);
	  }

	  /**
	   * @dev Internal function to clear current approval of a given token ID
	   * Reverts if the given address is not indeed the owner of the token
	   * @param _owner owner of the token
	   * @param _tokenId uint256 ID of the token to be transferred
	   */
	  function clearApproval(address _owner, uint256 _tokenId) internal {
		require(ownerOf(_tokenId) == _owner);
		if (tokenApprovals[_tokenId] != address(0)) {
		  tokenApprovals[_tokenId] = address(0);
		}
	  }

	  /**
	   * @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 addTokenTo(address _to, uint256 _tokenId) internal {
		require(tokenOwner[_tokenId] == address(0));
		tokenOwner[_tokenId] = _to;
		ownedTokensCount[_to] = ownedTokensCount[_to].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 removeTokenFrom(address _from, uint256 _tokenId) internal {
		require(ownerOf(_tokenId) == _from);
		ownedTokensCount[_from] = ownedTokensCount[_from].sub(1);
		tokenOwner[_tokenId] = address(0);
	  }

	  /**
	   * @dev Internal function to invoke `onERC721Received` on a target address
	   * The call is not executed if the target address is not a contract
	   * @param _from address representing the previous owner of the given token ID
	   * @param _to target address that will receive the tokens
	   * @param _tokenId uint256 ID of the token to be transferred
	   * @param _data bytes optional data to send along with the call
	   * @return whether the call correctly returned the expected magic value
	   */
	  function checkAndCallSafeTransfer(
		address _from,
		address _to,
		uint256 _tokenId,
		bytes _data
	  )
		internal
		returns (bool)
	  {
		if (!_to.isContract()) {
		  return true;
		}
		bytes4 retval = ERC721Receiver(_to).onERC721Received(
		  msg.sender, _from, _tokenId, _data);
		return (retval == ERC721_RECEIVED);
	  }
	}

	/**
	 * @title Full ERC721 Token
	 * This implementation includes all the required and some optional functionality of the ERC721 standard
	 * Moreover, it includes approve all functionality using operator terminology
	 * @dev see https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
	 */
	contract ERC721Token is SupportsInterfaceWithLookup, ERC721BasicToken, ERC721 {

	  bytes4 private constant InterfaceId_ERC721Enumerable = 0x780e9d63;
	  /**
	   * 0x780e9d63 ===
	   *   bytes4(keccak256('totalSupply()')) ^
	   *   bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) ^
	   *   bytes4(keccak256('tokenByIndex(uint256)'))
	   */

	  bytes4 private constant InterfaceId_ERC721Metadata = 0x5b5e139f;
	  /**
	   * 0x5b5e139f ===
	   *   bytes4(keccak256('name()')) ^
	   *   bytes4(keccak256('symbol()')) ^
	   *   bytes4(keccak256('tokenURI(uint256)'))
	   */

	  // Token name
	  string internal name_;

	  // Token symbol
	  string internal symbol_;
	  
      //asset attribute
	  struct NFTtoken {
            string attribute;
            uint256 birthTime;
      }
      
      NFTtoken[] allNFTtokens;
      
      //check whether asset can update attribute 
      mapping (uint256 => bool) internal isNFTAlive;
      
      //Mapping from token ID to Index of asset
      mapping (uint256 => uint256) internal tokdenIdToNFTindex;      

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

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

	  // Array with all token ids, used for enumeration
	  uint256[] internal allTokens;

	  // Mapping from token id to position in the allTokens array
	  mapping(uint256 => uint256) internal allTokensIndex;

	  // Optional mapping for token URIs
	  mapping(uint256 => string) internal tokenURIs;

	  /**
	   * @dev Constructor function
	   */
	  constructor(string _name, string _symbol) public {
		name_ = _name;
		symbol_ = _symbol;

		// register the supported interfaces to conform to ERC721 via ERC165
		_registerInterface(InterfaceId_ERC721Enumerable);
		_registerInterface(InterfaceId_ERC721Metadata);
	  }

	  /**
	   * @dev Gets the token name
	   * @return string representing the token name
	   */
	  function name() external view returns (string) {
		return name_;
	  }

	  /**
	   * @dev Gets the token symbol
	   * @return string representing the token symbol
	   */
	  function symbol() external view returns (string) {
		return symbol_;
	  }

	  /**
	   * @dev Returns an URI for a given token ID
	   * Throws if the token ID does not exist. May return an empty string.
	   * @param _tokenId uint256 ID of the token to query
	   */
	  function tokenURI(uint256 _tokenId) public view returns (string) {
		require(exists(_tokenId));
		return tokenURIs[_tokenId];
	  }

	  /**
	   * @dev Gets the token ID at a given index of the tokens list of the requested owner
	   * @param _owner address owning the tokens list to be accessed
	   * @param _index uint256 representing the index to be accessed of the requested tokens list
	   * @return uint256 token ID at the given index of the tokens list owned by the requested address
	   */
	  function tokenOfOwnerByIndex(
		address _owner,
		uint256 _index
	  )
		public
		view
		returns (uint256)
	  {
		require(_index < balanceOf(_owner));
		return ownedTokens[_owner][_index];
	  }

	  /**
	   * @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 allTokens.length;
	  }

	  /**
	   * @dev Gets the token ID at a given index of all the tokens in this contract
	   * Reverts if the index is greater or equal to the total number of tokens
	   * @param _index uint256 representing the index to be accessed of the tokens list
	   * @return uint256 token ID at the given index of the tokens list
	   */
	  function tokenByIndex(uint256 _index) public view returns (uint256) {
		require(_index < totalSupply());
		return allTokens[_index];
	  }

	  /**
	   * @dev Internal function to set the token URI for a given token
	   * Reverts if the token ID does not exist
	   * @param _tokenId uint256 ID of the token to set its URI
	   * @param _uri string URI to assign
	   */
	  function _setTokenURI(uint256 _tokenId, string _uri) internal {
		require(exists(_tokenId));
		tokenURIs[_tokenId] = _uri;
	  }

	  /**
	   * @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 addTokenTo(address _to, uint256 _tokenId) internal {
		super.addTokenTo(_to, _tokenId);
		uint256 length = ownedTokens[_to].length;
		ownedTokens[_to].push(_tokenId);
		ownedTokensIndex[_tokenId] = length;
	  }

	  /**
	   * @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 removeTokenFrom(address _from, uint256 _tokenId) internal {
		super.removeTokenFrom(_from, _tokenId);

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

		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;
	  }

	  /**
	   * @dev Internal function to mint a new token
	   * Reverts if the given token ID already exists
	   * @param _to address the beneficiary 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 {
		super._mint(_to, _tokenId);

		allTokensIndex[_tokenId] = allTokens.length;
		allTokens.push(_tokenId);
	  }

	  /**
	   * @dev Internal function to burn a specific token
	   * Reverts if the token does not exist
	   * @param _owner owner of the token to burn
	   * @param _tokenId uint256 ID of the token being burned by the msg.sender
	   */
	  function _burn(address _owner, uint256 _tokenId) internal {
		super._burn(_owner, _tokenId);

		// Clear metadata (if any)
		if (bytes(tokenURIs[_tokenId]).length != 0) {
		  delete tokenURIs[_tokenId];
		}

		// Reorg all tokens array
		uint256 tokenIndex = allTokensIndex[_tokenId];
		uint256 lastTokenIndex = allTokens.length.sub(1);
		uint256 lastToken = allTokens[lastTokenIndex];

		allTokens[tokenIndex] = lastToken;
		allTokens[lastTokenIndex] = 0;

		allTokens.length--;
		allTokensIndex[_tokenId] = 0;
		allTokensIndex[lastToken] = tokenIndex;
	  }
	}

	contract WOBCore is ERC721Token, Ownable {

	  /*** EVENTS ***/
	  /// The event emitted (useable by web3) when a token is purchased
	  event BoughtToken(address indexed buyer, uint256 tokenId);
	  event SetNFTbyTokenId(uint256 tokenId, bool result);

	  constructor() ERC721Token("WBA", "WBA") public {
		// any init code when you deploy the contract would run here
	  }

	  /// Requires the amount of Ether be at least or more of the currentPrice
	  /// @dev Creates an instance of an token and mints it to the purchaser
	  /// @param _tokenIdList The token identification as an integer
	  /// @param _tokenOwner owner of the token
	  function createToken (uint256[] _tokenIdList, address _tokenOwner) external payable onlyOwner{
	    
	    uint256 _tokenId;
        
        for (uint8 tokenNum=0; tokenNum < _tokenIdList.length; tokenNum++){
            _tokenId = _tokenIdList[tokenNum];
            
            NFTtoken memory _NFTtoken = NFTtoken({
                attribute: "",
                birthTime: uint64(now)
            });
            
            isNFTAlive[_tokenId] = true;
    
            tokdenIdToNFTindex[_tokenId] = allNFTtokens.length;
            allNFTtokens.push(_NFTtoken);
            
		    _mint(_tokenOwner, _tokenId);
		    emit BoughtToken(_tokenOwner, _tokenId);
        }
	  }
	  
    function getNFTbyTokenId(uint256 _tokenId) external view returns(string attribute, uint256 birthTime, bool status){

        require(exists(_tokenId));
        uint256 _tokenIndex = tokdenIdToNFTindex[_tokenId];
        
        NFTtoken memory _NFTtoken = allNFTtokens[_tokenIndex];
        
        attribute = _NFTtoken.attribute;
        birthTime = _NFTtoken.birthTime;
        status = isNFTAlive[_tokenId];
    }
        
    function setNFTbyTokenId(uint256 _tokenId, string attribute, bool status)external onlyOwner{
        
        require(exists(_tokenId));
        require(isNFTAlive[_tokenId] == true);    
        uint256 _tokenIndex = tokdenIdToNFTindex[_tokenId];
        
        NFTtoken storage _NFTtoken = allNFTtokens[_tokenIndex];

        _NFTtoken.attribute = attribute;
        isNFTAlive[_tokenId] = status;
        
        emit SetNFTbyTokenId(_tokenId, status);
    }

	function myTokens(address _owner)
		external
		view
		returns (
		  uint256[]
		)
	  {
		return ownedTokens[_owner];
	  }
	  
	function setTokenURI(uint256 _tokenId, string _uri) public onlyOwner {
		super._setTokenURI(_tokenId, _uri);
	  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenIdList","type":"uint256[]"},{"name":"_tokenOwner","type":"address"}],"name":"createToken","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","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":"_tokenId","type":"uint256"}],"name":"getNFTbyTokenId","outputs":[{"name":"attribute","type":"string"},{"name":"birthTime","type":"uint256"},{"name":"status","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"},{"name":"_uri","type":"string"}],"name":"setTokenURI","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":"InterfaceId_ERC165","outputs":[{"name":"","type":"bytes4"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"myTokens","outputs":[{"name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"},{"name":"attribute","type":"string"},{"name":"status","type":"bool"}],"name":"setNFTbyTokenId","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"tokenId","type":"uint256"}],"name":"BoughtToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"},{"indexed":false,"name":"result","type":"bool"}],"name":"SetNFTbyTokenId","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","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":"_tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_approved","type":"address"},{"indexed":true,"name":"_tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_operator","type":"address"},{"indexed":false,"name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"}]

60806040523480156200001157600080fd5b5060408051808201825260038082527f57424100000000000000000000000000000000000000000000000000000000006020808401829052845180860190955291845290830152906200008d7f01ffc9a700000000000000000000000000000000000000000000000000000000640100000000620001a3810204565b620000c17f80ac58cd00000000000000000000000000000000000000000000000000000000640100000000620001a3810204565b620000f57f4f558e7900000000000000000000000000000000000000000000000000000000640100000000620001a3810204565b81516200010a90600590602085019062000210565b5080516200012090600690602084019062000210565b50620001557f780e9d6300000000000000000000000000000000000000000000000000000000640100000000620001a3810204565b620001897f5b5e139f00000000000000000000000000000000000000000000000000000000640100000000620001a3810204565b5050600f8054600160a060020a03191633179055620002b5565b7fffffffff000000000000000000000000000000000000000000000000000000008082161415620001d357600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152602081905260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200025357805160ff191683800117855562000283565b8280016001018555821562000283579182015b828111156200028357825182559160200191906001019062000266565b506200029192915062000295565b5090565b620002b291905b808211156200029157600081556001016200029c565b90565b61188780620002c56000396000f3006080604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166301ffc9a7811461015857806303a76fed1461018e57806306fdde03146101b1578063081812fc1461023b578063095ea7b31461026f5780630dbedee714610293578063162094c41461033557806318160ddd1461039357806319fa8f50146103ba57806323b872dd146103ec5780632f745c591461041657806342842e0e1461043a5780634f558e79146104645780634f6ccce71461047c5780636352211e1461049457806370a08231146104ac578063715018a6146104cd5780638da5cb5b146104e257806395d89b41146104f7578063a22cb4651461050c578063b88d4fde14610532578063c87b56dd146105a1578063dc1df3f6146105b9578063dd8197211461062a578063e985e9c514610653578063f2fde38b1461067a575b600080fd5b34801561016457600080fd5b5061017a600160e060020a03196004351661069b565b604080519115158252519081900360200190f35b6101af6024600480358281019291013590600160a060020a039035166106ba565b005b3480156101bd57600080fd5b506101c6610807565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102005781810151838201526020016101e8565b50505050905090810190601f16801561022d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561024757600080fd5b5061025360043561089e565b60408051600160a060020a039092168252519081900360200190f35b34801561027b57600080fd5b506101af600160a060020a03600435166024356108b9565b34801561029f57600080fd5b506102ab60043561096f565b604051808060200184815260200183151515158152602001828103825285818151815260200191508051906020019080838360005b838110156102f85781810151838201526020016102e0565b50505050905090810190601f1680156103255780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b34801561034157600080fd5b5060408051602060046024803582810135601f81018590048502860185019096528585526101af958335953695604494919390910191908190840183828082843750949750610a8b9650505050505050565b34801561039f57600080fd5b506103a8610ab0565b60408051918252519081900360200190f35b3480156103c657600080fd5b506103cf610ab6565b60408051600160e060020a03199092168252519081900360200190f35b3480156103f857600080fd5b506101af600160a060020a0360043581169060243516604435610ada565b34801561042257600080fd5b506103a8600160a060020a0360043516602435610b7f565b34801561044657600080fd5b506101af600160a060020a0360043581169060243516604435610bcc565b34801561047057600080fd5b5061017a600435610c04565b34801561048857600080fd5b506103a8600435610c21565b3480156104a057600080fd5b50610253600435610c56565b3480156104b857600080fd5b506103a8600160a060020a0360043516610c80565b3480156104d957600080fd5b506101af610cb3565b3480156104ee57600080fd5b50610253610d21565b34801561050357600080fd5b506101c6610d30565b34801561051857600080fd5b506101af600160a060020a03600435166024351515610d91565b34801561053e57600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526101af94600160a060020a038135811695602480359092169560443595369560849401918190840183828082843750949750610e159650505050505050565b3480156105ad57600080fd5b506101c6600435610e54565b3480156105c557600080fd5b506105da600160a060020a0360043516610f09565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156106165781810151838201526020016105fe565b505050509050019250505060405180910390f35b34801561063657600080fd5b506101af6004803590602480359081019101356044351515610f74565b34801561065f57600080fd5b5061017a600160a060020a0360043581169060243516611062565b34801561068657600080fd5b506101af600160a060020a0360043516611090565b600160e060020a03191660009081526020819052604090205460ff1690565b6000806106c561171d565b600f54600160a060020a031633146106dc57600080fd5b600091505b60ff82168511156107ff57858560ff84168181106106fb57fe5b604080516060810182526000818301818152825267ffffffffffffffff4216602083810191909152938402959095013580865260088452828620805460ff19166001908117909155600780546009875294882085905590840180825596528151805191995091965086945060029092027fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688019261079d92849290910190611735565b50602082015181600101555050506107b584846110b3565b604080518481529051600160a060020a038616917f75424253909c2f4460f8a59099700e980f5b484608c4fdd79f600f5162ac88a5919081900360200190a26001909101906106e1565b505050505050565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108935780601f1061086857610100808354040283529160200191610893565b820191906000526020600020905b81548152906001019060200180831161087657829003601f168201915b505050505090505b90565b600090815260026020526040902054600160a060020a031690565b60006108c482610c56565b9050600160a060020a0383811690821614156108df57600080fd5b33600160a060020a03821614806108fb57506108fb8133611062565b151561090657600080fd5b600082815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6060600080600061097e61171d565b61098786610c04565b151561099257600080fd5b6000868152600960205260409020546007805491935090839081106109b357fe5b60009182526020918290206040805160029384029092018054600181161561010002600019011693909304601f81018590049094028201606090810182529082018481529193849291849190840182828015610a505780601f10610a2557610100808354040283529160200191610a50565b820191906000526020600020905b815481529060010190602001808311610a3357829003601f168201915b50505091835250506001919091015460209182015281519181015160009889526008909152604090972054909760ff90911695509350505050565b600f54600160a060020a03163314610aa257600080fd5b610aac8282611102565b5050565b600c5490565b7f01ffc9a70000000000000000000000000000000000000000000000000000000081565b80610ae5338261113a565b1515610af057600080fd5b600160a060020a0384161515610b0557600080fd5b600160a060020a0383161515610b1a57600080fd5b610b248483611199565b610b2e8483611208565b610b388383611341565b8183600160a060020a031685600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b6000610b8a83610c80565b8210610b9557600080fd5b600160a060020a0383166000908152600a60205260409020805483908110610bb957fe5b9060005260206000200154905092915050565b80610bd7338261113a565b1515610be257600080fd5b610bfe8484846020604051908101604052806000815250610e15565b50505050565b600090815260016020526040902054600160a060020a0316151590565b6000610c2b610ab0565b8210610c3657600080fd5b600c805483908110610c4457fe5b90600052602060002001549050919050565b600081815260016020526040812054600160a060020a0316801515610c7a57600080fd5b92915050565b6000600160a060020a0382161515610c9757600080fd5b50600160a060020a031660009081526003602052604090205490565b600f54600160a060020a03163314610cca57600080fd5b600f54604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a2600f805473ffffffffffffffffffffffffffffffffffffffff19169055565b600f54600160a060020a031681565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108935780601f1061086857610100808354040283529160200191610893565b600160a060020a038216331415610da757600080fd5b336000818152600460209081526040808320600160a060020a03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b81610e20338261113a565b1515610e2b57600080fd5b610e36858585610ada565b610e428585858561138a565b1515610e4d57600080fd5b5050505050565b6060610e5f82610c04565b1515610e6a57600080fd5b6000828152600e602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610efd5780601f10610ed257610100808354040283529160200191610efd565b820191906000526020600020905b815481529060010190602001808311610ee057829003601f168201915b50505050509050919050565b600160a060020a0381166000908152600a6020908152604091829020805483518184028101840190945280845260609392830182828015610efd57602002820191906000526020600020905b815481526020019060010190808311610f555750505050509050919050565b600f546000908190600160a060020a03163314610f9057600080fd5b610f9986610c04565b1515610fa457600080fd5b60008681526008602052604090205460ff161515600114610fc457600080fd5b600086815260096020526040902054600780549193509083908110610fe557fe5b6000918252602090912060029091020190506110028186866117b3565b50600086815260086020908152604091829020805460ff191686151590811790915582518981529182015281517f16ecf4ab01a24426255113f0c9e8d82e3a9f92dd40ead125497b7126d28e7c1c929181900390910190a1505050505050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205460ff1690565b600f54600160a060020a031633146110a757600080fd5b6110b0816114f7565b50565b6110bd8282611575565b600c80546000838152600d60205260408120829055600182018355919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7015550565b61110b82610c04565b151561111657600080fd5b6000828152600e60209081526040909120825161113592840190611735565b505050565b60008061114683610c56565b905080600160a060020a031684600160a060020a03161480611181575083600160a060020a03166111768461089e565b600160a060020a0316145b8061119157506111918185611062565b949350505050565b81600160a060020a03166111ac82610c56565b600160a060020a0316146111bf57600080fd5b600081815260026020526040902054600160a060020a031615610aac576000908152600260205260409020805473ffffffffffffffffffffffffffffffffffffffff1916905550565b600080600061121785856115d0565b6000848152600b6020908152604080832054600160a060020a0389168452600a9092529091205490935061125290600163ffffffff61166616565b600160a060020a0386166000908152600a602052604090208054919350908390811061127a57fe5b9060005260206000200154905080600a600087600160a060020a0316600160a060020a03168152602001908152602001600020848154811015156112ba57fe5b6000918252602080832090910192909255600160a060020a0387168152600a909152604081208054849081106112ec57fe5b6000918252602080832090910192909255600160a060020a0387168152600a90915260409020805490611323906000198301611821565b506000938452600b6020526040808520859055908452909220555050565b600061134d8383611678565b50600160a060020a039091166000908152600a6020908152604080832080546001810182559084528284208101859055938352600b909152902055565b60008061139f85600160a060020a0316611708565b15156113ae57600191506114ee565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081523360048201818152600160a060020a03898116602485015260448401889052608060648501908152875160848601528751918a169463150b7a0294938c938b938b93909160a490910190602085019080838360005b83811015611441578181015183820152602001611429565b50505050905090810190601f16801561146e5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561149057600080fd5b505af11580156114a4573d6000803e3d6000fd5b505050506040513d60208110156114ba57600080fd5b5051600160e060020a031981167f150b7a020000000000000000000000000000000000000000000000000000000014925090505b50949350505050565b600160a060020a038116151561150c57600080fd5b600f54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600f805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a038216151561158a57600080fd5b6115948282611341565b6040518190600160a060020a038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b81600160a060020a03166115e382610c56565b600160a060020a0316146115f657600080fd5b600160a060020a03821660009081526003602052604090205461162090600163ffffffff61166616565b600160a060020a03909216600090815260036020908152604080832094909455918152600190915220805473ffffffffffffffffffffffffffffffffffffffff19169055565b60008282111561167257fe5b50900390565b600081815260016020526040902054600160a060020a03161561169a57600080fd5b6000818152600160208181526040808420805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03881690811790915584526003909152909120546116e891611710565b600160a060020a0390921660009081526003602052604090209190915550565b6000903b1190565b81810182811015610c7a57fe5b60408051808201909152606081526000602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061177657805160ff19168380011785556117a3565b828001600101855582156117a3579182015b828111156117a3578251825591602001919060010190611788565b506117af929150611841565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106117f45782800160ff198235161785556117a3565b828001600101855582156117a3579182015b828111156117a3578235825591602001919060010190611806565b815481835581811115611135576000838152602090206111359181019083015b61089b91905b808211156117af57600081556001016118475600a165627a7a723058207c7b89960ed64a3eee75385936f1cd7a735f3557d234c5772d672563175e3d880029

Deployed Bytecode

0x6080604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166301ffc9a7811461015857806303a76fed1461018e57806306fdde03146101b1578063081812fc1461023b578063095ea7b31461026f5780630dbedee714610293578063162094c41461033557806318160ddd1461039357806319fa8f50146103ba57806323b872dd146103ec5780632f745c591461041657806342842e0e1461043a5780634f558e79146104645780634f6ccce71461047c5780636352211e1461049457806370a08231146104ac578063715018a6146104cd5780638da5cb5b146104e257806395d89b41146104f7578063a22cb4651461050c578063b88d4fde14610532578063c87b56dd146105a1578063dc1df3f6146105b9578063dd8197211461062a578063e985e9c514610653578063f2fde38b1461067a575b600080fd5b34801561016457600080fd5b5061017a600160e060020a03196004351661069b565b604080519115158252519081900360200190f35b6101af6024600480358281019291013590600160a060020a039035166106ba565b005b3480156101bd57600080fd5b506101c6610807565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102005781810151838201526020016101e8565b50505050905090810190601f16801561022d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561024757600080fd5b5061025360043561089e565b60408051600160a060020a039092168252519081900360200190f35b34801561027b57600080fd5b506101af600160a060020a03600435166024356108b9565b34801561029f57600080fd5b506102ab60043561096f565b604051808060200184815260200183151515158152602001828103825285818151815260200191508051906020019080838360005b838110156102f85781810151838201526020016102e0565b50505050905090810190601f1680156103255780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b34801561034157600080fd5b5060408051602060046024803582810135601f81018590048502860185019096528585526101af958335953695604494919390910191908190840183828082843750949750610a8b9650505050505050565b34801561039f57600080fd5b506103a8610ab0565b60408051918252519081900360200190f35b3480156103c657600080fd5b506103cf610ab6565b60408051600160e060020a03199092168252519081900360200190f35b3480156103f857600080fd5b506101af600160a060020a0360043581169060243516604435610ada565b34801561042257600080fd5b506103a8600160a060020a0360043516602435610b7f565b34801561044657600080fd5b506101af600160a060020a0360043581169060243516604435610bcc565b34801561047057600080fd5b5061017a600435610c04565b34801561048857600080fd5b506103a8600435610c21565b3480156104a057600080fd5b50610253600435610c56565b3480156104b857600080fd5b506103a8600160a060020a0360043516610c80565b3480156104d957600080fd5b506101af610cb3565b3480156104ee57600080fd5b50610253610d21565b34801561050357600080fd5b506101c6610d30565b34801561051857600080fd5b506101af600160a060020a03600435166024351515610d91565b34801561053e57600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526101af94600160a060020a038135811695602480359092169560443595369560849401918190840183828082843750949750610e159650505050505050565b3480156105ad57600080fd5b506101c6600435610e54565b3480156105c557600080fd5b506105da600160a060020a0360043516610f09565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156106165781810151838201526020016105fe565b505050509050019250505060405180910390f35b34801561063657600080fd5b506101af6004803590602480359081019101356044351515610f74565b34801561065f57600080fd5b5061017a600160a060020a0360043581169060243516611062565b34801561068657600080fd5b506101af600160a060020a0360043516611090565b600160e060020a03191660009081526020819052604090205460ff1690565b6000806106c561171d565b600f54600160a060020a031633146106dc57600080fd5b600091505b60ff82168511156107ff57858560ff84168181106106fb57fe5b604080516060810182526000818301818152825267ffffffffffffffff4216602083810191909152938402959095013580865260088452828620805460ff19166001908117909155600780546009875294882085905590840180825596528151805191995091965086945060029092027fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688019261079d92849290910190611735565b50602082015181600101555050506107b584846110b3565b604080518481529051600160a060020a038616917f75424253909c2f4460f8a59099700e980f5b484608c4fdd79f600f5162ac88a5919081900360200190a26001909101906106e1565b505050505050565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108935780601f1061086857610100808354040283529160200191610893565b820191906000526020600020905b81548152906001019060200180831161087657829003601f168201915b505050505090505b90565b600090815260026020526040902054600160a060020a031690565b60006108c482610c56565b9050600160a060020a0383811690821614156108df57600080fd5b33600160a060020a03821614806108fb57506108fb8133611062565b151561090657600080fd5b600082815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6060600080600061097e61171d565b61098786610c04565b151561099257600080fd5b6000868152600960205260409020546007805491935090839081106109b357fe5b60009182526020918290206040805160029384029092018054600181161561010002600019011693909304601f81018590049094028201606090810182529082018481529193849291849190840182828015610a505780601f10610a2557610100808354040283529160200191610a50565b820191906000526020600020905b815481529060010190602001808311610a3357829003601f168201915b50505091835250506001919091015460209182015281519181015160009889526008909152604090972054909760ff90911695509350505050565b600f54600160a060020a03163314610aa257600080fd5b610aac8282611102565b5050565b600c5490565b7f01ffc9a70000000000000000000000000000000000000000000000000000000081565b80610ae5338261113a565b1515610af057600080fd5b600160a060020a0384161515610b0557600080fd5b600160a060020a0383161515610b1a57600080fd5b610b248483611199565b610b2e8483611208565b610b388383611341565b8183600160a060020a031685600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b6000610b8a83610c80565b8210610b9557600080fd5b600160a060020a0383166000908152600a60205260409020805483908110610bb957fe5b9060005260206000200154905092915050565b80610bd7338261113a565b1515610be257600080fd5b610bfe8484846020604051908101604052806000815250610e15565b50505050565b600090815260016020526040902054600160a060020a0316151590565b6000610c2b610ab0565b8210610c3657600080fd5b600c805483908110610c4457fe5b90600052602060002001549050919050565b600081815260016020526040812054600160a060020a0316801515610c7a57600080fd5b92915050565b6000600160a060020a0382161515610c9757600080fd5b50600160a060020a031660009081526003602052604090205490565b600f54600160a060020a03163314610cca57600080fd5b600f54604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a2600f805473ffffffffffffffffffffffffffffffffffffffff19169055565b600f54600160a060020a031681565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108935780601f1061086857610100808354040283529160200191610893565b600160a060020a038216331415610da757600080fd5b336000818152600460209081526040808320600160a060020a03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b81610e20338261113a565b1515610e2b57600080fd5b610e36858585610ada565b610e428585858561138a565b1515610e4d57600080fd5b5050505050565b6060610e5f82610c04565b1515610e6a57600080fd5b6000828152600e602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610efd5780601f10610ed257610100808354040283529160200191610efd565b820191906000526020600020905b815481529060010190602001808311610ee057829003601f168201915b50505050509050919050565b600160a060020a0381166000908152600a6020908152604091829020805483518184028101840190945280845260609392830182828015610efd57602002820191906000526020600020905b815481526020019060010190808311610f555750505050509050919050565b600f546000908190600160a060020a03163314610f9057600080fd5b610f9986610c04565b1515610fa457600080fd5b60008681526008602052604090205460ff161515600114610fc457600080fd5b600086815260096020526040902054600780549193509083908110610fe557fe5b6000918252602090912060029091020190506110028186866117b3565b50600086815260086020908152604091829020805460ff191686151590811790915582518981529182015281517f16ecf4ab01a24426255113f0c9e8d82e3a9f92dd40ead125497b7126d28e7c1c929181900390910190a1505050505050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205460ff1690565b600f54600160a060020a031633146110a757600080fd5b6110b0816114f7565b50565b6110bd8282611575565b600c80546000838152600d60205260408120829055600182018355919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7015550565b61110b82610c04565b151561111657600080fd5b6000828152600e60209081526040909120825161113592840190611735565b505050565b60008061114683610c56565b905080600160a060020a031684600160a060020a03161480611181575083600160a060020a03166111768461089e565b600160a060020a0316145b8061119157506111918185611062565b949350505050565b81600160a060020a03166111ac82610c56565b600160a060020a0316146111bf57600080fd5b600081815260026020526040902054600160a060020a031615610aac576000908152600260205260409020805473ffffffffffffffffffffffffffffffffffffffff1916905550565b600080600061121785856115d0565b6000848152600b6020908152604080832054600160a060020a0389168452600a9092529091205490935061125290600163ffffffff61166616565b600160a060020a0386166000908152600a602052604090208054919350908390811061127a57fe5b9060005260206000200154905080600a600087600160a060020a0316600160a060020a03168152602001908152602001600020848154811015156112ba57fe5b6000918252602080832090910192909255600160a060020a0387168152600a909152604081208054849081106112ec57fe5b6000918252602080832090910192909255600160a060020a0387168152600a90915260409020805490611323906000198301611821565b506000938452600b6020526040808520859055908452909220555050565b600061134d8383611678565b50600160a060020a039091166000908152600a6020908152604080832080546001810182559084528284208101859055938352600b909152902055565b60008061139f85600160a060020a0316611708565b15156113ae57600191506114ee565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081523360048201818152600160a060020a03898116602485015260448401889052608060648501908152875160848601528751918a169463150b7a0294938c938b938b93909160a490910190602085019080838360005b83811015611441578181015183820152602001611429565b50505050905090810190601f16801561146e5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561149057600080fd5b505af11580156114a4573d6000803e3d6000fd5b505050506040513d60208110156114ba57600080fd5b5051600160e060020a031981167f150b7a020000000000000000000000000000000000000000000000000000000014925090505b50949350505050565b600160a060020a038116151561150c57600080fd5b600f54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600f805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a038216151561158a57600080fd5b6115948282611341565b6040518190600160a060020a038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b81600160a060020a03166115e382610c56565b600160a060020a0316146115f657600080fd5b600160a060020a03821660009081526003602052604090205461162090600163ffffffff61166616565b600160a060020a03909216600090815260036020908152604080832094909455918152600190915220805473ffffffffffffffffffffffffffffffffffffffff19169055565b60008282111561167257fe5b50900390565b600081815260016020526040902054600160a060020a03161561169a57600080fd5b6000818152600160208181526040808420805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03881690811790915584526003909152909120546116e891611710565b600160a060020a0390921660009081526003602052604090209190915550565b6000903b1190565b81810182811015610c7a57fe5b60408051808201909152606081526000602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061177657805160ff19168380011785556117a3565b828001600101855582156117a3579182015b828111156117a3578251825591602001919060010190611788565b506117af929150611841565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106117f45782800160ff198235161785556117a3565b828001600101855582156117a3579182015b828111156117a3578235825591602001919060010190611806565b815481835581811115611135576000838152602090206111359181019083015b61089b91905b808211156117af57600081556001016118475600a165627a7a723058207c7b89960ed64a3eee75385936f1cd7a735f3557d234c5772d672563175e3d880029

Swarm Source

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