ETH Price: $3,262.36 (-0.65%)
Gas: 1 Gwei

Token

Bitxmi (Bxmi)
 

Overview

Max Total Supply

210,000,000 Bxmi

Holders

136

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,692.069329372819375462 Bxmi

Value
$0.00
0xea20052a0036c9e096b4fc4034c837bfdf50df60
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BitXmi primary goal is to create awareness of crypto-economics and bridging the gap of uncertainty through understanding, simplicity, and secure access to crypto trading.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-07
*/

pragma solidity ^0.5.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.
     *
     * _Available since v2.4.0._
     */
    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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = msg.sender;
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: 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 Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: 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
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20Mintable}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}


contract Token is Ownable, ERC20 {

    using SafeMath for uint;

    string public constant name = "Bitxmi";
    string public constant symbol = "Bxmi";
    uint public constant decimals = 18;

    uint private constant _month = 30 days;
    uint public constant team_percents = 24;
    uint public constant advisors_percents = 3;
    uint public constant bounty_percents = 3;
    uint public constant tokenSale_percents = 70;
    uint public constant initialEmission = 210_000_000;

    uint private t_count;
    uint private a_count;
    uint private b_count;

    uint private deployTime;

    address public saleAddress;

    constructor() public {
        deployTime = now;

        _mint(address(this), initialEmission * 10 ** decimals);
    }

    function() external {
        revert();
    }

    function sendSaleTokens(address _tokenSale) public onlyOwner {
        saleAddress = _tokenSale;
        _transfer(address(this), _tokenSale, totalSupply().mul(tokenSale_percents).div(100));
    }

    function sendTokens(address[] memory _receivers, uint[] memory _amounts) public onlyOwner {
        require(_receivers.length == _amounts.length, "The length of the arrays must be equal");

        for (uint i = 0; i < _receivers.length; i++) {
            _transfer(address(this), _receivers[i], _amounts[i]);
        }
    }

    function sendTokens(address to, uint amount) public onlyOwner {
        _transfer(address(this), to, amount);
    }

    function sendTeamTokens(address _teamAddress) public onlyOwner {
        require(now >= deployTime.add(_month.mul(7)));
        require(t_count < 3, "All tokens send");
        if(now < deployTime.add(_month.mul(12))){
            _transfer(address(this), _teamAddress, totalSupply().mul(team_percents).div(100).div(3));
            t_count++;
        }
        else if(now >= deployTime.add(_month.mul(12)) && now < deployTime.add(_month.mul(18))){
            _transfer(address(this), _teamAddress, totalSupply().mul(team_percents).div(100).mul(uint(2).sub(t_count)).div(3));
            t_count = 2;
        }
        else if (now >= deployTime.add(_month.mul(18))){
            _transfer(address(this), _teamAddress, totalSupply().mul(team_percents).div(100).mul(uint(3).sub(t_count)).div(3));
            t_count = 3;
        }
    }

    function sendAdvisorsTokens(address _advisorsAddress) public onlyOwner {
        require(now >= deployTime.add(_month.mul(7)));
        require(a_count < 3, "All tokens send");
        if(now < deployTime.add(_month.mul(12))){
            _transfer(address(this), _advisorsAddress, totalSupply().mul(advisors_percents).div(100).div(3));
            a_count++;
        }
        else if(now >= deployTime.add(_month.mul(12)) && now < deployTime.add(_month.mul(18))){
            _transfer(address(this), _advisorsAddress, totalSupply().mul(advisors_percents).div(100).mul(uint(2).sub(a_count)).div(3));
            a_count = 2;
        }
        else if (now >= deployTime.add(_month.mul(18))){
            _transfer(address(this), _advisorsAddress, totalSupply().mul(advisors_percents).div(100).mul(uint(3).sub(a_count)).div(3));
            a_count = 3;
        }
    }

    function sendBountyTokens(address _bountyAddress) public onlyOwner {
        require(now >= deployTime.add(_month.mul(7)));
        require(b_count < 3, "All tokens send");
        if(now < deployTime.add(_month.mul(12))){
            _transfer(address(this), _bountyAddress, totalSupply().mul(bounty_percents).div(100).div(3));
            b_count++;
        }
        else if(now >= deployTime.add(_month.mul(12)) && now < deployTime.add(_month.mul(18))){
            _transfer(address(this), _bountyAddress, totalSupply().mul(bounty_percents).div(100).mul(uint(2).sub(b_count)).div(3));
            b_count = 2;
        }
        else if (now >= deployTime.add(_month.mul(18))){
            _transfer(address(this), _bountyAddress, totalSupply().mul(bounty_percents).div(100).mul(uint(3).sub(b_count)).div(3));
            b_count = 3;
        }
    }

    function burnUnsoldTokens() public {
        require(msg.sender == owner() || msg.sender == saleAddress, "Caller is not the owner or sale address");
        require(now >= deployTime.add(_month.mul(7)));
        _burn(saleAddress, balanceOf(saleAddress));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"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"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"constant":true,"inputs":[],"name":"advisors_percents","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bounty_percents","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"burnUnsoldTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initialEmission","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"saleAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_advisorsAddress","type":"address"}],"name":"sendAdvisorsTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_bountyAddress","type":"address"}],"name":"sendBountyTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_tokenSale","type":"address"}],"name":"sendSaleTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_teamAddress","type":"address"}],"name":"sendTeamTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sendTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"_receivers","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"sendTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"team_percents","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenSale_percents","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3504260075562000077306aadb53acfa41aee120000006001600160e01b036200007d16565b62000218565b6001600160a01b038216620000f357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200010f816003546200019c60201b6200136d1790919060201c565b6003556001600160a01b038216600090815260016020908152604090912054620001449183906200136d6200019c821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200021157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b61190c80620002286000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80637c817fd2116100f9578063bf8bffaa11610097578063dd62ed3e11610071578063dd62ed3e146105b3578063eb64922b146105e1578063f2fde38b14610607578063fffe088d1461062d576101c4565b8063bf8bffaa1461047c578063d8b66ae114610484578063d8c28f21146105ab576101c4565b8063940bb344116100d3578063940bb3441461041457806395d89b411461041c578063a457c2d714610424578063a9059cbb14610450576101c4565b80637c817fd2146103e05780638da5cb5b146103e85780638f32d59b1461040c576101c4565b80632ff19c341161016657806348a9e0791161014057806348a9e0791461036657806360ae5aa21461038c57806370a08231146103b2578063715018a6146103d8576101c4565b80632ff19c3414610274578063313ce56714610332578063395093511461033a576101c4565b8063095ea7b3116101a2578063095ea7b31461028e57806312d9ff9b146102ce57806318160ddd146102f457806323b872dd146102fc576101c4565b806305ab421d146101c957806306fdde03146101f7578063094dd12c14610274575b600080fd5b6101f5600480360360408110156101df57600080fd5b506001600160a01b038135169060200135610635565b005b6101ff61068b565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610239578181015183820152602001610221565b50505050905090810190601f1680156102665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027c6106ad565b60408051918252519081900360200190f35b6102ba600480360360408110156102a457600080fd5b506001600160a01b0381351690602001356106b2565b604080519115158252519081900360200190f35b6101f5600480360360208110156102e457600080fd5b50356001600160a01b03166106c9565b61027c6108b8565b6102ba6004803603606081101561031257600080fd5b506001600160a01b038135811691602081013590911690604001356108be565b61027c61092d565b6102ba6004803603604081101561035057600080fd5b506001600160a01b038135169060200135610932565b6101f56004803603602081101561037c57600080fd5b50356001600160a01b031661096e565b6101f5600480360360208110156103a257600080fd5b50356001600160a01b0316610b1e565b61027c600480360360208110156103c857600080fd5b50356001600160a01b0316610b97565b6101f5610bb2565b61027c610c43565b6103f0610c4b565b604080516001600160a01b039092168252519081900360200190f35b6102ba610c5a565b6101f5610c6b565b6101ff610d1a565b6102ba6004803603604081101561043a57600080fd5b506001600160a01b038135169060200135610d3a565b6102ba6004803603604081101561046657600080fd5b506001600160a01b038135169060200135610d8f565b61027c610d9c565b6101f56004803603604081101561049a57600080fd5b8101906020810181356401000000008111156104b557600080fd5b8201836020820111156104c757600080fd5b803590602001918460208302840111640100000000831117156104e957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561053957600080fd5b82018360208201111561054b57600080fd5b8035906020019184602083028401116401000000008311171561056d57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610da1945050505050565b61027c610e72565b61027c600480360360408110156105c957600080fd5b506001600160a01b0381358116916020013516610e77565b6101f5600480360360208110156105f757600080fd5b50356001600160a01b0316610ea2565b6101f56004803603602081101561061d57600080fd5b50356001600160a01b0316611064565b6103f06110b4565b61063d610c5a565b61067c576040805162461bcd60e51b81526020600482018190526024820152600080516020611829833981519152604482015290519081900360640190fd5b6106873083836110c3565b5050565b60405180604001604052806006815260200165426974786d6960d01b81525081565b600381565b60006106bf338484611221565b5060015b92915050565b6106d1610c5a565b610710576040805162461bcd60e51b81526020600482018190526024820152600080516020611829833981519152604482015290519081900360640190fd5b61073661072762278d00600763ffffffff61130d16565b6007549063ffffffff61136d16565b42101561074257600080fd5b60036005541061078b576040805162461bcd60e51b815260206004820152600f60248201526e105b1b081d1bdad95b9cc81cd95b99608a1b604482015290519081900360640190fd5b6107a261072762278d00600c63ffffffff61130d16565b4210156107f0576107e230826107dd60036107d160646107d160036107c56108b8565b9063ffffffff61130d16565b9063ffffffff6113c716565b6110c3565b6005805460010190556108b5565b61080761072762278d00600c63ffffffff61130d16565b421015801561082b575061082861072762278d00601263ffffffff61130d16565b42105b1561086f5761086530826107dd60036107d1610853600554600261140990919063ffffffff16565b6107c560646107d160036107c56108b8565b60026005556108b5565b61088661072762278d00601263ffffffff61130d16565b42106108b5576108af30826107dd60036107d1610853600554600361140990919063ffffffff16565b60036005555b50565b60035490565b60006108cb8484846110c3565b610923843361091e85604051806060016040528060288152602001611801602891396001600160a01b038a166000908152600260209081526040808320338452909152902054919063ffffffff61144716565b611221565b5060019392505050565b601281565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916106bf91859061091e908663ffffffff61136d16565b610976610c5a565b6109b5576040805162461bcd60e51b81526020600482018190526024820152600080516020611829833981519152604482015290519081900360640190fd5b6109cc61072762278d00600763ffffffff61130d16565b4210156109d857600080fd5b600360065410610a21576040805162461bcd60e51b815260206004820152600f60248201526e105b1b081d1bdad95b9cc81cd95b99608a1b604482015290519081900360640190fd5b610a3861072762278d00600c63ffffffff61130d16565b421015610a6957610a5b30826107dd60036107d160646107d160036107c56108b8565b6006805460010190556108b5565b610a8061072762278d00600c63ffffffff61130d16565b4210158015610aa45750610aa161072762278d00601263ffffffff61130d16565b42105b15610ad657610acc30826107dd60036107d1610853600654600261140990919063ffffffff16565b60026006556108b5565b610aed61072762278d00601263ffffffff61130d16565b42106108b557610b1630826107dd60036107d1610853600654600361140990919063ffffffff16565b600360065550565b610b26610c5a565b610b65576040805162461bcd60e51b81526020600482018190526024820152600080516020611829833981519152604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0383161790556108b530826107dd60646107d160466107c56108b8565b6001600160a01b031660009081526001602052604090205490565b610bba610c5a565b610bf9576040805162461bcd60e51b81526020600482018190526024820152600080516020611829833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b630c84588081565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b610c73610c4b565b6001600160a01b0316336001600160a01b03161480610c9c57506008546001600160a01b031633145b610cd75760405162461bcd60e51b81526004018080602001828103825260278152602001806117936027913960400191505060405180910390fd5b610cee61072762278d00600763ffffffff61130d16565b421015610cfa57600080fd5b600854610d18906001600160a01b0316610d1381610b97565b6114de565b565b6040518060400160405280600481526020016342786d6960e01b81525081565b60006106bf338461091e856040518060600160405280602581526020016118b3602591393360009081526002602090815260408083206001600160a01b038d168452909152902054919063ffffffff61144716565b60006106bf3384846110c3565b604681565b610da9610c5a565b610de8576040805162461bcd60e51b81526020600482018190526024820152600080516020611829833981519152604482015290519081900360640190fd5b8051825114610e285760405162461bcd60e51b81526004018080602001828103825260268152602001806117ba6026913960400191505060405180910390fd5b60005b8251811015610e6d57610e6530848381518110610e4457fe5b6020026020010151848481518110610e5857fe5b60200260200101516110c3565b600101610e2b565b505050565b601881565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610eaa610c5a565b610ee9576040805162461bcd60e51b81526020600482018190526024820152600080516020611829833981519152604482015290519081900360640190fd5b610f0061072762278d00600763ffffffff61130d16565b421015610f0c57600080fd5b600360045410610f55576040805162461bcd60e51b815260206004820152600f60248201526e105b1b081d1bdad95b9cc81cd95b99608a1b604482015290519081900360640190fd5b610f6c61072762278d00600c63ffffffff61130d16565b421015610f9d57610f8f30826107dd60036107d160646107d160186107c56108b8565b6004805460010190556108b5565b610fb461072762278d00600c63ffffffff61130d16565b4210158015610fd85750610fd561072762278d00601263ffffffff61130d16565b42105b1561101c5761101230826107dd60036107d1611000600454600261140990919063ffffffff16565b6107c560646107d160186107c56108b8565b60026004556108b5565b61103361072762278d00601263ffffffff61130d16565b42106108b55761105c30826107dd60036107d1611000600454600361140990919063ffffffff16565b600360045550565b61106c610c5a565b6110ab576040805162461bcd60e51b81526020600482018190526024820152600080516020611829833981519152604482015290519081900360640190fd5b6108b5816115da565b6008546001600160a01b031681565b6001600160a01b0383166111085760405162461bcd60e51b815260040180806020018281038252602581526020018061186a6025913960400191505060405180910390fd5b6001600160a01b03821661114d5760405162461bcd60e51b81526004018080602001828103825260238152602001806116e06023913960400191505060405180910390fd5b6111908160405180606001604052806026815260200161176d602691396001600160a01b038616600090815260016020526040902054919063ffffffff61144716565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546111c5908263ffffffff61136d16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b0383166112665760405162461bcd60e51b815260040180806020018281038252602481526020018061188f6024913960400191505060405180910390fd5b6001600160a01b0382166112ab5760405162461bcd60e51b815260040180806020018281038252602281526020018061174b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008261131c575060006106c3565b8282028284828161132957fe5b04146113665760405162461bcd60e51b81526004018080602001828103825260218152602001806117e06021913960400191505060405180910390fd5b9392505050565b600082820183811015611366576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061136683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061167a565b600061136683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152505b600081848411156114d65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561149b578181015183820152602001611483565b50505050905090810190601f1680156114c85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166115235760405162461bcd60e51b81526004018080602001828103825260218152602001806118496021913960400191505060405180910390fd5b61156681604051806060016040528060228152602001611703602291396001600160a01b038516600090815260016020526040902054919063ffffffff61144716565b6001600160a01b038316600090815260016020526040902055600354611592908263ffffffff61140916565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b03811661161f5760405162461bcd60e51b81526004018080602001828103825260268152602001806117256026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600081836116c95760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561149b578181015183820152602001611483565b5060008385816116d557fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636543616c6c6572206973206e6f7420746865206f776e6572206f722073616c652061646472657373546865206c656e677468206f662074686520617272617973206d75737420626520657175616c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820c3e292a1860be8537dacb128fd1d6f95b35d5df23f773581823108bcd5f69a9c64736f6c634300050c0032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80637c817fd2116100f9578063bf8bffaa11610097578063dd62ed3e11610071578063dd62ed3e146105b3578063eb64922b146105e1578063f2fde38b14610607578063fffe088d1461062d576101c4565b8063bf8bffaa1461047c578063d8b66ae114610484578063d8c28f21146105ab576101c4565b8063940bb344116100d3578063940bb3441461041457806395d89b411461041c578063a457c2d714610424578063a9059cbb14610450576101c4565b80637c817fd2146103e05780638da5cb5b146103e85780638f32d59b1461040c576101c4565b80632ff19c341161016657806348a9e0791161014057806348a9e0791461036657806360ae5aa21461038c57806370a08231146103b2578063715018a6146103d8576101c4565b80632ff19c3414610274578063313ce56714610332578063395093511461033a576101c4565b8063095ea7b3116101a2578063095ea7b31461028e57806312d9ff9b146102ce57806318160ddd146102f457806323b872dd146102fc576101c4565b806305ab421d146101c957806306fdde03146101f7578063094dd12c14610274575b600080fd5b6101f5600480360360408110156101df57600080fd5b506001600160a01b038135169060200135610635565b005b6101ff61068b565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610239578181015183820152602001610221565b50505050905090810190601f1680156102665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027c6106ad565b60408051918252519081900360200190f35b6102ba600480360360408110156102a457600080fd5b506001600160a01b0381351690602001356106b2565b604080519115158252519081900360200190f35b6101f5600480360360208110156102e457600080fd5b50356001600160a01b03166106c9565b61027c6108b8565b6102ba6004803603606081101561031257600080fd5b506001600160a01b038135811691602081013590911690604001356108be565b61027c61092d565b6102ba6004803603604081101561035057600080fd5b506001600160a01b038135169060200135610932565b6101f56004803603602081101561037c57600080fd5b50356001600160a01b031661096e565b6101f5600480360360208110156103a257600080fd5b50356001600160a01b0316610b1e565b61027c600480360360208110156103c857600080fd5b50356001600160a01b0316610b97565b6101f5610bb2565b61027c610c43565b6103f0610c4b565b604080516001600160a01b039092168252519081900360200190f35b6102ba610c5a565b6101f5610c6b565b6101ff610d1a565b6102ba6004803603604081101561043a57600080fd5b506001600160a01b038135169060200135610d3a565b6102ba6004803603604081101561046657600080fd5b506001600160a01b038135169060200135610d8f565b61027c610d9c565b6101f56004803603604081101561049a57600080fd5b8101906020810181356401000000008111156104b557600080fd5b8201836020820111156104c757600080fd5b803590602001918460208302840111640100000000831117156104e957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561053957600080fd5b82018360208201111561054b57600080fd5b8035906020019184602083028401116401000000008311171561056d57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610da1945050505050565b61027c610e72565b61027c600480360360408110156105c957600080fd5b506001600160a01b0381358116916020013516610e77565b6101f5600480360360208110156105f757600080fd5b50356001600160a01b0316610ea2565b6101f56004803603602081101561061d57600080fd5b50356001600160a01b0316611064565b6103f06110b4565b61063d610c5a565b61067c576040805162461bcd60e51b81526020600482018190526024820152600080516020611829833981519152604482015290519081900360640190fd5b6106873083836110c3565b5050565b60405180604001604052806006815260200165426974786d6960d01b81525081565b600381565b60006106bf338484611221565b5060015b92915050565b6106d1610c5a565b610710576040805162461bcd60e51b81526020600482018190526024820152600080516020611829833981519152604482015290519081900360640190fd5b61073661072762278d00600763ffffffff61130d16565b6007549063ffffffff61136d16565b42101561074257600080fd5b60036005541061078b576040805162461bcd60e51b815260206004820152600f60248201526e105b1b081d1bdad95b9cc81cd95b99608a1b604482015290519081900360640190fd5b6107a261072762278d00600c63ffffffff61130d16565b4210156107f0576107e230826107dd60036107d160646107d160036107c56108b8565b9063ffffffff61130d16565b9063ffffffff6113c716565b6110c3565b6005805460010190556108b5565b61080761072762278d00600c63ffffffff61130d16565b421015801561082b575061082861072762278d00601263ffffffff61130d16565b42105b1561086f5761086530826107dd60036107d1610853600554600261140990919063ffffffff16565b6107c560646107d160036107c56108b8565b60026005556108b5565b61088661072762278d00601263ffffffff61130d16565b42106108b5576108af30826107dd60036107d1610853600554600361140990919063ffffffff16565b60036005555b50565b60035490565b60006108cb8484846110c3565b610923843361091e85604051806060016040528060288152602001611801602891396001600160a01b038a166000908152600260209081526040808320338452909152902054919063ffffffff61144716565b611221565b5060019392505050565b601281565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916106bf91859061091e908663ffffffff61136d16565b610976610c5a565b6109b5576040805162461bcd60e51b81526020600482018190526024820152600080516020611829833981519152604482015290519081900360640190fd5b6109cc61072762278d00600763ffffffff61130d16565b4210156109d857600080fd5b600360065410610a21576040805162461bcd60e51b815260206004820152600f60248201526e105b1b081d1bdad95b9cc81cd95b99608a1b604482015290519081900360640190fd5b610a3861072762278d00600c63ffffffff61130d16565b421015610a6957610a5b30826107dd60036107d160646107d160036107c56108b8565b6006805460010190556108b5565b610a8061072762278d00600c63ffffffff61130d16565b4210158015610aa45750610aa161072762278d00601263ffffffff61130d16565b42105b15610ad657610acc30826107dd60036107d1610853600654600261140990919063ffffffff16565b60026006556108b5565b610aed61072762278d00601263ffffffff61130d16565b42106108b557610b1630826107dd60036107d1610853600654600361140990919063ffffffff16565b600360065550565b610b26610c5a565b610b65576040805162461bcd60e51b81526020600482018190526024820152600080516020611829833981519152604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0383161790556108b530826107dd60646107d160466107c56108b8565b6001600160a01b031660009081526001602052604090205490565b610bba610c5a565b610bf9576040805162461bcd60e51b81526020600482018190526024820152600080516020611829833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b630c84588081565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b610c73610c4b565b6001600160a01b0316336001600160a01b03161480610c9c57506008546001600160a01b031633145b610cd75760405162461bcd60e51b81526004018080602001828103825260278152602001806117936027913960400191505060405180910390fd5b610cee61072762278d00600763ffffffff61130d16565b421015610cfa57600080fd5b600854610d18906001600160a01b0316610d1381610b97565b6114de565b565b6040518060400160405280600481526020016342786d6960e01b81525081565b60006106bf338461091e856040518060600160405280602581526020016118b3602591393360009081526002602090815260408083206001600160a01b038d168452909152902054919063ffffffff61144716565b60006106bf3384846110c3565b604681565b610da9610c5a565b610de8576040805162461bcd60e51b81526020600482018190526024820152600080516020611829833981519152604482015290519081900360640190fd5b8051825114610e285760405162461bcd60e51b81526004018080602001828103825260268152602001806117ba6026913960400191505060405180910390fd5b60005b8251811015610e6d57610e6530848381518110610e4457fe5b6020026020010151848481518110610e5857fe5b60200260200101516110c3565b600101610e2b565b505050565b601881565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610eaa610c5a565b610ee9576040805162461bcd60e51b81526020600482018190526024820152600080516020611829833981519152604482015290519081900360640190fd5b610f0061072762278d00600763ffffffff61130d16565b421015610f0c57600080fd5b600360045410610f55576040805162461bcd60e51b815260206004820152600f60248201526e105b1b081d1bdad95b9cc81cd95b99608a1b604482015290519081900360640190fd5b610f6c61072762278d00600c63ffffffff61130d16565b421015610f9d57610f8f30826107dd60036107d160646107d160186107c56108b8565b6004805460010190556108b5565b610fb461072762278d00600c63ffffffff61130d16565b4210158015610fd85750610fd561072762278d00601263ffffffff61130d16565b42105b1561101c5761101230826107dd60036107d1611000600454600261140990919063ffffffff16565b6107c560646107d160186107c56108b8565b60026004556108b5565b61103361072762278d00601263ffffffff61130d16565b42106108b55761105c30826107dd60036107d1611000600454600361140990919063ffffffff16565b600360045550565b61106c610c5a565b6110ab576040805162461bcd60e51b81526020600482018190526024820152600080516020611829833981519152604482015290519081900360640190fd5b6108b5816115da565b6008546001600160a01b031681565b6001600160a01b0383166111085760405162461bcd60e51b815260040180806020018281038252602581526020018061186a6025913960400191505060405180910390fd5b6001600160a01b03821661114d5760405162461bcd60e51b81526004018080602001828103825260238152602001806116e06023913960400191505060405180910390fd5b6111908160405180606001604052806026815260200161176d602691396001600160a01b038616600090815260016020526040902054919063ffffffff61144716565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546111c5908263ffffffff61136d16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b0383166112665760405162461bcd60e51b815260040180806020018281038252602481526020018061188f6024913960400191505060405180910390fd5b6001600160a01b0382166112ab5760405162461bcd60e51b815260040180806020018281038252602281526020018061174b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008261131c575060006106c3565b8282028284828161132957fe5b04146113665760405162461bcd60e51b81526004018080602001828103825260218152602001806117e06021913960400191505060405180910390fd5b9392505050565b600082820183811015611366576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061136683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061167a565b600061136683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152505b600081848411156114d65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561149b578181015183820152602001611483565b50505050905090810190601f1680156114c85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166115235760405162461bcd60e51b81526004018080602001828103825260218152602001806118496021913960400191505060405180910390fd5b61156681604051806060016040528060228152602001611703602291396001600160a01b038516600090815260016020526040902054919063ffffffff61144716565b6001600160a01b038316600090815260016020526040902055600354611592908263ffffffff61140916565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b03811661161f5760405162461bcd60e51b81526004018080602001828103825260268152602001806117256026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600081836116c95760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561149b578181015183820152602001611483565b5060008385816116d557fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636543616c6c6572206973206e6f7420746865206f776e6572206f722073616c652061646472657373546865206c656e677468206f662074686520617272617973206d75737420626520657175616c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820c3e292a1860be8537dacb128fd1d6f95b35d5df23f773581823108bcd5f69a9c64736f6c634300050c0032

