ETH Price: $2,765.67 (+4.78%)

HodlEarthToken (HEAR)
 

Overview

TokenID

203747600112220200

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Buy, HODL and trade plots of land across virtual Earth.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HodlEarthToken

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.24;
 
// File: zeppelin-solidity/contracts/introspection/ERC165.sol
 
/**
* @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);
}
 
// File: zeppelin-solidity/contracts/token/ERC721/ERC721Basic.sol
 
/**
* @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;
}
 
// File: zeppelin-solidity/contracts/token/ERC721/ERC721.sol
 
/**
* @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 {
}
 
// File: zeppelin-solidity/contracts/token/ERC721/ERC721Receiver.sol
 
/**
* @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);
}
 
// File: zeppelin-solidity/contracts/math/SafeMath.sol
 
/**
* @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;
  }
}
 
// File: zeppelin-solidity/contracts/AddressUtils.sol
 
/**
* 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;
  }
 
}
 
// File: zeppelin-solidity/contracts/introspection/SupportsInterfaceWithLookup.sol
 
/**
* @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;
  }
}
 
// File: zeppelin-solidity/contracts/token/ERC721/ERC721BasicToken.sol
 
/**
* @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);
  }
}
 
// File: zeppelin-solidity/contracts/token/ERC721/ERC721Token.sol
 
/**
* @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_;
 
  // 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;
  }
 
}
 
// File: zeppelin-solidity/contracts/ownership/Ownable.sol
 
/**
* @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;
  }
}
 
// File: zeppelin-solidity/contracts/lifecycle/Pausable.sol
 
/**
* @title Pausable
* @dev Base contract which allows children to implement an emergency stop mechanism.
*/
contract Pausable is Ownable {
  event Pause();
  event Unpause();
 
  bool public paused = false;
 
 
  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused,"Contract is paused");
    _;
  }
 
  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused,"Contract is not paused");
    _;
  }
 
  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() onlyOwner whenNotPaused public {
    paused = true;
    emit Pause();
  }
 
  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused public {
    paused = false;
    emit Unpause();
  }
}
 
// File: contracts/HodlEarth.sol
 
