ETH Price: $2,289.94 (+1.10%)

Token

AIDUS TOKEN (AIDUS)
 

Overview

Max Total Supply

10,000,000,000 AIDUS

Holders

903 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
565,495.674 AIDUS

Value
$0.00
0xd7664ef9c11551fd4e3c9867a54666707c13aedc
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

AIDUS is a decentralized platform established upon the Ethereum network to serve as a professional asset management platform.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AidusToken

Compiler Version
v0.5.0+commit.1d4f565a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-11-29
*/

pragma solidity ^0.5.0;

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @return the address of the owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

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

    /**
     * @return true if `msg.sender` is the owner of the contract.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Allows the current owner to relinquish control of the contract.
     * @notice Renouncing to ownership will leave the contract without an owner.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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

    /**
     * @dev Transfers control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0));
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

pragma solidity ^0.5.0;

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/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: node_modules\openzeppelin-solidity\contracts\math\SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @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: node_modules\openzeppelin-solidity\contracts\token\ERC20\ERC20.sol

pragma solidity ^0.5.0;



/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * 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 An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address owner) public view returns (uint256) {
        return _balances[owner];
    }

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

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

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

        _allowed[msg.sender][spender] = value;
        emit Approval(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) {
        _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
        _transfer(from, to, value);
        emit Approval(from, msg.sender, _allowed[from][msg.sender]);
        return true;
    }

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

        _allowed[msg.sender][spender] = _allowed[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

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

        _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        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 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 {
        _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(value);
        _burn(account, value);
        emit Approval(account, msg.sender, _allowed[account][msg.sender]);
    }
}

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

pragma solidity ^0.5.0;


/**
 * @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 address which you want to send tokens from
     * @param value uint256 The amount of token to be burned
     */
    function burnFrom(address from, uint256 value) public {
        _burnFrom(from, value);
    }
}

// File: node_modules\openzeppelin-solidity\contracts\access\Roles.sol

pragma solidity ^0.5.0;

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

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

        role.bearer[account] = true;
    }

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

        role.bearer[account] = false;
    }

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

// File: node_modules\openzeppelin-solidity\contracts\access\roles\MinterRole.sol

pragma solidity ^0.5.0;


