ETH Price: $3,394.31 (+6.33%)
Gas: 13 Gwei

Token

OLCF (OLCF)
 

Overview

Max Total Supply

6,900,000,000 OLCF

Holders

1,882 (0.00%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH (+0.04%)

Onchain Market Cap

$8,114,875.41

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

OL Portal offers neurobots marketplace whereby users can design, create, train own AI bot and sell it to users of any messenger.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OLCF

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-01-02
*/

pragma solidity ^0.4.18;

library SafeMath {


  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
  }


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


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


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

contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) public constant returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public constant returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(msg.sender, _to, _value);
    return true;
  }

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

}


contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    Transfer(_from, _to, _value);
    return true;
  }

  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
    return true;
  }

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

  function increaseApproval (address _spender, uint _addedValue) public returns (bool success) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  function decreaseApproval (address _spender, uint _subtractedValue) public returns (bool success) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

contract OLCF is StandardToken {

  string public constant name = "OLCF";
  string public constant symbol = "OLCF";
  uint8 public constant decimals = 18;

  uint256 public constant INITIAL_SUPPLY = 6900000000 * (10 ** uint256(decimals));


  function OLCF() public {
    totalSupply = INITIAL_SUPPLY;
    balances[msg.sender] = INITIAL_SUPPLY;
    Transfer(0x0, msg.sender, INITIAL_SUPPLY);
  }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"}]

6060604052341561000f57600080fd5b6b164b8bd581eb74d7740000006000818155600160a060020a0333168082526001602052604080832084905590927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef915190815260200160405180910390a36108248061007d6000396000f3006060604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461017e57806323b872dd146101a35780632ff2e9dc146101cb578063313ce567146101de578063661884631461020757806370a082311461022957806395d89b41146100be578063a9059cbb14610248578063d73dd6231461026a578063dd62ed3e1461028c575b600080fd5b34156100c957600080fd5b6100d16102b1565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561010d5780820151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015357600080fd5b61016a600160a060020a03600435166024356102e8565b604051901515815260200160405180910390f35b341561018957600080fd5b610191610354565b60405190815260200160405180910390f35b34156101ae57600080fd5b61016a600160a060020a036004358116906024351660443561035a565b34156101d657600080fd5b6101916104dc565b34156101e957600080fd5b6101f16104ec565b60405160ff909116815260200160405180910390f35b341561021257600080fd5b61016a600160a060020a03600435166024356104f1565b341561023457600080fd5b610191600160a060020a03600435166105eb565b341561025357600080fd5b61016a600160a060020a0360043516602435610606565b341561027557600080fd5b61016a600160a060020a0360043516602435610701565b341561029757600080fd5b610191600160a060020a03600435811690602435166107a5565b60408051908101604052600481527f4f4c434600000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b6000600160a060020a038316151561037157600080fd5b600160a060020a03841660009081526001602052604090205482111561039657600080fd5b600160a060020a03808516600090815260026020908152604080832033909416835292905220548211156103c957600080fd5b600160a060020a0384166000908152600160205260409020546103f2908363ffffffff6107d016565b600160a060020a038086166000908152600160205260408082209390935590851681522054610427908363ffffffff6107e216565b600160a060020a0380851660009081526001602090815260408083209490945587831682526002815283822033909316825291909152205461046f908363ffffffff6107d016565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b6b164b8bd581eb74d77400000081565b601281565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561054e57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610585565b61055e818463ffffffff6107d016565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526001602052604090205490565b6000600160a060020a038316151561061d57600080fd5b600160a060020a03331660009081526001602052604090205482111561064257600080fd5b600160a060020a03331660009081526001602052604090205461066b908363ffffffff6107d016565b600160a060020a0333811660009081526001602052604080822093909355908516815220546106a0908363ffffffff6107e216565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610739908363ffffffff6107e216565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000828211156107dc57fe5b50900390565b6000828201838110156107f157fe5b93925050505600a165627a7a72305820ea148fd5e4320c5f3de86a0644a2efcf42f13e2fc158a784bef6a44b79037cd50029

Deployed Bytecode

0x6060604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461017e57806323b872dd146101a35780632ff2e9dc146101cb578063313ce567146101de578063661884631461020757806370a082311461022957806395d89b41146100be578063a9059cbb14610248578063d73dd6231461026a578063dd62ed3e1461028c575b600080fd5b34156100c957600080fd5b6100d16102b1565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561010d5780820151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015357600080fd5b61016a600160a060020a03600435166024356102e8565b604051901515815260200160405180910390f35b341561018957600080fd5b610191610354565b60405190815260200160405180910390f35b34156101ae57600080fd5b61016a600160a060020a036004358116906024351660443561035a565b34156101d657600080fd5b6101916104dc565b34156101e957600080fd5b6101f16104ec565b60405160ff909116815260200160405180910390f35b341561021257600080fd5b61016a600160a060020a03600435166024356104f1565b341561023457600080fd5b610191600160a060020a03600435166105eb565b341561025357600080fd5b61016a600160a060020a0360043516602435610606565b341561027557600080fd5b61016a600160a060020a0360043516602435610701565b341561029757600080fd5b610191600160a060020a03600435811690602435166107a5565b60408051908101604052600481527f4f4c434600000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b6000600160a060020a038316151561037157600080fd5b600160a060020a03841660009081526001602052604090205482111561039657600080fd5b600160a060020a03808516600090815260026020908152604080832033909416835292905220548211156103c957600080fd5b600160a060020a0384166000908152600160205260409020546103f2908363ffffffff6107d016565b600160a060020a038086166000908152600160205260408082209390935590851681522054610427908363ffffffff6107e216565b600160a060020a0380851660009081526001602090815260408083209490945587831682526002815283822033909316825291909152205461046f908363ffffffff6107d016565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b6b164b8bd581eb74d77400000081565b601281565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561054e57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610585565b61055e818463ffffffff6107d016565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526001602052604090205490565b6000600160a060020a038316151561061d57600080fd5b600160a060020a03331660009081526001602052604090205482111561064257600080fd5b600160a060020a03331660009081526001602052604090205461066b908363ffffffff6107d016565b600160a060020a0333811660009081526001602052604080822093909355908516815220546106a0908363ffffffff6107e216565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610739908363ffffffff6107e216565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000828211156107dc57fe5b50900390565b6000828201838110156107f157fe5b93925050505600a165627a7a72305820ea148fd5e4320c5f3de86a0644a2efcf42f13e2fc158a784bef6a44b79037cd50029

Deployed Bytecode Sourcemap

3685:413:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3723:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;71:3;;;64:6;52:2;45:3;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2643:187:0;;;;;;;;;;-1:-1:-1;;;;;2643:187:0;;;;;;;;;;;;;;;;;;;;;;;;806:26;;;;;;;;;;;;;;;;;;;;;;;;;;;2188:449;;;;;;;;;;-1:-1:-1;;;;;2188:449:0;;;;;;;;;;;;3849:79;;;;;;;;;;;;3807:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3260:416;;;;;;;;;;-1:-1:-1;;;;;3260:416:0;;;;;;;1938:113;;;;;;;;;;-1:-1:-1;;;;;1938:113:0;;;;;1544:388;;;;;;;;;;-1:-1:-1;;;;;1544:388:0;;;;;;;2984:270;;;;;;;;;;-1:-1:-1;;;;;2984:270:0;;;;;;;2836:142;;;;;;;;;;-1:-1:-1;;;;;2836:142:0;;;;;;;;;;3723:36;;;;;;;;;;;;;;;;;;:::o;2643:187::-;-1:-1:-1;;;;;2731:10:0;2723:19;;2710:4;2723:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;:38;;;2710:4;;2723:29;:19;2768:38;;2755:6;;2768:38;;;;;;;;;;;;;-1:-1:-1;2820:4:0;2643:187;;;;:::o;806:26::-;;;;:::o;2188:449::-;2270:4;-1:-1:-1;;;;;2291:17:0;;;;2283:26;;;;;;-1:-1:-1;;;;;2334:15:0;;;;;;:8;:15;;;;;;2324:25;;;2316:34;;;;;;-1:-1:-1;;;;;2375:14:0;;;;;;;:7;:14;;;;;;;;2390:10;2375:26;;;;;;;;;;2365:36;;;2357:45;;;;;;-1:-1:-1;;;;;2429:15:0;;;;;;:8;:15;;;;;;:27;;2449:6;2429:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;2411:15:0;;;;;;;:8;:15;;;;;;:45;;;;2479:13;;;;;;;:25;;2497:6;2479:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2463:13:0;;;;;;;:8;:13;;;;;;;;:41;;;;2540:14;;;;;:7;:14;;;;;2555:10;2540:26;;;;;;;;;;;:38;;2571:6;2540:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;2511:14:0;;;;;;;:7;:14;;;;;;;;2526:10;2511:26;;;;;;;;;;;:67;;;;2585:28;;;;;;2606:6;;2585:28;;;;;;;;;;;;;-1:-1:-1;2627:4:0;2188:449;;;;;:::o;3849:79::-;3890:38;3849:79;:::o;3807:35::-;3840:2;3807:35;:::o;3260:416::-;-1:-1:-1;;;;;3389:10:0;3381:19;;3344:12;3381:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;3421:27;;;3417:168;;;-1:-1:-1;;;;;3467:10:0;3459:19;;3491:1;3459:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;:33;3417:168;;;3547:30;:8;3560:16;3547:30;:12;:30;:::i;:::-;-1:-1:-1;;;;;3523:10:0;3515:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;:62;3417:168;-1:-1:-1;;;;;3600:10:0;3591:61;;3622:19;;;;:7;:19;;;;;;;;3591:61;;;3622:29;;;;;;;;;;;;3591:61;;;;;;;;;;;;;;;-1:-1:-1;3666:4:0;;3260:416;-1:-1:-1;;;3260:416:0:o;1938:113::-;-1:-1:-1;;;;;2029:16:0;1998:15;2029:16;;;:8;:16;;;;;;;1938:113::o;1544:388::-;1607:4;-1:-1:-1;;;;;1628:17:0;;;;1620:26;;;;;;-1:-1:-1;;;;;1680:10:0;1671:20;;;;;:8;:20;;;;;;1661:30;;;1653:39;;;;;;-1:-1:-1;;;;;1797:10:0;1788:20;;;;;:8;:20;;;;;;:32;;1813:6;1788:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;1774:10:0;1765:20;;;;;;:8;:20;;;;;;:55;;;;1843:13;;;;;;;:25;;1861:6;1843:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;1827:13:0;;;;;;;:8;:13;;;;;;;:41;;;;:13;1884:10;1875:33;;;;;;1901:6;;1875:33;;;;;;;;;;;;;-1:-1:-1;1922:4:0;1544:388;;;;:::o;2984:270::-;-1:-1:-1;;;;;3124:10:0;3116:19;;3063:12;3116:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;:46;;3150:11;3116:46;:33;:46;:::i;:::-;-1:-1:-1;;;;;3092:10:0;3084:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;;:78;;;:29;;:19;;3169:61;;3084:78;3169:61;;;;;;;;;;;;;-1:-1:-1;3244:4:0;2984:270;;;;:::o;2836:142::-;-1:-1:-1;;;;;2947:15:0;;;2914:17;2947:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;2836:142::o;520:113::-;578:7;601:6;;;;594:14;;;;-1:-1:-1;622:5:0;;;520:113::o;641:133::-;699:7;727:5;;;746:6;;;;739:14;;;;767:1;641:133;-1:-1:-1;;;641:133:0:o

Swarm Source

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