/***
*
* need to add pausable when minting need to check that it doesnt exist first
* need to allow the minter to attribute up to X tokens
*/
contract HodlEarthToken is ERC721Token, Ownable, Pausable {
  string public constant name = "HodlEarthToken";
  string public constant symbol = "HEAR";
 
  constructor() ERC721Token(name, symbol) public {
    owner = msg.sender;
  }
 
  mapping (uint256 => bytes7) public plotColours;
  mapping (uint256 => bytes32) public plotDescriptors;
 
  function calculatePlotPrice() public view returns(uint256 currentPlotPrice){
 
    if(totalSupply() < 250000){
        currentPlotPrice = 0.0004 * 1000000000000000000;
    } else currentPlotPrice = 0.001 * 1000000000000000000;
 
  }
 
  function calculateTransactionFee(uint256 _noPlots,bool _updatePlot) public pure returns(uint256 fee){
 
    uint256 plotPrice;
    plotPrice = 0.001 * 1000000000000000000;
    fee = plotPrice.div(10);
    fee = fee.mul(_noPlots);
 
    if(_updatePlot == false){
       
       uint256 minFee = 0.001 * 1000000000000000000;
       if(fee < minFee) fee = minFee;
    }
 
  }
 
  function transferFrom(address _from, address _to, uint256 _tokenId) public whenNotPaused{
 
    super.transferFrom(_from,_to,_tokenId);
 
  }
 
  function safeTransferFrom(address _from, address _to, uint256 _tokenId) public whenNotPaused{
 
    super.safeTransferFrom(_from,_to,_tokenId);
 
  }
 
  function safeTransferFrom(address _from,address _to,uint256 _tokenId,bytes _data) public whenNotPaused{
 
    super.safeTransferFrom(_from,_to,_tokenId,_data);
 
  }
 
  function getPlot(uint256 _plotLat,uint256 _plotLng) public view returns(uint256 plotReference,bytes7 colour,bytes32 descriptor){
 
    plotReference = _generatePlotReference(_plotLat,_plotLng);
    colour = plotColours[plotReference];
    descriptor = plotDescriptors[plotReference];
 
  }
 
  function getPlotByReference(uint256 _plotReference) public view returns(bytes7 colour,bytes32 descriptor){
 
    colour = plotColours[_plotReference];
    descriptor = plotDescriptors[_plotReference];
 
  }
 
 
  function getPlots(uint256[] _plotLats,uint256[] _plotLngs) public view returns(uint256[],bytes7[],bytes32[]){
 
    uint arrayLength = _plotLats.length;
    uint256 plotReference;
    uint256[] memory plotIds = new uint[](arrayLength);
    bytes7[] memory colours = new bytes7[](arrayLength);
    bytes32[] memory descriptors = new bytes32[](arrayLength);
    for (uint i=0; i<arrayLength; i++) {
      plotReference = _generatePlotReference(_plotLats[i],_plotLngs[i]);
      plotIds[i] = plotReference;
      colours[i] =  plotColours[plotReference];
      descriptors[i] = plotDescriptors[plotReference];
 
    }
 
    return(plotIds,colours,descriptors);
  }
 
 
  function getPlotsByReference(uint256[] _plotReferences) public view returns(uint256[],bytes7[],bytes32[]){
 
    uint arrayLength = _plotReferences.length;
    uint256[] memory plotIds = new uint[](arrayLength);
    bytes7[] memory colours = new bytes7[](arrayLength);
    bytes32[] memory descriptors = new bytes32[](arrayLength);
    for (uint i=0; i<arrayLength; i++) {
      plotIds[i] = _plotReferences[i];
      colours[i] =  plotColours[_plotReferences[i]];
      descriptors[i] = plotDescriptors[_plotReferences[i]];
    }
 
    return(plotIds,colours,descriptors);
  }
 
 
  function newPlot(uint256 _plotLat,uint256 _plotLng,bytes7 _colour,bytes32 _title) public payable whenNotPaused{
 
    uint256 plotReference;
    bool validLatLng;
    uint256 plotPrice;
    uint256 transactionFee;
 
    //check the amount sent
    plotPrice = calculatePlotPrice();
    transactionFee = calculateTransactionFee(1,false);
    if(msg.sender != owner){
        require(
            msg.value >= plotPrice + transactionFee,
            "Insufficient Eth sent."
        );
    }
 
    validLatLng = validatePlotLatLng(_plotLat,_plotLng);
    require(
        validLatLng == true,
        "Lat long is invalid"
    );
    plotReference = _generatePlotReference(_plotLat,_plotLng);
    require(
       plotColours[plotReference] == 0,
      "Plot already exists."
    );
    _addPlot(plotReference,_colour,_title);
 
  }
  function newPlots(uint256[] _plotLat,uint256[] _plotLng,bytes7[] _colours,bytes32[] _descriptors) public payable whenNotPaused{
 
    uint256 noPlots = _plotLat.length;
    bytes7 colour;
    bytes32 descriptor;
    uint256 plotReference;
    bool validLatLng;
    uint256 plotPrice;
    uint256 transactionFee;
 
    plotPrice = calculatePlotPrice();
    transactionFee = calculateTransactionFee(noPlots,false);
 
    if(msg.sender != owner){
      require(
        msg.value >= plotPrice.mul(noPlots) + transactionFee,
        "Insufficient Eth sent."
      );
    }
 
    for (uint i=0; i<noPlots; i++) {
        colour =  _colours[i];
        descriptor = _descriptors[i];
        validLatLng = validatePlotLatLng(_plotLat[i],_plotLng[i]);
        require(
           validLatLng == true,
           "Lat long is invalid"
        );
        plotReference = _generatePlotReference(_plotLat[i],_plotLng[i]);
        require(
           plotColours[plotReference] == 0,
          "Plot already exists."
        );
        _addPlot(plotReference,colour,descriptor);
    }
 
  }
 
  function _generatePlotReference(uint256 _plotLat,uint256 _plotLng) internal pure returns(uint256 plotReference){
 
    plotReference = (_plotLat * 1000000000) + _plotLng;
 
  }
 
  function _addPlot(uint256 _plotReference,bytes7 _colour,bytes32 _descriptor) private{
 
    //check that the plotreference does not already exist
    plotColours[_plotReference] =  _colour;
    plotDescriptors[_plotReference] =  _descriptor;
    _mint(msg.sender, _plotReference);
  }
 
  function validatePlotLatLng(uint256 _lat,uint256 _lng) public pure returns(bool){
    //confirm the lat and long conforms to the hodlearth dimensions
    if(_lat%5 == 0 && _lng%8 == 0) return true;
    return false;
  }
 
  function updatePlot(uint256 _plotLat,uint256 _plotLng,bytes7 _colour,bytes32 _descriptor) public payable whenNotPaused{
 
    uint256 plotReference;
    uint256 transactionFee;
 
    plotReference = _generatePlotReference(_plotLat,_plotLng);
    transactionFee = calculateTransactionFee(1,true);
 
    require(
      ownerOf(plotReference) == msg.sender,
      "Update can only be carried out by the plot owner."
    );
 
    if(msg.sender != owner){
      require(
      msg.value >= transactionFee,
          "Insufficient Eth sent."
      );
    }
    require(
      plotColours[plotReference] != 0,
      "Plot does not exist."
    );
 
 
    plotColours[plotReference] =  _colour;
    plotDescriptors[plotReference] = _descriptor;
  }
 
  function updatePlots(uint256[] _plotLat,uint256[] _plotLng,bytes7[] _colours,bytes32[] _descriptors) public payable whenNotPaused{
 
    uint256 noPlots = _plotLat.length;
    bytes7 colour;
    bytes32 descriptor;
    uint256 plotReference;
    uint256 transactionFee;
 
    transactionFee = calculateTransactionFee(noPlots,true);
 
    if(msg.sender != owner){
      require(
      msg.value >= transactionFee,
          "Insufficient Eth sent."
     );
    }
 
    for (uint i=0; i<noPlots; i++) {
        colour =  _colours[i];
        descriptor = _descriptors[i];
        plotReference = _generatePlotReference(_plotLat[i],_plotLng[i]);
        require(
            plotColours[plotReference] != 0,
            "Plot does not exist."
        );
        require(
            ownerOf(plotReference) == msg.sender,
            "Update can only be carried out by the plot owner."
        );
 
 
        plotColours[plotReference] =  colour;
        plotDescriptors[plotReference] = descriptor;
    }
  }
 
  function withdraw() public onlyOwner returns(bool) {
     owner.transfer(address(this).balance);
     return true;
  }
 
}

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":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":"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":"_plotLat","type":"uint256"},{"name":"_plotLng","type":"uint256"}],"name":"getPlot","outputs":[{"name":"plotReference","type":"uint256"},{"name":"colour","type":"bytes7"},{"name":"descriptor","type":"bytes32"}],"payable":false,"stateMutability":"view","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":"withdraw","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"plotColours","outputs":[{"name":"","type":"bytes7"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_noPlots","type":"uint256"},{"name":"_updatePlot","type":"bool"}],"name":"calculateTransactionFee","outputs":[{"name":"fee","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"plotDescriptors","outputs":[{"name":"","type":"bytes32"}],"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":"_plotReference","type":"uint256"}],"name":"getPlotByReference","outputs":[{"name":"colour","type":"bytes7"},{"name":"descriptor","type":"bytes32"}],"payable":false,"stateMutability":"view","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":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"calculatePlotPrice","outputs":[{"name":"currentPlotPrice","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":false,"inputs":[{"name":"_plotLat","type":"uint256[]"},{"name":"_plotLng","type":"uint256[]"},{"name":"_colours","type":"bytes7[]"},{"name":"_descriptors","type":"bytes32[]"}],"name":"updatePlots","outputs":[],"payable":true,"stateMutability":"payable","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":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_plotLat","type":"uint256"},{"name":"_plotLng","type":"uint256"},{"name":"_colour","type":"bytes7"},{"name":"_title","type":"bytes32"}],"name":"newPlot","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_plotLat","type":"uint256[]"},{"name":"_plotLng","type":"uint256[]"},{"name":"_colours","type":"bytes7[]"},{"name":"_descriptors","type":"bytes32[]"}],"name":"newPlots","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_plotReferences","type":"uint256[]"}],"name":"getPlotsByReference","outputs":[{"name":"","type":"uint256[]"},{"name":"","type":"bytes7[]"},{"name":"","type":"bytes32[]"}],"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":false,"inputs":[{"name":"_plotLat","type":"uint256"},{"name":"_plotLng","type":"uint256"},{"name":"_colour","type":"bytes7"},{"name":"_descriptor","type":"bytes32"}],"name":"updatePlot","outputs":[],"payable":true,"stateMutability":"payable","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":"_lat","type":"uint256"},{"name":"_lng","type":"uint256"}],"name":"validatePlotLatLng","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"pure","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"},{"constant":true,"inputs":[{"name":"_plotLats","type":"uint256[]"},{"name":"_plotLngs","type":"uint256[]"}],"name":"getPlots","outputs":[{"name":"","type":"uint256[]"},{"name":"","type":"bytes7[]"},{"name":"","type":"bytes32[]"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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"}]

