ETH Price: $3,395.93 (-1.83%)
Gas: 5 Gwei

Token

FRNCoin (FRNC)
 

Overview

Max Total Supply

300,000,000 FRNC

Holders

1,623

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000012240734444066 FRNC

Value
$0.00
0x91A37680f88468CAa01B871D35286FD8393BD623
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:
FRNCoin

Compiler Version
v0.4.17+commit.bdeb9e52

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2017-10-16
*/

/**
 * This smart contract is modified 2017 by 4new.co.uk to assemble code for creation of FRNCoin with
 * it's unique characteristics. 
 *
 * Licensed under the Apache License, version 2.0
 */

/**
 * This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
 *
 * Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
 */


/**
 * This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
 *
 * Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
 */


/**
 * This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
 *
 * Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
 */







/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) constant returns (uint256);
  function transfer(address to, uint256 value) returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}



/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) constant returns (uint256);
  function transferFrom(address from, address to, uint256 value) returns (bool);
  function approve(address spender, uint256 value) returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

// Temporarily have SafeMath here until all contracts have been migrated to SafeMathLib version from OpenZeppelin



/**
 * Math operations with safety checks
 */
contract SafeMath {
  function safeMul(uint a, uint b) internal returns (uint) {
    uint c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function safeDiv(uint a, uint b) internal returns (uint) {
    assert(b > 0);
    uint c = a / b;
    assert(a == b * c + a % b);
    return c;
  }

  function safeSub(uint a, uint b) internal returns (uint) {
    assert(b <= a);
    return a - b;
  }

  function safeAdd(uint a, uint b) internal returns (uint) {
    uint c = a + b;
    assert(c>=a && c>=b);
    return c;
  }

  function max64(uint64 a, uint64 b) internal constant returns (uint64) {
    return a >= b ? a : b;
  }

  function min64(uint64 a, uint64 b) internal constant returns (uint64) {
    return a < b ? a : b;
  }

  function max256(uint256 a, uint256 b) internal constant returns (uint256) {
    return a >= b ? a : b;
  }

  function min256(uint256 a, uint256 b) internal constant returns (uint256) {
    return a < b ? a : b;
  }

}



/**
 * Standard ERC20 token with Short Hand Attack and approve() race condition mitigation.
 *
 * Based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, SafeMath {

  /* Token supply got increased and a new owner received these tokens */
  event Minted(address receiver, uint amount);

  /* Actual balances of token holders */
  mapping(address => uint) balances;

  /* approve() allowances */
  mapping (address => mapping (address => uint)) allowed;

  /* Interface declaration */
  function isToken() public constant returns (bool weAre) {
    return true;
  }

  function transfer(address _to, uint _value) returns (bool success) {
    balances[msg.sender] = safeSub(balances[msg.sender], _value);
    balances[_to] = safeAdd(balances[_to], _value);
    Transfer(msg.sender, _to, _value);
    return true;
  }

  function transferFrom(address _from, address _to, uint _value) returns (bool success) {
    uint _allowance = allowed[_from][msg.sender];

    balances[_to] = safeAdd(balances[_to], _value);
    balances[_from] = safeSub(balances[_from], _value);
    allowed[_from][msg.sender] = safeSub(_allowance, _value);
    Transfer(_from, _to, _value);
    return true;
  }

  function balanceOf(address _owner) constant returns (uint balance) {
    return balances[_owner];
  }

  function approve(address _spender, uint _value) returns (bool success) {

    // To change the approve amount you first have to reduce the addresses`
    //  allowance to zero by calling `approve(_spender, 0)` if it is not
    //  already 0 to mitigate the race condition described here:
    //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    require((_value == 0) || (allowed[msg.sender][_spender] == 0));

    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
    return true;
  }

  function allowance(address _owner, address _spender) constant returns (uint remaining) {
    return allowed[_owner][_spender];
  }

}