Deployed Bytecode Sourcemap

18839:4411:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18839:4411:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19655:8;;;20226:117;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20226:117:0;;;;;;;;:::i;:::-;;18913:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18913:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19186:40;;;:::i;:::-;;;;;;;;;;;;;;;;13111:150;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13111:150:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;21212:885;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21212:885:0;-1:-1:-1;;;;;21212:885:0;;:::i;12134:91::-;;;:::i;13733:300::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13733:300:0;;;;;;;;;;;;;;;;;:::i;19003:34::-;;;:::i;14442:206::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14442:206:0;;;;;;;;:::i;22105:869::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22105:869:0;-1:-1:-1;;;;;22105:869:0;;:::i;19679:199::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19679:199:0;-1:-1:-1;;;;;19679:199:0;;:::i;12288:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12288:110:0;-1:-1:-1;;;;;12288:110:0;;:::i;7123:140::-;;;:::i;19284:50::-;;;:::i;6314:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;6314:79:0;;;;;;;;;;;;;;6680:92;;;:::i;22982:265::-;;;:::i;18958:38::-;;;:::i;15151:257::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15151:257:0;;;;;;;;:::i;12611:156::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12611:156:0;;;;;;;;:::i;19233:44::-;;;:::i;19886:332::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19886:332:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;19886:332:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;19886:332:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;19886:332:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;19886:332:0;;;;;;;;-1:-1:-1;19886:332:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;19886:332:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;19886:332:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;19886:332:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;19886:332:0;;-1:-1:-1;19886:332:0;;-1:-1:-1;;;;;19886:332:0:i;19091:39::-;;;:::i;12830:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12830:134:0;;;;;;;;;;:::i;20351:853::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20351:853:0;-1:-1:-1;;;;;20351:853:0;;:::i;7418:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7418:109:0;-1:-1:-1;;;;;7418:109:0;;:::i;19458:26::-;;;:::i;20226:117::-;6526:9;:7;:9::i;:::-;6518:54;;;;;-1:-1:-1;;;6518:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6518:54:0;;;;;;;;;;;;;;;20299:36;20317:4;20324:2;20328:6;20299:9;:36::i;:::-;20226:117;;:::o;18913:38::-;;;;;;;;;;;;;;-1:-1:-1;;;18913:38:0;;;;:::o;19186:40::-;19225:1;19186:40;:::o;13111:150::-;13177:4;13194:37;13203:10;13215:7;13224:6;13194:8;:37::i;:::-;-1:-1:-1;13249:4:0;13111:150;;;;;:::o;21212:885::-;6526:9;:7;:9::i;:::-;6518:54;;;;;-1:-1:-1;;;6518:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6518:54:0;;;;;;;;;;;;;;;21309:29;21324:13;19077:7;21335:1;21324:13;:10;:13;:::i;:::-;21309:10;;;:29;:14;:29;:::i;:::-;21302:3;:36;;21294:45;;;;;;21368:1;21358:7;;:11;21350:39;;;;;-1:-1:-1;;;21350:39:0;;;;;;;;;;;;-1:-1:-1;;;21350:39:0;;;;;;;;;;;;;;;21409:30;21424:14;19077:7;21435:2;21424:14;:10;:14;:::i;21409:30::-;21403:3;:36;21400:690;;;21455:96;21473:4;21480:16;21498:52;21548:1;21498:45;21539:3;21498:36;19178:1;21498:13;:11;:13::i;:::-;:17;:36;:17;:36;:::i;:::-;:40;:45;:40;:45;:::i;:52::-;21455:9;:96::i;:::-;21566:7;:9;;;;;;21400:690;;;21612:30;21627:14;19077:7;21638:2;21627:14;:10;:14;:::i;21612:30::-;21605:3;:37;;:77;;;;-1:-1:-1;21652:30:0;21667:14;19077:7;21678:2;21667:14;:10;:14;:::i;21652:30::-;21646:3;:36;21605:77;21602:488;;;21698:122;21716:4;21723:16;21741:78;21817:1;21741:71;21791:20;21803:7;;21796:1;21791:11;;:20;;;;:::i;:::-;21741:45;21782:3;21741:36;19178:1;21741:13;:11;:13::i;21698:122::-;21845:1;21835:7;:11;21602:488;;;21884:30;21899:14;19077:7;21910:2;21899:14;:10;:14;:::i;21884:30::-;21877:3;:37;21873:217;;21930:122;21948:4;21955:16;21973:78;22049:1;21973:71;22023:20;22035:7;;22028:1;22023:11;;:20;;;;:::i;21930:122::-;22077:1;22067:7;:11;21873:217;21212:885;:::o;12134:91::-;12205:12;;12134:91;:::o;13733:300::-;13822:4;13839:36;13849:6;13857:9;13868:6;13839:9;:36::i;:::-;13886:117;13895:6;13903:10;13915:87;13951:6;13915:87;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13915:19:0;;;;;;:11;:19;;;;;;;;13935:10;13915:31;;;;;;;;;:87;;:35;:87;:::i;:::-;13886:8;:117::i;:::-;-1:-1:-1;14021:4:0;13733:300;;;;;:::o;19003:34::-;19035:2;19003:34;:::o;14442:206::-;14548:10;14522:4;14569:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;14569:32:0;;;;;;;;;;14522:4;;14539:79;;14560:7;;14569:48;;14606:10;14569:48;:36;:48;:::i;22105:869::-;6526:9;:7;:9::i;:::-;6518:54;;;;;-1:-1:-1;;;6518:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6518:54:0;;;;;;;;;;;;;;;22198:29;22213:13;19077:7;22224:1;22213:13;:10;:13;:::i;22198:29::-;22191:3;:36;;22183:45;;;;;;22257:1;22247:7;;:11;22239:39;;;;;-1:-1:-1;;;22239:39:0;;;;;;;;;;;;-1:-1:-1;;;22239:39:0;;;;;;;;;;;;;;;22298:30;22313:14;19077:7;22324:2;22313:14;:10;:14;:::i;22298:30::-;22292:3;:36;22289:678;;;22344:92;22362:4;22369:14;22385:50;22433:1;22385:43;22424:3;22385:34;19225:1;22385:13;:11;:13::i;22344:92::-;22451:7;:9;;;;;;22289:678;;;22497:30;22512:14;19077:7;22523:2;22512:14;:10;:14;:::i;22497:30::-;22490:3;:37;;:77;;;;-1:-1:-1;22537:30:0;22552:14;19077:7;22563:2;22552:14;:10;:14;:::i;22537:30::-;22531:3;:36;22490:77;22487:480;;;22583:118;22601:4;22608:14;22624:76;22698:1;22624:69;22672:20;22684:7;;22677:1;22672:11;;:20;;;;:::i;22583:118::-;22726:1;22716:7;:11;22487:480;;;22765:30;22780:14;19077:7;22791:2;22780:14;:10;:14;:::i;22765:30::-;22758:3;:37;22754:213;;22811:118;22829:4;22836:14;22852:76;22926:1;22852:69;22900:20;22912:7;;22905:1;22900:11;;:20;;;;:::i;22811:118::-;22954:1;22944:7;:11;22105:869;:::o;19679:199::-;6526:9;:7;:9::i;:::-;6518:54;;;;;-1:-1:-1;;;6518:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6518:54:0;;;;;;;;;;;;;;;19751:11;:24;;-1:-1:-1;;;;;;19751:24:0;-1:-1:-1;;;;;19751:24:0;;;;;19786:84;19804:4;19751:24;19823:46;19865:3;19823:37;19275:2;19823:13;:11;:13::i;12288:110::-;-1:-1:-1;;;;;12372:18:0;12345:7;12372:18;;;:9;:18;;;;;;;12288:110::o;7123:140::-;6526:9;:7;:9::i;:::-;6518:54;;;;;-1:-1:-1;;;6518:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6518:54:0;;;;;;;;;;;;;;;7222:1;7206:6;;7185:40;;-1:-1:-1;;;;;7206:6:0;;;;7185:40;;7222:1;;7185:40;7253:1;7236:19;;-1:-1:-1;;;;;;7236:19:0;;;7123:140::o;19284:50::-;19323:11;19284:50;:::o;6314:79::-;6352:7;6379:6;-1:-1:-1;;;;;6379:6:0;6314:79;:::o;6680:92::-;6720:4;6758:6;-1:-1:-1;;;;;6758:6:0;6744:10;:20;;6680:92::o;22982:265::-;23050:7;:5;:7::i;:::-;-1:-1:-1;;;;;23036:21:0;:10;-1:-1:-1;;;;;23036:21:0;;:50;;;-1:-1:-1;23075:11:0;;-1:-1:-1;;;;;23075:11:0;23061:10;:25;23036:50;23028:102;;;;-1:-1:-1;;;23028:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23156:29;23171:13;19077:7;23182:1;23171:13;:10;:13;:::i;23156:29::-;23149:3;:36;;23141:45;;;;;;23203:11;;23197:42;;-1:-1:-1;;;;;23203:11:0;23216:22;23203:11;23216:9;:22::i;:::-;23197:5;:42::i;:::-;22982:265::o;18958:38::-;;;;;;;;;;;;;;-1:-1:-1;;;18958:38:0;;;;:::o;15151:257::-;15236:4;15253:125;15262:10;15274:7;15283:94;15320:15;15283:94;;;;;;;;;;;;;;;;;15295:10;15283:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;15283:32:0;;;;;;;;;;;:94;;:36;:94;:::i;12611:156::-;12680:4;12697:40;12707:10;12719:9;12730:6;12697:9;:40::i;19233:44::-;19275:2;19233:44;:::o;19886:332::-;6526:9;:7;:9::i;:::-;6518:54;;;;;-1:-1:-1;;;6518:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6518:54:0;;;;;;;;;;;;;;;20016:8;:15;19995:10;:17;:36;19987:87;;;;-1:-1:-1;;;19987:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20092:6;20087:124;20108:10;:17;20104:1;:21;20087:124;;;20147:52;20165:4;20172:10;20183:1;20172:13;;;;;;;;;;;;;;20187:8;20196:1;20187:11;;;;;;;;;;;;;;20147:9;:52::i;:::-;20127:3;;20087:124;;;;19886:332;;:::o;19091:39::-;19128:2;19091:39;:::o;12830:134::-;-1:-1:-1;;;;;12929:18:0;;;12902:7;12929:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12830:134::o;20351:853::-;6526:9;:7;:9::i;:::-;6518:54;;;;;-1:-1:-1;;;6518:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6518:54:0;;;;;;;;;;;;;;;20440:29;20455:13;19077:7;20466:1;20455:13;:10;:13;:::i;20440:29::-;20433:3;:36;;20425:45;;;;;;20499:1;20489:7;;:11;20481:39;;;;;-1:-1:-1;;;20481:39:0;;;;;;;;;;;;-1:-1:-1;;;20481:39:0;;;;;;;;;;;;;;;20540:30;20555:14;19077:7;20566:2;20555:14;:10;:14;:::i;20540:30::-;20534:3;:36;20531:666;;;20586:88;20604:4;20611:12;20625:48;20671:1;20625:41;20662:3;20625:32;19128:2;20625:13;:11;:13::i;20586:88::-;20689:7;:9;;;;;;20531:666;;;20735:30;20750:14;19077:7;20761:2;20750:14;:10;:14;:::i;20735:30::-;20728:3;:37;;:77;;;;-1:-1:-1;20775:30:0;20790:14;19077:7;20801:2;20790:14;:10;:14;:::i;20775:30::-;20769:3;:36;20728:77;20725:472;;;20821:114;20839:4;20846:12;20860:74;20932:1;20860:67;20906:20;20918:7;;20911:1;20906:11;;:20;;;;:::i;:::-;20860:41;20897:3;20860:32;19128:2;20860:13;:11;:13::i;20821:114::-;20960:1;20950:7;:11;20725:472;;;20999:30;21014:14;19077:7;21025:2;21014:14;:10;:14;:::i;20999:30::-;20992:3;:37;20988:209;;21045:114;21063:4;21070:12;21084:74;21156:1;21084:67;21130:20;21142:7;;21135:1;21130:11;;:20;;;;:::i;21045:114::-;21184:1;21174:7;:11;20351:853;:::o;7418:109::-;6526:9;:7;:9::i;:::-;6518:54;;;;;-1:-1:-1;;;6518:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6518:54:0;;;;;;;;;;;;;;;7491:28;7510:8;7491:18;:28::i;19458:26::-;;;-1:-1:-1;;;;;19458:26:0;;:::o;15898:471::-;-1:-1:-1;;;;;15996:20:0;;15988:70;;;;-1:-1:-1;;;15988:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16077:23:0;;16069:71;;;;-1:-1:-1;;;16069:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16173;16195:6;16173:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16173:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;16153:17:0;;;;;;;:9;:17;;;;;;:91;;;;16278:20;;;;;;;:32;;16303:6;16278:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;16255:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;16326:35;;;;;;;16255:20;;16326:35;;;;;;;;;;;;;15898:471;;;:::o;18078:338::-;-1:-1:-1;;;;;18172:19:0;;18164:68;;;;-1:-1:-1;;;18164:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18251:21:0;;18243:68;;;;-1:-1:-1;;;18243:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18324:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18376:32;;;;;;;;;;;;;;;;;18078:338;;;:::o;2231:471::-;2289:7;2534:6;2530:47;;-1:-1:-1;2564:1:0;2557:8;;2530:47;2601:5;;;2605:1;2601;:5;:1;2625:5;;;;;:10;2617:56;;;;-1:-1:-1;;;2617:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2693:1;2231:471;-1:-1:-1;;;2231:471:0:o;859:181::-;917:7;949:5;;;973:6;;;;965:46;;;;;-1:-1:-1;;;965:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3170:132;3228:7;3255:39;3259:1;3262;3255:39;;;;;;;;;;;;;;;;;:3;:39::i;1315:136::-;1373:7;1400:43;1404:1;1407;1400:43;;;;;;;;;;;;;;;;;1788:192;1874:7;1910:12;1902:6;;;;1894:29;;;;-1:-1:-1;;;1894:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1894:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1946:5:0;;;1788:192::o;17290:348::-;-1:-1:-1;;;;;17366:21:0;;17358:67;;;;-1:-1:-1;;;17358:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17459:68;17482:6;17459:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17459:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;17438:18:0;;;;;;:9;:18;;;;;:89;17553:12;;:24;;17570:6;17553:24;:16;:24;:::i;:::-;17538:12;:39;17593:37;;;;;;;;17619:1;;-1:-1:-1;;;;;17593:37:0;;;;;;;;;;;;17290:348;;:::o;7633:229::-;-1:-1:-1;;;;;7707:22:0;;7699:73;;;;-1:-1:-1;;;7699:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7809:6;;;7788:38;;-1:-1:-1;;;;;7788:38:0;;;;7809:6;;;7788:38;;;7837:6;:17;;-1:-1:-1;;;;;;7837:17:0;-1:-1:-1;;;;;7837:17:0;;;;;;;;;;7633:229::o;3832:345::-;3918:7;4020:12;4013:5;4005:28;;;;-1:-1:-1;;;4005:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;4005:28:0;;4044:9;4060:1;4056;:5;;;;;;;3832:345;-1:-1:-1;;;;;3832:345:0:o

Swarm Source

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