ETH Price: $2,441.31 (+3.36%)

Token

HAMA token (HAMA)
 

Overview

Max Total Supply

10,000,000,000 HAMA

Holders

293

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
800 HAMA

Value
$0.00
0xd8c581f892253df1371693ca35252389888ce3e9
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.5.7+commit.6da8b019

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Multiple files format)

File 6 of 6: Token.sol
pragma solidity ^0.5.7;

import "./ERC20.sol";
import "./ERC20Detailed.sol";
import "./ERC20Burnable.sol";

 
contract Token is ERC20, ERC20Detailed, ERC20Burnable {
    uint8 public constant DECIMALS = 18;
    // uint256 public constant INIT_SUPPLY = 10000000000 * (10 ** uint256(DECIMALS));
     
    // address private constant ADDR_TOKEN_SWAP = address(0x1234);
    // address private constant ADDR_OPERATION = address(0x1234);
    // address private constant ADDR_REWARD = address(0x1234);
    // address private constant ADDR_TEAM = address(0x1234);
    // address private constant ADDR_PARTNER = address(0x1234);
    
    // 2019.06.01 ~ 2021.12.01.
    uint[31] private TIME_TABLE = [ 1559347200,
        1561939200, 1564617600, 1567296000, 1569888000, 1572566400, 1575158400, 
        1577836800, 1580515200, 1583020800, 1585699200, 1588291200, 1590969600, 
        1593561600, 1596240000, 1598918400, 1601510400, 1604188800, 1606780800,
        1609459200, 1612137600, 1614556800, 1617235200, 1619827200, 1622505600, 
        1625097600, 1627776000, 1630454400, 1633046400, 1635724800, 1638316800];
        
    
    // event Mint(address indexed to, uint256 amount);
    // event FininshedMint();

    struct TimeMint {
        address beneficiary;
        uint256 releaseTime;
        uint256 value;
    }
    
    TimeMint[] timeMintList;

    address owner;
    bool mintingAvail = true;
    
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    
    modifier canMint() {
        require(mintingAvail);
        _;
    }

    /**
     * @dev Constructor that gives msg.sender all of existing tokens.
     */
    constructor () public ERC20Detailed("HAMA token", "HAMA", DECIMALS) {
        
        // All tokens will provide by insertTimeMintTimeTable
        // _mint(msg.sender, INITIAL_SUPPLY);
        owner = msg.sender;
        // _initMintScheuld();
    }
    
    /**
     * @dev Initialize supplying tokens. But This code occuers an error: out of gas
     */
    // function _initMintScheuld() internal{
        // insertTimeMint(ADDR_TOKEN_SWAP, TIME_TABLE[0], 1500000000);
        // insertTimeMint(ADDR_TOKEN_SWAP, TIME_TABLE[2], 200000000);
        // insertTimeMint(ADDR_TOKEN_SWAP, TIME_TABLE[3], 100000000);
        // insertTimeMint(ADDR_TOKEN_SWAP, TIME_TABLE[4], 300000000);
        // insertTimeMint(ADDR_TOKEN_SWAP, TIME_TABLE[5], 100000000);
        // insertTimeMint(ADDR_TOKEN_SWAP, TIME_TABLE[6], 300000000);
        // insertTimeMint(ADDR_TOKEN_SWAP, TIME_TABLE[7], 100000000);
        // insertTimeMint(ADDR_TOKEN_SWAP, TIME_TABLE[8], 300000000);
        // insertTimeMint(ADDR_TOKEN_SWAP, TIME_TABLE[9], 100000000);
        // insertTimeMint(ADDR_TOKEN_SWAP, TIME_TABLE[10], 300000000);
        // insertTimeMint(ADDR_TOKEN_SWAP, TIME_TABLE[11], 100000000);
        // insertTimeMint(ADDR_TOKEN_SWAP, TIME_TABLE[12], 100000000);
        
        // for (uint i=0; i<10; i+=3) {
        //     insertTimeMint(ADDR_OPERATION, TIME_TABLE[i], 375000000);
        // }
        
        // insertTimeMint(ADDR_REWARD, TIME_TABLE[0], 3000000000);
        
        // for (uint i=7; i<25; i++) {
        //     insertTimeMint(ADDR_TEAM, TIME_TABLE[i], 38920000);
        // }
        
        // for (uint i=0; i<25; i+=3) {
        //     insertTimeMint(ADDR_PARTNER, TIME_TABLE[i], 162500000);
        // }
    // }

    /**
     * @dev Getting the number of release tokens schedules.
     */
    function getTimeTimeLength() view public returns(uint256) {
        return timeMintList.length;
    }

    /**
     * @dev Getting the number of release tokens schedules.
     */
    function getTimeTimeMint(uint index) view public returns(address, uint256, uint256) {
        return (timeMintList[index].beneficiary, timeMintList[index].releaseTime, timeMintList[index].value);
    }

    /**
     * @dev Insert a minting tokens schedule. This method use index of TimeTable instead of timestamp.
     */
    function insertTimeMintTimeTable(address _beneficiary, uint256 index, uint256 _value) onlyOwner canMint public returns (bool){
        require(_beneficiary != address(0));
        require(index >= 0 && index < TIME_TABLE.length, "insertTimeMint: index out of range");
        return insertTimeMint(_beneficiary, TIME_TABLE[index], _value);
    }
    
    /**
     * @dev Insert a minting tokens schedule.
     */
    function insertTimeMint(address _beneficiary, uint256 _releaseTime, uint256 _value) onlyOwner canMint public returns (bool){
        require(_beneficiary != address(0));
        require(_releaseTime > block.timestamp, "TokenTimelock: release time is before current time");
        TimeMint memory item = TimeMint({
            beneficiary: _beneficiary,
            releaseTime: _releaseTime,
            value: _value
        });
        timeMintList.push(item);
        return true;
    }
    
    /**
     * @dev Remove a minting tokens schedule with index. The timeMintList length reduce one because "delete" is set value to empty.
     */
    function removeTimeMint(uint index) onlyOwner canMint public returns (bool){
        require(index >= 0 && index < timeMintList.length, "removeTimeMint: index out of range.");
        timeMintList[index] = timeMintList[timeMintList.length-1];
        delete timeMintList[timeMintList.length-1];
        timeMintList.length--;
        return true;
    }
    
 /**
     * @dev Releasing tokens any scheduled over release Time.
     */
    function releaseTimeMintToken() onlyOwner canMint public returns (bool) {
        require(timeMintList.length > 0);
        uint i = 0;
        while (i < timeMintList.length) {
            if (block.timestamp >= timeMintList[i].releaseTime) {           // 0. if True
                if (_mintForTime(timeMintList[i])) {                        // 1. Mining according to timeMintList[i].
                    timeMintList[i] = timeMintList[timeMintList.length-1];  // 2.  Note: timeMintList[timeMintList.length-1] is timeMintList[i] NOW !!
                    delete timeMintList[timeMintList.length-1];
                    timeMintList.length--;
                    continue;   // To solve the problem.
                }
            }
            i++;    // 3. BUT we skipped the check of timeMintList[i](i.e. timeMintList[timeMintList.length-1]) with `i++`, 
        }
    }
    
    function _mintForTime(TimeMint memory item) onlyOwner canMint private returns (bool) {
        require(block.timestamp >= item.releaseTime, "TokenTimelock: current time is before release time");
        _mint(item.beneficiary, item.value);
        // emit Mint(item.beneficiary, item.value);
        return true;
    }
    
    /**
     * @dev block mint function.
     */
    function finishMinting() onlyOwner canMint public returns (bool) {
        mintingAvail = false;
        // emit FininshedMint();
        return true;
    }

}

