ETH Price: $3,029.44 (-2.70%)
Gas: 8 Gwei

Token

Bella (BEL)
 

Overview

Max Total Supply

100,000,000 BEL

Holders

2,455 ( 0.081%)

Total Transfers

-

Market

Price

$0.92 @ 0.000304 ETH (+0.04%)

Onchain Market Cap

$92,213,820.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

The Bella Protocol offers a suite of DeFi products for streamlined crypto banking experience. The core concept of Bella product design is 1-Click. Bella automates everything possible, subsidizes gas fee, and caters to both new and experienced users either on-chain or via Bella custodian service.

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 BEL
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Bella

Compiler Version
v0.6.10+commit.00c0fcaf

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-09-04
*/

// File: @openzeppelin/contracts/math/SafeMath.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot 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-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: contracts/ERC20.sol

pragma solidity 0.6.10;


/**
 * @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 {
    using SafeMath for uint256;

    mapping (address => uint256) internal _balances;

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

    uint256 internal _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 virtual 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 virtual returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: contracts/Ownable.sol

pragma solidity 0.6.10;

/**
 * @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 a
     * specified account.
     * @param initalOwner The address of the inital owner.
     */
    constructor(address initalOwner) internal {
        _owner = initalOwner;
        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(), "Only owner can call");
        _;
    }

    /**
     * @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.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     * @notice Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    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), "Owner should not be 0 address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/Bella.sol

pragma solidity 0.6.10;




/**
 * @title Bella
 * @dev Bella is an ownable, mintable, pausable and burnable ERC20 token
 */