contract BurnableToken is StandardToken {

  address public constant BURN_ADDRESS = 0;

  /** How many tokens we burned */
  event Burned(address burner, uint burnedAmount);

  /**
   * Burn extra tokens from a balance.
   *
   */
  function burn(uint burnAmount) {
    address burner = msg.sender;
    balances[burner] = safeSub(balances[burner], burnAmount);
    totalSupply = safeSub(totalSupply, burnAmount);
    Burned(burner, burnAmount);
  }
}

/**
 * This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
 *
 * Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
 */




/**
 * @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;


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


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


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

}




/**
 * Define interface for releasing the token transfer after a successful crowdsale.
 */
contract ReleasableToken is ERC20, Ownable {

  /* The finalizer contract that allows unlift the transfer limits on this token */
  address public releaseAgent;

  /** A crowdsale contract can release us to the wild if ICO success. If false we are are in transfer lock up period.*/
  bool public released = false;

  /** Map of agents that are allowed to transfer tokens regardless of the lock down period. These are crowdsale contracts and possible the team multisig itself. */
  mapping (address => bool) public transferAgents;

  /**
   * Limit token transfer until the crowdsale is over.
   *
   */
  modifier canTransfer(address _sender) {
    require(released || transferAgents[_sender]);
    _;
  }

  /**
   * Set the contract that can call release and make the token transferable.
   *
   * Design choice. Allow reset the release agent to fix fat finger mistakes.
   */
  function setReleaseAgent(address addr) onlyOwner inReleaseState(false) public {

    // We don't do interface check here as we might want to a normal wallet address to act as a release agent
    releaseAgent = addr;
  }

  /**
   * Owner can allow a particular address (a crowdsale contract) to transfer tokens despite the lock up period.
   */
  function setTransferAgent(address addr, bool state) onlyOwner inReleaseState(false) public {
    transferAgents[addr] = state;
  }

  /**
   * One way function to release the tokens to the wild.
   *
   * Can be called only from the release agent that is the final ICO contract. It is only called if the crowdsale has been success (first milestone reached).
   */
  function releaseTokenTransfer() public onlyReleaseAgent {
    released = true;
  }

  /** The function can be called only before or after the tokens have been releasesd */
  modifier inReleaseState(bool releaseState) {
    require(releaseState == released);
    _;
  }

  /** The function can be called only by a whitelisted release agent. */
  modifier onlyReleaseAgent() {
    require(msg.sender == releaseAgent);
    _;
  }

  function transfer(address _to, uint _value) canTransfer(msg.sender) returns (bool success) {
    // Call StandardToken.transfer()
   return super.transfer(_to, _value);
  }

  function transferFrom(address _from, address _to, uint _value) canTransfer(_from) returns (bool success) {
    // Call StandardToken.transferForm()
    return super.transferFrom(_from, _to, _value);
  }

}



/**
 * FRNCoin
 *
 * Capped, burnable, and transfer releaseable ERC20 token 
 * for 4new.co.uk
 *
 */