contract MinterRole {
    using Roles for Roles.Role;

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

    Roles.Role private _minters;

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

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

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

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

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

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

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

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

pragma solidity ^0.5.0;



/**
 * @title ERC20Mintable
 * @dev ERC20 minting logic
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @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 mint(address to, uint256 value) public onlyMinter returns (bool) {
        _mint(to, value);
        return true;
    }
}

// File: contracts\ERC20Frozenable.sol

pragma solidity ^0.5.0;


//truffle-flattener Token.sol
contract ERC20Frozenable is ERC20Burnable, ERC20Mintable, Ownable {
    mapping (address => bool) private _frozenAccount;
    event FrozenFunds(address target, bool frozen);


    function frozenAccount(address _address) public view returns(bool isFrozen) {
        return _frozenAccount[_address];
    }

    function freezeAccount(address target, bool freeze)  public onlyOwner {
        require(_frozenAccount[target] != freeze, "Same as current");
        _frozenAccount[target] = freeze;
        emit FrozenFunds(target, freeze);
    }

    function _transfer(address from, address to, uint256 value) internal {
        require(!_frozenAccount[from], "error - frozen");
        require(!_frozenAccount[to], "error - frozen");
        super._transfer(from, to, value);
    }

}

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

pragma solidity ^0.5.0;


/**
 * @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.sol

pragma solidity ^0.5.0;

//truffle-flattener Token.sol
contract AidusToken is ERC20Frozenable, ERC20Detailed {

    constructor()
    ERC20Detailed("AIDUS TOKEN", "AIDUS", 18)
    public {
        uint256 supply = 10000000000;
        uint256 initialSupply = supply * uint(10) ** decimals();
        _mint(msg.sender, initialSupply);
    }
}

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":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":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","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":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"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":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"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":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","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":true,"inputs":[{"name":"_address","type":"address"}],"name":"frozenAccount","outputs":[{"name":"isFrozen","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"}]

60806040523480156200001157600080fd5b506040805190810160405280600b81526020017f414944555320544f4b454e0000000000000000000000000000000000000000008152506040805190810160405280600581526020017f414944555300000000000000000000000000000000000000000000000000000081525060126200009a336200016b640100000000026401000000009004565b60048054600160a060020a031916331790819055604051600160a060020a0391909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38251620000fb90600690602086019062000333565b5081516200011190600790602085019062000333565b506008805460ff191660ff92909216919091179055506402540be4009050600062000144640100000000620001bd810204565b60ff16600a0a82029050620001633382640100000000620001c7810204565b5050620003d5565b62000186600382640100000000620010fc6200028682021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60085460ff165b90565b600160a060020a0382161515620001dd57600080fd5b600254620001fa908264010000000062000cce620002e182021704565b600255600160a060020a03821660009081526020819052604090205462000230908264010000000062000cce620002e182021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a03811615156200029c57600080fd5b620002b18282640100000000620002fb810204565b15620002bc57600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600082820183811015620002f457600080fd5b9392505050565b6000600160a060020a03821615156200031357600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200037657805160ff1916838001178555620003a6565b82800160010185558215620003a6579182015b82811115620003a657825182559160200191906001019062000389565b50620003b4929150620003b8565b5090565b620001c491905b80821115620003b45760008155600101620003bf565b6111e280620003e56000396000f3fe6080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610137578063095ea7b3146101c157806318160ddd1461020e57806323b872dd14610235578063313ce5671461027857806339509351146102a357806340c10f19146102dc57806342966c681461031557806370a0823114610341578063715018a61461037457806379cc6790146103895780638da5cb5b146103c25780638f32d59b146103f357806395d89b4114610408578063983b2d561461041d5780639865027514610450578063a457c2d714610465578063a9059cbb1461049e578063aa271e1a146104d7578063b414d4b61461050a578063dd62ed3e1461053d578063e724529c14610578578063f2fde38b146105b3575b600080fd5b34801561014357600080fd5b5061014c6105e6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561018657818101518382015260200161016e565b50505050905090810190601f1680156101b35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101cd57600080fd5b506101fa600480360360408110156101e457600080fd5b50600160a060020a03813516906020013561067c565b604080519115158252519081900360200190f35b34801561021a57600080fd5b506102236106e8565b60408051918252519081900360200190f35b34801561024157600080fd5b506101fa6004803603606081101561025857600080fd5b50600160a060020a038135811691602081013590911690604001356106ee565b34801561028457600080fd5b5061028d6107a5565b6040805160ff9092168252519081900360200190f35b3480156102af57600080fd5b506101fa600480360360408110156102c657600080fd5b50600160a060020a0381351690602001356107ae565b3480156102e857600080fd5b506101fa600480360360408110156102ff57600080fd5b50600160a060020a03813516906020013561084c565b34801561032157600080fd5b5061033f6004803603602081101561033857600080fd5b5035610875565b005b34801561034d57600080fd5b506102236004803603602081101561036457600080fd5b5035600160a060020a0316610882565b34801561038057600080fd5b5061033f61089d565b34801561039557600080fd5b5061033f600480360360408110156103ac57600080fd5b50600160a060020a038135169060200135610907565b3480156103ce57600080fd5b506103d7610915565b60408051600160a060020a039092168252519081900360200190f35b3480156103ff57600080fd5b506101fa610924565b34801561041457600080fd5b5061014c610935565b34801561042957600080fd5b5061033f6004803603602081101561044057600080fd5b5035600160a060020a0316610996565b34801561045c57600080fd5b5061033f6109b3565b34801561047157600080fd5b506101fa6004803603604081101561048857600080fd5b50600160a060020a0381351690602001356109be565b3480156104aa57600080fd5b506101fa600480360360408110156104c157600080fd5b50600160a060020a038135169060200135610a09565b3480156104e357600080fd5b506101fa600480360360208110156104fa57600080fd5b5035600160a060020a0316610a16565b34801561051657600080fd5b506101fa6004803603602081101561052d57600080fd5b5035600160a060020a0316610a2f565b34801561054957600080fd5b506102236004803603604081101561056057600080fd5b50600160a060020a0381358116916020013516610a4d565b34801561058457600080fd5b5061033f6004803603604081101561059b57600080fd5b50600160a060020a0381351690602001351515610a78565b3480156105bf57600080fd5b5061033f600480360360208110156105d657600080fd5b5035600160a060020a0316610b7d565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106725780601f1061064757610100808354040283529160200191610672565b820191906000526020600020905b81548152906001019060200180831161065557829003601f168201915b5050505050905090565b6000600160a060020a038316151561069357600080fd5b336000818152600160209081526040808320600160a060020a0388168085529083529281902086905580518681529051929392600080516020611197833981519152929181900390910190a350600192915050565b60025490565b600160a060020a0383166000908152600160209081526040808320338452909152812054610722908363ffffffff610b9916565b600160a060020a0385166000908152600160209081526040808320338452909152902055610751848484610bae565b600160a060020a038416600081815260016020908152604080832033808552908352928190205481519081529051929392600080516020611197833981519152929181900390910190a35060019392505050565b60085460ff1690565b6000600160a060020a03831615156107c557600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546107f9908363ffffffff610cce16565b336000818152600160209081526040808320600160a060020a038916808552908352928190208590558051948552519193600080516020611197833981519152929081900390910190a350600192915050565b600061085733610a16565b151561086257600080fd5b61086c8383610ce7565b50600192915050565b61087f3382610d91565b50565b600160a060020a031660009081526020819052604090205490565b6108a5610924565b15156108b057600080fd5b600454604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36004805473ffffffffffffffffffffffffffffffffffffffff19169055565b6109118282610e3a565b5050565b600454600160a060020a031690565b600454600160a060020a0316331490565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106725780601f1061064757610100808354040283529160200191610672565b61099f33610a16565b15156109aa57600080fd5b61087f81610eea565b6109bc33610f32565b565b6000600160a060020a03831615156109d557600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546107f9908363ffffffff610b9916565b600061086c338484610bae565b6000610a2960038363ffffffff610f7a16565b92915050565b600160a060020a031660009081526005602052604090205460ff1690565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b610a80610924565b1515610a8b57600080fd5b600160a060020a03821660009081526005602052604090205460ff1615158115151415610b1957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f53616d652061732063757272656e740000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a038216600081815260056020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b610b85610924565b1515610b9057600080fd5b61087f81610fb1565b600082821115610ba857600080fd5b50900390565b600160a060020a03831660009081526005602052604090205460ff1615610c3657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f6572726f72202d2066726f7a656e000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a03821660009081526005602052604090205460ff1615610cbe57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f6572726f72202d2066726f7a656e000000000000000000000000000000000000604482015290519081900360640190fd5b610cc983838361102f565b505050565b600082820183811015610ce057600080fd5b9392505050565b600160a060020a0382161515610cfc57600080fd5b600254610d0f908263ffffffff610cce16565b600255600160a060020a038216600090815260208190526040902054610d3b908263ffffffff610cce16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0382161515610da657600080fd5b600254610db9908263ffffffff610b9916565b600255600160a060020a038216600090815260208190526040902054610de5908263ffffffff610b9916565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a0382166000908152600160209081526040808320338452909152902054610e6e908263ffffffff610b9916565b600160a060020a0383166000908152600160209081526040808320338452909152902055610e9c8282610d91565b600160a060020a038216600081815260016020908152604080832033808552908352928190205481519081529051929392600080516020611197833981519152929181900390910190a35050565b610efb60038263ffffffff6110fc16565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610f4360038263ffffffff61114a16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a0382161515610f9157600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b600160a060020a0381161515610fc657600080fd5b600454604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a038216151561104457600080fd5b600160a060020a03831660009081526020819052604090205461106d908263ffffffff610b9916565b600160a060020a0380851660009081526020819052604080822093909355908416815220546110a2908263ffffffff610cce16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600160a060020a038116151561111157600080fd5b61111b8282610f7a565b1561112557600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600160a060020a038116151561115f57600080fd5b6111698282610f7a565b151561117457600080fd5b600160a060020a0316600090815260209190915260409020805460ff1916905556fe8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a72305820a9f0d0b29c4a0ed6a3ca94c891d3b3a8efa50c6ecd70a4077db840d165dd16100029

Deployed Bytecode

0x6080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610137578063095ea7b3146101c157806318160ddd1461020e57806323b872dd14610235578063313ce5671461027857806339509351146102a357806340c10f19146102dc57806342966c681461031557806370a0823114610341578063715018a61461037457806379cc6790146103895780638da5cb5b146103c25780638f32d59b146103f357806395d89b4114610408578063983b2d561461041d5780639865027514610450578063a457c2d714610465578063a9059cbb1461049e578063aa271e1a146104d7578063b414d4b61461050a578063dd62ed3e1461053d578063e724529c14610578578063f2fde38b146105b3575b600080fd5b34801561014357600080fd5b5061014c6105e6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561018657818101518382015260200161016e565b50505050905090810190601f1680156101b35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101cd57600080fd5b506101fa600480360360408110156101e457600080fd5b50600160a060020a03813516906020013561067c565b604080519115158252519081900360200190f35b34801561021a57600080fd5b506102236106e8565b60408051918252519081900360200190f35b34801561024157600080fd5b506101fa6004803603606081101561025857600080fd5b50600160a060020a038135811691602081013590911690604001356106ee565b34801561028457600080fd5b5061028d6107a5565b6040805160ff9092168252519081900360200190f35b3480156102af57600080fd5b506101fa600480360360408110156102c657600080fd5b50600160a060020a0381351690602001356107ae565b3480156102e857600080fd5b506101fa600480360360408110156102ff57600080fd5b50600160a060020a03813516906020013561084c565b34801561032157600080fd5b5061033f6004803603602081101561033857600080fd5b5035610875565b005b34801561034d57600080fd5b506102236004803603602081101561036457600080fd5b5035600160a060020a0316610882565b34801561038057600080fd5b5061033f61089d565b34801561039557600080fd5b5061033f600480360360408110156103ac57600080fd5b50600160a060020a038135169060200135610907565b3480156103ce57600080fd5b506103d7610915565b60408051600160a060020a039092168252519081900360200190f35b3480156103ff57600080fd5b506101fa610924565b34801561041457600080fd5b5061014c610935565b34801561042957600080fd5b5061033f6004803603602081101561044057600080fd5b5035600160a060020a0316610996565b34801561045c57600080fd5b5061033f6109b3565b34801561047157600080fd5b506101fa6004803603604081101561048857600080fd5b50600160a060020a0381351690602001356109be565b3480156104aa57600080fd5b506101fa600480360360408110156104c157600080fd5b50600160a060020a038135169060200135610a09565b3480156104e357600080fd5b506101fa600480360360208110156104fa57600080fd5b5035600160a060020a0316610a16565b34801561051657600080fd5b506101fa6004803603602081101561052d57600080fd5b5035600160a060020a0316610a2f565b34801561054957600080fd5b506102236004803603604081101561056057600080fd5b50600160a060020a0381358116916020013516610a4d565b34801561058457600080fd5b5061033f6004803603604081101561059b57600080fd5b50600160a060020a0381351690602001351515610a78565b3480156105bf57600080fd5b5061033f600480360360208110156105d657600080fd5b5035600160a060020a0316610b7d565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106725780601f1061064757610100808354040283529160200191610672565b820191906000526020600020905b81548152906001019060200180831161065557829003601f168201915b5050505050905090565b6000600160a060020a038316151561069357600080fd5b336000818152600160209081526040808320600160a060020a0388168085529083529281902086905580518681529051929392600080516020611197833981519152929181900390910190a350600192915050565b60025490565b600160a060020a0383166000908152600160209081526040808320338452909152812054610722908363ffffffff610b9916565b600160a060020a0385166000908152600160209081526040808320338452909152902055610751848484610bae565b600160a060020a038416600081815260016020908152604080832033808552908352928190205481519081529051929392600080516020611197833981519152929181900390910190a35060019392505050565b60085460ff1690565b6000600160a060020a03831615156107c557600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546107f9908363ffffffff610cce16565b336000818152600160209081526040808320600160a060020a038916808552908352928190208590558051948552519193600080516020611197833981519152929081900390910190a350600192915050565b600061085733610a16565b151561086257600080fd5b61086c8383610ce7565b50600192915050565b61087f3382610d91565b50565b600160a060020a031660009081526020819052604090205490565b6108a5610924565b15156108b057600080fd5b600454604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36004805473ffffffffffffffffffffffffffffffffffffffff19169055565b6109118282610e3a565b5050565b600454600160a060020a031690565b600454600160a060020a0316331490565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106725780601f1061064757610100808354040283529160200191610672565b61099f33610a16565b15156109aa57600080fd5b61087f81610eea565b6109bc33610f32565b565b6000600160a060020a03831615156109d557600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546107f9908363ffffffff610b9916565b600061086c338484610bae565b6000610a2960038363ffffffff610f7a16565b92915050565b600160a060020a031660009081526005602052604090205460ff1690565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b610a80610924565b1515610a8b57600080fd5b600160a060020a03821660009081526005602052604090205460ff1615158115151415610b1957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f53616d652061732063757272656e740000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a038216600081815260056020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b610b85610924565b1515610b9057600080fd5b61087f81610fb1565b600082821115610ba857600080fd5b50900390565b600160a060020a03831660009081526005602052604090205460ff1615610c3657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f6572726f72202d2066726f7a656e000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a03821660009081526005602052604090205460ff1615610cbe57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f6572726f72202d2066726f7a656e000000000000000000000000000000000000604482015290519081900360640190fd5b610cc983838361102f565b505050565b600082820183811015610ce057600080fd5b9392505050565b600160a060020a0382161515610cfc57600080fd5b600254610d0f908263ffffffff610cce16565b600255600160a060020a038216600090815260208190526040902054610d3b908263ffffffff610cce16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0382161515610da657600080fd5b600254610db9908263ffffffff610b9916565b600255600160a060020a038216600090815260208190526040902054610de5908263ffffffff610b9916565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a0382166000908152600160209081526040808320338452909152902054610e6e908263ffffffff610b9916565b600160a060020a0383166000908152600160209081526040808320338452909152902055610e9c8282610d91565b600160a060020a038216600081815260016020908152604080832033808552908352928190205481519081529051929392600080516020611197833981519152929181900390910190a35050565b610efb60038263ffffffff6110fc16565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610f4360038263ffffffff61114a16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a0382161515610f9157600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b600160a060020a0381161515610fc657600080fd5b600454604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a038216151561104457600080fd5b600160a060020a03831660009081526020819052604090205461106d908263ffffffff610b9916565b600160a060020a0380851660009081526020819052604080822093909355908416815220546110a2908263ffffffff610cce16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600160a060020a038116151561111157600080fd5b61111b8282610f7a565b1561112557600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600160a060020a038116151561115f57600080fd5b6111698282610f7a565b151561117457600080fd5b600160a060020a0316600090815260209190915260409020805460ff1916905556fe8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a72305820a9f0d0b29c4a0ed6a3ca94c891d3b3a8efa50c6ecd70a4077db840d165dd16100029

Deployed Bytecode Sourcemap

18459:295:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17963:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17963:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;17963:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7856:244;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7856:244:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7856:244:0;;;;;;;;;;;;;;;;;;;;;;;;;;;6015:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6015:91:0;;;;;;;;;;;;;;;;;;;;8573:299;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8573:299:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8573:299:0;;;;;;;;;;;;;;;;;;18279:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18279:83:0;;;;;;;;;;;;;;;;;;;;;;;9387:323;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9387:323:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9387:323:0;;;;;;;;;16215:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16215:131:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16215:131:0;;;;;;;;;13195:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13195:79:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13195:79:0;;;;;6322:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6322:106:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6322:106:0;-1:-1:-1;;;;;6322:106:0;;;1396:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1396:140:0;;;;13533:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13533:95:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13533:95:0;;;;;;;;;683:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;683:79:0;;;;;;;;-1:-1:-1;;;;;683:79:0;;;;;;;;;;;;;;1018:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1018:92:0;;;;18113:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18113:87:0;;;;15296:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15296:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15296:92:0;-1:-1:-1;;;;;15296:92:0;;;15396:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15396:77:0;;;;10230:333;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10230:333:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10230:333:0;;;;;;;;;7069:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7069:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7069:140:0;;;;;;;;;15179:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15179:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15179:109:0;-1:-1:-1;;;;;15179:109:0;;;16640:126;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16640:126:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16640:126:0;-1:-1:-1;;;;;16640:126:0;;;6767:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6767:131:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6767:131:0;;;;;;;;;;;16774:234;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16774:234:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16774:234:0;;;;;;;;;;;1713:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1713:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1713:109:0;-1:-1:-1;;;;;1713:109:0;;;17963:83;18033:5;18026:12;;;;;;;;-1:-1:-1;;18026:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000:13;;18026:12;;18033:5;;18026:12;;18033:5;18026:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17963:83;:::o;7856:244::-;7921:4;-1:-1:-1;;;;;7946:21:0;;;;7938:30;;;;;;7990:10;7981:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7981:29:0;;;;;;;;;;;;:37;;;8034:36;;;;;;;7981:29;;7990:10;-1:-1:-1;;;;;;;;;;;8034:36:0;;;;;;;;;;-1:-1:-1;8088:4:0;7856:244;;;;:::o;6015:91::-;6086:12;;6015:91;:::o;8573:299::-;-1:-1:-1;;;;;8698:14:0;;8652:4;8698:14;;;:8;:14;;;;;;;;8713:10;8698:26;;;;;;;;:37;;8729:5;8698:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;8669:14:0;;;;;;:8;:14;;;;;;;;8684:10;8669:26;;;;;;;:66;8746:26;8678:4;8762:2;8766:5;8746:9;:26::i;:::-;-1:-1:-1;;;;;8788:54:0;;8815:14;;;;:8;:14;;;;;;;;8803:10;8815:26;;;;;;;;;;;8788:54;;;;;;;8803:10;;8788:54;-1:-1:-1;;;;;;;;;;;8788:54:0;;;;;;;;;;-1:-1:-1;8860:4:0;8573:299;;;;;:::o;18279:83::-;18345:9;;;;18279:83;:::o;9387:323::-;9467:4;-1:-1:-1;;;;;9492:21:0;;;;9484:30;;;;;;9568:10;9559:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9559:29:0;;;;;;;;;;:45;;9593:10;9559:45;:33;:45;:::i;:::-;9536:10;9527:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9527:29:0;;;;;;;;;;;;:77;;;9620:60;;;;;;9527:29;;-1:-1:-1;;;;;;;;;;;9620:60:0;;;;;;;;;;-1:-1:-1;9698:4:0;9387:323;;;;:::o;16215:131::-;16283:4;15130:20;15139:10;15130:8;:20::i;:::-;15122:29;;;;;;;;16300:16;16306:2;16310:5;16300;:16::i;:::-;-1:-1:-1;16334:4:0;16215:131;;;;:::o;13195:79::-;13242:24;13248:10;13260:5;13242;:24::i;:::-;13195:79;:::o;6322:106::-;-1:-1:-1;;;;;6404:16:0;6377:7;6404:16;;;;;;;;;;;;6322:106::o;1396:140::-;895:9;:7;:9::i;:::-;887:18;;;;;;;;1479:6;;1458:40;;1495:1;;-1:-1:-1;;;;;1479:6:0;;1458:40;;1495:1;;1458:40;1509:6;:19;;-1:-1:-1;;1509:19:0;;;1396:140::o;13533:95::-;13598:22;13608:4;13614:5;13598:9;:22::i;:::-;13533:95;;:::o;683:79::-;748:6;;-1:-1:-1;;;;;748:6:0;683:79;:::o;1018:92::-;1096:6;;-1:-1:-1;;;;;1096:6:0;1082:10;:20;;1018:92::o;18113:87::-;18185:7;18178:14;;;;;;;;-1:-1:-1;;18178:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18152:13;;18178:14;;18185:7;;18178:14;;18185:7;18178:14;;;;;;;;;;;;;;;;;;;;;;;;15296:92;15130:20;15139:10;15130:8;:20::i;:::-;15122:29;;;;;;;;15361:19;15372:7;15361:10;:19::i;15396:77::-;15440:25;15454:10;15440:13;:25::i;:::-;15396:77::o;10230:333::-;10315:4;-1:-1:-1;;;;;10340:21:0;;;;10332:30;;;;;;10416:10;10407:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10407:29:0;;;;;;;;;;:50;;10441:15;10407:50;:33;:50;:::i;7069:140::-;7130:4;7147:32;7157:10;7169:2;7173:5;7147:9;:32::i;15179:109::-;15235:4;15259:21;:8;15272:7;15259:21;:12;:21;:::i;:::-;15252:28;15179:109;-1:-1:-1;;15179:109:0:o;16640:126::-;-1:-1:-1;;;;;16734:24:0;16701:13;16734:24;;;:14;:24;;;;;;;;;16640:126::o;6767:131::-;-1:-1:-1;;;;;6866:15:0;;;6839:7;6866:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;6767:131::o;16774:234::-;895:9;:7;:9::i;:::-;887:18;;;;;;;;-1:-1:-1;;;;;16863:22:0;;;;;;:14;:22;;;;;;;;:32;;;;;;;16855:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16926:22:0;;;;;;:14;:22;;;;;;;;;:31;;-1:-1:-1;;16926:31:0;;;;;;;;;;16973:27;;;;;;;;;;;;;;;;;;;;;16774:234;;:::o;1713:109::-;895:9;:7;:9::i;:::-;887:18;;;;;;;;1786:28;1805:8;1786:18;:28::i;4353:150::-;4411:7;4439:6;;;;4431:15;;;;;;-1:-1:-1;4469:5:0;;;4353:150::o;17016:236::-;-1:-1:-1;;;;;17105:20:0;;;;;;:14;:20;;;;;;;;17104:21;17096:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17164:18:0;;;;;;:14;:18;;;;;;;;17163:19;17155:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17212:32;17228:4;17234:2;17238:5;17212:15;:32::i;:::-;17016:236;;;:::o;4589:150::-;4647:7;4679:5;;;4703:6;;;;4695:15;;;;;;4730:1;4589:150;-1:-1:-1;;;4589:150:0:o;11399:269::-;-1:-1:-1;;;;;11474:21:0;;;;11466:30;;;;;;11524:12;;:23;;11541:5;11524:23;:16;:23;:::i;:::-;11509:12;:38;-1:-1:-1;;;;;11579:18:0;;:9;:18;;;;;;;;;;;:29;;11602:5;11579:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;11558:18:0;;:9;:18;;;;;;;;;;;:50;;;;11624:36;;;;;;;11558:18;;:9;;11624:36;;;;;;;;;;11399:269;;:::o;11902:::-;-1:-1:-1;;;;;11977:21:0;;;;11969:30;;;;;;12027:12;;:23;;12044:5;12027:23;:16;:23;:::i;:::-;12012:12;:38;-1:-1:-1;;;;;12082:18:0;;:9;:18;;;;;;;;;;;:29;;12105:5;12082:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;12061:18:0;;:9;:18;;;;;;;;;;;:50;;;;12127:36;;;;;;;12061:9;;12127:36;;;;;;;;;;;11902:269;;:::o;12570:259::-;-1:-1:-1;;;;;12673:17:0;;;;;;:8;:17;;;;;;;;12691:10;12673:29;;;;;;;;:40;;12707:5;12673:40;:33;:40;:::i;:::-;-1:-1:-1;;;;;12641:17:0;;;;;;:8;:17;;;;;;;;12659:10;12641:29;;;;;;;:72;12724:21;12650:7;12739:5;12724;:21::i;:::-;-1:-1:-1;;;;;12761:60:0;;12791:17;;;;:8;:17;;;;;;;;12779:10;12791:29;;;;;;;;;;;12761:60;;;;;;;12779:10;;12761:60;-1:-1:-1;;;;;;;;;;;12761:60:0;;;;;;;;;;12570:259;;:::o;15481:122::-;15538:21;:8;15551:7;15538:21;:12;:21;:::i;:::-;15575:20;;-1:-1:-1;;;;;15575:20:0;;;;;;;;15481:122;:::o;15611:130::-;15671:24;:8;15687:7;15671:24;:15;:24;:::i;:::-;15711:22;;-1:-1:-1;;;;;15711:22:0;;;;;;;;15611:130;:::o;14530:165::-;14602:4;-1:-1:-1;;;;;14627:21:0;;;;14619:30;;;;;;-1:-1:-1;;;;;;14667:20:0;:11;:20;;;;;;;;;;;;;;;14530:165::o;1972:187::-;-1:-1:-1;;;;;2046:22:0;;;;2038:31;;;;;;2106:6;;2085:38;;-1:-1:-1;;;;;2085:38:0;;;;2106:6;;2085:38;;2106:6;;2085:38;2134:6;:17;;-1:-1:-1;;2134:17:0;-1:-1:-1;;;;;2134:17:0;;;;;;;;;;1972:187::o;10785:262::-;-1:-1:-1;;;;;10873:16:0;;;;10865:25;;;;;;-1:-1:-1;;;;;10921:15:0;;:9;:15;;;;;;;;;;;:26;;10941:5;10921:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;10903:15:0;;;:9;:15;;;;;;;;;;;:44;;;;10974:13;;;;;;;:24;;10992:5;10974:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;10958:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;11014:25;;;;;;;10958:13;;11014:25;;;;;;;;;;;;;10785:262;;;:::o;13982:186::-;-1:-1:-1;;;;;14059:21:0;;;;14051:30;;;;;;14101:18;14105:4;14111:7;14101:3;:18::i;:::-;14100:19;14092:28;;;;;;-1:-1:-1;;;;;14133:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;14133:27:0;14156:4;14133:27;;;13982:186::o;14247:189::-;-1:-1:-1;;;;;14327:21:0;;;;14319:30;;;;;;14368:18;14372:4;14378:7;14368:3;:18::i;:::-;14360:27;;;;;;;;-1:-1:-1;;;;;14400:20:0;14423:5;14400:20;;;;;;;;;;;:28;;-1:-1:-1;;14400:28:0;;;14247:189::o

Swarm Source

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