contract Bella is ERC20, Ownable {
    using SafeMath for uint;

    string public constant name = "Bella";
    uint8 public constant decimals = 18;
    string public constant symbol = "BEL";
    uint public constant initalSupply = 1 * 10**8 * 10**uint(decimals); // 100 million
    
    bool public paused; // True when circulation is paused.

    mapping (address => bool) public freezed;
    mapping (address => bool) public minter;

    /**
     * @dev Throws if called by any account that is not a minter.
     */
    modifier onlyMinter() {
        require(minter[msg.sender], "Only minter can call");
        _;
    }

    /**
     * @dev Throws if called when the circulation is paused.
     */
    modifier whenNotPaused() {
        require(paused == false, "Cirlulation paused!");
        _;
    }

    /**
     * @dev The Bella constructor sets the original manager of the contract to the a
     * specified account, and send all the inital supply to it.
     * @param manager The address of the first manager of this contract.
     */
    constructor(address manager) public Ownable(manager) {
        _balances[manager] = initalSupply;
        _totalSupply = initalSupply;
    }

    /**
     * @dev Add an address to the minter list.
     * @param minterAddress The address to be added as a minter.
     */
    function addMinter(address minterAddress) public onlyOwner {
        minter[minterAddress] = true;
    }

    /**
     * @dev Remove an address from the minter list.
     * @param minterAddress The address to be removed from minters.
     */
    function removeMinter(address minterAddress) public onlyOwner {
        minter[minterAddress] = false;
    }

    /**
     * @dev Function to mint tokens by a minter
     * @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, uint value) public onlyMinter returns (bool) {
        _mint(to, value);
        return true;
    }

    /**
     * @dev Function to pause all the circulation in the case of emergency.
     */
    function pause() public onlyOwner {
        paused = true;
    }

    /**
     * @dev Function to recover all the circulation from emergency.
     */
    function unpause() public onlyOwner {
        paused = false;
    }

    /**
     * @dev Function to freeze a specific user's circulation from emergency.
     * @param user The user to freeze
     */
    function freeze(address user) public onlyOwner {
        freezed[user] = true;
    }

    /**
     * @dev Function to recover a specific user's circulation from emergency.
     * @param user The user to recover
     */
    function unfreeze(address user) public onlyOwner {
        freezed[user] = false;
    }

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

    function transfer(address to, uint256 value) public whenNotPaused override returns (bool) {
        require(!freezed[msg.sender] && !freezed[to], "target user is freezed");
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused override returns (bool) {
        require(!freezed[from] && !freezed[to], "target user is freezed");
        return super.transferFrom(from, to, value);
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"manager","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"minterAddress","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"freeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freezed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minterAddress","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"unfreeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b5060405161145f38038061145f8339818101604052602081101561003357600080fd5b5051600380546001600160a01b0319166001600160a01b0380841691909117918290556040518392909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600160a01b031660009081526020819052604090206a52b7d2dcc80cd2e40000009081905560025561139e806100c16000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f957806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610521578063ce4a7a831461054d578063dd62ed3e14610555578063f2fde38b14610583576101c4565b806395d89b41146104c7578063983b2d56146104cf578063a457c2d7146104f5576101c4565b80638456cb59116100d35780638456cb591461046d5780638d1fdf2f146104755780638da5cb5b1461049b5780638f32d59b146104bf576101c4565b806370a0823114610413578063715018a61461043957806379cc679014610441576101c4565b80633dd08c381161016657806340c10f191161014057806340c10f191461039c57806342966c68146103c857806345c8b1a6146103e55780635c975abb1461040b576101c4565b80633dd08c38146103485780633f4ba83a1461036e578063406f11f514610376576101c4565b806323b872dd116101a257806323b872dd146102a05780633092afd5146102d6578063313ce567146102fe578063395093511461031c576101c4565b806306fdde03146101c9578063095ea7b31461024657806318160ddd14610286575b600080fd5b6101d16105a9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020b5781810151838201526020016101f3565b50505050905090810190601f1680156102385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102726004803603604081101561025c57600080fd5b506001600160a01b0381351690602001356105ca565b604080519115158252519081900360200190f35b61028e610633565b60408051918252519081900360200190f35b610272600480360360608110156102b657600080fd5b506001600160a01b03813581169160208101359091169060400135610639565b6102fc600480360360208110156102ec57600080fd5b50356001600160a01b0316610730565b005b6103066107a0565b6040805160ff9092168252519081900360200190f35b6102726004803603604081101561033257600080fd5b506001600160a01b0381351690602001356107a5565b6102726004803603602081101561035e57600080fd5b50356001600160a01b0316610807565b6102fc61081c565b6102726004803603602081101561038c57600080fd5b50356001600160a01b031661087a565b610272600480360360408110156103b257600080fd5b506001600160a01b03813516906020013561088f565b6102fc600480360360208110156103de57600080fd5b50356108fd565b6102fc600480360360208110156103fb57600080fd5b50356001600160a01b031661090a565b61027261097a565b61028e6004803603602081101561042957600080fd5b50356001600160a01b031661098a565b6102fc6109a5565b6102fc6004803603604081101561045757600080fd5b506001600160a01b038135169060200135610a3e565b6102fc610a4c565b6102fc6004803603602081101561048b57600080fd5b50356001600160a01b0316610ab0565b6104a3610b23565b604080516001600160a01b039092168252519081900360200190f35b610272610b32565b6101d1610b43565b6102fc600480360360208110156104e557600080fd5b50356001600160a01b0316610b62565b6102726004803603604081101561050b57600080fd5b506001600160a01b038135169060200135610bd5565b6102726004803603604081101561053757600080fd5b506001600160a01b038135169060200135610c37565b61028e610d1c565b61028e6004803603604081101561056b57600080fd5b506001600160a01b0381358116916020013516610d2b565b6102fc6004803603602081101561059957600080fd5b50356001600160a01b0316610d56565b6040518060400160405280600581526020016442656c6c6160d81b81525081565b600354600090600160a01b900460ff1615610622576040805162461bcd60e51b81526020600482015260136024820152724369726c756c6174696f6e207061757365642160681b604482015290519081900360640190fd5b61062c8383610dae565b9392505050565b60025490565b600354600090600160a01b900460ff1615610691576040805162461bcd60e51b81526020600482015260136024820152724369726c756c6174696f6e207061757365642160681b604482015290519081900360640190fd5b6001600160a01b03841660009081526004602052604090205460ff161580156106d357506001600160a01b03831660009081526004602052604090205460ff16155b61071d576040805162461bcd60e51b81526020600482015260166024820152751d185c99d95d081d5cd95c881a5cc8199c99595e995960521b604482015290519081900360640190fd5b610728848484610dbb565b949350505050565b610738610b32565b61077f576040805162461bcd60e51b815260206004820152601360248201527213db9b1e481bdddb995c8818d85b8818d85b1b606a1b604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19169055565b601281565b600354600090600160a01b900460ff16156107fd576040805162461bcd60e51b81526020600482015260136024820152724369726c756c6174696f6e207061757365642160681b604482015290519081900360640190fd5b61062c8383610e12565b60056020526000908152604090205460ff1681565b610824610b32565b61086b576040805162461bcd60e51b815260206004820152601360248201527213db9b1e481bdddb995c8818d85b8818d85b1b606a1b604482015290519081900360640190fd5b6003805460ff60a01b19169055565b60046020526000908152604090205460ff1681565b3360009081526005602052604081205460ff166108ea576040805162461bcd60e51b815260206004820152601460248201527313db9b1e481b5a5b9d195c8818d85b8818d85b1b60621b604482015290519081900360640190fd5b6108f48383610e4e565b50600192915050565b6109073382610ef6565b50565b610912610b32565b610959576040805162461bcd60e51b815260206004820152601360248201527213db9b1e481bdddb995c8818d85b8818d85b1b606a1b604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19169055565b600354600160a01b900460ff1681565b6001600160a01b031660009081526020819052604090205490565b6109ad610b32565b6109f4576040805162461bcd60e51b815260206004820152601360248201527213db9b1e481bdddb995c8818d85b8818d85b1b606a1b604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b610a488282610f9d565b5050565b610a54610b32565b610a9b576040805162461bcd60e51b815260206004820152601360248201527213db9b1e481bdddb995c8818d85b8818d85b1b606a1b604482015290519081900360640190fd5b6003805460ff60a01b1916600160a01b179055565b610ab8610b32565b610aff576040805162461bcd60e51b815260206004820152601360248201527213db9b1e481bdddb995c8818d85b8818d85b1b606a1b604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6003546001600160a01b031690565b6003546001600160a01b0316331490565b6040518060400160405280600381526020016210915360ea1b81525081565b610b6a610b32565b610bb1576040805162461bcd60e51b815260206004820152601360248201527213db9b1e481bdddb995c8818d85b8818d85b1b606a1b604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b600354600090600160a01b900460ff1615610c2d576040805162461bcd60e51b81526020600482015260136024820152724369726c756c6174696f6e207061757365642160681b604482015290519081900360640190fd5b61062c8383610fe2565b600354600090600160a01b900460ff1615610c8f576040805162461bcd60e51b81526020600482015260136024820152724369726c756c6174696f6e207061757365642160681b604482015290519081900360640190fd5b3360009081526004602052604090205460ff16158015610cc857506001600160a01b03831660009081526004602052604090205460ff16155b610d12576040805162461bcd60e51b81526020600482015260166024820152751d185c99d95d081d5cd95c881a5cc8199c99595e995960521b604482015290519081900360640190fd5b61062c838361101e565b6a52b7d2dcc80cd2e400000081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d5e610b32565b610da5576040805162461bcd60e51b815260206004820152601360248201527213db9b1e481bdddb995c8818d85b8818d85b1b606a1b604482015290519081900360640190fd5b6109078161102b565b60006108f43384846110e2565b6000610dc884848461116a565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610e08918691610e03908663ffffffff61123516565b6110e2565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108f4918590610e03908663ffffffff61127716565b6001600160a01b038216610e6157600080fd5b600254610e74908263ffffffff61127716565b6002556001600160a01b038216600090815260208190526040902054610ea0908263ffffffff61127716565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610f0957600080fd5b600254610f1c908263ffffffff61123516565b6002556001600160a01b038216600090815260208190526040902054610f48908263ffffffff61123516565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610fa78282610ef6565b6001600160a01b038216600090815260016020908152604080832033808552925290912054610a48918491610e03908563ffffffff61123516565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108f4918590610e03908663ffffffff61123516565b60006108f433848461116a565b6001600160a01b038116611086576040805162461bcd60e51b815260206004820152601d60248201527f4f776e65722073686f756c64206e6f7420626520302061646472657373000000604482015290519081900360640190fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166110f557600080fd5b6001600160a01b03831661110857600080fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03821661117d57600080fd5b6001600160a01b0383166000908152602081905260409020546111a6908263ffffffff61123516565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546111db908263ffffffff61127716565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600061062c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112d1565b60008282018381101561062c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156113605760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561132557818101518382015260200161130d565b50505050905090810190601f1680156113525780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea26469706673582212200ed0d28d0878f0ba79daacceaf5072940e040ffed103562feb6d8fb8880df7eb64736f6c634300060a0033000000000000000000000000e07950151918e20bbc791a80d959f948323c7f0f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f957806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610521578063ce4a7a831461054d578063dd62ed3e14610555578063f2fde38b14610583576101c4565b806395d89b41146104c7578063983b2d56146104cf578063a457c2d7146104f5576101c4565b80638456cb59116100d35780638456cb591461046d5780638d1fdf2f146104755780638da5cb5b1461049b5780638f32d59b146104bf576101c4565b806370a0823114610413578063715018a61461043957806379cc679014610441576101c4565b80633dd08c381161016657806340c10f191161014057806340c10f191461039c57806342966c68146103c857806345c8b1a6146103e55780635c975abb1461040b576101c4565b80633dd08c38146103485780633f4ba83a1461036e578063406f11f514610376576101c4565b806323b872dd116101a257806323b872dd146102a05780633092afd5146102d6578063313ce567146102fe578063395093511461031c576101c4565b806306fdde03146101c9578063095ea7b31461024657806318160ddd14610286575b600080fd5b6101d16105a9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020b5781810151838201526020016101f3565b50505050905090810190601f1680156102385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102726004803603604081101561025c57600080fd5b506001600160a01b0381351690602001356105ca565b604080519115158252519081900360200190f35b61028e610633565b60408051918252519081900360200190f35b610272600480360360608110156102b657600080fd5b506001600160a01b03813581169160208101359091169060400135610639565b6102fc600480360360208110156102ec57600080fd5b50356001600160a01b0316610730565b005b6103066107a0565b6040805160ff9092168252519081900360200190f35b6102726004803603604081101561033257600080fd5b506001600160a01b0381351690602001356107a5565b6102726004803603602081101561035e57600080fd5b50356001600160a01b0316610807565b6102fc61081c565b6102726004803603602081101561038c57600080fd5b50356001600160a01b031661087a565b610272600480360360408110156103b257600080fd5b506001600160a01b03813516906020013561088f565b6102fc600480360360208110156103de57600080fd5b50356108fd565b6102fc600480360360208110156103fb57600080fd5b50356001600160a01b031661090a565b61027261097a565b61028e6004803603602081101561042957600080fd5b50356001600160a01b031661098a565b6102fc6109a5565b6102fc6004803603604081101561045757600080fd5b506001600160a01b038135169060200135610a3e565b6102fc610a4c565b6102fc6004803603602081101561048b57600080fd5b50356001600160a01b0316610ab0565b6104a3610b23565b604080516001600160a01b039092168252519081900360200190f35b610272610b32565b6101d1610b43565b6102fc600480360360208110156104e557600080fd5b50356001600160a01b0316610b62565b6102726004803603604081101561050b57600080fd5b506001600160a01b038135169060200135610bd5565b6102726004803603604081101561053757600080fd5b506001600160a01b038135169060200135610c37565b61028e610d1c565b61028e6004803603604081101561056b57600080fd5b506001600160a01b0381358116916020013516610d2b565b6102fc6004803603602081101561059957600080fd5b50356001600160a01b0316610d56565b6040518060400160405280600581526020016442656c6c6160d81b81525081565b600354600090600160a01b900460ff1615610622576040805162461bcd60e51b81526020600482015260136024820152724369726c756c6174696f6e207061757365642160681b604482015290519081900360640190fd5b61062c8383610dae565b9392505050565b60025490565b600354600090600160a01b900460ff1615610691576040805162461bcd60e51b81526020600482015260136024820152724369726c756c6174696f6e207061757365642160681b604482015290519081900360640190fd5b6001600160a01b03841660009081526004602052604090205460ff161580156106d357506001600160a01b03831660009081526004602052604090205460ff16155b61071d576040805162461bcd60e51b81526020600482015260166024820152751d185c99d95d081d5cd95c881a5cc8199c99595e995960521b604482015290519081900360640190fd5b610728848484610dbb565b949350505050565b610738610b32565b61077f576040805162461bcd60e51b815260206004820152601360248201527213db9b1e481bdddb995c8818d85b8818d85b1b606a1b604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19169055565b601281565b600354600090600160a01b900460ff16156107fd576040805162461bcd60e51b81526020600482015260136024820152724369726c756c6174696f6e207061757365642160681b604482015290519081900360640190fd5b61062c8383610e12565b60056020526000908152604090205460ff1681565b610824610b32565b61086b576040805162461bcd60e51b815260206004820152601360248201527213db9b1e481bdddb995c8818d85b8818d85b1b606a1b604482015290519081900360640190fd5b6003805460ff60a01b19169055565b60046020526000908152604090205460ff1681565b3360009081526005602052604081205460ff166108ea576040805162461bcd60e51b815260206004820152601460248201527313db9b1e481b5a5b9d195c8818d85b8818d85b1b60621b604482015290519081900360640190fd5b6108f48383610e4e565b50600192915050565b6109073382610ef6565b50565b610912610b32565b610959576040805162461bcd60e51b815260206004820152601360248201527213db9b1e481bdddb995c8818d85b8818d85b1b606a1b604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19169055565b600354600160a01b900460ff1681565b6001600160a01b031660009081526020819052604090205490565b6109ad610b32565b6109f4576040805162461bcd60e51b815260206004820152601360248201527213db9b1e481bdddb995c8818d85b8818d85b1b606a1b604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b610a488282610f9d565b5050565b610a54610b32565b610a9b576040805162461bcd60e51b815260206004820152601360248201527213db9b1e481bdddb995c8818d85b8818d85b1b606a1b604482015290519081900360640190fd5b6003805460ff60a01b1916600160a01b179055565b610ab8610b32565b610aff576040805162461bcd60e51b815260206004820152601360248201527213db9b1e481bdddb995c8818d85b8818d85b1b606a1b604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6003546001600160a01b031690565b6003546001600160a01b0316331490565b6040518060400160405280600381526020016210915360ea1b81525081565b610b6a610b32565b610bb1576040805162461bcd60e51b815260206004820152601360248201527213db9b1e481bdddb995c8818d85b8818d85b1b606a1b604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b600354600090600160a01b900460ff1615610c2d576040805162461bcd60e51b81526020600482015260136024820152724369726c756c6174696f6e207061757365642160681b604482015290519081900360640190fd5b61062c8383610fe2565b600354600090600160a01b900460ff1615610c8f576040805162461bcd60e51b81526020600482015260136024820152724369726c756c6174696f6e207061757365642160681b604482015290519081900360640190fd5b3360009081526004602052604090205460ff16158015610cc857506001600160a01b03831660009081526004602052604090205460ff16155b610d12576040805162461bcd60e51b81526020600482015260166024820152751d185c99d95d081d5cd95c881a5cc8199c99595e995960521b604482015290519081900360640190fd5b61062c838361101e565b6a52b7d2dcc80cd2e400000081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d5e610b32565b610da5576040805162461bcd60e51b815260206004820152601360248201527213db9b1e481bdddb995c8818d85b8818d85b1b606a1b604482015290519081900360640190fd5b6109078161102b565b60006108f43384846110e2565b6000610dc884848461116a565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610e08918691610e03908663ffffffff61123516565b6110e2565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108f4918590610e03908663ffffffff61127716565b6001600160a01b038216610e6157600080fd5b600254610e74908263ffffffff61127716565b6002556001600160a01b038216600090815260208190526040902054610ea0908263ffffffff61127716565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610f0957600080fd5b600254610f1c908263ffffffff61123516565b6002556001600160a01b038216600090815260208190526040902054610f48908263ffffffff61123516565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610fa78282610ef6565b6001600160a01b038216600090815260016020908152604080832033808552925290912054610a48918491610e03908563ffffffff61123516565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108f4918590610e03908663ffffffff61123516565b60006108f433848461116a565b6001600160a01b038116611086576040805162461bcd60e51b815260206004820152601d60248201527f4f776e65722073686f756c64206e6f7420626520302061646472657373000000604482015290519081900360640190fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166110f557600080fd5b6001600160a01b03831661110857600080fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03821661117d57600080fd5b6001600160a01b0383166000908152602081905260409020546111a6908263ffffffff61123516565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546111db908263ffffffff61127716565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600061062c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112d1565b60008282018381101561062c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156113605760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561132557818101518382015260200161130d565b50505050905090810190601f1680156113525780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea26469706673582212200ed0d28d0878f0ba79daacceaf5072940e040ffed103562feb6d8fb8880df7eb64736f6c634300060a0033

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

000000000000000000000000e07950151918e20bbc791a80d959f948323c7f0f

-----Decoded View---------------
Arg [0] : manager (address): 0xe07950151918E20bbC791a80D959F948323c7F0f

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e07950151918e20bbc791a80d959f948323c7f0f


Deployed Bytecode Sourcemap

16342:4503:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16414:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20315:149;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20315:149:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6328:91;;;:::i;:::-;;;;;;;;;;;;;;;;20062:245;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20062:245:0;;;;;;;;;;;;;;;;;:::i;17964:110::-;;;;;;;;;;;;;;;;-1:-1:-1;17964:110:0;-1:-1:-1;;;;;17964:110:0;;:::i;:::-;;16458:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20472:176;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20472:176:0;;;;;;;;:::i;16748:39::-;;;;;;;;;;;;;;;;-1:-1:-1;16748:39:0;-1:-1:-1;;;;;16748:39:0;;:::i;18733:69::-;;;:::i;16701:40::-;;;;;;;;;;;;;;;;-1:-1:-1;16701:40:0;-1:-1:-1;;;;;16701:40:0;;:::i;18341:128::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18341:128:0;;;;;;;;:::i;19394:79::-;;;;;;;;;;;;;;;;-1:-1:-1;19394:79:0;;:::i;19176:89::-;;;;;;;;;;;;;;;;-1:-1:-1;19176:89:0;-1:-1:-1;;;;;19176:89:0;;:::i;16638:18::-;;;:::i;6638:106::-;;;;;;;;;;;;;;;;-1:-1:-1;6638:106:0;-1:-1:-1;;;;;6638:106:0;;:::i;15373:140::-;;;:::i;19728:95::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19728:95:0;;;;;;;;:::i;18572:66::-;;;:::i;18945:86::-;;;;;;;;;;;;;;;;-1:-1:-1;18945:86:0;-1:-1:-1;;;;;18945:86:0;;:::i;14560:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;14560:79:0;;;;;;;;;;;;;;14918:92;;;:::i;16500:37::-;;;:::i;17710:106::-;;;;;;;;;;;;;;;;-1:-1:-1;17710:106:0;-1:-1:-1;;;;;17710:106:0;;:::i;20656:186::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20656:186:0;;;;;;;;:::i;19831:223::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19831:223:0;;;;;;;;:::i;16544:66::-;;;:::i;7083:131::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7083:131:0;;;;;;;;;;:::i;15690:109::-;;;;;;;;;;;;;;;;-1:-1:-1;15690:109:0;-1:-1:-1;;;;;15690:109:0;;:::i;16414:37::-;;;;;;;;;;;;;;-1:-1:-1;;;16414:37:0;;;;:::o;20315:149::-;17117:6;;20403:4;;-1:-1:-1;;;17117:6:0;;;;:15;17109:47;;;;;-1:-1:-1;;;17109:47:0;;;;;;;;;;;;-1:-1:-1;;;17109:47:0;;;;;;;;;;;;;;;20427:29:::1;20441:7;20450:5;20427:13;:29::i;:::-;20420:36:::0;20315:149;-1:-1:-1;;;20315:149:0:o;6328:91::-;6399:12;;6328:91;:::o;20062:245::-;17117:6;;20164:4;;-1:-1:-1;;;17117:6:0;;;;:15;17109:47;;;;;-1:-1:-1;;;17109:47:0;;;;;;;;;;;;-1:-1:-1;;;17109:47:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;20190:13:0;::::1;;::::0;;;:7:::1;:13;::::0;;;;;::::1;;20189:14;:30:::0;::::1;;;-1:-1:-1::0;;;;;;20208:11:0;::::1;;::::0;;;:7:::1;:11;::::0;;;;;::::1;;20207:12;20189:30;20181:65;;;::::0;;-1:-1:-1;;;20181:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;20181:65:0;;;;;;;;;;;;;::::1;;20264:35;20283:4;20289:2;20293:5;20264:18;:35::i;:::-;20257:42:::0;20062:245;-1:-1:-1;;;;20062:245:0:o;17964:110::-;14772:9;:7;:9::i;:::-;14764:41;;;;;-1:-1:-1;;;14764:41:0;;;;;;;;;;;;-1:-1:-1;;;14764:41:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18037:21:0::1;18061:5;18037:21:::0;;;:6:::1;:21;::::0;;;;:29;;-1:-1:-1;;18037:29:0::1;::::0;;17964:110::o;16458:35::-;16491:2;16458:35;:::o;20472:176::-;17117:6;;20572:4;;-1:-1:-1;;;17117:6:0;;;;:15;17109:47;;;;;-1:-1:-1;;;17109:47:0;;;;;;;;;;;;-1:-1:-1;;;17109:47:0;;;;;;;;;;;;;;;20596:44:::1;20620:7;20629:10;20596:23;:44::i;16748:39::-:0;;;;;;;;;;;;;;;:::o;18733:69::-;14772:9;:7;:9::i;:::-;14764:41;;;;;-1:-1:-1;;;14764:41:0;;;;;;;;;;;;-1:-1:-1;;;14764:41:0;;;;;;;;;;;;;;;18780:6:::1;:14:::0;;-1:-1:-1;;;;18780:14:0::1;::::0;;18733:69::o;16701:40::-;;;;;;;;;;;;;;;:::o;18341:128::-;16929:10;18406:4;16922:18;;;:6;:18;;;;;;;;16914:51;;;;;-1:-1:-1;;;16914:51:0;;;;;;;;;;;;-1:-1:-1;;;16914:51:0;;;;;;;;;;;;;;;18423:16:::1;18429:2;18433:5;18423;:16::i;:::-;-1:-1:-1::0;18457:4:0::1;18341:128:::0;;;;:::o;19394:79::-;19441:24;19447:10;19459:5;19441;:24::i;:::-;19394:79;:::o;19176:89::-;14772:9;:7;:9::i;:::-;14764:41;;;;;-1:-1:-1;;;14764:41:0;;;;;;;;;;;;-1:-1:-1;;;14764:41:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19236:13:0::1;19252:5;19236:13:::0;;;:7:::1;:13;::::0;;;;:21;;-1:-1:-1;;19236:21:0::1;::::0;;19176:89::o;16638:18::-;;;-1:-1:-1;;;16638:18:0;;;;;:::o;6638:106::-;-1:-1:-1;;;;;6720:16:0;6693:7;6720:16;;;;;;;;;;;;6638:106::o;15373:140::-;14772:9;:7;:9::i;:::-;14764:41;;;;;-1:-1:-1;;;14764:41:0;;;;;;;;;;;;-1:-1:-1;;;14764:41:0;;;;;;;;;;;;;;;15456:6:::1;::::0;15435:40:::1;::::0;15472:1:::1;::::0;-1:-1:-1;;;;;15456:6:0::1;::::0;15435:40:::1;::::0;15472:1;;15435:40:::1;15486:6;:19:::0;;-1:-1:-1;;;;;;15486:19:0::1;::::0;;15373:140::o;19728:95::-;19793:22;19803:4;19809:5;19793:9;:22::i;:::-;19728:95;;:::o;18572:66::-;14772:9;:7;:9::i;:::-;14764:41;;;;;-1:-1:-1;;;14764:41:0;;;;;;;;;;;;-1:-1:-1;;;14764:41:0;;;;;;;;;;;;;;;18617:6:::1;:13:::0;;-1:-1:-1;;;;18617:13:0::1;-1:-1:-1::0;;;18617:13:0::1;::::0;;18572:66::o;18945:86::-;14772:9;:7;:9::i;:::-;14764:41;;;;;-1:-1:-1;;;14764:41:0;;;;;;;;;;;;-1:-1:-1;;;14764:41:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19003:13:0::1;;::::0;;;:7:::1;:13;::::0;;;;:20;;-1:-1:-1;;19003:20:0::1;19019:4;19003:20;::::0;;18945:86::o;14560:79::-;14625:6;;-1:-1:-1;;;;;14625:6:0;14560:79;:::o;14918:92::-;14996:6;;-1:-1:-1;;;;;14996:6:0;14982:10;:20;;14918:92::o;16500:37::-;;;;;;;;;;;;;;-1:-1:-1;;;16500:37:0;;;;:::o;17710:106::-;14772:9;:7;:9::i;:::-;14764:41;;;;;-1:-1:-1;;;14764:41:0;;;;;;;;;;;;-1:-1:-1;;;14764:41:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17780:21:0::1;;::::0;;;:6:::1;:21;::::0;;;;:28;;-1:-1:-1;;17780:28:0::1;17804:4;17780:28;::::0;;17710:106::o;20656:186::-;17117:6;;20761:4;;-1:-1:-1;;;17117:6:0;;;;:15;17109:47;;;;;-1:-1:-1;;;17109:47:0;;;;;;;;;;;;-1:-1:-1;;;17109:47:0;;;;;;;;;;;;;;;20785:49:::1;20809:7;20818:15;20785:23;:49::i;19831:223::-:0;17117:6;;19915:4;;-1:-1:-1;;;17117:6:0;;;;:15;17109:47;;;;;-1:-1:-1;;;17109:47:0;;;;;;;;;;;;-1:-1:-1;;;17109:47:0;;;;;;;;;;;;;;;19949:10:::1;19941:19;::::0;;;:7:::1;:19;::::0;;;;;::::1;;19940:20;:36:::0;::::1;;;-1:-1:-1::0;;;;;;19965:11:0;::::1;;::::0;;;:7:::1;:11;::::0;;;;;::::1;;19964:12;19940:36;19932:71;;;::::0;;-1:-1:-1;;;19932:71:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;19932:71:0;;;;;;;;;;;;;::::1;;20021:25;20036:2;20040:5;20021:14;:25::i;16544:66::-:0;16580:30;16544:66;:::o;7083:131::-;-1:-1:-1;;;;;7182:15:0;;;7155:7;7182:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;7083:131::o;15690:109::-;14772:9;:7;:9::i;:::-;14764:41;;;;;-1:-1:-1;;;14764:41:0;;;;;;;;;;;;-1:-1:-1;;;14764:41:0;;;;;;;;;;;;;;;15763:28:::1;15782:8;15763:18;:28::i;8184:156::-:0;8257:4;8274:36;8283:10;8295:7;8304:5;8274:8;:36::i;8813:236::-;8900:4;8917:26;8927:4;8933:2;8937:5;8917:9;:26::i;:::-;-1:-1:-1;;;;;8981:14:0;;;;;;:8;:14;;;;;;;;8969:10;8981:26;;;;;;;;;8954:65;;8963:4;;8981:37;;9012:5;8981:37;:30;:37;:::i;:::-;8954:8;:65::i;:::-;-1:-1:-1;9037:4:0;8813:236;;;;;:::o;9575:211::-;9689:10;9663:4;9710:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9710:29:0;;;;;;;;;;9663:4;;9680:76;;9701:7;;9710:45;;9744:10;9710:45;:33;:45;:::i;11380:269::-;-1:-1:-1;;;;;11455:21:0;;11447:30;;;;;;11505:12;;:23;;11522:5;11505:23;:16;:23;:::i;:::-;11490:12;:38;-1:-1:-1;;;;;11560:18:0;;:9;:18;;;;;;;;;;;:29;;11583:5;11560:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;11539:18:0;;:9;:18;;;;;;;;;;;:50;;;;11605:36;;;;;;;11539:18;;:9;;11605:36;;;;;;;;;;11380:269;;:::o;11883:::-;-1:-1:-1;;;;;11958:21:0;;11950:30;;;;;;12008:12;;:23;;12025:5;12008:23;:16;:23;:::i;:::-;11993:12;:38;-1:-1:-1;;;;;12063:18:0;;:9;:18;;;;;;;;;;;:29;;12086:5;12063:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;12042:18:0;;:9;:18;;;;;;;;;;;:50;;;;12108:36;;;;;;;12042:9;;12108:36;;;;;;;;;;;11883:269;;:::o;13078:182::-;13149:21;13155:7;13164:5;13149;:21::i;:::-;-1:-1:-1;;;;;13211:17:0;;;;;;:8;:17;;;;;;;;13199:10;13211:29;;;;;;;;;13181:71;;13190:7;;13211:40;;13245:5;13211:40;:33;:40;:::i;10317:221::-;10436:10;10410:4;10457:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10457:29:0;;;;;;;;;;10410:4;;10427:81;;10448:7;;10457:50;;10491:15;10457:50;:33;:50;:::i;7389:148::-;7458:4;7475:32;7485:10;7497:2;7501:5;7475:9;:32::i;15949:220::-;-1:-1:-1;;;;;16023:22:0;;16015:64;;;;;-1:-1:-1;;;16015:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16116:6;;16095:38;;-1:-1:-1;;;;;16095:38:0;;;;16116:6;;16095:38;;16116:6;;16095:38;16144:6;:17;;-1:-1:-1;;;;;;16144:17:0;-1:-1:-1;;;;;16144:17:0;;;;;;;;;;15949:220::o;12425:254::-;-1:-1:-1;;;;;12518:21:0;;12510:30;;;;;;-1:-1:-1;;;;;12559:19:0;;12551:28;;;;;;-1:-1:-1;;;;;12592:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;12640:31;;;;;;;;;;;;;;;;;12425:254;;;:::o;10766:262::-;-1:-1:-1;;;;;10854:16:0;;10846:25;;;;;;-1:-1:-1;;;;;10902:15:0;;:9;:15;;;;;;;;;;;:26;;10922:5;10902:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;10884:15:0;;;:9;:15;;;;;;;;;;;:44;;;;10955:13;;;;;;;:24;;10973:5;10955:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;10939:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;10995:25;;;;;;;10939:13;;10995:25;;;;;;;;;;;;;10766:262;;;:::o;1420:136::-;1478:7;1505:43;1509:1;1512;1505:43;;;;;;;;;;;;;;;;;:3;:43::i;956:181::-;1014:7;1046:5;;;1070:6;;;;1062:46;;;;;-1:-1:-1;;;1062:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;1859:192;1945:7;1981:12;1973:6;;;;1965:29;;;;-1:-1:-1;;;1965:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2017:5:0;;;1859:192::o

Swarm Source

ipfs://0ed0d28d0878f0ba79daacceaf5072940e040ffed103562feb6d8fb8880df7eb
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.