ETH Price: $3,278.45 (+5.10%)
Gas: 4 Gwei

Token

Chroma (CHR)
 

Overview

Max Total Supply

471,970,667.472048 CHR

Holders

7,485 ( 0.014%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Filtered by Token Holder
Kucoin Hacker
Balance
0.000385 CHR

Value
$0.00
0xeb31973e0febf3e3d7058234a5ebbae1ab4b8c23
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Chroma token contract has migrated to 0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Chromia

Compiler Version
v0.5.8+commit.23d335f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-05-27
*/

// Copyright (C) Chromapolis Devcenter OU 2019


// File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.5.2;

/**
 * @title ERC20 interface
 * @dev see https://eips.ethereum.org/EIPS/eip-20
 */
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);
}

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.5.2;

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

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.5.2;



/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://eips.ethereum.org/EIPS/eip-20
 * Originally based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
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 A 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 to 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[msg.sender][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[msg.sender][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));
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol

pragma solidity ^0.5.2;


/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
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;
    }
}

// File: contracts/token/ERC20/Chromia.sol

// Copyright (C) Chromapolis Devcenter OU 2019

pragma solidity 0.5.8;



contract Chromia is ERC20, ERC20Detailed {
    uint8 public constant DECIMALS = 6;
    address private _minter;
    // one billion tokens with 6 decimals
    uint256 private _cap = 1000000000 * 1000000;

    event MinterSet(address indexed account);
    event TransferToChromia(address indexed from, bytes32 indexed to, uint256 value);
    event TransferFromChromia(address indexed to, bytes32 indexed refID, uint256 value);

    /**
     * @dev Constructor that gives msg.sender all of existing tokens.
     * @param minter the multi-sig contract address
     */
    constructor(address minter, uint256 initialBalance) public ERC20Detailed("Chroma", "CHR", DECIMALS) {
        _mint(msg.sender, initialBalance);
        _setMinter(minter);
    }

    modifier onlyMinter() {
        require(isMinter(msg.sender), "caller is not a minter");
        _;
    }
    
    function cap() public view returns (uint256) {
        return _cap;
    }

    /**
     * @dev Burns a specific amount of tokens and emit transfer event for Chromia
     * @param to The address to transfer to in Chromia.
     * @param value The amount of token to be burned.
     */
    function transferToChromia(bytes32 to, uint256 value) public {
        _burn(msg.sender, value);
        emit TransferToChromia(msg.sender, to, value);
    }

    /**
     * @dev Function to mint tokens
     * @param to The address that will receive the minted tokens.
     * @param value The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function transferFromChromia(address to, uint256 value, bytes32 refID) public onlyMinter returns (bool) {
        _mint(to, value);
        emit TransferFromChromia(to, refID, value);
        return true;
    }
    
    function _mint(address account, uint256 value) internal {
        require(totalSupply().add(value) <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, value);
    }

    function isMinter(address account) public view returns (bool) {
        return _minter == account;
    }

    function _setMinter(address account) internal {
        _minter = account;
        emit MinterSet(account);
    }
    
    function changeMinter(address newMinter) public onlyMinter {
        _setMinter(newMinter);
    }
}

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":"to","type":"bytes32"},{"name":"value","type":"uint256"}],"name":"transferToChromia","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":"newMinter","type":"address"}],"name":"changeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"DECIMALS","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"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":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","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":"to","type":"address"},{"name":"value","type":"uint256"},{"name":"refID","type":"bytes32"}],"name":"transferFromChromia","outputs":[{"name":"","type":"bool"}],"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"},{"inputs":[{"name":"minter","type":"address"},{"name":"initialBalance","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"bytes32"},{"indexed":false,"name":"value","type":"uint256"}],"name":"TransferToChromia","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":true,"name":"refID","type":"bytes32"},{"indexed":false,"name":"value","type":"uint256"}],"name":"TransferFromChromia","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"}]

608060405266038d7ea4c680006006553480156200001c57600080fd5b50604051604080620019a3833981018060405260408110156200003e57600080fd5b8101908080519060200190929190805190602001909291905050506040518060400160405280600681526020017f4368726f6d6100000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f434852000000000000000000000000000000000000000000000000000000000081525060068260039080519060200190620000df92919062000427565b508160049080519060200190620000f892919062000427565b5080600560006101000a81548160ff021916908360ff1602179055505050506200012933826200014260201b60201c565b6200013a826200020b60201b60201c565b5050620004d6565b620001526200029260201b60201c565b6200017b82620001676200029c60201b60201c565b620002a660201b6200127c1790919060201c565b1115620001f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b620002078282620002c660201b6200133f1760201c565b5050565b80600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f726b590ef91a8c76ad05bbe91a57ef84605276528f49cd47d787f558a4e755b660405160405180910390a250565b6000600654905090565b6000600254905090565b600080828401905083811015620002bc57600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200030157600080fd5b6200031d81600254620002a660201b6200127c1790919060201c565b6002819055506200037b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620002a660201b6200127c1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200046a57805160ff19168380011785556200049b565b828001600101855582156200049b579182015b828111156200049a5782518255916020019190600101906200047d565b5b509050620004aa9190620004ae565b5090565b620004d391905b80821115620004cf576000816000905550600101620004b5565b5090565b90565b6114bd80620004e66000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063355274ea116100a2578063a457c2d711610071578063a457c2d7146104c0578063a9059cbb14610526578063aa271e1a1461058c578063b57603e5146105e8578063dd62ed3e146106585761010b565b8063355274ea14610361578063395093511461037f57806370a08231146103e557806395d89b411461043d5761010b565b806323b872dd116100de57806323b872dd1461024f5780632c4d4d18146102d55780632e0f262514610319578063313ce5671461033d5761010b565b806306fdde0314610110578063095ea7b31461019357806318160ddd146101f95780631f35ec6414610217575b600080fd5b6101186106d0565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561015857808201518184015260208101905061013d565b50505050905090810190601f1680156101855780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101df600480360360408110156101a957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610772565b604051808215151515815260200191505060405180910390f35b610201610789565b6040518082815260200191505060405180910390f35b61024d6004803603604081101561022d57600080fd5b810190808035906020019092919080359060200190929190505050610793565b005b6102bb6004803603606081101561026557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107ef565b604051808215151515815260200191505060405180910390f35b610317600480360360208110156102eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108a0565b005b610321610927565b604051808260ff1660ff16815260200191505060405180910390f35b61034561092c565b604051808260ff1660ff16815260200191505060405180910390f35b610369610943565b6040518082815260200191505060405180910390f35b6103cb6004803603604081101561039557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061094d565b604051808215151515815260200191505060405180910390f35b610427600480360360208110156103fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506109f2565b6040518082815260200191505060405180910390f35b610445610a3a565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561048557808201518184015260208101905061046a565b50505050905090810190601f1680156104b25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61050c600480360360408110156104d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610adc565b604051808215151515815260200191505060405180910390f35b6105726004803603604081101561053c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b81565b604051808215151515815260200191505060405180910390f35b6105ce600480360360208110156105a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b98565b604051808215151515815260200191505060405180910390f35b61063e600480360360608110156105fe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050610bf2565b604051808215151515815260200191505060405180910390f35b6106ba6004803603604081101561066e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610cd3565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107685780601f1061073d57610100808354040283529160200191610768565b820191906000526020600020905b81548152906001019060200180831161074b57829003601f168201915b5050505050905090565b600061077f338484610d5a565b6001905092915050565b6000600254905090565b61079d3382610eb9565b813373ffffffffffffffffffffffffffffffffffffffff167ea52c5916d1c00eb8d52b3e40a75956fd2e15339be0d111c44eff45ad0f533e836040518082815260200191505060405180910390a35050565b60006107fc84848461100b565b610895843361089085600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d590919063ffffffff16565b610d5a565b600190509392505050565b6108a933610b98565b61091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f63616c6c6572206973206e6f742061206d696e7465720000000000000000000081525060200191505060405180910390fd5b610924816111f5565b50565b600681565b6000600560009054906101000a900460ff16905090565b6000600654905090565b60006109e833846109e385600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461127c90919063ffffffff16565b610d5a565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ad25780601f10610aa757610100808354040283529160200191610ad2565b820191906000526020600020905b815481529060010190602001808311610ab557829003601f168201915b5050505050905090565b6000610b773384610b7285600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d590919063ffffffff16565b610d5a565b6001905092915050565b6000610b8e33848461100b565b6001905092915050565b60008173ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149050919050565b6000610bfd33610b98565b610c6f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f63616c6c6572206973206e6f742061206d696e7465720000000000000000000081525060200191505060405180910390fd5b610c79848461129b565b818473ffffffffffffffffffffffffffffffffffffffff167f7b8b4d473e148a23a96bf4ff0dddf156a76854397f7b206c1ed0185f24f5598f856040518082815260200191505060405180910390a3600190509392505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d9457600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dce57600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef357600080fd5b610f08816002546111d590919063ffffffff16565b600281905550610f5f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104557600080fd5b611096816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d590919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611129816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461127c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000828211156111e457600080fd5b600082840390508091505092915050565b80600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f726b590ef91a8c76ad05bbe91a57ef84605276528f49cd47d787f558a4e755b660405160405180910390a250565b60008082840190508381101561129157600080fd5b8091505092915050565b6112a3610943565b6112bd826112af610789565b61127c90919063ffffffff16565b1115611331576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b61133b828261133f565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137957600080fd5b61138e8160025461127c90919063ffffffff16565b6002819055506113e5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461127c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fea165627a7a7230582096d82108de8ca55dede1039a9cfbe369fe8ebc97be8211d9cc833643d383368a002900000000000000000000000065e170e0cfcb1484c9c44905fa0a9209cfe889f7000000000000000000000000000000000000000000000000000000003b9aca00

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063355274ea116100a2578063a457c2d711610071578063a457c2d7146104c0578063a9059cbb14610526578063aa271e1a1461058c578063b57603e5146105e8578063dd62ed3e146106585761010b565b8063355274ea14610361578063395093511461037f57806370a08231146103e557806395d89b411461043d5761010b565b806323b872dd116100de57806323b872dd1461024f5780632c4d4d18146102d55780632e0f262514610319578063313ce5671461033d5761010b565b806306fdde0314610110578063095ea7b31461019357806318160ddd146101f95780631f35ec6414610217575b600080fd5b6101186106d0565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561015857808201518184015260208101905061013d565b50505050905090810190601f1680156101855780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101df600480360360408110156101a957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610772565b604051808215151515815260200191505060405180910390f35b610201610789565b6040518082815260200191505060405180910390f35b61024d6004803603604081101561022d57600080fd5b810190808035906020019092919080359060200190929190505050610793565b005b6102bb6004803603606081101561026557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107ef565b604051808215151515815260200191505060405180910390f35b610317600480360360208110156102eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108a0565b005b610321610927565b604051808260ff1660ff16815260200191505060405180910390f35b61034561092c565b604051808260ff1660ff16815260200191505060405180910390f35b610369610943565b6040518082815260200191505060405180910390f35b6103cb6004803603604081101561039557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061094d565b604051808215151515815260200191505060405180910390f35b610427600480360360208110156103fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506109f2565b6040518082815260200191505060405180910390f35b610445610a3a565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561048557808201518184015260208101905061046a565b50505050905090810190601f1680156104b25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61050c600480360360408110156104d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610adc565b604051808215151515815260200191505060405180910390f35b6105726004803603604081101561053c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b81565b604051808215151515815260200191505060405180910390f35b6105ce600480360360208110156105a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b98565b604051808215151515815260200191505060405180910390f35b61063e600480360360608110156105fe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050610bf2565b604051808215151515815260200191505060405180910390f35b6106ba6004803603604081101561066e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610cd3565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107685780601f1061073d57610100808354040283529160200191610768565b820191906000526020600020905b81548152906001019060200180831161074b57829003601f168201915b5050505050905090565b600061077f338484610d5a565b6001905092915050565b6000600254905090565b61079d3382610eb9565b813373ffffffffffffffffffffffffffffffffffffffff167ea52c5916d1c00eb8d52b3e40a75956fd2e15339be0d111c44eff45ad0f533e836040518082815260200191505060405180910390a35050565b60006107fc84848461100b565b610895843361089085600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d590919063ffffffff16565b610d5a565b600190509392505050565b6108a933610b98565b61091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f63616c6c6572206973206e6f742061206d696e7465720000000000000000000081525060200191505060405180910390fd5b610924816111f5565b50565b600681565b6000600560009054906101000a900460ff16905090565b6000600654905090565b60006109e833846109e385600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461127c90919063ffffffff16565b610d5a565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ad25780601f10610aa757610100808354040283529160200191610ad2565b820191906000526020600020905b815481529060010190602001808311610ab557829003601f168201915b5050505050905090565b6000610b773384610b7285600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d590919063ffffffff16565b610d5a565b6001905092915050565b6000610b8e33848461100b565b6001905092915050565b60008173ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149050919050565b6000610bfd33610b98565b610c6f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f63616c6c6572206973206e6f742061206d696e7465720000000000000000000081525060200191505060405180910390fd5b610c79848461129b565b818473ffffffffffffffffffffffffffffffffffffffff167f7b8b4d473e148a23a96bf4ff0dddf156a76854397f7b206c1ed0185f24f5598f856040518082815260200191505060405180910390a3600190509392505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d9457600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dce57600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef357600080fd5b610f08816002546111d590919063ffffffff16565b600281905550610f5f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104557600080fd5b611096816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d590919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611129816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461127c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000828211156111e457600080fd5b600082840390508091505092915050565b80600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f726b590ef91a8c76ad05bbe91a57ef84605276528f49cd47d787f558a4e755b660405160405180910390a250565b60008082840190508381101561129157600080fd5b8091505092915050565b6112a3610943565b6112bd826112af610789565b61127c90919063ffffffff16565b1115611331576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b61133b828261133f565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137957600080fd5b61138e8160025461127c90919063ffffffff16565b6002819055506113e5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461127c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fea165627a7a7230582096d82108de8ca55dede1039a9cfbe369fe8ebc97be8211d9cc833643d383368a0029

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

00000000000000000000000065e170e0cfcb1484c9c44905fa0a9209cfe889f7000000000000000000000000000000000000000000000000000000003b9aca00

-----Decoded View---------------
Arg [0] : minter (address): 0x65E170E0cFCB1484c9c44905fA0A9209CFe889F7
Arg [1] : initialBalance (uint256): 1000000000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000065e170e0cfcb1484c9c44905fa0a9209cfe889f7
Arg [1] : 000000000000000000000000000000000000000000000000000000003b9aca00


Deployed Bytecode Sourcemap

11979:2364:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11979:2364:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11447:83;;;:::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;11447:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5695:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5695:148:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3848:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13166:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13166:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6316:228;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6316:228:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14241:99;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14241:99:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;12027:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11763:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12870:75;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7070:203;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7070:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4158:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4158:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11597:87;;;:::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;11597:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7804:213;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7804:213:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4908:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4908:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13999:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13999:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13581:214;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13581:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4603:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4603:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11447:83;11484:13;11517:5;11510:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11447:83;:::o;5695:148::-;5760:4;5777:36;5786:10;5798:7;5807:5;5777:8;:36::i;:::-;5831:4;5824:11;;5695:148;;;;:::o;3848:91::-;3892:7;3919:12;;3912:19;;3848:91;:::o;13166:160::-;13238:24;13244:10;13256:5;13238;:24::i;:::-;13308:2;13296:10;13278:40;;;13312:5;13278:40;;;;;;;;;;;;;;;;;;13166:160;;:::o;6316:228::-;6395:4;6412:26;6422:4;6428:2;6432:5;6412:9;:26::i;:::-;6449:65;6458:4;6464:10;6476:37;6507:5;6476:8;:14;6485:4;6476:14;;;;;;;;;;;;;;;:26;6491:10;6476:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;6449:8;:65::i;:::-;6532:4;6525:11;;6316:228;;;;;:::o;14241:99::-;12791:20;12800:10;12791:8;:20::i;:::-;12783:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14311:21;14322:9;14311:10;:21::i;:::-;14241:99;:::o;12027:34::-;12060:1;12027:34;:::o;11763:83::-;11804:5;11829:9;;;;;;;;;;;11822:16;;11763:83;:::o;12870:75::-;12906:7;12933:4;;12926:11;;12870:75;:::o;7070:203::-;7150:4;7167:76;7176:10;7188:7;7197:45;7231:10;7197:8;:20;7206:10;7197:20;;;;;;;;;;;;;;;:29;7218:7;7197:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;7167:8;:76::i;:::-;7261:4;7254:11;;7070:203;;;;:::o;4158:106::-;4213:7;4240:9;:16;4250:5;4240:16;;;;;;;;;;;;;;;;4233:23;;4158:106;;;:::o;11597:87::-;11636:13;11669:7;11662:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11597:87;:::o;7804:213::-;7889:4;7906:81;7915:10;7927:7;7936:50;7970:15;7936:8;:20;7945:10;7936:20;;;;;;;;;;;;;;;:29;7957:7;7936:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;7906:8;:81::i;:::-;8005:4;7998:11;;7804:213;;;;:::o;4908:140::-;4969:4;4986:32;4996:10;5008:2;5012:5;4986:9;:32::i;:::-;5036:4;5029:11;;4908:140;;;;:::o;13999:106::-;14055:4;14090:7;14079:18;;:7;;;;;;;;;;;:18;;;14072:25;;13999:106;;;:::o;13581:214::-;13679:4;12791:20;12800:10;12791:8;:20::i;:::-;12783:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13696:16;13702:2;13706:5;13696;:16::i;:::-;13752:5;13748:2;13728:37;;;13759:5;13728:37;;;;;;;;;;;;;;;;;;13783:4;13776:11;;13581:214;;;;;:::o;4603:131::-;4675:7;4702:8;:15;4711:5;4702:15;;;;;;;;;;;;;;;:24;4718:7;4702:24;;;;;;;;;;;;;;;;4695:31;;4603:131;;;;:::o;9903:254::-;10015:1;9996:21;;:7;:21;;;;9988:30;;;;;;10054:1;10037:19;;:5;:19;;;;10029:28;;;;;;10097:5;10070:8;:15;10079:5;10070:15;;;;;;;;;;;;;;;:24;10086:7;10070:24;;;;;;;;;;;;;;;:32;;;;10134:7;10118:31;;10127:5;10118:31;;;10143:5;10118:31;;;;;;;;;;;;;;;;;;9903:254;;;:::o;9361:269::-;9455:1;9436:21;;:7;:21;;;;9428:30;;;;;;9486:23;9503:5;9486:12;;:16;;:23;;;;:::i;:::-;9471:12;:38;;;;9541:29;9564:5;9541:9;:18;9551:7;9541:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;9520:9;:18;9530:7;9520:18;;;;;;;;;;;;;;;:50;;;;9612:1;9586:36;;9595:7;9586:36;;;9616:5;9586:36;;;;;;;;;;;;;;;;;;9361:269;;:::o;8244:262::-;8346:1;8332:16;;:2;:16;;;;8324:25;;;;;;8380:26;8400:5;8380:9;:15;8390:4;8380:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;8362:9;:15;8372:4;8362:15;;;;;;;;;;;;;;;:44;;;;8433:24;8451:5;8433:9;:13;8443:2;8433:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;8417:9;:13;8427:2;8417:13;;;;;;;;;;;;;;;:40;;;;8488:2;8473:25;;8482:4;8473:25;;;8492:5;8473:25;;;;;;;;;;;;;;;;;;8244:262;;;:::o;2214:150::-;2272:7;2305:1;2300;:6;;2292:15;;;;;;2318:9;2334:1;2330;:5;2318:17;;2355:1;2348:8;;;2214:150;;;;:::o;14113:116::-;14180:7;14170;;:17;;;;;;;;;;;;;;;;;;14213:7;14203:18;;;;;;;;;;;;14113:116;:::o;2452:150::-;2510:7;2530:9;2546:1;2542;:5;2530:17;;2571:1;2566;:6;;2558:15;;;;;;2593:1;2586:8;;;2452:150;;;;:::o;13807:184::-;13910:5;:3;:5::i;:::-;13882:24;13900:5;13882:13;:11;:13::i;:::-;:17;;:24;;;;:::i;:::-;:33;;13874:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13956:27;13968:7;13977:5;13956:11;:27::i;:::-;13807:184;;:::o;8858:269::-;8952:1;8933:21;;:7;:21;;;;8925:30;;;;;;8983:23;9000:5;8983:12;;:16;;:23;;;;:::i;:::-;8968:12;:38;;;;9038:29;9061:5;9038:9;:18;9048:7;9038:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;9017:9;:18;9027:7;9017:18;;;;;;;;;;;;;;;:50;;;;9104:7;9083:36;;9100:1;9083:36;;;9113:5;9083:36;;;;;;;;;;;;;;;;;;8858:269;;:::o

Swarm Source

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