6080604052600c805460a060020a60ff02191690553480156200002157600080fd5b50604080518082018252600e81527f486f646c4561727468546f6b656e0000000000000000000000000000000000006020808301919091528251808401909352600483527f48454152000000000000000000000000000000000000000000000000000000009083015290620000bf7f01ffc9a700000000000000000000000000000000000000000000000000000000640100000000620001dc810204565b620000f37f80ac58cd00000000000000000000000000000000000000000000000000000000640100000000620001dc810204565b620001277f4f558e7900000000000000000000000000000000000000000000000000000000640100000000620001dc810204565b81516200013c90600590602085019062000249565b5080516200015290600690602084019062000249565b50620001877f780e9d6300000000000000000000000000000000000000000000000000000000640100000000620001dc810204565b620001bb7f5b5e139f00000000000000000000000000000000000000000000000000000000640100000000620001dc810204565b5050600c805433600160a060020a03199182168117909116179055620002ee565b7fffffffff0000000000000000000000000000000000000000000000000000000080821614156200020c57600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152602081905260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200028c57805160ff1916838001178555620002bc565b82800160010185558215620002bc579182015b82811115620002bc5782518255916020019190600101906200029f565b50620002ca929150620002ce565b5090565b620002eb91905b80821115620002ca5760008155600101620002d5565b90565b6127bb80620002fe6000396000f3006080604052600436106101d75763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166301ffc9a781146101dc57806306fdde0314610212578063081812fc1461029c578063095ea7b3146102d057806318160ddd146102f657806319fa8f501461031d57806323b872dd1461034f5780632c837334146103795780632f745c59146103bb5780633ccfd60b146103df5780633e523e56146103f45780633f4ba83a146104295780633f9b0af21461043e57806341cb2bbf1461045b57806342842e0e1461047357806346b7c7871461049d5780634f558e79146104d95780634f6ccce7146104f15780635c975abb146105095780635d0413d11461051e5780636352211e1461053357806364fb3d1f1461054b57806370a082311461063e578063715018a61461065f5780638456cb5914610674578063892b9df9146106895780638da5cb5b146106a75780639184671f146106bc57806395c04de6146107af57806395d89b41146108e2578063a22cb465146108f7578063b88d4fde1461091d578063bda1c7111461098c578063c87b56dd146109aa578063d8fde871146109c2578063e985e9c5146109dd578063f2fde38b14610a04578063f63582ad14610a25575b600080fd5b3480156101e857600080fd5b506101fe600160e060020a031960043516610ab3565b604080519115158252519081900360200190f35b34801561021e57600080fd5b50610227610ad2565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610261578181015183820152602001610249565b50505050905090810190601f16801561028e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102a857600080fd5b506102b4600435610b09565b60408051600160a060020a039092168252519081900360200190f35b3480156102dc57600080fd5b506102f4600160a060020a0360043516602435610b24565b005b34801561030257600080fd5b5061030b610bda565b60408051918252519081900360200190f35b34801561032957600080fd5b50610332610be1565b60408051600160e060020a03199092168252519081900360200190f35b34801561035b57600080fd5b506102f4600160a060020a0360043581169060243516604435610c05565b34801561038557600080fd5b50610394600435602435610c65565b60408051938452600160c860020a0319909216602084015282820152519081900360600190f35b3480156103c757600080fd5b5061030b600160a060020a0360043516602435610ca4565b3480156103eb57600080fd5b506101fe610cf2565b34801561040057600080fd5b5061040c600435610d4e565b60408051600160c860020a03199092168252519081900360200190f35b34801561043557600080fd5b506102f4610d66565b34801561044a57600080fd5b5061030b6004356024351515610e29565b34801561046757600080fd5b5061030b600435610e7d565b34801561047f57600080fd5b506102f4600160a060020a0360043581169060243516604435610e8f565b3480156104a957600080fd5b506104b5600435610eea565b60408051600160c860020a0319909316835260208301919091528051918290030190f35b3480156104e557600080fd5b506101fe600435610f10565b3480156104fd57600080fd5b5061030b600435610f2d565b34801561051557600080fd5b506101fe610f62565b34801561052a57600080fd5b5061030b610f72565b34801561053f57600080fd5b506102b4600435610fa0565b604080516020600480358082013583810280860185019096528085526102f495369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750949750610fc49650505050505050565b34801561064a57600080fd5b5061030b600160a060020a036004351661124f565b34801561066b57600080fd5b506102f4611282565b34801561068057600080fd5b506102f46112f0565b6102f4600435602435600160c860020a0319604435166064356113a6565b3480156106b357600080fd5b506102b461156e565b604080516020600480358082013583810280860185019096528085526102f495369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a99890198929750908201955093508392508501908490808284375094975061157d9650505050505050565b3480156107bb57600080fd5b5060408051602060048035808201358381028086018501909652808552610804953695939460249493850192918291850190849080828437509497506117f89650505050505050565b60405180806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b8381101561084c578181015183820152602001610834565b50505050905001848103835286818151815260200191508051906020019060200280838360005b8381101561088b578181015183820152602001610873565b50505050905001848103825285818151815260200191508051906020019060200280838360005b838110156108ca5781810151838201526020016108b2565b50505050905001965050505050505060405180910390f35b3480156108ee57600080fd5b50610227611987565b34801561090357600080fd5b506102f4600160a060020a036004351660243515156119be565b34801561092957600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526102f494600160a060020a038135811695602480359092169560443595369560849401918190840183828082843750949750611a429650505050505050565b6102f4600435602435600160c860020a031960443516606435611aa4565b3480156109b657600080fd5b50610227600435611ca7565b3480156109ce57600080fd5b506101fe600435602435611d5c565b3480156109e957600080fd5b506101fe600160a060020a0360043581169060243516611d86565b348015610a1057600080fd5b506102f4600160a060020a0360043516611db4565b348015610a3157600080fd5b506040805160206004803580820135838102808601850190965280855261080495369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750949750611dd79650505050505050565b600160e060020a03191660009081526020819052604090205460ff1690565b60408051808201909152600e81527f486f646c4561727468546f6b656e000000000000000000000000000000000000602082015281565b600090815260026020526040902054600160a060020a031690565b6000610b2f82610fa0565b9050600160a060020a038381169082161415610b4a57600080fd5b33600160a060020a0382161480610b665750610b668133611d86565b1515610b7157600080fd5b600082815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009545b90565b7f01ffc9a70000000000000000000000000000000000000000000000000000000081565b600c5460a060020a900460ff1615610c55576040805160e560020a62461bcd0281526020600482015260126024820152600080516020612750833981519152604482015290519081900360640190fd5b610c60838383611f43565b505050565b6000806000610c748585611fe8565b6000818152600d6020908152604080832054600e90925290912054919760c860020a909102965090945092505050565b6000610caf8361124f565b8210610cba57600080fd5b600160a060020a0383166000908152600760205260409020805483908110610cde57fe5b906000526020600020015490505b92915050565b600c54600090600160a060020a03163314610d0c57600080fd5b600c54604051600160a060020a0390911690303180156108fc02916000818181858888f19350505050158015610d46573d6000803e3d6000fd5b506001905090565b600d6020526000908152604090205460c860020a0281565b600c54600160a060020a03163314610d7d57600080fd5b600c5460a060020a900460ff161515610de0576040805160e560020a62461bcd02815260206004820152601660248201527f436f6e7472616374206973206e6f742070617573656400000000000000000000604482015290519081900360640190fd5b600c805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600066038d7ea4c6800081610e4582600a63ffffffff611ff416565b9250610e57838663ffffffff61200916565b9250831515610e75575066038d7ea4c6800080831015610e75578092505b505092915050565b600e6020526000908152604090205481565b600c5460a060020a900460ff1615610edf576040805160e560020a62461bcd0281526020600482015260126024820152600080516020612750833981519152604482015290519081900360640190fd5b610c60838383612032565b6000908152600d6020908152604080832054600e9092529091205460c860020a90910291565b600090815260016020526040902054600160a060020a0316151590565b6000610f37610bda565b8210610f4257600080fd5b6009805483908110610f5057fe5b90600052602060002001549050919050565b600c5460a060020a900460ff1681565b60006203d090610f80610bda565b1015610f94575066016bcc41e90000610bde565b5066038d7ea4c6800090565b600081815260016020526040812054600160a060020a0316801515610cec57600080fd5b600080600080600080600c60149054906101000a900460ff16151515611022576040805160e560020a62461bcd0281526020600482015260126024820152600080516020612750833981519152604482015290519081900360640190fd5b89519550611031866001610e29565b600c54909250600160a060020a0316331461108c573482111561108c576040805160e560020a62461bcd0281526020600482015260166024820152600080516020612770833981519152604482015290519081900360640190fd5b5060005b858110156112435787818151811015156110a657fe5b90602001906020020151945086818151811015156110c057fe5b9060200190602002015193506111048a828151811015156110dd57fe5b906020019060200201518a838151811015156110f557fe5b90602001906020020151611fe8565b6000818152600d602052604090205490935060c860020a02600160c860020a031916151561117c576040805160e560020a62461bcd02815260206004820152601460248201527f506c6f7420646f6573206e6f742065786973742e000000000000000000000000604482015290519081900360640190fd5b3361118684610fa0565b600160a060020a03161461120a576040805160e560020a62461bcd02815260206004820152603160248201527f5570646174652063616e206f6e6c792062652063617272696564206f7574206260448201527f792074686520706c6f74206f776e65722e000000000000000000000000000000606482015290519081900360840190fd5b6000838152600d60209081526040808320805466ffffffffffffff191660c860020a8a04179055600e9091529020849055600101611090565b50505050505050505050565b6000600160a060020a038216151561126657600080fd5b50600160a060020a031660009081526003602052604090205490565b600c54600160a060020a0316331461129957600080fd5b600c54604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a2600c805473ffffffffffffffffffffffffffffffffffffffff19169055565b600c54600160a060020a0316331461130757600080fd5b600c5460a060020a900460ff1615611357576040805160e560020a62461bcd0281526020600482015260126024820152600080516020612750833981519152604482015290519081900360640190fd5b600c805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600c5460009081908190819060a060020a900460ff16156113ff576040805160e560020a62461bcd0281526020600482015260126024820152600080516020612750833981519152604482015290519081900360640190fd5b611407610f72565b915061141560016000610e29565b600c54909150600160a060020a0316331461147257818101341015611472576040805160e560020a62461bcd0281526020600482015260166024820152600080516020612770833981519152604482015290519081900360640190fd5b61147c8888611d5c565b92506001831515146114d8576040805160e560020a62461bcd02815260206004820152601360248201527f4c6174206c6f6e6720697320696e76616c696400000000000000000000000000604482015290519081900360640190fd5b6114e28888611fe8565b6000818152600d602052604090205490945060c860020a02600160c860020a03191615611559576040805160e560020a62461bcd02815260206004820152601460248201527f506c6f7420616c7265616479206578697374732e000000000000000000000000604482015290519081900360640190fd5b611564848787612064565b5050505050505050565b600c54600160a060020a031681565b600080600080600080600080600c60149054906101000a900460ff161515156115de576040805160e560020a62461bcd0281526020600482015260126024820152600080516020612750833981519152604482015290519081900360640190fd5b8b5197506115ea610f72565b92506115f7886000610e29565b600c54909250600160a060020a03163314611663578161161d848a63ffffffff61200916565b01341015611663576040805160e560020a62461bcd0281526020600482015260166024820152600080516020612770833981519152604482015290519081900360640190fd5b5060005b878110156117ea57898181518110151561167d57fe5b906020019060200201519650888181518110151561169757fe5b9060200190602002015195506116db8c828151811015156116b457fe5b906020019060200201518c838151811015156116cc57fe5b90602001906020020151611d5c565b9350600184151514611737576040805160e560020a62461bcd02815260206004820152601360248201527f4c6174206c6f6e6720697320696e76616c696400000000000000000000000000604482015290519081900360640190fd5b6117608c8281518110151561174857fe5b906020019060200201518c838151811015156110f557fe5b6000818152600d602052604090205490955060c860020a02600160c860020a031916156117d7576040805160e560020a62461bcd02815260206004820152601460248201527f506c6f7420616c7265616479206578697374732e000000000000000000000000604482015290519081900360640190fd5b6117e2858888612064565b600101611667565b505050505050505050505050565b60608060606000606080606060008851945084604051908082528060200260200182016040528015611834578160200160208202803883390190505b50935084604051908082528060200260200182016040528015611861578160200160208202803883390190505b5092508460405190808252806020026020018201604052801561188e578160200160208202803883390190505b509150600090505b848110156119785788818151811015156118ac57fe5b9060200190602002015184828151811015156118c457fe5b602090810290910101528851600d906000908b90849081106118e257fe5b6020908102909101810151825281019190915260400160002054835160c860020a9091029084908390811061191357fe5b600160c860020a03199092166020928302909101909101528851600e906000908b908490811061193f57fe5b90602001906020020151815260200190815260200160002054828281518110151561196657fe5b60209081029091010152600101611896565b50919790965090945092505050565b60408051808201909152600481527f4845415200000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a0382163314156119d457600080fd5b336000818152600460209081526040808320600160a060020a03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b600c5460a060020a900460ff1615611a92576040805160e560020a62461bcd0281526020600482015260126024820152600080516020612750833981519152604482015290519081900360640190fd5b611a9e8484848461209f565b50505050565b600c54600090819060a060020a900460ff1615611af9576040805160e560020a62461bcd0281526020600482015260126024820152600080516020612750833981519152604482015290519081900360640190fd5b611b038686611fe8565b9150611b10600180610e29565b905033611b1c83610fa0565b600160a060020a031614611ba0576040805160e560020a62461bcd02815260206004820152603160248201527f5570646174652063616e206f6e6c792062652063617272696564206f7574206260448201527f792074686520706c6f74206f776e65722e000000000000000000000000000000606482015290519081900360840190fd5b600c54600160a060020a03163314611bf85734811115611bf8576040805160e560020a62461bcd0281526020600482015260166024820152600080516020612770833981519152604482015290519081900360640190fd5b6000828152600d602052604090205460c860020a02600160c860020a0319161515611c6d576040805160e560020a62461bcd02815260206004820152601460248201527f506c6f7420646f6573206e6f742065786973742e000000000000000000000000604482015290519081900360640190fd5b506000908152600d60209081526040808320805466ffffffffffffff191660c860020a90960495909517909455600e905291909120555050565b6060611cb282610f10565b1515611cbd57600080fd5b6000828152600b602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015611d505780601f10611d2557610100808354040283529160200191611d50565b820191906000526020600020905b815481529060010190602001808311611d3357829003601f168201915b50505050509050919050565b600060058306158015611d70575060088206155b15611d7d57506001610cec565b50600092915050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205460ff1690565b600c54600160a060020a03163314611dcb57600080fd5b611dd4816120de565b50565b6060806060600080606080606060008a51955085604051908082528060200260200182016040528015611e14578160200160208202803883390190505b50935085604051908082528060200260200182016040528015611e41578160200160208202803883390190505b50925085604051908082528060200260200182016040528015611e6e578160200160208202803883390190505b509150600090505b85811015611f3257611ea78b82815181101515611e8f57fe5b906020019060200201518b838151811015156110f557fe5b9450848482815181101515611eb857fe5b60209081029091018101919091526000868152600d9091526040902054835160c860020a90910290849083908110611eec57fe5b600160c860020a031990921660209283029091018201526000868152600e90915260409020548251839083908110611f2057fe5b60209081029091010152600101611e76565b509199909850909650945050505050565b80611f4e338261215c565b1515611f5957600080fd5b600160a060020a0384161515611f6e57600080fd5b600160a060020a0383161515611f8357600080fd5b611f8d84836121bb565b611f97848361222c565b611fa18383612365565b8183600160a060020a031685600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b633b9aca009091020190565b6000818381151561200157fe5b049392505050565b600082151561201a57506000610cec565b5081810281838281151561202a57fe5b0414610cec57fe5b8061203d338261215c565b151561204857600080fd5b611a9e8484846020604051908101604052806000815250611a42565b6000838152600d60209081526040808320805466ffffffffffffff191660c860020a8704179055600e9091529020819055610c6033846123ae565b816120aa338261215c565b15156120b557600080fd5b6120c0858585610c05565b6120cc858585856123fd565b15156120d757600080fd5b5050505050565b600160a060020a03811615156120f357600080fd5b600c54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008061216883610fa0565b905080600160a060020a031684600160a060020a031614806121a3575083600160a060020a031661219884610b09565b600160a060020a0316145b806121b357506121b38185611d86565b949350505050565b81600160a060020a03166121ce82610fa0565b600160a060020a0316146121e157600080fd5b600081815260026020526040902054600160a060020a031615612228576000818152600260205260409020805473ffffffffffffffffffffffffffffffffffffffff191690555b5050565b600080600061223b858561256a565b600084815260086020908152604080832054600160a060020a038916845260079092529091205490935061227690600163ffffffff61260016565b600160a060020a03861660009081526007602052604090208054919350908390811061229e57fe5b90600052602060002001549050806007600087600160a060020a0316600160a060020a03168152602001908152602001600020848154811015156122de57fe5b6000918252602080832090910192909255600160a060020a038716815260079091526040812080548490811061231057fe5b6000918252602080832090910192909255600160a060020a0387168152600790915260409020805490612347906000198301612712565b50600093845260086020526040808520859055908452909220555050565b60006123718383612612565b50600160a060020a039091166000908152600760209081526040808320805460018101825590845282842081018590559383526008909152902055565b6123b882826126a2565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af015550565b60008061241285600160a060020a03166126fd565b15156124215760019150612561565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081523360048201818152600160a060020a03898116602485015260448401889052608060648501908152875160848601528751918a169463150b7a0294938c938b938b93909160a490910190602085019080838360005b838110156124b457818101518382015260200161249c565b50505050905090810190601f1680156124e15780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561250357600080fd5b505af1158015612517573d6000803e3d6000fd5b505050506040513d602081101561252d57600080fd5b5051600160e060020a031981167f150b7a020000000000000000000000000000000000000000000000000000000014925090505b50949350505050565b81600160a060020a031661257d82610fa0565b600160a060020a03161461259057600080fd5b600160a060020a0382166000908152600360205260409020546125ba90600163ffffffff61260016565b600160a060020a03909216600090815260036020908152604080832094909455918152600190915220805473ffffffffffffffffffffffffffffffffffffffff19169055565b60008282111561260c57fe5b50900390565b600081815260016020526040902054600160a060020a03161561263457600080fd5b6000818152600160208181526040808420805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038816908117909155845260039091529091205461268291612705565b600160a060020a0390921660009081526003602052604090209190915550565b600160a060020a03821615156126b757600080fd5b6126c18282612365565b6040518190600160a060020a038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000903b1190565b81810182811015610cec57fe5b815481835581811115610c6057600083815260209020610c60918101908301610bde91905b8082111561274b5760008155600101612737565b50905600436f6e7472616374206973207061757365640000000000000000000000000000496e73756666696369656e74204574682073656e742e00000000000000000000a165627a7a7230582015ed4b5445283d88f2eef74f16c97ab6910766541d9ff959fc5de1cb2fa9ace40029