contract FRNCoin is ReleasableToken, BurnableToken {

  /** Name and symbol were updated. */
  event UpdatedTokenInformation(string newName, string newSymbol);

  string public name;

  string public symbol;

  uint public decimals;

  /**
   * Construct the token.
   *
   * @param _name Token name
   * @param _symbol Token symbol
   * @param _initialSupply How many tokens we start with
   * @param _decimals Number of decimal places
   */
  function FRNCoin(string _name, string _symbol, uint _initialSupply, uint _decimals) {
    // Cannot create a token without supply
    require(_initialSupply != 0);

    owner = msg.sender;

    name = _name;
    symbol = _symbol;

    totalSupply = _initialSupply;

    decimals = _decimals;

    // Create initially all balance on owner
    balances[owner] = totalSupply;
  }

  /**
   * To update token information at the end.
   *
   */
  function setTokenInformation(string _name, string _symbol) onlyOwner {
    name = _name;
    symbol = _symbol;

    UpdatedTokenInformation(name, symbol);
  }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setTransferAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"setReleaseAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"burnAmount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"}],"name":"setTokenInformation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"releaseTokenTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"transferAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"released","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"releaseAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isToken","outputs":[{"name":"weAre","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":"BURN_ADDRESS","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_initialSupply","type":"uint256"},{"name":"_decimals","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newName","type":"string"},{"indexed":false,"name":"newSymbol","type":"string"}],"name":"UpdatedTokenInformation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"burner","type":"address"},{"indexed":false,"name":"burnedAmount","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"receiver","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60606040526002805460a060020a60ff0219169055341561001f57600080fd5b604051610ead380380610ead833981016040528080518201919060200180518201919060200180519190602001805160018054600160a060020a03191633600160a060020a031617905591505081151561007857600080fd5b60018054600160a060020a03191633600160a060020a031617905560068480516100a69291602001906100e6565b5060078380516100ba9291602001906100e6565b506000828155600891909155600154600160a060020a0316815260046020526040902055506101819050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061012757805160ff1916838001178555610154565b82800160010185558215610154579182015b82811115610154578251825591602001919060010190610139565b50610160929150610164565b5090565b61017e91905b80821115610160576000815560010161016a565b90565b610d1d806101906000396000f3006060604052361561011a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302f652a3811461011f57806306fdde0314610145578063095ea7b3146101cf57806318160ddd1461020557806323b872dd1461022a57806329ff4f5314610252578063313ce5671461027157806342966c68146102845780634eee966f1461029a5780635f412d4f1461032d57806370a0823114610340578063867c28571461035f5780638da5cb5b1461037e57806395d89b41146103ad57806396132521146103c0578063a9059cbb146103d3578063d1f276d3146103f5578063dd62ed3e14610408578063eefa597b1461042d578063f2fde38b14610440578063fccc28131461045f575b600080fd5b341561012a57600080fd5b610143600160a060020a03600435166024351515610472565b005b341561015057600080fd5b6101586104e4565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019457808201518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101da57600080fd5b6101f1600160a060020a0360043516602435610582565b604051901515815260200160405180910390f35b341561021057600080fd5b610218610628565b60405190815260200160405180910390f35b341561023557600080fd5b6101f1600160a060020a036004358116906024351660443561062e565b341561025d57600080fd5b610143600160a060020a036004351661072f565b341561027c57600080fd5b6102186107a5565b341561028f57600080fd5b6101436004356107ab565b34156102a557600080fd5b61014360046024813581810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f01602080910402602001604051908101604052818152929190602084018383808284375094965061084195505050505050565b341561033857600080fd5b6101436109af565b341561034b57600080fd5b610218600160a060020a0360043516610a01565b341561036a57600080fd5b6101f1600160a060020a0360043516610a1c565b341561038957600080fd5b610391610a31565b604051600160a060020a03909116815260200160405180910390f35b34156103b857600080fd5b610158610a40565b34156103cb57600080fd5b6101f1610aab565b34156103de57600080fd5b6101f1600160a060020a0360043516602435610acc565b341561040057600080fd5b610391610b7f565b341561041357600080fd5b610218600160a060020a0360043581169060243516610b8e565b341561043857600080fd5b6101f1610bb9565b341561044b57600080fd5b610143600160a060020a0360043516610bbf565b341561046a57600080fd5b610391610c1e565b60015433600160a060020a0390811691161461048d57600080fd5b60025460009074010000000000000000000000000000000000000000900460ff16156104b857600080fd5b50600160a060020a03919091166000908152600360205260409020805460ff1916911515919091179055565b60068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561057a5780601f1061054f5761010080835404028352916020019161057a565b820191906000526020600020905b81548152906001019060200180831161055d57829003601f168201915b505050505081565b60008115806105b45750600160a060020a03338116600090815260056020908152604080832093871683529290522054155b15156105bf57600080fd5b600160a060020a03338116600081815260056020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b600160a060020a03808416600090815260056020908152604080832033851684528252808320549386168352600490915281205490919061066f9084610c23565b600160a060020a03808616600090815260046020526040808220939093559087168152205461069e9084610c47565b600160a060020a0386166000908152600460205260409020556106c18184610c47565b600160a060020a03808716600081815260056020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b60015433600160a060020a0390811691161461074a57600080fd5b60025460009074010000000000000000000000000000000000000000900460ff161561077557600080fd5b506002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60085481565b33600160a060020a0381166000908152600460205260409020546107cf9083610c47565b600160a060020a038216600090815260046020526040812091909155546107f69083610c47565b6000557f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df78183604051600160a060020a03909216825260208201526040908101905180910390a15050565b60015433600160a060020a0390811691161461085c57600080fd5b600682805161086f929160200190610c59565b506007818051610883929160200190610c59565b507fd131ab1e6f279deea74e13a18477e13e2107deb6dc8ae955648948be5841fb46600660076040516040808252835460026000196101006001841615020190911604908201819052819060208201906060830190869080156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b505083810382528454600260001961010060018416150201909116048082526020909101908590801561099b5780601f106109705761010080835404028352916020019161099b565b820191906000526020600020905b81548152906001019060200180831161097e57829003601f168201915b505094505050505060405180910390a15050565b60025433600160a060020a039081169116146109ca57600080fd5b6002805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b600160a060020a031660009081526004602052604090205490565b60036020526000908152604090205460ff1681565b600154600160a060020a031681565b60078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561057a5780601f1061054f5761010080835404028352916020019161057a565b60025474010000000000000000000000000000000000000000900460ff1681565b600160a060020a033316600090815260046020526040812054610aef9083610c47565b600160a060020a033381166000908152600460205260408082209390935590851681522054610b1e9083610c23565b600160a060020a0380851660008181526004602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600254600160a060020a031681565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60015b90565b60015433600160a060020a03908116911614610bda57600080fd5b600160a060020a0381161515610bef57600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600081565b6000828201838110801590610c385750828110155b1515610c4057fe5b9392505050565b600082821115610c5357fe5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610c9a57805160ff1916838001178555610cc7565b82800160010185558215610cc7579182015b82811115610cc7578251825591602001919060010190610cac565b50610cd3929150610cd7565b5090565b610bbc91905b80821115610cd35760008155600101610cdd5600a165627a7a72305820e9b996df78ce5e5200b6d763139a83ce4fdfbf824ddd5c14632ba766087c59f70029000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000f8277896582678ac00000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6060604052361561011a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166302f652a3811461011f57806306fdde0314610145578063095ea7b3146101cf57806318160ddd1461020557806323b872dd1461022a57806329ff4f5314610252578063313ce5671461027157806342966c68146102845780634eee966f1461029a5780635f412d4f1461032d57806370a0823114610340578063867c28571461035f5780638da5cb5b1461037e57806395d89b41146103ad57806396132521146103c0578063a9059cbb146103d3578063d1f276d3146103f5578063dd62ed3e14610408578063eefa597b1461042d578063f2fde38b14610440578063fccc28131461045f575b600080fd5b341561012a57600080fd5b610143600160a060020a03600435166024351515610472565b005b341561015057600080fd5b6101586104e4565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019457808201518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101da57600080fd5b6101f1600160a060020a0360043516602435610582565b604051901515815260200160405180910390f35b341561021057600080fd5b610218610628565b60405190815260200160405180910390f35b341561023557600080fd5b6101f1600160a060020a036004358116906024351660443561062e565b341561025d57600080fd5b610143600160a060020a036004351661072f565b341561027c57600080fd5b6102186107a5565b341561028f57600080fd5b6101436004356107ab565b34156102a557600080fd5b61014360046024813581810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f01602080910402602001604051908101604052818152929190602084018383808284375094965061084195505050505050565b341561033857600080fd5b6101436109af565b341561034b57600080fd5b610218600160a060020a0360043516610a01565b341561036a57600080fd5b6101f1600160a060020a0360043516610a1c565b341561038957600080fd5b610391610a31565b604051600160a060020a03909116815260200160405180910390f35b34156103b857600080fd5b610158610a40565b34156103cb57600080fd5b6101f1610aab565b34156103de57600080fd5b6101f1600160a060020a0360043516602435610acc565b341561040057600080fd5b610391610b7f565b341561041357600080fd5b610218600160a060020a0360043581169060243516610b8e565b341561043857600080fd5b6101f1610bb9565b341561044b57600080fd5b610143600160a060020a0360043516610bbf565b341561046a57600080fd5b610391610c1e565b60015433600160a060020a0390811691161461048d57600080fd5b60025460009074010000000000000000000000000000000000000000900460ff16156104b857600080fd5b50600160a060020a03919091166000908152600360205260409020805460ff1916911515919091179055565b60068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561057a5780601f1061054f5761010080835404028352916020019161057a565b820191906000526020600020905b81548152906001019060200180831161055d57829003601f168201915b505050505081565b60008115806105b45750600160a060020a03338116600090815260056020908152604080832093871683529290522054155b15156105bf57600080fd5b600160a060020a03338116600081815260056020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b600160a060020a03808416600090815260056020908152604080832033851684528252808320549386168352600490915281205490919061066f9084610c23565b600160a060020a03808616600090815260046020526040808220939093559087168152205461069e9084610c47565b600160a060020a0386166000908152600460205260409020556106c18184610c47565b600160a060020a03808716600081815260056020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b60015433600160a060020a0390811691161461074a57600080fd5b60025460009074010000000000000000000000000000000000000000900460ff161561077557600080fd5b506002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60085481565b33600160a060020a0381166000908152600460205260409020546107cf9083610c47565b600160a060020a038216600090815260046020526040812091909155546107f69083610c47565b6000557f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df78183604051600160a060020a03909216825260208201526040908101905180910390a15050565b60015433600160a060020a0390811691161461085c57600080fd5b600682805161086f929160200190610c59565b506007818051610883929160200190610c59565b507fd131ab1e6f279deea74e13a18477e13e2107deb6dc8ae955648948be5841fb46600660076040516040808252835460026000196101006001841615020190911604908201819052819060208201906060830190869080156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b505083810382528454600260001961010060018416150201909116048082526020909101908590801561099b5780601f106109705761010080835404028352916020019161099b565b820191906000526020600020905b81548152906001019060200180831161097e57829003601f168201915b505094505050505060405180910390a15050565b60025433600160a060020a039081169116146109ca57600080fd5b6002805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b600160a060020a031660009081526004602052604090205490565b60036020526000908152604090205460ff1681565b600154600160a060020a031681565b60078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561057a5780601f1061054f5761010080835404028352916020019161057a565b60025474010000000000000000000000000000000000000000900460ff1681565b600160a060020a033316600090815260046020526040812054610aef9083610c47565b600160a060020a033381166000908152600460205260408082209390935590851681522054610b1e9083610c23565b600160a060020a0380851660008181526004602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600254600160a060020a031681565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60015b90565b60015433600160a060020a03908116911614610bda57600080fd5b600160a060020a0381161515610bef57600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600081565b6000828201838110801590610c385750828110155b1515610c4057fe5b9392505050565b600082821115610c5357fe5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610c9a57805160ff1916838001178555610cc7565b82800160010185558215610cc7579182015b82811115610cc7578251825591602001919060010190610cac565b50610cd3929150610cd7565b5090565b610bbc91905b80821115610cd35760008155600101610cdd5600a165627a7a72305820e9b996df78ce5e5200b6d763139a83ce4fdfbf824ddd5c14632ba766087c59f70029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000f8277896582678ac00000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string):
Arg [1] : _symbol (string):
Arg [2] : _initialSupply (uint256): 300000000000000000000000000
Arg [3] : _decimals (uint256): 18

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000f8277896582678ac000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000


Swarm Source

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