ETH Price: $3,635.10 (-2.50%)

Contract

0x94e0bC22BE42aF7DC19Adda0357608aA730F71ed
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer97075622020-03-20 8:45:231718 days ago1584693923IN
0x94e0bC22...A730F71ed
0 ETH0.0014170636
Transfer97073932020-03-20 8:05:161718 days ago1584691516IN
0x94e0bC22...A730F71ed
0 ETH0.0014166336
Transfer97072862020-03-20 7:41:231718 days ago1584690083IN
0x94e0bC22...A730F71ed
0 ETH0.0014166336
Transfer97072692020-03-20 7:38:391718 days ago1584689919IN
0x94e0bC22...A730F71ed
0 ETH0.000133833.4
Transfer96872752020-03-17 5:56:241721 days ago1584424584IN
0x94e0bC22...A730F71ed
0 ETH0.0005436310
Transfer82647282019-08-01 12:08:441950 days ago1564661324IN
0x94e0bC22...A730F71ed
0 ETH0.0005297510

Advanced mode:
Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TES

Compiler Version
v0.5.3+commit.10d17f24

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-07-26
*/

pragma solidity 0.5.3;

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring '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;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
     * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
     * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        require(token.transfer(to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        require(token.transferFrom(from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require((value == 0) || (token.allowance(msg.sender, spender) == 0));
        require(token.approve(spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        require(token.approve(spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value);
        require(token.approve(spender, newAllowance));
    }
}

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev give an account access to this role
     */
    function add(Role storage role, address account) internal {
        require(account != address(0));
        require(!has(role, account));

        role.bearer[account] = true;
    }

    /**
     * @dev remove an account's access to this role
     */
    function remove(Role storage role, address account) internal {
        require(account != address(0));
        require(has(role, account));

        role.bearer[account] = false;
    }

    /**
     * @dev check if an account has this role
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0));
        return role.bearer[account];
    }
}

contract MinterRole {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(msg.sender);
    }

    modifier onlyMinter() {
        require(isMinter(msg.sender));
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(msg.sender);
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

contract PauserRole {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(msg.sender);
    }

    modifier onlyPauser() {
        require(isPauser(msg.sender));
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(msg.sender);
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}



/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is PauserRole {
    event Paused(address account);
    event Unpaused(address account);

    bool private _paused;

    constructor () internal {
        _paused = false;
    }

    /**
     * @return true if the contract is paused, false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!_paused);
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused);
        _;
    }

    /**
     * @dev called by the owner to pause, triggers stopped state
     */
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
}

interface IERC20 {
    function transfer(address to, uint256 value) external returns (bool);

    function approve(address spender, uint256 value) external returns (bool);

    function transferFrom(address from, address to, uint256 value) external returns (bool);

    function totalSupply() external view returns (uint256);

    function balanceOf(address who) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowed;

    uint256 private _totalSupply;

    /**
     * @dev Total number of tokens in existence
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

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

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param owner address The address which owns the funds.
     * @param spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowed[owner][spender];
    }

    /**
     * @dev Transfer token for a specified address
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function transfer(address to, uint256 value) public returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address from, address to, uint256 value) public returns (bool) {
        _transfer(from, to, value);
        _approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Transfer token for a specified addresses
     * @param from The address to transfer from.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Approve an address to spend another addresses' tokens.
     * @param owner The address that owns the tokens.
     * @param spender The address that will spend the tokens.
     * @param value The number of tokens that can be spent.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(spender != address(0));
        require(owner != address(0));

        _allowed[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account, deducting from the sender's allowance for said account. Uses the
     * internal burn function.
     * Emits an Approval event (reflecting the reduced allowance).
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        _burn(account, value);
        _approve(account, msg.sender, _allowed[account][msg.sender].sub(value));
    }
}

contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @return the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

/**
 * @title Pausable token
 * @dev ERC20 modified with pausable transfers.
 */
contract ERC20Pausable is ERC20, Pausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }
    
    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool success) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool success) {
        return super.decreaseAllowance(spender, subtractedValue);
    }
}

/**
 * @title BlacklistAdminRole
 * @dev BlacklistAdmins are responsible for assigning and removing Blacklisted accounts.
 */
contract BlacklistAdminRole {
    using Roles for Roles.Role;

    event BlacklistAdminAdded(address indexed account);
    event BlacklistAdminRemoved(address indexed account);

    Roles.Role private _BlacklistAdmins;

    constructor () internal {
        _addBlacklistAdmin(msg.sender);
    }

    modifier onlyBlacklistAdmin() {
        require(isBlacklistAdmin(msg.sender));
        _;
    }

    function isBlacklistAdmin(address account) public view returns (bool) {
        return _BlacklistAdmins.has(account);
    }

    function addBlacklistAdmin(address account) public onlyBlacklistAdmin {
        _addBlacklistAdmin(account);
    }

    function _addBlacklistAdmin(address account) internal {
        _BlacklistAdmins.add(account);
        emit BlacklistAdminAdded(account);
    }

    function _removeBlacklistAdmin(address account) internal {
        _BlacklistAdmins.remove(account);
        emit BlacklistAdminRemoved(account);
    }
}

/**
 * @title BlacklistedRole
 * @dev Blacklisted accounts may be added by a BlacklistAdmin to prevent them from using the token.  
 */
contract BlacklistedRole is BlacklistAdminRole {
    using Roles for Roles.Role;

    event BlacklistedAdded(address indexed account);
    event BlacklistedRemoved(address indexed account);

    Roles.Role private _Blacklisteds;

    modifier onlyNotBlacklisted() {
        require(!isBlacklisted(msg.sender));
        _;
    }

    function isBlacklisted(address account) public view returns (bool) {
        return _Blacklisteds.has(account);
    }

    function addBlacklisted(address account) public onlyBlacklistAdmin {
        _addBlacklisted(account);
    }

    function removeBlacklisted(address account) public onlyBlacklistAdmin {
        _removeBlacklisted(account);
    }

    function _addBlacklisted(address account) internal {
        _Blacklisteds.add(account);
        emit BlacklistedAdded(account);
    }

    function _removeBlacklisted(address account) internal {
        _Blacklisteds.remove(account);
        emit BlacklistedRemoved(account);
    }
}

contract TES is ERC20Detailed, ERC20Pausable, MinterRole, BlacklistedRole {

  using SafeERC20 for ERC20;
  
    bool bCalled;

    constructor(string memory name, string memory symbol, uint8 decimals, uint256 _totalSupply)
        ERC20Pausable()
        ERC20Detailed(name, symbol, decimals)
        ERC20()
        public
    {
        uint256 _totalSupplyWithDecimals = _totalSupply * 10 ** uint256(decimals);
        mint(msg.sender, _totalSupplyWithDecimals);
        bCalled = false;
    }

    // bCalled used to prevent reentrancy attack
    function approveAndCall(
        address _spender,
        uint256 _value,
        bytes memory _data
    )
        public
        payable
        onlyNotBlacklisted
        whenNotPaused
        returns (bool)
    {
        require(bCalled == false);
        require(_spender != address(this));
        require(approve(_spender, _value));
        // solium-disable-next-line security/no-call-value
        bCalled = true;
        _spender.call.value(msg.value)(_data);
        bCalled = false;
        return true;
    }
    
    function transfer(address to, uint256 value) public onlyNotBlacklisted returns (bool) {
        require(!isBlacklisted(to));
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public onlyNotBlacklisted returns (bool) {
        require(!isBlacklisted(from));
        require(!isBlacklisted(to));
        return super.transferFrom(from, to, value);
    }
    
    function approve(address spender, uint256 value) public onlyNotBlacklisted returns (bool) {
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint addedValue) public onlyNotBlacklisted returns (bool success) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint subtractedValue) public onlyNotBlacklisted returns (bool success) {
        return super.decreaseAllowance(spender, subtractedValue);
    }

    function mint(address to, uint256 value) public onlyNotBlacklisted onlyMinter returns (bool) {
        _mint(to, value);
        return true;
    }
  
    function sudoRetrieveFrom(address from, uint256 value) public onlyNotBlacklisted onlyMinter {
        super._transfer(from, msg.sender, value);
    }
   
    function sudoBurnFrom(address from, uint256 value) public onlyNotBlacklisted onlyMinter {
        _burn(from, value);
    }
}

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":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"sudoRetrieveFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isBlacklistAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addBlacklisted","outputs":[],"payable":false,"stateMutability":"nonpayable","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":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"sudoBurnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[{"name":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"removeBlacklisted","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addBlacklistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"},{"name":"_totalSupply","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"BlacklistedAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"BlacklistedRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"BlacklistAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"BlacklistAdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","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"},{"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"}]

60806040523480156200001157600080fd5b5060405162002a5138038062002a51833981018060405260808110156200003757600080fd5b8101908080516401000000008111156200005057600080fd5b828101905060208101848111156200006757600080fd5b81518560018202830111640100000000821117156200008557600080fd5b50509291906020018051640100000000811115620000a257600080fd5b82810190506020810184811115620000b957600080fd5b8151856001820283011164010000000082111715620000d757600080fd5b50509291906020018051906020019092919080519060200190929190505050838383826000908051906020019062000111929190620006fe565b5081600190805190602001906200012a929190620006fe565b5080600260006101000a81548160ff021916908360ff160217905550505050620001633362000201640100000000026401000000009004565b6000600760006101000a81548160ff02191690831515021790555062000198336200026b640100000000026401000000009004565b620001b233620002d5640100000000026401000000009004565b60008260ff16600a0a82029050620001da33826200033f640100000000026401000000009004565b506000600b60006101000a81548160ff0219169083151502179055505050505050620007ad565b62000225816006620003b36401000000000262001d94179091906401000000009004565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6200028f816008620003b36401000000000262001d94179091906401000000009004565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b620002f9816009620003b36401000000000262001d94179091906401000000009004565b8073ffffffffffffffffffffffffffffffffffffffff167fa6124c7f565d239231ddc9de42e684db7443c994c658117542be9c50f561943860405160405180910390a250565b60006200035b3362000476640100000000026401000000009004565b1515156200036857600080fd5b6200038233620004a3640100000000026401000000009004565b15156200038e57600080fd5b620003a98383620004d0640100000000026401000000009004565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515620003f057600080fd5b6200040b828262000647640100000000026401000000009004565b1515156200041857600080fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006200049c82600a6200064764010000000002620016c2179091906401000000009004565b9050919050565b6000620004c98260086200064764010000000002620016c2179091906401000000009004565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156200050d57600080fd5b6200053281600554620006dc6401000000000262001d73179091906401000000009004565b6005819055506200059a81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620006dc6401000000000262001d73179091906401000000009004565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156200068557600080fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000808284019050838110151515620006f457600080fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200074157805160ff191683800117855562000772565b8280016001018555821562000772579182015b828111156200077157825182559160200191906001019062000754565b5b50905062000781919062000785565b5090565b620007aa91905b80821115620007a65760008160009055506001016200078c565b5090565b90565b61229480620007bd6000396000f3fe6080604052600436106101df576000357c0100000000000000000000000000000000000000000000000000000000900480636ef8d66d11610114578063a457c2d7116100b2578063cae9ca5111610081578063cae9ca5114610a57578063d3ce790514610b54578063dd62ed3e14610ba5578063fe575a8714610c2a576101df565b8063a457c2d7146108b7578063a9059cbb1461092a578063aa271e1a1461099d578063c6a276c214610a06576101df565b80638456cb59116100ee5780638456cb59146107a857806395d89b41146107bf578063983b2d561461084f57806398650275146108a0576101df565b80636ef8d66d146106db57806370a08231146106f257806382dc1ec414610757576101df565b80632514abeb116101815780633f4ba83a1161015b5780633f4ba83a146105b957806340c10f19146105d057806346fbf68e146106435780635c975abb146106ac576101df565b80632514abeb146104ba578063313ce567146105155780633950935114610546576101df565b806316d2e650116101bd57806316d2e6501461034257806318160ddd146103ab578063188efc16146103d657806323b872dd14610427576101df565b806306fdde03146101e4578063095ea7b3146102745780630af06a02146102e7575b600080fd5b3480156101f057600080fd5b506101f9610c93565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023957808201518184015260208101905061021e565b50505050905090810190601f1680156102665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028057600080fd5b506102cd6004803603604081101561029757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d35565b604051808215151515815260200191505060405180910390f35b3480156102f357600080fd5b506103406004803603604081101561030a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d5e565b005b34801561034e57600080fd5b506103916004803603602081101561036557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d96565b604051808215151515815260200191505060405180910390f35b3480156103b757600080fd5b506103c0610db3565b6040518082815260200191505060405180910390f35b3480156103e257600080fd5b50610425600480360360208110156103f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dbd565b005b34801561043357600080fd5b506104a06004803603606081101561044a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ddd565b604051808215151515815260200191505060405180910390f35b3480156104c657600080fd5b50610513600480360360408110156104dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e32565b005b34801561052157600080fd5b5061052a610e69565b604051808260ff1660ff16815260200191505060405180910390f35b34801561055257600080fd5b5061059f6004803603604081101561056957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e80565b604051808215151515815260200191505060405180910390f35b3480156105c557600080fd5b506105ce610ea9565b005b3480156105dc57600080fd5b50610629600480360360408110156105f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f58565b604051808215151515815260200191505060405180910390f35b34801561064f57600080fd5b506106926004803603602081101561066657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f97565b604051808215151515815260200191505060405180910390f35b3480156106b857600080fd5b506106c1610fb4565b604051808215151515815260200191505060405180910390f35b3480156106e757600080fd5b506106f0610fcb565b005b3480156106fe57600080fd5b506107416004803603602081101561071557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fd6565b6040518082815260200191505060405180910390f35b34801561076357600080fd5b506107a66004803603602081101561077a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061101f565b005b3480156107b457600080fd5b506107bd61103f565b005b3480156107cb57600080fd5b506107d46110ef565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108145780820151818401526020810190506107f9565b50505050905090810190601f1680156108415780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561085b57600080fd5b5061089e6004803603602081101561087257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611191565b005b3480156108ac57600080fd5b506108b56111b1565b005b3480156108c357600080fd5b50610910600480360360408110156108da57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111bc565b604051808215151515815260200191505060405180910390f35b34801561093657600080fd5b506109836004803603604081101561094d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111e5565b604051808215151515815260200191505060405180910390f35b3480156109a957600080fd5b506109ec600480360360208110156109c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611223565b604051808215151515815260200191505060405180910390f35b348015610a1257600080fd5b50610a5560048036036020811015610a2957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611240565b005b610b3a60048036036060811015610a6d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610ab457600080fd5b820183602082011115610ac657600080fd5b80359060200191846001830284011164010000000083111715610ae857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611260565b604051808215151515815260200191505060405180910390f35b348015610b6057600080fd5b50610ba360048036036020811015610b7757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113fe565b005b348015610bb157600080fd5b50610c1460048036036040811015610bc857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061141e565b6040518082815260200191505060405180910390f35b348015610c3657600080fd5b50610c7960048036036020811015610c4d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114a5565b604051808215151515815260200191505060405180910390f35b606060008054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d2b5780601f10610d0057610100808354040283529160200191610d2b565b820191906000526020600020905b815481529060010190602001808311610d0e57829003601f168201915b5050505050905090565b6000610d40336114a5565b151515610d4c57600080fd5b610d5683836114c2565b905092915050565b610d67336114a5565b151515610d7357600080fd5b610d7c33611223565b1515610d8757600080fd5b610d928233836114f2565b5050565b6000610dac8260096116c290919063ffffffff16565b9050919050565b6000600554905090565b610dc633610d96565b1515610dd157600080fd5b610dda81611756565b50565b6000610de8336114a5565b151515610df457600080fd5b610dfd846114a5565b151515610e0957600080fd5b610e12836114a5565b151515610e1e57600080fd5b610e298484846117b0565b90509392505050565b610e3b336114a5565b151515610e4757600080fd5b610e5033611223565b1515610e5b57600080fd5b610e6582826117e2565b5050565b6000600260009054906101000a900460ff16905090565b6000610e8b336114a5565b151515610e9757600080fd5b610ea18383611938565b905092915050565b610eb233610f97565b1515610ebd57600080fd5b600760009054906101000a900460ff161515610ed857600080fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000610f63336114a5565b151515610f6f57600080fd5b610f7833611223565b1515610f8357600080fd5b610f8d8383611968565b6001905092915050565b6000610fad8260066116c290919063ffffffff16565b9050919050565b6000600760009054906101000a900460ff16905090565b610fd433611abe565b565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61102833610f97565b151561103357600080fd5b61103c81611b18565b50565b61104833610f97565b151561105357600080fd5b600760009054906101000a900460ff1615151561106f57600080fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b606060018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111875780601f1061115c57610100808354040283529160200191611187565b820191906000526020600020905b81548152906001019060200180831161116a57829003601f168201915b5050505050905090565b61119a33611223565b15156111a557600080fd5b6111ae81611b72565b50565b6111ba33611bcc565b565b60006111c7336114a5565b1515156111d357600080fd5b6111dd8383611c26565b905092915050565b60006111f0336114a5565b1515156111fc57600080fd5b611205836114a5565b15151561121157600080fd5b61121b8383611c56565b905092915050565b60006112398260086116c290919063ffffffff16565b9050919050565b61124933610d96565b151561125457600080fd5b61125d81611c86565b50565b600061126b336114a5565b15151561127757600080fd5b600760009054906101000a900460ff1615151561129357600080fd5b60001515600b60009054906101000a900460ff1615151415156112b557600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141515156112f057600080fd5b6112fa8484610d35565b151561130557600080fd5b6001600b60006101000a81548160ff0219169083151502179055508373ffffffffffffffffffffffffffffffffffffffff1634836040518082805190602001908083835b60208310151561136e5780518252602082019150602081019050602083039250611349565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146113d0576040519150601f19603f3d011682016040523d82523d6000602084013e6113d5565b606091505b5050506000600b60006101000a81548160ff021916908315150217905550600190509392505050565b61140733610d96565b151561141257600080fd5b61141b81611ce0565b50565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006114bb82600a6116c290919063ffffffff16565b9050919050565b6000600760009054906101000a900460ff161515156114e057600080fd5b6114ea8383611d3a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561152e57600080fd5b61158081600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d5190919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061161581600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d7390919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156116ff57600080fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61176a81600a611d9490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fdbe320accb74107e8da655fa6a1e2b454c3102a3985d4201aba99308881a410a60405160405180910390a250565b6000600760009054906101000a900460ff161515156117ce57600080fd5b6117d9848484611e44565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561181e57600080fd5b61183381600554611d5190919063ffffffff16565b60058190555061188b81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d5190919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600760009054906101000a900460ff1615151561195657600080fd5b6119608383611ef5565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156119a457600080fd5b6119b981600554611d7390919063ffffffff16565b600581905550611a1181600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d7390919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611ad2816006611f9a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b611b2c816006611d9490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b611b86816008611d9490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b611be0816008611f9a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b6000600760009054906101000a900460ff16151515611c4457600080fd5b611c4e8383612049565b905092915050565b6000600760009054906101000a900460ff16151515611c7457600080fd5b611c7e83836120ee565b905092915050565b611c9a81600a611f9a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167ff38e60871ec534937251cd91cad807e15f55f1f6815128faecc256e71994b49760405160405180910390a250565b611cf4816009611d9490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fa6124c7f565d239231ddc9de42e684db7443c994c658117542be9c50f561943860405160405180910390a250565b6000611d47338484612105565b6001905092915050565b6000828211151515611d6257600080fd5b600082840390508091505092915050565b6000808284019050838110151515611d8a57600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515611dd057600080fd5b611dda82826116c2565b151515611de657600080fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000611e518484846114f2565b611eea8433611ee585600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d5190919063ffffffff16565b612105565b600190509392505050565b6000611f903384611f8b85600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d7390919063ffffffff16565b612105565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515611fd657600080fd5b611fe082826116c2565b1515611feb57600080fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006120e433846120df85600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d5190919063ffffffff16565b612105565b6001905092915050565b60006120fb3384846114f2565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561214157600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415151561217d57600080fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a350505056fea165627a7a72305820967f7bab464474517a4108c569deb93b0806b9e3ae93f95460ad3028766d0ecd0029000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000011e1a3000000000000000000000000000000000000000000000000000000000000000014546f6b656e697a65642045636f2053797374656d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000035445530000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101df576000357c0100000000000000000000000000000000000000000000000000000000900480636ef8d66d11610114578063a457c2d7116100b2578063cae9ca5111610081578063cae9ca5114610a57578063d3ce790514610b54578063dd62ed3e14610ba5578063fe575a8714610c2a576101df565b8063a457c2d7146108b7578063a9059cbb1461092a578063aa271e1a1461099d578063c6a276c214610a06576101df565b80638456cb59116100ee5780638456cb59146107a857806395d89b41146107bf578063983b2d561461084f57806398650275146108a0576101df565b80636ef8d66d146106db57806370a08231146106f257806382dc1ec414610757576101df565b80632514abeb116101815780633f4ba83a1161015b5780633f4ba83a146105b957806340c10f19146105d057806346fbf68e146106435780635c975abb146106ac576101df565b80632514abeb146104ba578063313ce567146105155780633950935114610546576101df565b806316d2e650116101bd57806316d2e6501461034257806318160ddd146103ab578063188efc16146103d657806323b872dd14610427576101df565b806306fdde03146101e4578063095ea7b3146102745780630af06a02146102e7575b600080fd5b3480156101f057600080fd5b506101f9610c93565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023957808201518184015260208101905061021e565b50505050905090810190601f1680156102665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028057600080fd5b506102cd6004803603604081101561029757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d35565b604051808215151515815260200191505060405180910390f35b3480156102f357600080fd5b506103406004803603604081101561030a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d5e565b005b34801561034e57600080fd5b506103916004803603602081101561036557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d96565b604051808215151515815260200191505060405180910390f35b3480156103b757600080fd5b506103c0610db3565b6040518082815260200191505060405180910390f35b3480156103e257600080fd5b50610425600480360360208110156103f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dbd565b005b34801561043357600080fd5b506104a06004803603606081101561044a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ddd565b604051808215151515815260200191505060405180910390f35b3480156104c657600080fd5b50610513600480360360408110156104dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e32565b005b34801561052157600080fd5b5061052a610e69565b604051808260ff1660ff16815260200191505060405180910390f35b34801561055257600080fd5b5061059f6004803603604081101561056957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e80565b604051808215151515815260200191505060405180910390f35b3480156105c557600080fd5b506105ce610ea9565b005b3480156105dc57600080fd5b50610629600480360360408110156105f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f58565b604051808215151515815260200191505060405180910390f35b34801561064f57600080fd5b506106926004803603602081101561066657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f97565b604051808215151515815260200191505060405180910390f35b3480156106b857600080fd5b506106c1610fb4565b604051808215151515815260200191505060405180910390f35b3480156106e757600080fd5b506106f0610fcb565b005b3480156106fe57600080fd5b506107416004803603602081101561071557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fd6565b6040518082815260200191505060405180910390f35b34801561076357600080fd5b506107a66004803603602081101561077a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061101f565b005b3480156107b457600080fd5b506107bd61103f565b005b3480156107cb57600080fd5b506107d46110ef565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108145780820151818401526020810190506107f9565b50505050905090810190601f1680156108415780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561085b57600080fd5b5061089e6004803603602081101561087257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611191565b005b3480156108ac57600080fd5b506108b56111b1565b005b3480156108c357600080fd5b50610910600480360360408110156108da57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111bc565b604051808215151515815260200191505060405180910390f35b34801561093657600080fd5b506109836004803603604081101561094d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111e5565b604051808215151515815260200191505060405180910390f35b3480156109a957600080fd5b506109ec600480360360208110156109c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611223565b604051808215151515815260200191505060405180910390f35b348015610a1257600080fd5b50610a5560048036036020811015610a2957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611240565b005b610b3a60048036036060811015610a6d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610ab457600080fd5b820183602082011115610ac657600080fd5b80359060200191846001830284011164010000000083111715610ae857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611260565b604051808215151515815260200191505060405180910390f35b348015610b6057600080fd5b50610ba360048036036020811015610b7757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113fe565b005b348015610bb157600080fd5b50610c1460048036036040811015610bc857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061141e565b6040518082815260200191505060405180910390f35b348015610c3657600080fd5b50610c7960048036036020811015610c4d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114a5565b604051808215151515815260200191505060405180910390f35b606060008054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d2b5780601f10610d0057610100808354040283529160200191610d2b565b820191906000526020600020905b815481529060010190602001808311610d0e57829003601f168201915b5050505050905090565b6000610d40336114a5565b151515610d4c57600080fd5b610d5683836114c2565b905092915050565b610d67336114a5565b151515610d7357600080fd5b610d7c33611223565b1515610d8757600080fd5b610d928233836114f2565b5050565b6000610dac8260096116c290919063ffffffff16565b9050919050565b6000600554905090565b610dc633610d96565b1515610dd157600080fd5b610dda81611756565b50565b6000610de8336114a5565b151515610df457600080fd5b610dfd846114a5565b151515610e0957600080fd5b610e12836114a5565b151515610e1e57600080fd5b610e298484846117b0565b90509392505050565b610e3b336114a5565b151515610e4757600080fd5b610e5033611223565b1515610e5b57600080fd5b610e6582826117e2565b5050565b6000600260009054906101000a900460ff16905090565b6000610e8b336114a5565b151515610e9757600080fd5b610ea18383611938565b905092915050565b610eb233610f97565b1515610ebd57600080fd5b600760009054906101000a900460ff161515610ed857600080fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000610f63336114a5565b151515610f6f57600080fd5b610f7833611223565b1515610f8357600080fd5b610f8d8383611968565b6001905092915050565b6000610fad8260066116c290919063ffffffff16565b9050919050565b6000600760009054906101000a900460ff16905090565b610fd433611abe565b565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61102833610f97565b151561103357600080fd5b61103c81611b18565b50565b61104833610f97565b151561105357600080fd5b600760009054906101000a900460ff1615151561106f57600080fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b606060018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111875780601f1061115c57610100808354040283529160200191611187565b820191906000526020600020905b81548152906001019060200180831161116a57829003601f168201915b5050505050905090565b61119a33611223565b15156111a557600080fd5b6111ae81611b72565b50565b6111ba33611bcc565b565b60006111c7336114a5565b1515156111d357600080fd5b6111dd8383611c26565b905092915050565b60006111f0336114a5565b1515156111fc57600080fd5b611205836114a5565b15151561121157600080fd5b61121b8383611c56565b905092915050565b60006112398260086116c290919063ffffffff16565b9050919050565b61124933610d96565b151561125457600080fd5b61125d81611c86565b50565b600061126b336114a5565b15151561127757600080fd5b600760009054906101000a900460ff1615151561129357600080fd5b60001515600b60009054906101000a900460ff1615151415156112b557600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141515156112f057600080fd5b6112fa8484610d35565b151561130557600080fd5b6001600b60006101000a81548160ff0219169083151502179055508373ffffffffffffffffffffffffffffffffffffffff1634836040518082805190602001908083835b60208310151561136e5780518252602082019150602081019050602083039250611349565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146113d0576040519150601f19603f3d011682016040523d82523d6000602084013e6113d5565b606091505b5050506000600b60006101000a81548160ff021916908315150217905550600190509392505050565b61140733610d96565b151561141257600080fd5b61141b81611ce0565b50565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006114bb82600a6116c290919063ffffffff16565b9050919050565b6000600760009054906101000a900460ff161515156114e057600080fd5b6114ea8383611d3a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561152e57600080fd5b61158081600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d5190919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061161581600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d7390919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156116ff57600080fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61176a81600a611d9490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fdbe320accb74107e8da655fa6a1e2b454c3102a3985d4201aba99308881a410a60405160405180910390a250565b6000600760009054906101000a900460ff161515156117ce57600080fd5b6117d9848484611e44565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561181e57600080fd5b61183381600554611d5190919063ffffffff16565b60058190555061188b81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d5190919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600760009054906101000a900460ff1615151561195657600080fd5b6119608383611ef5565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156119a457600080fd5b6119b981600554611d7390919063ffffffff16565b600581905550611a1181600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d7390919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611ad2816006611f9a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b611b2c816006611d9490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b611b86816008611d9490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b611be0816008611f9a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b6000600760009054906101000a900460ff16151515611c4457600080fd5b611c4e8383612049565b905092915050565b6000600760009054906101000a900460ff16151515611c7457600080fd5b611c7e83836120ee565b905092915050565b611c9a81600a611f9a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167ff38e60871ec534937251cd91cad807e15f55f1f6815128faecc256e71994b49760405160405180910390a250565b611cf4816009611d9490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fa6124c7f565d239231ddc9de42e684db7443c994c658117542be9c50f561943860405160405180910390a250565b6000611d47338484612105565b6001905092915050565b6000828211151515611d6257600080fd5b600082840390508091505092915050565b6000808284019050838110151515611d8a57600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515611dd057600080fd5b611dda82826116c2565b151515611de657600080fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000611e518484846114f2565b611eea8433611ee585600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d5190919063ffffffff16565b612105565b600190509392505050565b6000611f903384611f8b85600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d7390919063ffffffff16565b612105565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515611fd657600080fd5b611fe082826116c2565b1515611feb57600080fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006120e433846120df85600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d5190919063ffffffff16565b612105565b6001905092915050565b60006120fb3384846114f2565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561214157600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415151561217d57600080fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a350505056fea165627a7a72305820967f7bab464474517a4108c569deb93b0806b9e3ae93f95460ad3028766d0ecd0029

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000011e1a3000000000000000000000000000000000000000000000000000000000000000014546f6b656e697a65642045636f2053797374656d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000035445530000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Tokenized Eco System
Arg [1] : symbol (string): TES
Arg [2] : decimals (uint8): 18
Arg [3] : _totalSupply (uint256): 300000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000011e1a300
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [5] : 546f6b656e697a65642045636f2053797374656d000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5445530000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

19451:2548:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15803:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15803:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;15803:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21010:145;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21010:145:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21010:145:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21709:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21709:151:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21709:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17727:125;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17727:125:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17727:125:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8566:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8566:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18912:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18912:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18912:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;20755:243;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20755:243:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20755:243:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21871:125;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21871:125:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21871:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16119:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16119:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21163:180;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21163:180:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21163:180:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7472:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7472:118:0;;;:::i;:::-;;21549:150;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21549:150:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21549:150:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5742:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5742:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5742:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6725:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6725:78:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5959:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5959:77:0;;;:::i;:::-;;8877:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8877:106:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8877:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5859:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5859:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5859:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;7261:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7261:116:0;;;:::i;:::-;;15953:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15953:87:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;15953:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4927:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4927:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4927:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;5027:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5027:77:0;;;:::i;:::-;;21351:190;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21351:190:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21351:190:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20572:175;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20572:175:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20572:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4810:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4810:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4810:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19030:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19030:116:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19030:116:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;20020:540;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20020:540:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;20020:540:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;20020:540:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;20020:540:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;20020:540:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17860:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17860:116:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17860:116:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;9322:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9322:131:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9322:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18785:119;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18785:119:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18785:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15803:83;15840:13;15873:5;15866:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15803:83;:::o;21010:145::-;21094:4;18731:25;18745:10;18731:13;:25::i;:::-;18730:26;18722:35;;;;;;;;21118:29;21132:7;21141:5;21118:13;:29::i;:::-;21111:36;;21010:145;;;;:::o;21709:151::-;18731:25;18745:10;18731:13;:25::i;:::-;18730:26;18722:35;;;;;;;;4761:20;4770:10;4761:8;:20::i;:::-;4753:29;;;;;;;;21812:40;21828:4;21834:10;21846:5;21812:15;:40::i;:::-;21709:151;;:::o;17727:125::-;17791:4;17815:29;17836:7;17815:16;:20;;:29;;;;:::i;:::-;17808:36;;17727:125;;;:::o;8566:91::-;8610:7;8637:12;;8630:19;;8566:91;:::o;18912:110::-;17670:28;17687:10;17670:16;:28::i;:::-;17662:37;;;;;;;;18990:24;19006:7;18990:15;:24::i;:::-;18912:110;:::o;20755:243::-;20853:4;18731:25;18745:10;18731:13;:25::i;:::-;18730:26;18722:35;;;;;;;;20879:19;20893:4;20879:13;:19::i;:::-;20878:20;20870:29;;;;;;;;20919:17;20933:2;20919:13;:17::i;:::-;20918:18;20910:27;;;;;;;;20955:35;20974:4;20980:2;20984:5;20955:18;:35::i;:::-;20948:42;;20755:243;;;;;:::o;21871:125::-;18731:25;18745:10;18731:13;:25::i;:::-;18730:26;18722:35;;;;;;;;4761:20;4770:10;4761:8;:20::i;:::-;4753:29;;;;;;;;21970:18;21976:4;21982:5;21970;:18::i;:::-;21871:125;;:::o;16119:83::-;16160:5;16185:9;;;;;;;;;;;16178:16;;16119:83;:::o;21163:180::-;21259:12;18731:25;18745:10;18731:13;:25::i;:::-;18730:26;18722:35;;;;;;;;21291:44;21315:7;21324:10;21291:23;:44::i;:::-;21284:51;;21163:180;;;;:::o;7472:118::-;5693:20;5702:10;5693:8;:20::i;:::-;5685:29;;;;;;;;7141:7;;;;;;;;;;;7133:16;;;;;;;;7541:5;7531:7;;:15;;;;;;;;;;;;;;;;;;7562:20;7571:10;7562:20;;;;;;;;;;;;;;;;;;;;;;7472:118::o;21549:150::-;21636:4;18731:25;18745:10;18731:13;:25::i;:::-;18730:26;18722:35;;;;;;;;4761:20;4770:10;4761:8;:20::i;:::-;4753:29;;;;;;;;21653:16;21659:2;21663:5;21653;:16::i;:::-;21687:4;21680:11;;21549:150;;;;:::o;5742:109::-;5798:4;5822:21;5835:7;5822:8;:12;;:21;;;;:::i;:::-;5815:28;;5742:109;;;:::o;6725:78::-;6764:4;6788:7;;;;;;;;;;;6781:14;;6725:78;:::o;5959:77::-;6003:25;6017:10;6003:13;:25::i;:::-;5959:77::o;8877:106::-;8932:7;8959:9;:16;8969:5;8959:16;;;;;;;;;;;;;;;;8952:23;;8877:106;;;:::o;5859:92::-;5693:20;5702:10;5693:8;:20::i;:::-;5685:29;;;;;;;;5924:19;5935:7;5924:10;:19::i;:::-;5859:92;:::o;7261:116::-;5693:20;5702:10;5693:8;:20::i;:::-;5685:29;;;;;;;;6962:7;;;;;;;;;;;6961:8;6953:17;;;;;;;;7331:4;7321:7;;:14;;;;;;;;;;;;;;;;;;7351:18;7358:10;7351:18;;;;;;;;;;;;;;;;;;;;;;7261:116::o;15953:87::-;15992:13;16025:7;16018:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15953:87;:::o;4927:92::-;4761:20;4770:10;4761:8;:20::i;:::-;4753:29;;;;;;;;4992:19;5003:7;4992:10;:19::i;:::-;4927:92;:::o;5027:77::-;5071:25;5085:10;5071:13;:25::i;:::-;5027:77::o;21351:190::-;21452:12;18731:25;18745:10;18731:13;:25::i;:::-;18730:26;18722:35;;;;;;;;21484:49;21508:7;21517:15;21484:23;:49::i;:::-;21477:56;;21351:190;;;;:::o;20572:175::-;20652:4;18731:25;18745:10;18731:13;:25::i;:::-;18730:26;18722:35;;;;;;;;20678:17;20692:2;20678:13;:17::i;:::-;20677:18;20669:27;;;;;;;;20714:25;20729:2;20733:5;20714:14;:25::i;:::-;20707:32;;20572:175;;;;:::o;4810:109::-;4866:4;4890:21;4903:7;4890:8;:12;;:21;;;;:::i;:::-;4883:28;;4810:109;;;:::o;19030:116::-;17670:28;17687:10;17670:16;:28::i;:::-;17662:37;;;;;;;;19111:27;19130:7;19111:18;:27::i;:::-;19030:116;:::o;20020:540::-;20234:4;18731:25;18745:10;18731:13;:25::i;:::-;18730:26;18722:35;;;;;;;;6962:7;;;;;;;;;;;6961:8;6953:17;;;;;;;;20275:5;20264:16;;:7;;;;;;;;;;;:16;;;20256:25;;;;;;;;20320:4;20300:25;;:8;:25;;;;20292:34;;;;;;;;20345:25;20353:8;20363:6;20345:7;:25::i;:::-;20337:34;;;;;;;;20452:4;20442:7;;:14;;;;;;;;;;;;;;;;;;20467:8;:13;;20487:9;20498:5;20467:37;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;51:19;36:153;;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;20467:37:0;;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;20467:37:0;;20525:5;20515:7;;:15;;;;;;;;;;;;;;;;;;20548:4;20541:11;;20020:540;;;;;:::o;17860:116::-;17670:28;17687:10;17670:16;:28::i;:::-;17662:37;;;;;;;;17941:27;17960:7;17941:18;:27::i;:::-;17860:116;:::o;9322:131::-;9394:7;9421:8;:15;9430:5;9421:15;;;;;;;;;;;;;;;:24;9437:7;9421:24;;;;;;;;;;;;;;;;9414:31;;9322:131;;;;:::o;18785:119::-;18846:4;18870:26;18888:7;18870:13;:17;;:26;;;;:::i;:::-;18863:33;;18785:119;;;:::o;16655:140::-;16734:4;6962:7;;;;;;;;;;;6961:8;6953:17;;;;;;;;16758:29;16772:7;16781:5;16758:13;:29::i;:::-;16751:36;;16655:140;;;;:::o;12942:262::-;13044:1;13030:16;;:2;:16;;;;13022:25;;;;;;;;13078:26;13098:5;13078:9;:15;13088:4;13078:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;13060:9;:15;13070:4;13060:15;;;;;;;;;;;;;;;:44;;;;13131:24;13149:5;13131:9;:13;13141:2;13131:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;13115:9;:13;13125:2;13115:13;;;;;;;;;;;;;;;:40;;;;13186:2;13171:25;;13180:4;13171:25;;;13190:5;13171:25;;;;;;;;;;;;;;;;;;12942:262;;;:::o;4275:165::-;4347:4;4391:1;4372:21;;:7;:21;;;;4364:30;;;;;;;;4412:4;:11;;:20;4424:7;4412:20;;;;;;;;;;;;;;;;;;;;;;;;;4405:27;;4275:165;;;;:::o;19154:137::-;19216:26;19234:7;19216:13;:17;;:26;;;;:::i;:::-;19275:7;19258:25;;;;;;;;;;;;19154:137;:::o;16483:160::-;16576:4;6962:7;;;;;;;;;;;6961:8;6953:17;;;;;;;;16600:35;16619:4;16625:2;16629:5;16600:18;:35::i;:::-;16593:42;;16483:160;;;;;:::o;14059:269::-;14153:1;14134:21;;:7;:21;;;;14126:30;;;;;;;;14184:23;14201:5;14184:12;;:16;;:23;;;;:::i;:::-;14169:12;:38;;;;14239:29;14262:5;14239:9;:18;14249:7;14239:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;14218:9;:18;14228:7;14218:18;;;;;;;;;;;;;;;:50;;;;14310:1;14284:36;;14293:7;14284:36;;;14314:5;14284:36;;;;;;;;;;;;;;;;;;14059:269;;:::o;16803:175::-;16894:12;6962:7;;;;;;;;;;;6961:8;6953:17;;;;;;;;16926:44;16950:7;16959:10;16926:23;:44::i;:::-;16919:51;;16803:175;;;;:::o;13556:269::-;13650:1;13631:21;;:7;:21;;;;13623:30;;;;;;;;13681:23;13698:5;13681:12;;:16;;:23;;;;:::i;:::-;13666:12;:38;;;;13736:29;13759:5;13736:9;:18;13746:7;13736:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;13715:9;:18;13725:7;13715:18;;;;;;;;;;;;;;;:50;;;;13802:7;13781:36;;13798:1;13781:36;;;13811:5;13781:36;;;;;;;;;;;;;;;;;;13556:269;;:::o;6174:130::-;6234:24;6250:7;6234:8;:15;;:24;;;;:::i;:::-;6288:7;6274:22;;;;;;;;;;;;6174:130;:::o;6044:122::-;6101:21;6114:7;6101:8;:12;;:21;;;;:::i;:::-;6150:7;6138:20;;;;;;;;;;;;6044:122;:::o;5112:::-;5169:21;5182:7;5169:8;:12;;:21;;;;:::i;:::-;5218:7;5206:20;;;;;;;;;;;;5112:122;:::o;5242:130::-;5302:24;5318:7;5302:8;:15;;:24;;;;:::i;:::-;5356:7;5342:22;;;;;;;;;;;;5242:130;:::o;16986:185::-;17082:12;6962:7;;;;;;;;;;;6961:8;6953:17;;;;;;;;17114:49;17138:7;17147:15;17114:23;:49::i;:::-;17107:56;;16986:185;;;;:::o;16343:132::-;16418:4;6962:7;;;;;;;;;;;6961:8;6953:17;;;;;;;;16442:25;16457:2;16461:5;16442:14;:25::i;:::-;16435:32;;16343:132;;;;:::o;19299:145::-;19364:29;19385:7;19364:13;:20;;:29;;;;:::i;:::-;19428:7;19409:27;;;;;;;;;;;;19299:145;:::o;17984:146::-;18049:29;18070:7;18049:16;:20;;:29;;;;:::i;:::-;18114:7;18094:28;;;;;;;;;;;;17984:146;:::o;10415:148::-;10480:4;10497:36;10506:10;10518:7;10527:5;10497:8;:36::i;:::-;10551:4;10544:11;;10415:148;;;;:::o;1249:150::-;1307:7;1340:1;1335;:6;;1327:15;;;;;;;;1353:9;1369:1;1365;:5;1353:17;;1390:1;1383:8;;;1249:150;;;;:::o;1487:::-;1545:7;1565:9;1581:1;1577;:5;1565:17;;1606:1;1601;:6;;1593:15;;;;;;;;1628:1;1621:8;;;1487:150;;;;:::o;3727:186::-;3823:1;3804:21;;:7;:21;;;;3796:30;;;;;;;;3846:18;3850:4;3856:7;3846:3;:18::i;:::-;3845:19;3837:28;;;;;;;;3901:4;3878;:11;;:20;3890:7;3878:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;3727:186;;:::o;11036:228::-;11115:4;11132:26;11142:4;11148:2;11152:5;11132:9;:26::i;:::-;11169:65;11178:4;11184:10;11196:37;11227:5;11196:8;:14;11205:4;11196:14;;;;;;;;;;;;;;;:26;11211:10;11196:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;11169:8;:65::i;:::-;11252:4;11245:11;;11036:228;;;;;:::o;11779:203::-;11859:4;11876:76;11885:10;11897:7;11906:45;11940:10;11906:8;:20;11915:10;11906:20;;;;;;;;;;;;;;;:29;11927:7;11906:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;11876:8;:76::i;:::-;11970:4;11963:11;;11779:203;;;;:::o;3992:189::-;4091:1;4072:21;;:7;:21;;;;4064:30;;;;;;;;4113:18;4117:4;4123:7;4113:3;:18::i;:::-;4105:27;;;;;;;;4168:5;4145:4;:11;;:20;4157:7;4145:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;3992:189;;:::o;12502:213::-;12587:4;12604:81;12613:10;12625:7;12634:50;12668:15;12634:8;:20;12643:10;12634:20;;;;;;;;;;;;;;;:29;12655:7;12634:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;12604:8;:81::i;:::-;12703:4;12696:11;;12502:213;;;;:::o;9628:140::-;9689:4;9706:32;9716:10;9728:2;9732:5;9706:9;:32::i;:::-;9756:4;9749:11;;9628:140;;;;:::o;14601:254::-;14713:1;14694:21;;:7;:21;;;;14686:30;;;;;;;;14752:1;14735:19;;:5;:19;;;;14727:28;;;;;;;;14795:5;14768:8;:15;14777:5;14768:15;;;;;;;;;;;;;;;:24;14784:7;14768:24;;;;;;;;;;;;;;;:32;;;;14832:7;14816:31;;14825:5;14816:31;;;14841:5;14816:31;;;;;;;;;;;;;;;;;;14601:254;;;:::o

Swarm Source

bzzr://967f7bab464474517a4108c569deb93b0806b9e3ae93f95460ad3028766d0ecd

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.