Deployed Bytecode

0x6080604052600436106101d75763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166301ffc9a781146101dc57806306fdde0314610212578063081812fc1461029c578063095ea7b3146102d057806318160ddd146102f657806319fa8f501461031d57806323b872dd1461034f5780632c837334146103795780632f745c59146103bb5780633ccfd60b146103df5780633e523e56146103f45780633f4ba83a146104295780633f9b0af21461043e57806341cb2bbf1461045b57806342842e0e1461047357806346b7c7871461049d5780634f558e79146104d95780634f6ccce7146104f15780635c975abb146105095780635d0413d11461051e5780636352211e1461053357806364fb3d1f1461054b57806370a082311461063e578063715018a61461065f5780638456cb5914610674578063892b9df9146106895780638da5cb5b146106a75780639184671f146106bc57806395c04de6146107af57806395d89b41146108e2578063a22cb465146108f7578063b88d4fde1461091d578063bda1c7111461098c578063c87b56dd146109aa578063d8fde871146109c2578063e985e9c5146109dd578063f2fde38b14610a04578063f63582ad14610a25575b600080fd5b3480156101e857600080fd5b506101fe600160e060020a031960043516610ab3565b604080519115158252519081900360200190f35b34801561021e57600080fd5b50610227610ad2565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610261578181015183820152602001610249565b50505050905090810190601f16801561028e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102a857600080fd5b506102b4600435610b09565b60408051600160a060020a039092168252519081900360200190f35b3480156102dc57600080fd5b506102f4600160a060020a0360043516602435610b24565b005b34801561030257600080fd5b5061030b610bda565b60408051918252519081900360200190f35b34801561032957600080fd5b50610332610be1565b60408051600160e060020a03199092168252519081900360200190f35b34801561035b57600080fd5b506102f4600160a060020a0360043581169060243516604435610c05565b34801561038557600080fd5b50610394600435602435610c65565b60408051938452600160c860020a0319909216602084015282820152519081900360600190f35b3480156103c757600080fd5b5061030b600160a060020a0360043516602435610ca4565b3480156103eb57600080fd5b506101fe610cf2565b34801561040057600080fd5b5061040c600435610d4e565b60408051600160c860020a03199092168252519081900360200190f35b34801561043557600080fd5b506102f4610d66565b34801561044a57600080fd5b5061030b6004356024351515610e29565b34801561046757600080fd5b5061030b600435610e7d565b34801561047f57600080fd5b506102f4600160a060020a0360043581169060243516604435610e8f565b3480156104a957600080fd5b506104b5600435610eea565b60408051600160c860020a0319909316835260208301919091528051918290030190f35b3480156104e557600080fd5b506101fe600435610f10565b3480156104fd57600080fd5b5061030b600435610f2d565b34801561051557600080fd5b506101fe610f62565b34801561052a57600080fd5b5061030b610f72565b34801561053f57600080fd5b506102b4600435610fa0565b604080516020600480358082013583810280860185019096528085526102f495369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750949750610fc49650505050505050565b34801561064a57600080fd5b5061030b600160a060020a036004351661124f565b34801561066b57600080fd5b506102f4611282565b34801561068057600080fd5b506102f46112f0565b6102f4600435602435600160c860020a0319604435166064356113a6565b3480156106b357600080fd5b506102b461156e565b604080516020600480358082013583810280860185019096528085526102f495369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a99890198929750908201955093508392508501908490808284375094975061157d9650505050505050565b3480156107bb57600080fd5b5060408051602060048035808201358381028086018501909652808552610804953695939460249493850192918291850190849080828437509497506117f89650505050505050565b60405180806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b8381101561084c578181015183820152602001610834565b50505050905001848103835286818151815260200191508051906020019060200280838360005b8381101561088b578181015183820152602001610873565b50505050905001848103825285818151815260200191508051906020019060200280838360005b838110156108ca5781810151838201526020016108b2565b50505050905001965050505050505060405180910390f35b3480156108ee57600080fd5b50610227611987565b34801561090357600080fd5b506102f4600160a060020a036004351660243515156119be565b34801561092957600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526102f494600160a060020a038135811695602480359092169560443595369560849401918190840183828082843750949750611a429650505050505050565b6102f4600435602435600160c860020a031960443516606435611aa4565b3480156109b657600080fd5b50610227600435611ca7565b3480156109ce57600080fd5b506101fe600435602435611d5c565b3480156109e957600080fd5b506101fe600160a060020a0360043581169060243516611d86565b348015610a1057600080fd5b506102f4600160a060020a0360043516611db4565b348015610a3157600080fd5b506040805160206004803580820135838102808601850190965280855261080495369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750949750611dd79650505050505050565b600160e060020a03191660009081526020819052604090205460ff1690565b60408051808201909152600e81527f486f646c4561727468546f6b656e000000000000000000000000000000000000602082015281565b600090815260026020526040902054600160a060020a031690565b6000610b2f82610fa0565b9050600160a060020a038381169082161415610b4a57600080fd5b33600160a060020a0382161480610b665750610b668133611d86565b1515610b7157600080fd5b600082815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009545b90565b7f01ffc9a70000000000000000000000000000000000000000000000000000000081565b600c5460a060020a900460ff1615610c55576040805160e560020a62461bcd0281526020600482015260126024820152600080516020612750833981519152604482015290519081900360640190fd5b610c60838383611f43565b505050565b6000806000610c748585611fe8565b6000818152600d6020908152604080832054600e90925290912054919760c860020a909102965090945092505050565b6000610caf8361124f565b8210610cba57600080fd5b600160a060020a0383166000908152600760205260409020805483908110610cde57fe5b906000526020600020015490505b92915050565b600c54600090600160a060020a03163314610d0c57600080fd5b600c54604051600160a060020a0390911690303180156108fc02916000818181858888f19350505050158015610d46573d6000803e3d6000fd5b506001905090565b600d6020526000908152604090205460c860020a0281565b600c54600160a060020a03163314610d7d57600080fd5b600c5460a060020a900460ff161515610de0576040805160e560020a62461bcd02815260206004820152601660248201527f436f6e7472616374206973206e6f742070617573656400000000000000000000604482015290519081900360640190fd5b600c805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600066038d7ea4c6800081610e4582600a63ffffffff611ff416565b9250610e57838663ffffffff61200916565b9250831515610e75575066038d7ea4c6800080831015610e75578092505b505092915050565b600e6020526000908152604090205481565b600c5460a060020a900460ff1615610edf576040805160e560020a62461bcd0281526020600482015260126024820152600080516020612750833981519152604482015290519081900360640190fd5b610c60838383612032565b6000908152600d6020908152604080832054600e9092529091205460c860020a90910291565b600090815260016020526040902054600160a060020a0316151590565b6000610f37610bda565b8210610f4257600080fd5b6009805483908110610f5057fe5b90600052602060002001549050919050565b600c5460a060020a900460ff1681565b60006203d090610f80610bda565b1015610f94575066016bcc41e90000610bde565b5066038d7ea4c6800090565b600081815260016020526040812054600160a060020a0316801515610cec57600080fd5b600080600080600080600c60149054906101000a900460ff16151515611022576040805160e560020a62461bcd0281526020600482015260126024820152600080516020612750833981519152604482015290519081900360640190fd5b89519550611031866001610e29565b600c54909250600160a060020a0316331461108c573482111561108c576040805160e560020a62461bcd0281526020600482015260166024820152600080516020612770833981519152604482015290519081900360640190fd5b5060005b858110156112435787818151811015156110a657fe5b90602001906020020151945086818151811015156110c057fe5b9060200190602002015193506111048a828151811015156110dd57fe5b906020019060200201518a838151811015156110f557fe5b90602001906020020151611fe8565b6000818152600d602052604090205490935060c860020a02600160c860020a031916151561117c576040805160e560020a62461bcd02815260206004820152601460248201527f506c6f7420646f6573206e6f742065786973742e000000000000000000000000604482015290519081900360640190fd5b3361118684610fa0565b600160a060020a03161461120a576040805160e560020a62461bcd02815260206004820152603160248201527f5570646174652063616e206f6e6c792062652063617272696564206f7574206260448201527f792074686520706c6f74206f776e65722e000000000000000000000000000000606482015290519081900360840190fd5b6000838152600d60209081526040808320805466ffffffffffffff191660c860020a8a04179055600e9091529020849055600101611090565b50505050505050505050565b6000600160a060020a038216151561126657600080fd5b50600160a060020a031660009081526003602052604090205490565b600c54600160a060020a0316331461129957600080fd5b600c54604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a2600c805473ffffffffffffffffffffffffffffffffffffffff19169055565b600c54600160a060020a0316331461130757600080fd5b600c5460a060020a900460ff1615611357576040805160e560020a62461bcd0281526020600482015260126024820152600080516020612750833981519152604482015290519081900360640190fd5b600c805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600c5460009081908190819060a060020a900460ff16156113ff576040805160e560020a62461bcd0281526020600482015260126024820152600080516020612750833981519152604482015290519081900360640190fd5b611407610f72565b915061141560016000610e29565b600c54909150600160a060020a0316331461147257818101341015611472576040805160e560020a62461bcd0281526020600482015260166024820152600080516020612770833981519152604482015290519081900360640190fd5b61147c8888611d5c565b92506001831515146114d8576040805160e560020a62461bcd02815260206004820152601360248201527f4c6174206c6f6e6720697320696e76616c696400000000000000000000000000604482015290519081900360640190fd5b6114e28888611fe8565b6000818152600d602052604090205490945060c860020a02600160c860020a03191615611559576040805160e560020a62461bcd02815260206004820152601460248201527f506c6f7420616c7265616479206578697374732e000000000000000000000000604482015290519081900360640190fd5b611564848787612064565b5050505050505050565b600c54600160a060020a031681565b600080600080600080600080600c60149054906101000a900460ff161515156115de576040805160e560020a62461bcd0281526020600482015260126024820152600080516020612750833981519152604482015290519081900360640190fd5b8b5197506115ea610f72565b92506115f7886000610e29565b600c54909250600160a060020a03163314611663578161161d848a63ffffffff61200916565b01341015611663576040805160e560020a62461bcd0281526020600482015260166024820152600080516020612770833981519152604482015290519081900360640190fd5b5060005b878110156117ea57898181518110151561167d57fe5b906020019060200201519650888181518110151561169757fe5b9060200190602002015195506116db8c828151811015156116b457fe5b906020019060200201518c838151811015156116cc57fe5b90602001906020020151611d5c565b9350600184151514611737576040805160e560020a62461bcd02815260206004820152601360248201527f4c6174206c6f6e6720697320696e76616c696400000000000000000000000000604482015290519081900360640190fd5b6117608c8281518110151561174857fe5b906020019060200201518c838151811015156110f557fe5b6000818152600d602052604090205490955060c860020a02600160c860020a031916156117d7576040805160e560020a62461bcd02815260206004820152601460248201527f506c6f7420616c7265616479206578697374732e000000000000000000000000604482015290519081900360640190fd5b6117e2858888612064565b600101611667565b505050505050505050505050565b60608060606000606080606060008851945084604051908082528060200260200182016040528015611834578160200160208202803883390190505b50935084604051908082528060200260200182016040528015611861578160200160208202803883390190505b5092508460405190808252806020026020018201604052801561188e578160200160208202803883390190505b509150600090505b848110156119785788818151811015156118ac57fe5b9060200190602002015184828151811015156118c457fe5b602090810290910101528851600d906000908b90849081106118e257fe5b6020908102909101810151825281019190915260400160002054835160c860020a9091029084908390811061191357fe5b600160c860020a03199092166020928302909101909101528851600e906000908b908490811061193f57fe5b90602001906020020151815260200190815260200160002054828281518110151561196657fe5b60209081029091010152600101611896565b50919790965090945092505050565b60408051808201909152600481527f4845415200000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a0382163314156119d457600080fd5b336000818152600460209081526040808320600160a060020a03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b600c5460a060020a900460ff1615611a92576040805160e560020a62461bcd0281526020600482015260126024820152600080516020612750833981519152604482015290519081900360640190fd5b611a9e8484848461209f565b50505050565b600c54600090819060a060020a900460ff1615611af9576040805160e560020a62461bcd0281526020600482015260126024820152600080516020612750833981519152604482015290519081900360640190fd5b611b038686611fe8565b9150611b10600180610e29565b905033611b1c83610fa0565b600160a060020a031614611ba0576040805160e560020a62461bcd02815260206004820152603160248201527f5570646174652063616e206f6e6c792062652063617272696564206f7574206260448201527f792074686520706c6f74206f776e65722e000000000000000000000000000000606482015290519081900360840190fd5b600c54600160a060020a03163314611bf85734811115611bf8576040805160e560020a62461bcd0281526020600482015260166024820152600080516020612770833981519152604482015290519081900360640190fd5b6000828152600d602052604090205460c860020a02600160c860020a0319161515611c6d576040805160e560020a62461bcd02815260206004820152601460248201527f506c6f7420646f6573206e6f742065786973742e000000000000000000000000604482015290519081900360640190fd5b506000908152600d60209081526040808320805466ffffffffffffff191660c860020a90960495909517909455600e905291909120555050565b6060611cb282610f10565b1515611cbd57600080fd5b6000828152600b602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015611d505780601f10611d2557610100808354040283529160200191611d50565b820191906000526020600020905b815481529060010190602001808311611d3357829003601f168201915b50505050509050919050565b600060058306158015611d70575060088206155b15611d7d57506001610cec565b50600092915050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205460ff1690565b600c54600160a060020a03163314611dcb57600080fd5b611dd4816120de565b50565b6060806060600080606080606060008a51955085604051908082528060200260200182016040528015611e14578160200160208202803883390190505b50935085604051908082528060200260200182016040528015611e41578160200160208202803883390190505b50925085604051908082528060200260200182016040528015611e6e578160200160208202803883390190505b509150600090505b85811015611f3257611ea78b82815181101515611e8f57fe5b906020019060200201518b838151811015156110f557fe5b9450848482815181101515611eb857fe5b60209081029091018101919091526000868152600d9091526040902054835160c860020a90910290849083908110611eec57fe5b600160c860020a031990921660209283029091018201526000868152600e90915260409020548251839083908110611f2057fe5b60209081029091010152600101611e76565b509199909850909650945050505050565b80611f4e338261215c565b1515611f5957600080fd5b600160a060020a0384161515611f6e57600080fd5b600160a060020a0383161515611f8357600080fd5b611f8d84836121bb565b611f97848361222c565b611fa18383612365565b8183600160a060020a031685600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b633b9aca009091020190565b6000818381151561200157fe5b049392505050565b600082151561201a57506000610cec565b5081810281838281151561202a57fe5b0414610cec57fe5b8061203d338261215c565b151561204857600080fd5b611a9e8484846020604051908101604052806000815250611a42565b6000838152600d60209081526040808320805466ffffffffffffff191660c860020a8704179055600e9091529020819055610c6033846123ae565b816120aa338261215c565b15156120b557600080fd5b6120c0858585610c05565b6120cc858585856123fd565b15156120d757600080fd5b5050505050565b600160a060020a03811615156120f357600080fd5b600c54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008061216883610fa0565b905080600160a060020a031684600160a060020a031614806121a3575083600160a060020a031661219884610b09565b600160a060020a0316145b806121b357506121b38185611d86565b949350505050565b81600160a060020a03166121ce82610fa0565b600160a060020a0316146121e157600080fd5b600081815260026020526040902054600160a060020a031615612228576000818152600260205260409020805473ffffffffffffffffffffffffffffffffffffffff191690555b5050565b600080600061223b858561256a565b600084815260086020908152604080832054600160a060020a038916845260079092529091205490935061227690600163ffffffff61260016565b600160a060020a03861660009081526007602052604090208054919350908390811061229e57fe5b90600052602060002001549050806007600087600160a060020a0316600160a060020a03168152602001908152602001600020848154811015156122de57fe5b6000918252602080832090910192909255600160a060020a038716815260079091526040812080548490811061231057fe5b6000918252602080832090910192909255600160a060020a0387168152600790915260409020805490612347906000198301612712565b50600093845260086020526040808520859055908452909220555050565b60006123718383612612565b50600160a060020a039091166000908152600760209081526040808320805460018101825590845282842081018590559383526008909152902055565b6123b882826126a2565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af015550565b60008061241285600160a060020a03166126fd565b15156124215760019150612561565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081523360048201818152600160a060020a03898116602485015260448401889052608060648501908152875160848601528751918a169463150b7a0294938c938b938b93909160a490910190602085019080838360005b838110156124b457818101518382015260200161249c565b50505050905090810190601f1680156124e15780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561250357600080fd5b505af1158015612517573d6000803e3d6000fd5b505050506040513d602081101561252d57600080fd5b5051600160e060020a031981167f150b7a020000000000000000000000000000000000000000000000000000000014925090505b50949350505050565b81600160a060020a031661257d82610fa0565b600160a060020a03161461259057600080fd5b600160a060020a0382166000908152600360205260409020546125ba90600163ffffffff61260016565b600160a060020a03909216600090815260036020908152604080832094909455918152600190915220805473ffffffffffffffffffffffffffffffffffffffff19169055565b60008282111561260c57fe5b50900390565b600081815260016020526040902054600160a060020a03161561263457600080fd5b6000818152600160208181526040808420805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038816908117909155845260039091529091205461268291612705565b600160a060020a0390921660009081526003602052604090209190915550565b600160a060020a03821615156126b757600080fd5b6126c18282612365565b6040518190600160a060020a038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000903b1190565b81810182811015610cec57fe5b815481835581811115610c6057600083815260209020610c60918101908301610bde91905b8082111561274b5760008155600101612737565b50905600436f6e7472616374206973207061757365640000000000000000000000000000496e73756666696369656e74204574682073656e742e00000000000000000000a165627a7a7230582015ed4b5445283d88f2eef74f16c97ab6910766541d9ff959fc5de1cb2fa9ace40029

Swarm Source

bzzr://15ed4b5445283d88f2eef74f16c97ab6910766541d9ff959fc5de1cb2fa9ace4
Loading...
Loading
Loading...
Loading
[ 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.