File 1 of 6: ERC20.sol
pragma solidity ^0.5.7;

import "./IERC20.sol";
import "./SafeMath.sol";

/**
 * @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) {
        require(value== 0 || _allowed[msg.sender][spender] == 0);
        _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), "ERC20: transfer to the zero address");

        _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), "ERC20: mint to the zero address");

        _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), "ERC20: burn from the zero address");

        _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(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _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 2 of 6: ERC20Burnable.sol
pragma solidity ^0.5.7;

import "./ERC20.sol";

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract ERC20Burnable is ERC20 {
    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of token to be burned.
     */
    function burn(uint256 value) public {
        _burn(msg.sender, value);
    }

    /**
     * @dev Burns a specific amount of tokens from the target address and decrements allowance.
     * @param from address The account whose tokens will be burned.
     * @param value uint256 The amount of token to be burned.
     */
    function burnFrom(address from, uint256 value) public {
        _burnFrom(from, value);
    }
}

File 3 of 6: ERC20Detailed.sol
pragma solidity ^0.5.7;

import "./IERC20.sol";

/**
 * @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 4 of 6: IERC20.sol
pragma solidity ^0.5.7;

/**
 * @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 5 of 6: SafeMath.sol
pragma solidity ^0.5.7;

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

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"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":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"index","type":"uint256"}],"name":"getTimeTimeMint","outputs":[{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"index","type":"uint256"}],"name":"removeTimeMint","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":false,"inputs":[{"name":"_beneficiary","type":"address"},{"name":"_releaseTime","type":"uint256"},{"name":"_value","type":"uint256"}],"name":"insertTimeMint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"},{"name":"index","type":"uint256"},{"name":"_value","type":"uint256"}],"name":"insertTimeMintTimeTable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getTimeTimeLength","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":false,"inputs":[],"name":"releaseTimeMintToken","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":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"}]

610460604052635cf1c0006080908152635d194d0060a052635d422b8060c052635d6b0a0060e052635d92970061010052635dbb758061012052635de3028061014052635e0be10061016052635e34bf8061018052635e5afb006101a052635e83d9806101c052635eab66806101e052635ed4450061020052635efbd20061022052635f24b08061024052635f4d8f0061026052635f751c0061028052635f9dfa806102a052635fc587806102c052635fee66006102e05263601744806103005263603c2e80610320526360650d006103405263608c9a00610360526360b57880610380526360dd05806103a052636105e4006103c05263612ec2806103e0526361564f806104005263617f2e00610420526361a6bb00610440526200012a90600690601f62000224565b5060268054600160a01b60ff021916740100000000000000000000000000000000000000001790553480156200015f57600080fd5b50604080518082018252600a81527f48414d4120746f6b656e0000000000000000000000000000000000000000000060208083019182528351808501909452600484527f48414d4100000000000000000000000000000000000000000000000000000000908401528151919291601291620001de91600391906200026f565b508151620001f49060049060208501906200026f565b506005805460ff90921660ff199092169190911790555050602680546001600160a01b0319163317905562000302565b82601f81019282156200025d579160200282015b828111156200025d578251829063ffffffff1690559160200191906001019062000238565b506200026b929150620002e2565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002b257805160ff19168380011785556200025d565b828001600101855582156200025d579182015b828111156200025d578251825591602001919060010190620002c5565b620002ff91905b808211156200026b5760008155600101620002e9565b90565b61135280620003126000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b857806395527cd51161007c57806395527cd5146103da57806395d89b41146103e2578063a457c2d7146103ea578063a9059cbb14610416578063d5a38e3614610442578063dd62ed3e1461044a57610137565b806370a082311461031c57806375aacfa314610342578063774963411461037457806379cc6790146103a65780637d64bcb4146103d257610137565b8063313ce567116100ff578063313ce56714610267578063395093511461026f57806342966c681461029b57806354a8e944146102ba57806357cbf6fc146102ff57610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f957806323b872dd146102135780632e0f262514610249575b600080fd5b610144610478565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b03813516906020013561050f565b604080519115158252519081900360200190f35b61020161055c565b60408051918252519081900360200190f35b6101e56004803603606081101561022957600080fd5b506001600160a01b03813581169160208101359091169060400135610562565b6102516105b9565b6040805160ff9092168252519081900360200190f35b6102516105be565b6101e56004803603604081101561028557600080fd5b506001600160a01b0381351690602001356105c7565b6102b8600480360360208110156102b157600080fd5b5035610603565b005b6102d7600480360360208110156102d057600080fd5b5035610610565b604080516001600160a01b039094168452602084019290925282820152519081900360600190f35b6101e56004803603602081101561031557600080fd5b503561068b565b6102016004803603602081101561033257600080fd5b50356001600160a01b03166107ba565b6101e56004803603606081101561035857600080fd5b506001600160a01b0381351690602081013590604001356107d5565b6101e56004803603606081101561038a57600080fd5b506001600160a01b038135169060208101359060400135610926565b6102b8600480360360408110156103bc57600080fd5b506001600160a01b0381351690602001356109cc565b6101e56109da565b610201610a2e565b610144610a34565b6101e56004803603604081101561040057600080fd5b506001600160a01b038135169060200135610a95565b6101e56004803603604081101561042c57600080fd5b506001600160a01b038135169060200135610ad1565b6101e5610ade565b6102016004803603604081101561046057600080fd5b506001600160a01b0381358116916020013516610c77565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105045780601f106104d957610100808354040283529160200191610504565b820191906000526020600020905b8154815290600101906020018083116104e757829003601f168201915b505050505090505b90565b600081158061053f57503360009081526001602090815260408083206001600160a01b0387168452909152902054155b61054857600080fd5b610553338484610ca2565b50600192915050565b60025490565b600061056f848484610d94565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546105af9186916105aa908663ffffffff610e9416565b610ca2565b5060019392505050565b601281565b60055460ff1690565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105539185906105aa908663ffffffff610ea916565b61060d3382610ec2565b50565b60008060006025848154811061062257fe5b6000918252602090912060039091020154602580546001600160a01b03909216918690811061064d57fe5b9060005260206000209060030201600101546025868154811061066c57fe5b9060005260206000209060030201600201549250925092509193909250565b6026546000906001600160a01b031633146106a557600080fd5b602654600160a01b900460ff166106bb57600080fd5b60255482106106fe57604051600160e51b62461bcd02815260040180806020018281038252602381526020018061126b6023913960400191505060405180910390fd5b60258054600019810190811061071057fe5b90600052602060002090600302016025838154811061072b57fe5b60009182526020909120825460039092020180546001600160a01b0319166001600160a01b039092169190911781556001808301549082015560029182015491015560258054600019810190811061077f57fe5b60009182526020822060039091020180546001600160a01b031916815560018101829055600201556025805490610553906000198301611166565b6001600160a01b031660009081526020819052604090205490565b6026546000906001600160a01b031633146107ef57600080fd5b602654600160a01b900460ff1661080557600080fd5b6001600160a01b03841661081857600080fd5b42831161085957604051600160e51b62461bcd0281526004018080602001828103825260328152602001806112f56032913960400191505060405180910390fd5b610861611197565b5050604080516060810182526001600160a01b03948516815260208101938452908101918252602580546001808201835560009290925291517f401968ff42a154441da5f6c4c935ac46b8671f0e062baaa62a7545ba53bb6e4c600390930292830180546001600160a01b031916919096161790945591517f401968ff42a154441da5f6c4c935ac46b8671f0e062baaa62a7545ba53bb6e4d830155517f401968ff42a154441da5f6c4c935ac46b8671f0e062baaa62a7545ba53bb6e4e9091015590565b6026546000906001600160a01b0316331461094057600080fd5b602654600160a01b900460ff1661095657600080fd5b6001600160a01b03841661096957600080fd5b601f83106109ab57604051600160e51b62461bcd0281526004018080602001828103825260228152602001806112af6022913960400191505060405180910390fd5b6109c484600685601f81106109bc57fe5b0154846107d5565b949350505050565b6109d68282610f9e565b5050565b6026546000906001600160a01b031633146109f457600080fd5b602654600160a01b900460ff16610a0a57600080fd5b506026805474ff000000000000000000000000000000000000000019169055600190565b60255490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105045780601f106104d957610100808354040283529160200191610504565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105539185906105aa908663ffffffff610e9416565b6000610553338484610d94565b6026546000906001600160a01b03163314610af857600080fd5b602654600160a01b900460ff16610b0e57600080fd5b602554610b1a57600080fd5b60005b602554811015610c735760258181548110610b3457fe5b9060005260206000209060030201600101544210610c6b57610ba460258281548110610b5c57fe5b600091825260209182902060408051606081018252600390930290910180546001600160a01b0316835260018101549383019390935260029092015491810191909152610fe3565b15610c6b57602580546000198101908110610bbb57fe5b906000526020600020906003020160258281548110610bd657fe5b60009182526020909120825460039092020180546001600160a01b0319166001600160a01b0390921691909117815560018083015490820155600291820154910155602580546000198101908110610c2a57fe5b60009182526020822060039091020180546001600160a01b031916815560018101829055600201556025805490610c65906000198301611166565b50610b1d565b600101610b1d565b5090565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b038316610cea57604051600160e51b62461bcd0281526004018080602001828103825260248152602001806112d16024913960400191505060405180910390fd5b6001600160a01b038216610d3257604051600160e51b62461bcd0281526004018080602001828103825260228152602001806112496022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216610ddc57604051600160e51b62461bcd0281526004018080602001828103825260238152602001806112266023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610e05908263ffffffff610e9416565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e3a908263ffffffff610ea916565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610ea357600080fd5b50900390565b600082820183811015610ebb57600080fd5b9392505050565b6001600160a01b038216610f0a57604051600160e51b62461bcd02815260040180806020018281038252602181526020018061128e6021913960400191505060405180910390fd5b600254610f1d908263ffffffff610e9416565b6002556001600160a01b038216600090815260208190526040902054610f49908263ffffffff610e9416565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610fa88282610ec2565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546109d69184916105aa908563ffffffff610e9416565b6026546000906001600160a01b03163314610ffd57600080fd5b602654600160a01b900460ff1661101357600080fd5b816020015142101561105957604051600160e51b62461bcd0281526004018080602001828103825260328152602001806111f46032913960400191505060405180910390fd5b61106b82600001518360400151611073565b506001919050565b6001600160a01b0382166110d15760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546110e4908263ffffffff610ea916565b6002556001600160a01b038216600090815260208190526040902054611110908263ffffffff610ea916565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b8154818355818111156111925760030281600302836000526020600020918201910161119291906111c1565b505050565b604051806060016040528060006001600160a01b0316815260200160008152602001600081525090565b61050c91905b80821115610c735780546001600160a01b031916815560006001820181905560028201556003016111c756fe546f6b656e54696d656c6f636b3a2063757272656e742074696d65206973206265666f72652072656c656173652074696d6545524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737372656d6f766554696d654d696e743a20696e646578206f7574206f662072616e67652e45524332303a206275726e2066726f6d20746865207a65726f2061646472657373696e7365727454696d654d696e743a20696e646578206f7574206f662072616e676545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546f6b656e54696d656c6f636b3a2072656c656173652074696d65206973206265666f72652063757272656e742074696d65a165627a7a72305820619b3710955d112d47005cf856a1f95b35e9821f39db0f7184b67f2d5c14e54f0029

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b857806395527cd51161007c57806395527cd5146103da57806395d89b41146103e2578063a457c2d7146103ea578063a9059cbb14610416578063d5a38e3614610442578063dd62ed3e1461044a57610137565b806370a082311461031c57806375aacfa314610342578063774963411461037457806379cc6790146103a65780637d64bcb4146103d257610137565b8063313ce567116100ff578063313ce56714610267578063395093511461026f57806342966c681461029b57806354a8e944146102ba57806357cbf6fc146102ff57610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f957806323b872dd146102135780632e0f262514610249575b600080fd5b610144610478565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b03813516906020013561050f565b604080519115158252519081900360200190f35b61020161055c565b60408051918252519081900360200190f35b6101e56004803603606081101561022957600080fd5b506001600160a01b03813581169160208101359091169060400135610562565b6102516105b9565b6040805160ff9092168252519081900360200190f35b6102516105be565b6101e56004803603604081101561028557600080fd5b506001600160a01b0381351690602001356105c7565b6102b8600480360360208110156102b157600080fd5b5035610603565b005b6102d7600480360360208110156102d057600080fd5b5035610610565b604080516001600160a01b039094168452602084019290925282820152519081900360600190f35b6101e56004803603602081101561031557600080fd5b503561068b565b6102016004803603602081101561033257600080fd5b50356001600160a01b03166107ba565b6101e56004803603606081101561035857600080fd5b506001600160a01b0381351690602081013590604001356107d5565b6101e56004803603606081101561038a57600080fd5b506001600160a01b038135169060208101359060400135610926565b6102b8600480360360408110156103bc57600080fd5b506001600160a01b0381351690602001356109cc565b6101e56109da565b610201610a2e565b610144610a34565b6101e56004803603604081101561040057600080fd5b506001600160a01b038135169060200135610a95565b6101e56004803603604081101561042c57600080fd5b506001600160a01b038135169060200135610ad1565b6101e5610ade565b6102016004803603604081101561046057600080fd5b506001600160a01b0381358116916020013516610c77565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105045780601f106104d957610100808354040283529160200191610504565b820191906000526020600020905b8154815290600101906020018083116104e757829003601f168201915b505050505090505b90565b600081158061053f57503360009081526001602090815260408083206001600160a01b0387168452909152902054155b61054857600080fd5b610553338484610ca2565b50600192915050565b60025490565b600061056f848484610d94565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546105af9186916105aa908663ffffffff610e9416565b610ca2565b5060019392505050565b601281565b60055460ff1690565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105539185906105aa908663ffffffff610ea916565b61060d3382610ec2565b50565b60008060006025848154811061062257fe5b6000918252602090912060039091020154602580546001600160a01b03909216918690811061064d57fe5b9060005260206000209060030201600101546025868154811061066c57fe5b9060005260206000209060030201600201549250925092509193909250565b6026546000906001600160a01b031633146106a557600080fd5b602654600160a01b900460ff166106bb57600080fd5b60255482106106fe57604051600160e51b62461bcd02815260040180806020018281038252602381526020018061126b6023913960400191505060405180910390fd5b60258054600019810190811061071057fe5b90600052602060002090600302016025838154811061072b57fe5b60009182526020909120825460039092020180546001600160a01b0319166001600160a01b039092169190911781556001808301549082015560029182015491015560258054600019810190811061077f57fe5b60009182526020822060039091020180546001600160a01b031916815560018101829055600201556025805490610553906000198301611166565b6001600160a01b031660009081526020819052604090205490565b6026546000906001600160a01b031633146107ef57600080fd5b602654600160a01b900460ff1661080557600080fd5b6001600160a01b03841661081857600080fd5b42831161085957604051600160e51b62461bcd0281526004018080602001828103825260328152602001806112f56032913960400191505060405180910390fd5b610861611197565b5050604080516060810182526001600160a01b03948516815260208101938452908101918252602580546001808201835560009290925291517f401968ff42a154441da5f6c4c935ac46b8671f0e062baaa62a7545ba53bb6e4c600390930292830180546001600160a01b031916919096161790945591517f401968ff42a154441da5f6c4c935ac46b8671f0e062baaa62a7545ba53bb6e4d830155517f401968ff42a154441da5f6c4c935ac46b8671f0e062baaa62a7545ba53bb6e4e9091015590565b6026546000906001600160a01b0316331461094057600080fd5b602654600160a01b900460ff1661095657600080fd5b6001600160a01b03841661096957600080fd5b601f83106109ab57604051600160e51b62461bcd0281526004018080602001828103825260228152602001806112af6022913960400191505060405180910390fd5b6109c484600685601f81106109bc57fe5b0154846107d5565b949350505050565b6109d68282610f9e565b5050565b6026546000906001600160a01b031633146109f457600080fd5b602654600160a01b900460ff16610a0a57600080fd5b506026805474ff000000000000000000000000000000000000000019169055600190565b60255490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105045780601f106104d957610100808354040283529160200191610504565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105539185906105aa908663ffffffff610e9416565b6000610553338484610d94565b6026546000906001600160a01b03163314610af857600080fd5b602654600160a01b900460ff16610b0e57600080fd5b602554610b1a57600080fd5b60005b602554811015610c735760258181548110610b3457fe5b9060005260206000209060030201600101544210610c6b57610ba460258281548110610b5c57fe5b600091825260209182902060408051606081018252600390930290910180546001600160a01b0316835260018101549383019390935260029092015491810191909152610fe3565b15610c6b57602580546000198101908110610bbb57fe5b906000526020600020906003020160258281548110610bd657fe5b60009182526020909120825460039092020180546001600160a01b0319166001600160a01b0390921691909117815560018083015490820155600291820154910155602580546000198101908110610c2a57fe5b60009182526020822060039091020180546001600160a01b031916815560018101829055600201556025805490610c65906000198301611166565b50610b1d565b600101610b1d565b5090565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b038316610cea57604051600160e51b62461bcd0281526004018080602001828103825260248152602001806112d16024913960400191505060405180910390fd5b6001600160a01b038216610d3257604051600160e51b62461bcd0281526004018080602001828103825260228152602001806112496022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216610ddc57604051600160e51b62461bcd0281526004018080602001828103825260238152602001806112266023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610e05908263ffffffff610e9416565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e3a908263ffffffff610ea916565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610ea357600080fd5b50900390565b600082820183811015610ebb57600080fd5b9392505050565b6001600160a01b038216610f0a57604051600160e51b62461bcd02815260040180806020018281038252602181526020018061128e6021913960400191505060405180910390fd5b600254610f1d908263ffffffff610e9416565b6002556001600160a01b038216600090815260208190526040902054610f49908263ffffffff610e9416565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610fa88282610ec2565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546109d69184916105aa908563ffffffff610e9416565b6026546000906001600160a01b03163314610ffd57600080fd5b602654600160a01b900460ff1661101357600080fd5b816020015142101561105957604051600160e51b62461bcd0281526004018080602001828103825260328152602001806111f46032913960400191505060405180910390fd5b61106b82600001518360400151611073565b506001919050565b6001600160a01b0382166110d15760408051600160e51b62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546110e4908263ffffffff610ea916565b6002556001600160a01b038216600090815260208190526040902054611110908263ffffffff610ea916565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b8154818355818111156111925760030281600302836000526020600020918201910161119291906111c1565b505050565b604051806060016040528060006001600160a01b0316815260200160008152602001600081525090565b61050c91905b80821115610c735780546001600160a01b031916815560006001820181905560028201556003016111c756fe546f6b656e54696d656c6f636b3a2063757272656e742074696d65206973206265666f72652072656c656173652074696d6545524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737372656d6f766554696d654d696e743a20696e646578206f7574206f662072616e67652e45524332303a206275726e2066726f6d20746865207a65726f2061646472657373696e7365727454696d654d696e743a20696e646578206f7574206f662072616e676545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373546f6b656e54696d656c6f636b3a2072656c656173652074696d65206973206265666f72652063757272656e742074696d65a165627a7a72305820619b3710955d112d47005cf856a1f95b35e9821f39db0f7184b67f2d5c14e54f0029

Deployed Bytecode Sourcemap

110:6787:5:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;110:6787:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;628:81:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;628:81:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2715:211:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2715:211:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;909:89;;;:::i;:::-;;;;;;;;;;;;;;;;3389:224;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3389:224:0;;;;;;;;;;;;;;;;;:::i;170:35:5:-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;930:81:2;;;:::i;4127:200:0:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4127:200:0;;;;;;;;:::i;295:77:1:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;295:77:1;;:::i;:::-;;3649:201:5;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3649:201:5;;:::i;:::-;;;;-1:-1:-1;;;;;3649:201:5;;;;;;;;;;;;;;;;;;;;;;;;;5040:352;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5040:352:5;;:::i;1210:104:0:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1210:104:0;-1:-1:-1;;;;;1210:104:0;;:::i;4392:490:5:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4392:490:5;;;;;;;;;;;;;:::i;3975:345::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3975:345:5;;;;;;;;;;;;;:::i;620:93:1:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;620:93:1;;;;;;;;:::i;6738:156:5:-;;;:::i;3466:101::-;;;:::i;771:85:2:-;;;:::i;4846:210:0:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4846:210:0;;;;;;;;:::i;1942:137::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;1942:137:0;;;;;;;;:::i;5477:874:5:-;;;:::i;1645:129:0:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;1645:129:0;;;;;;;;;;:::i;628:81:2:-;697:5;690:12;;;;;;;;-1:-1:-1;;690:12:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;665:13;;690:12;;697:5;;690:12;;697:5;690:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;628:81;;:::o;2715:211:0:-;2780:4;2804:9;;;:47;;-1:-1:-1;2826:10:0;2817:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;2817:29:0;;;;;;;;;;:34;2804:47;2796:56;;;;;;2862:36;2871:10;2883:7;2892:5;2862:8;:36::i;:::-;-1:-1:-1;2915:4:0;2715:211;;;;:::o;909:89::-;979:12;;909:89;:::o;3389:224::-;3468:4;3484:26;3494:4;3500:2;3504:5;3484:9;:26::i;:::-;-1:-1:-1;;;;;3547:14:0;;;;;;:8;:14;;;;;;;;3535:10;3547:26;;;;;;;;;3520:65;;3529:4;;3547:37;;3578:5;3547:37;:30;:37;:::i;:::-;3520:8;:65::i;:::-;-1:-1:-1;3602:4:0;3389:224;;;;;:::o;170:35:5:-;203:2;170:35;:::o;930:81:2:-;995:9;;;;930:81;:::o;4127:200:0:-;4232:10;4207:4;4253:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;4253:29:0;;;;;;;;;;4207:4;;4223:76;;4244:7;;4253:45;;4287:10;4253:45;:33;:45;:::i;295:77:1:-;341:24;347:10;359:5;341;:24::i;:::-;295:77;:::o;3649:201:5:-;3706:7;3715;3724;3751:12;3764:5;3751:19;;;;;;;;;;;;;;;;;;;;;:31;3784:12;:19;;-1:-1:-1;;;;;3751:31:5;;;;3797:5;;3784:19;;;;;;;;;;;;;;;;:31;;;3817:12;3830:5;3817:19;;;;;;;;;;;;;;;;;;:25;;;3743:100;;;;;;3649:201;;;;;:::o;5040:352::-;1464:5;;5110:4;;-1:-1:-1;;;;;1464:5:5;1450:10;:19;1442:28;;;;;;1535:12;;-1:-1:-1;;;1535:12:5;;;;1527:21;;;;;;5155:12;:19;5147:27;;5125:89;;;;-1:-1:-1;;;;;5125:89:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5246:12;5259:19;;-1:-1:-1;;5259:21:5;;;5246:35;;;;;;;;;;;;;;;;5224:12;5237:5;5224:19;;;;;;;;;;;;;;;;:57;;:19;;;;;:57;;-1:-1:-1;;;;;;5224:57:5;-1:-1:-1;;;;;5224:57:5;;;;;;;;;;;;;;;;;;;;;;;;;;5298:12;5311:19;;-1:-1:-1;;5311:21:5;;;5298:35;;;;;;;;;;;;;;;;;;5291:42;;-1:-1:-1;;;;;;5291:42:5;;;;;;;;;;;;5343:12;:21;;;;;-1:-1:-1;;5343:21:5;;;:::i;1210:104:0:-;-1:-1:-1;;;;;1291:16:0;1265:7;1291:16;;;;;;;;;;;;1210:104::o;4392:490:5:-;1464:5;;4510:4;;-1:-1:-1;;;;;1464:5:5;1450:10;:19;1442:28;;;;;;1535:12;;-1:-1:-1;;;1535:12:5;;;;1527:21;;;;;;-1:-1:-1;;;;;4533:26:5;;4525:35;;;;;;4593:15;4578:12;:30;4570:93;;;;-1:-1:-1;;;;;4570:93:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4673:20;;:::i;:::-;-1:-1:-1;;4696:125:5;;;;;;;;-1:-1:-1;;;;;4696:125:5;;;;;;;;;;;;;;;;;4831:12;27:10:-1;;39:1;23:18;;;45:23;;-1:-1;4831:23:5;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4831:23:5;;;;;;;;;;;;;;;;;;;;;39:1:-1;4392:490:5:o;3975:345::-;1464:5;;4095:4;;-1:-1:-1;;;;;1464:5:5;1450:10;:19;1442:28;;;;;;1535:12;;-1:-1:-1;;;1535:12:5;;;;1527:21;;;;;;-1:-1:-1;;;;;4118:26:5;;4110:35;;;;;;4185:17;4177:5;:25;4155:86;;;;-1:-1:-1;;;;;4155:86:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4258:55;4273:12;4287:10;4298:5;4287:17;;;;;;;;;4306:6;4258:14;:55::i;:::-;4251:62;3975:345;-1:-1:-1;;;;3975:345:5:o;620:93:1:-;684:22;694:4;700:5;684:9;:22::i;:::-;620:93;;:::o;6738:156:5:-;1464:5;;6797:4;;-1:-1:-1;;;;;1464:5:5;1450:10;:19;1442:28;;;;;;1535:12;;-1:-1:-1;;;1535:12:5;;;;1527:21;;;;;;-1:-1:-1;6813:12:5;:20;;-1:-1:-1;;6813:20:5;;;;6738:156;:::o;3466:101::-;3541:12;:19;3466:101;:::o;771:85:2:-;842:7;835:14;;;;;;;;-1:-1:-1;;835:14:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;810:13;;835:14;;842:7;;835:14;;842:7;835:14;;;;;;;;;;;;;;;;;;;;;;;;4846:210:0;4956:10;4931:4;4977:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;4977:29:0;;;;;;;;;;4931:4;;4947:81;;4968:7;;4977:50;;5011:15;4977:50;:33;:50;:::i;1942:137::-;2003:4;2019:32;2029:10;2041:2;2045:5;2019:9;:32::i;5477:874:5:-;1464:5;;5543:4;;-1:-1:-1;;;;;1464:5:5;1450:10;:19;1442:28;;;;;;1535:12;;-1:-1:-1;;;1535:12:5;;;;1527:21;;;;;;5567:12;:19;5559:32;;;;;;5601:6;5621:724;5632:12;:19;5628:23;;5621:724;;;5690:12;5703:1;5690:15;;;;;;;;;;;;;;;;;;:27;;;5671:15;:46;5667:543;;5765:29;5778:12;5791:1;5778:15;;;;;;;;;;;;;;;;;5765:29;;;;;;;;5778:15;;;;;;;5765:29;;-1:-1:-1;;;;;5765:29:5;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:29::i;:::-;5761:435;;;5902:12;5915:19;;-1:-1:-1;;5915:21:5;;;5902:35;;;;;;;;;;;;;;;;5884:12;5897:1;5884:15;;;;;;;;;;;;;;;;:53;;:15;;;;;:53;;-1:-1:-1;;;;;;5884:53:5;-1:-1:-1;;;;;5884:53:5;;;;;;;;;;;;;;;;;;;;;;;;;;6042:12;6055:19;;-1:-1:-1;;6055:21:5;;;6042:35;;;;;;;;;;;;;;;;;;6035:42;;-1:-1:-1;;;;;;6035:42:5;;;;;;;;;;;;6099:12;:21;;;;;-1:-1:-1;;6099:21:5;;;:::i;:::-;;6142:8;;5761:435;6223:3;;5621:724;;;1558:1;5477:874;:::o;1645:129:0:-;-1:-1:-1;;;;;1743:15:0;;;1717:7;1743:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;1645:129::o;7003:326::-;-1:-1:-1;;;;;7095:19:0;;7087:68;;;;-1:-1:-1;;;;;7087:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7173:21:0;;7165:68;;;;-1:-1:-1;;;;;7165:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7244:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;7291:31;;;;;;;;;;;;;;;;;7003:326;;;:::o;5276:295::-;-1:-1:-1;;;;;5363:16:0;;5355:64;;;;-1:-1:-1;;;;;5355:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5448:15:0;;:9;:15;;;;;;;;;;;:26;;5468:5;5448:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;5430:15:0;;;:9;:15;;;;;;;;;;;:44;;;;5500:13;;;;;;;:24;;5518:5;5500:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;5484:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;5539:25;;;;;;;5484:13;;5539:25;;;;;;;;;;;;;5276:295;;;:::o;1212:145:4:-;1270:7;1302:1;1297;:6;;1289:15;;;;;;-1:-1:-1;1326:5:4;;;1212:145::o;1440:::-;1498:7;1529:5;;;1552:6;;;;1544:15;;;;;;1577:1;1440:145;-1:-1:-1;;;1440:145:4:o;6438:300:0:-;-1:-1:-1;;;;;6512:21:0;;6504:67;;;;-1:-1:-1;;;;;6504:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6597:12;;:23;;6614:5;6597:23;:16;:23;:::i;:::-;6582:12;:38;-1:-1:-1;;;;;6651:18:0;;:9;:18;;;;;;;;;;;:29;;6674:5;6651:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;6630:18:0;;:9;:18;;;;;;;;;;;:50;;;;6695:36;;;;;;;6630:9;;6695:36;;;;;;;;;;;6438:300;;:::o;7718:179::-;7788:21;7794:7;7803:5;7788;:21::i;:::-;-1:-1:-1;;;;;7849:17:0;;;;;;:8;:17;;;;;;;;7837:10;7849:29;;;;;;;;;7819:71;;7828:7;;7849:40;;7883:5;7849:40;:33;:40;:::i;6361:318:5:-;1464:5;;6440:4;;-1:-1:-1;;;;;1464:5:5;1450:10;:19;1442:28;;;;;;1535:12;;-1:-1:-1;;;1535:12:5;;;;1527:21;;;;;;6483:4;:16;;;6464:15;:35;;6456:98;;;;-1:-1:-1;;;;;6456:98:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6564:35;6570:4;:16;;;6588:4;:10;;;6564:5;:35::i;:::-;-1:-1:-1;6668:4:5;6361:318;;;:::o;5914:298:0:-;-1:-1:-1;;;;;5988:21:0;;5980:65;;;;;-1:-1:-1;;;;;5980:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6071:12;;:23;;6088:5;6071:23;:16;:23;:::i;:::-;6056:12;:38;-1:-1:-1;;;;;6125:18:0;;:9;:18;;;;;;;;;;;:29;;6148:5;6125:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;6104:18:0;;:9;:18;;;;;;;;;;;:50;;;;6169:36;;;;;;;6104:18;;:9;;6169:36;;;;;;;;;;5914:298;;:::o;110:6787:5:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::o;:::-;;;;;;;;;;-1:-1:-1;;;;;110:6787:5;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;;110:6787:5;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://619b3710955d112d47005cf856a1f95b35e9821f39db0f7184b67f2d5c14e54f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.