ETH Price: $3,444.69 (-1.04%)
Gas: 10 Gwei

Token

BitMEX Token (BMEX)
 

Overview

Max Total Supply

450,000,000 BMEX

Holders

605 ( 0.331%)

Market

Price

$0.18 @ 0.000053 ETH (+0.86%)

Onchain Market Cap

$81,463,950.00

Circulating Supply Market Cap

$18,037,167.00

Other Info

Token Contract (WITH 6 Decimals)

Filtered by Token Holder
BitMEX 2
Balance
245,338.338102 BMEX

Value
$44,413.84 ( ~12.8934 Eth) [0.0545%]
0xfb8131c260749c7835a08ccbdb64728de432858e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BitMEX has long been an OG exchange offering great trading systems and tools to access, manage and grow investments. BMEX is a utility token for traders, offering valuable benefits such as fee discounts, withdrawal fee waivers, staking yields or early product access.

Market

Volume (24H):$15,441.51
Market Capitalization:$18,037,167.00
Circulating Supply:99,750,000.00 BMEX
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BMEX

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-21
*/

// File: @openzeppelin/contracts/utils/Context.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.9;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)


/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * 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.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the 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 virtual onlyOwner {
        _transferOwnership(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 virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/roles/Roles.sol

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

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), 'Roles: account already has role');
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), 'Roles: account does not have role');
        role.bearer[account] = false;
    }

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

// File: contracts/roles/BlacklistManagerRole.sol
// Author : Tokeny Solutions




contract BlacklistManagerRole is Ownable {
    using Roles for Roles.Role;

    event BlacklistManagerAdded(address indexed _blacklistManager);
    event BlacklistManagerRemoved(address indexed _blacklistManager);

    Roles.Role private _blacklistManagers;

    modifier onlyBlacklistManager() {
        require(isBlacklistManager(msg.sender), 'BlacklistManagerRole: caller does not have the role');
        _;
    }

    function isBlacklistManager(address _blacklistManager) public view returns (bool) {
        return _blacklistManagers.has(_blacklistManager);
    }

    function addBlacklistManager(address _blacklistManager) public onlyOwner {
        _blacklistManagers.add(_blacklistManager);
        emit BlacklistManagerAdded(_blacklistManager);
    }

    function removeBlacklistManager(address _blacklistManager) public onlyOwner {
        _blacklistManagers.remove(_blacklistManager);
        emit BlacklistManagerRemoved(_blacklistManager);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/security/Pausable.sol
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: contracts/vesting/IVesting.sol
// Author : Tokeny Solutions

interface IVesting {

    // events
    event UpdatedTreasury(address newTreasury);
    event UpdatedTeam(address newTeam);
    event UpdatedEcosystemFund(address newEcosystemFund);
    event UpdatedLongTermLockUp(address newLongTermLockUp);
    event TokenSet(address token);
    event InitialDeposit(address _to, uint256 _amount, uint _cliff, uint _vesting);
    event TokensClaimed(address _holder, uint256 _amount);
    event ReferenceDateSet(uint256 _referenceDate);

    // functions
    function setToken(address token) external;
    function initialized() external view returns(bool);
    function treasury() external view returns(address);
    function updateTreasuryWallet(address newTreasury) external;
    function team() external view returns(address);
    function updateTeamWallet(address newTeam) external;
    function ecosystemFund() external view returns(address);
    function updateEcosystemFundWallet(address newEcosystemFund) external;
    function longTermLockUp() external view returns(address);
    function updateLongTermLockUpWallet(address newLongTermLockUp) external;
    function initialDeposit(address _to, uint256 _amount, uint _cliff, uint _vesting) external;
    function claim() external;
    function claimFor(address _holder) external;
    function claimAll() external;
    function getBalances(address _holder) external view returns(uint, uint, uint);

}

// File: contracts/token/BMEX.sol
// Author : Tokeny Solutions

contract BMEX is Context, IERC20, IERC20Metadata, BlacklistManagerRole, Pausable {

    // event emitted when a wallet is blacklisted by a blacklist manager
    event Blacklisted(address wallet);
    // event when a wallet that was blacklisted is removed from the blacklist by the blacklist manager
    event Whitelisted(address wallet);

    mapping(address => uint256) private _balances;

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

    // blacklisting status of wallets
    mapping(address => bool) private _blacklisted;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    // address of the vesting contract on which the non-circulating supply is blocked temporarily
    address public _vestingContract;


    /**
     * @dev constructor of the token
     * sets the name and symbol of the token
     * @param owner the owner wallet of the contract
     * @param vestingContract the address of the vesting contract
     * note that the constructor is not making the full initialization of the token, it is required
     * to call initialize() after deployment of the token contract
     */
    constructor(address owner, address vestingContract) {
        _name = 'BitMEX Token';
        _symbol = 'BMEX';
        _vestingContract = vestingContract;
        _transferOwnership(owner);
    }

    /**
     * @dev initializes the token supply and sends the tokens to the vesting contract
     * on a supply of 450M tokens, only 36M are free at launch, on the treasury wallet
     * the rest of the tokens are locked on the vesting smart contract
     * this function is setting the token address on the vesting contract
     * the function cannot be called twice
     */
    function initialize() external {
        require(!IVesting(_vestingContract).initialized(), 'already initialized');
        IVesting(_vestingContract).setToken(address(this));
        _mint(address(this), 450000000*10**6);
        _approve(address(this), _vestingContract, 414000000*10**6);
        IVesting(_vestingContract).initialDeposit(IVesting(_vestingContract).treasury(), 76500000*10**6, 0, 12);
        IVesting(_vestingContract).initialDeposit(IVesting(_vestingContract).team(), 90000000*10**6, 9, 33);
        IVesting(_vestingContract).initialDeposit(IVesting(_vestingContract).ecosystemFund(), 135000000*10**6, 3, 21);
        IVesting(_vestingContract).initialDeposit(IVesting(_vestingContract).longTermLockUp(), 112500000*10**6, 24, 60);
        _transfer(address(this), IVesting(_vestingContract).treasury(), 36000000*10**6);
    }

    /**
     * @dev pauses the token, blocking all transfers as long as paused
     * requires the token to not be paused yet
     * only owner can call
     */
    function pause() public onlyOwner {
        _pause();
    }

    /**
     * @dev unpauses the token, allowing transfers to happen again
     * requires the token to be paused first
     * only owner can call
     */
    function unpause() public onlyOwner {
        _unpause();
    }

    /**
     * @dev getter function returning true if a wallet is blacklisted, false otherwise
     * @param _wallet the address to check
     */
    function blacklisted(address _wallet) public view returns (bool) {
        return _blacklisted[_wallet];
    }

    /**
     * @dev blacklists a wallet address
     * requires the wallet to not be blacklisted yet
     * @param _wallet the wallet to blacklist
     */
    function blacklist(address _wallet) external onlyBlacklistManager {
        require(!blacklisted(_wallet), 'wallet already blacklisted');
        _blacklisted[_wallet] = true;
        emit Blacklisted(_wallet);
    }

    /**
     * @dev remove blacklisting from a wallet
     * requires the wallet to be blacklisted first
     * @param _wallet the address to whitelist
     */
    function whitelist(address _wallet) external onlyBlacklistManager {
        require(blacklisted(_wallet), 'wallet not blacklisted');
        _blacklisted[_wallet] = false;
        emit Whitelisted(_wallet);
    }

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     * BMEX token is using 8 decimals instead of 18
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 6;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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 virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, 'ERC20: transfer amount exceeds allowance');
    unchecked {
        _approve(sender, _msgSender(), currentAllowance - amount);
    }

        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 virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + 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 virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, 'ERC20: decreased allowance below zero');
    unchecked {
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);
    }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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 virtual {
        require(sender != address(0), 'ERC20: transfer from the zero address');
        require(recipient != address(0), 'ERC20: transfer to the zero address');

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, 'ERC20: transfer amount exceeds balance');
    unchecked {
        _balances[sender] = senderBalance - amount;
    }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), 'ERC20: mint to the zero address');

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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 virtual {
        require(account != address(0), 'ERC20: burn from the zero address');

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, 'ERC20: burn amount exceeds balance');
    unchecked {
        _balances[account] = accountBalance - amount;
    }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 virtual {
        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 Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     * token transfers blocked if from or to a blacklisted wallet
     * token transfers blocked if token paused
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 /* amount */
    ) internal virtual {
        require(!paused(), 'ERC20Pausable: token transfer while paused');
        require(!blacklisted(to) && !blacklisted(from), 'Cannot transfer tokens to or from blacklisted');
    }

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"vestingContract","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":"_blacklistManager","type":"address"}],"name":"BlacklistManagerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_blacklistManager","type":"address"}],"name":"BlacklistManagerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"Blacklisted","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"Whitelisted","type":"event"},{"inputs":[],"name":"_vestingContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_blacklistManager","type":"address"}],"name":"addBlacklistManager","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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_blacklistManager","type":"address"}],"name":"isBlacklistManager","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":"_blacklistManager","type":"address"}],"name":"removeBlacklistManager","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001db138038062001db18339810160408190526200003491620001ee565b6200003f33620000db565b6002805460ff1916905560408051808201909152600c8082526b2134ba26a2ac102a37b5b2b760a11b60209092019182526200007e916007916200012b565b50604080518082019091526004808252630849a8ab60e31b6020909201918252620000ac916008916200012b565b50600980546001600160a01b0319166001600160a01b038316179055620000d382620000db565b505062000263565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001399062000226565b90600052602060002090601f0160209004810192826200015d5760008555620001a8565b82601f106200017857805160ff1916838001178555620001a8565b82800160010185558215620001a8579182015b82811115620001a85782518255916020019190600101906200018b565b50620001b6929150620001ba565b5090565b5b80821115620001b65760008155600101620001bb565b80516001600160a01b0381168114620001e957600080fd5b919050565b600080604083850312156200020257600080fd5b6200020d83620001d1565b91506200021d60208401620001d1565b90509250929050565b600181811c908216806200023b57607f821691505b602082108114156200025d57634e487b7160e01b600052602260045260246000fd5b50919050565b611b3e80620002736000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806376dba7e0116100de5780639b19251a11610097578063dbac26e911610071578063dbac26e91461033a578063dd62ed3e1461034d578063f2fde38b14610386578063f9f92be41461039957600080fd5b80639b19251a14610301578063a457c2d714610314578063a9059cbb1461032757600080fd5b806376dba7e01461029a5780638129fc1c146102c55780638456cb59146102cd5780638da5cb5b146102d557806395d89b41146102e6578063974b368c146102ee57600080fd5b8063395093511161014b57806342966c681161012557806342966c681461024b5780635c975abb1461025e57806370a0823114610269578063715018a61461029257600080fd5b8063395093511461021d57806339c5fe5b146102305780633f4ba83a1461024357600080fd5b806306fdde0314610193578063095ea7b3146101b15780630eff2afc146101d457806318160ddd146101e957806323b872dd146101fb578063313ce5671461020e575b600080fd5b61019b6103ac565b6040516101a8919061184e565b60405180910390f35b6101c46101bf3660046118b8565b61043e565b60405190151581526020016101a8565b6101e76101e23660046118e4565b610454565b005b6006545b6040519081526020016101a8565b6101c4610209366004611908565b6104c9565b604051600681526020016101a8565b6101c461022b3660046118b8565b610573565b6101c461023e3660046118e4565b6105af565b6101e76105c2565b6101e7610259366004611949565b6105f6565b60025460ff166101c4565b6101ed6102773660046118e4565b6001600160a01b031660009081526003602052604090205490565b6101e7610603565b6009546102ad906001600160a01b031681565b6040516001600160a01b0390911681526020016101a8565b6101e7610637565b6101e7610ba7565b6000546001600160a01b03166102ad565b61019b610bd9565b6101e76102fc3660046118e4565b610be8565b6101e761030f3660046118e4565b610c54565b6101c46103223660046118b8565b610d1f565b6101c46103353660046118b8565b610db8565b6101c46103483660046118e4565b610dc5565b6101ed61035b366004611962565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101e76103943660046118e4565b610de3565b6101e76103a73660046118e4565b610e7b565b6060600780546103bb9061199b565b80601f01602080910402602001604051908101604052809291908181526020018280546103e79061199b565b80156104345780601f1061040957610100808354040283529160200191610434565b820191906000526020600020905b81548152906001019060200180831161041757829003601f168201915b5050505050905090565b600061044b338484610f4a565b50600192915050565b6000546001600160a01b031633146104875760405162461bcd60e51b815260040161047e906119d6565b60405180910390fd5b61049260018261106f565b6040516001600160a01b038216907f1a92b471a4e04ab3438373984883433fdfdec4c1976bde8cb2becb4d211b4fc390600090a250565b60006104d68484846110eb565b6001600160a01b03841660009081526004602090815260408083203384529091529020548281101561055b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161047e565b6105688533858403610f4a565b506001949350505050565b3360008181526004602090815260408083206001600160a01b0387168452909152812054909161044b9185906105aa908690611a21565b610f4a565b60006105bc6001836112c5565b92915050565b6000546001600160a01b031633146105ec5760405162461bcd60e51b815260040161047e906119d6565b6105f4611348565b565b61060033826113db565b50565b6000546001600160a01b0316331461062d5760405162461bcd60e51b815260040161047e906119d6565b6105f46000611532565b600960009054906101000a90046001600160a01b03166001600160a01b031663158ef93e6040518163ffffffff1660e01b815260040160206040518083038186803b15801561068557600080fd5b505afa158015610699573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106bd9190611a39565b156107005760405162461bcd60e51b8152602060048201526013602482015272185b1c9958591e481a5b9a5d1a585b1a5e9959606a1b604482015260640161047e565b60095460405163144fa6d760e01b81523060048201526001600160a01b039091169063144fa6d790602401600060405180830381600087803b15801561074557600080fd5b505af1158015610759573d6000803e3d6000fd5b5050505061076e3066019945ca262000611582565b60095461078d9030906001600160a01b031666017887e2efe000610f4a565b600954604080516361d027b360e01b815290516001600160a01b039092169163d2c1996b9183916361d027b391600480820192602092909190829003018186803b1580156107da57600080fd5b505afa1580156107ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108129190611a5b565b6545938b5348006000600c6040518563ffffffff1660e01b815260040161083c9493929190611a78565b600060405180830381600087803b15801561085657600080fd5b505af115801561086a573d6000803e3d6000fd5b5050600954604080516342f9577960e11b815290516001600160a01b03909216935063d2c1996b925083916385f2aef291600480820192602092909190829003018186803b1580156108bb57600080fd5b505afa1580156108cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f39190611a5b565b6551dac207a000600960216040518563ffffffff1660e01b815260040161091d9493929190611a78565b600060405180830381600087803b15801561093757600080fd5b505af115801561094b573d6000803e3d6000fd5b505060095460408051631d0cf68360e01b815290516001600160a01b03909216935063d2c1996b92508391631d0cf68391600480820192602092909190829003018186803b15801561099c57600080fd5b505afa1580156109b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d49190611a5b565b657ac8230b7000600360156040518563ffffffff1660e01b81526004016109fe9493929190611a78565b600060405180830381600087803b158015610a1857600080fd5b505af1158015610a2c573d6000803e3d6000fd5b50506009546040805163fd9c190b60e01b815290516001600160a01b03909216935063d2c1996b9250839163fd9c190b91600480820192602092909190829003018186803b158015610a7d57600080fd5b505afa158015610a91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab59190611a5b565b656651728988006018603c6040518563ffffffff1660e01b8152600401610adf9493929190611a78565b600060405180830381600087803b158015610af957600080fd5b505af1158015610b0d573d6000803e3d6000fd5b505050506105f430600960009054906101000a90046001600160a01b03166001600160a01b03166361d027b36040518163ffffffff1660e01b815260040160206040518083038186803b158015610b6357600080fd5b505afa158015610b77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9b9190611a5b565b6520bde73640006110eb565b6000546001600160a01b03163314610bd15760405162461bcd60e51b815260040161047e906119d6565b6105f461166d565b6060600880546103bb9061199b565b6000546001600160a01b03163314610c125760405162461bcd60e51b815260040161047e906119d6565b610c1d6001826116e8565b6040516001600160a01b038216907f138c5657200f42e5ac18112f8753b2be6c1a679d890e12b6694f1581f8bd929590600090a250565b610c5d336105af565b610c795760405162461bcd60e51b815260040161047e90611a9e565b610c8281610dc5565b610cc75760405162461bcd60e51b81526020600482015260166024820152751dd85b1b195d081b9bdd08189b1858dadb1a5cdd195960521b604482015260640161047e565b6001600160a01b038116600081815260056020908152604091829020805460ff1916905590519182527faab7954e9d246b167ef88aeddad35209ca2489d95a8aeb59e288d9b19fae5a5491015b60405180910390a150565b3360009081526004602090815260408083206001600160a01b038616845290915281205482811015610da15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161047e565b610dae3385858403610f4a565b5060019392505050565b600061044b3384846110eb565b6001600160a01b031660009081526005602052604090205460ff1690565b6000546001600160a01b03163314610e0d5760405162461bcd60e51b815260040161047e906119d6565b6001600160a01b038116610e725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161047e565b61060081611532565b610e84336105af565b610ea05760405162461bcd60e51b815260040161047e90611a9e565b610ea981610dc5565b15610ef65760405162461bcd60e51b815260206004820152601a60248201527f77616c6c657420616c726561647920626c61636b6c6973746564000000000000604482015260640161047e565b6001600160a01b038116600081815260056020908152604091829020805460ff1916600117905590519182527fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559101610d14565b6001600160a01b038316610fac5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161047e565b6001600160a01b03821661100d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161047e565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b61107982826112c5565b156110c65760405162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015260640161047e565b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b03831661114f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161047e565b6001600160a01b0382166111b15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161047e565b6111bc83838361176a565b6001600160a01b038316600090815260036020526040902054818110156112345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161047e565b6001600160a01b0380851660009081526003602052604080822085850390559185168152908120805484929061126b908490611a21565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112b791815260200190565b60405180910390a350505050565b60006001600160a01b0382166113285760405162461bcd60e51b815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f206164647265604482015261737360f01b606482015260840161047e565b506001600160a01b03166000908152602091909152604090205460ff1690565b60025460ff166113915760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161047e565b6002805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b03821661143b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161047e565b6114478260008361176a565b6001600160a01b038216600090815260036020526040902054818110156114bb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161047e565b6001600160a01b03831660009081526003602052604081208383039055600680548492906114ea908490611af1565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611062565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166115d85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161047e565b6115e46000838361176a565b80600660008282546115f69190611a21565b90915550506001600160a01b03821660009081526003602052604081208054839290611623908490611a21565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60025460ff16156116b35760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161047e565b6002805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113be3390565b6116f282826112c5565b6117485760405162461bcd60e51b815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6044820152606560f81b606482015260840161047e565b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60025460ff16156117d05760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b606482015260840161047e565b6117d982610dc5565b1580156117ec57506117ea83610dc5565b155b61152d5760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f74207472616e7366657220746f6b656e7320746f206f722066726f60448201526c1b48189b1858dadb1a5cdd1959609a1b606482015260840161047e565b600060208083528351808285015260005b8181101561187b5785810183015185820160400152820161185f565b8181111561188d576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461060057600080fd5b600080604083850312156118cb57600080fd5b82356118d6816118a3565b946020939093013593505050565b6000602082840312156118f657600080fd5b8135611901816118a3565b9392505050565b60008060006060848603121561191d57600080fd5b8335611928816118a3565b92506020840135611938816118a3565b929592945050506040919091013590565b60006020828403121561195b57600080fd5b5035919050565b6000806040838503121561197557600080fd5b8235611980816118a3565b91506020830135611990816118a3565b809150509250929050565b600181811c908216806119af57607f821691505b602082108114156119d057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a3457611a34611a0b565b500190565b600060208284031215611a4b57600080fd5b8151801515811461190157600080fd5b600060208284031215611a6d57600080fd5b8151611901816118a3565b6001600160a01b0394909416845260208401929092526040830152606082015260800190565b60208082526033908201527f426c61636b6c6973744d616e61676572526f6c653a2063616c6c657220646f6560408201527273206e6f7420686176652074686520726f6c6560681b606082015260800190565b600082821015611b0357611b03611a0b565b50039056fea2646970667358221220a0b3fe13d728a02a88e1052f8fadea44d183ab5bf162238c2b95191e6f1a0cb664736f6c634300080900330000000000000000000000008b0b1d6a3b46b676cd6da234cc1bf444fd2f6a3200000000000000000000000065a35599a063f3ca882b1550a328d8a543d28232

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806376dba7e0116100de5780639b19251a11610097578063dbac26e911610071578063dbac26e91461033a578063dd62ed3e1461034d578063f2fde38b14610386578063f9f92be41461039957600080fd5b80639b19251a14610301578063a457c2d714610314578063a9059cbb1461032757600080fd5b806376dba7e01461029a5780638129fc1c146102c55780638456cb59146102cd5780638da5cb5b146102d557806395d89b41146102e6578063974b368c146102ee57600080fd5b8063395093511161014b57806342966c681161012557806342966c681461024b5780635c975abb1461025e57806370a0823114610269578063715018a61461029257600080fd5b8063395093511461021d57806339c5fe5b146102305780633f4ba83a1461024357600080fd5b806306fdde0314610193578063095ea7b3146101b15780630eff2afc146101d457806318160ddd146101e957806323b872dd146101fb578063313ce5671461020e575b600080fd5b61019b6103ac565b6040516101a8919061184e565b60405180910390f35b6101c46101bf3660046118b8565b61043e565b60405190151581526020016101a8565b6101e76101e23660046118e4565b610454565b005b6006545b6040519081526020016101a8565b6101c4610209366004611908565b6104c9565b604051600681526020016101a8565b6101c461022b3660046118b8565b610573565b6101c461023e3660046118e4565b6105af565b6101e76105c2565b6101e7610259366004611949565b6105f6565b60025460ff166101c4565b6101ed6102773660046118e4565b6001600160a01b031660009081526003602052604090205490565b6101e7610603565b6009546102ad906001600160a01b031681565b6040516001600160a01b0390911681526020016101a8565b6101e7610637565b6101e7610ba7565b6000546001600160a01b03166102ad565b61019b610bd9565b6101e76102fc3660046118e4565b610be8565b6101e761030f3660046118e4565b610c54565b6101c46103223660046118b8565b610d1f565b6101c46103353660046118b8565b610db8565b6101c46103483660046118e4565b610dc5565b6101ed61035b366004611962565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101e76103943660046118e4565b610de3565b6101e76103a73660046118e4565b610e7b565b6060600780546103bb9061199b565b80601f01602080910402602001604051908101604052809291908181526020018280546103e79061199b565b80156104345780601f1061040957610100808354040283529160200191610434565b820191906000526020600020905b81548152906001019060200180831161041757829003601f168201915b5050505050905090565b600061044b338484610f4a565b50600192915050565b6000546001600160a01b031633146104875760405162461bcd60e51b815260040161047e906119d6565b60405180910390fd5b61049260018261106f565b6040516001600160a01b038216907f1a92b471a4e04ab3438373984883433fdfdec4c1976bde8cb2becb4d211b4fc390600090a250565b60006104d68484846110eb565b6001600160a01b03841660009081526004602090815260408083203384529091529020548281101561055b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161047e565b6105688533858403610f4a565b506001949350505050565b3360008181526004602090815260408083206001600160a01b0387168452909152812054909161044b9185906105aa908690611a21565b610f4a565b60006105bc6001836112c5565b92915050565b6000546001600160a01b031633146105ec5760405162461bcd60e51b815260040161047e906119d6565b6105f4611348565b565b61060033826113db565b50565b6000546001600160a01b0316331461062d5760405162461bcd60e51b815260040161047e906119d6565b6105f46000611532565b600960009054906101000a90046001600160a01b03166001600160a01b031663158ef93e6040518163ffffffff1660e01b815260040160206040518083038186803b15801561068557600080fd5b505afa158015610699573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106bd9190611a39565b156107005760405162461bcd60e51b8152602060048201526013602482015272185b1c9958591e481a5b9a5d1a585b1a5e9959606a1b604482015260640161047e565b60095460405163144fa6d760e01b81523060048201526001600160a01b039091169063144fa6d790602401600060405180830381600087803b15801561074557600080fd5b505af1158015610759573d6000803e3d6000fd5b5050505061076e3066019945ca262000611582565b60095461078d9030906001600160a01b031666017887e2efe000610f4a565b600954604080516361d027b360e01b815290516001600160a01b039092169163d2c1996b9183916361d027b391600480820192602092909190829003018186803b1580156107da57600080fd5b505afa1580156107ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108129190611a5b565b6545938b5348006000600c6040518563ffffffff1660e01b815260040161083c9493929190611a78565b600060405180830381600087803b15801561085657600080fd5b505af115801561086a573d6000803e3d6000fd5b5050600954604080516342f9577960e11b815290516001600160a01b03909216935063d2c1996b925083916385f2aef291600480820192602092909190829003018186803b1580156108bb57600080fd5b505afa1580156108cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f39190611a5b565b6551dac207a000600960216040518563ffffffff1660e01b815260040161091d9493929190611a78565b600060405180830381600087803b15801561093757600080fd5b505af115801561094b573d6000803e3d6000fd5b505060095460408051631d0cf68360e01b815290516001600160a01b03909216935063d2c1996b92508391631d0cf68391600480820192602092909190829003018186803b15801561099c57600080fd5b505afa1580156109b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d49190611a5b565b657ac8230b7000600360156040518563ffffffff1660e01b81526004016109fe9493929190611a78565b600060405180830381600087803b158015610a1857600080fd5b505af1158015610a2c573d6000803e3d6000fd5b50506009546040805163fd9c190b60e01b815290516001600160a01b03909216935063d2c1996b9250839163fd9c190b91600480820192602092909190829003018186803b158015610a7d57600080fd5b505afa158015610a91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab59190611a5b565b656651728988006018603c6040518563ffffffff1660e01b8152600401610adf9493929190611a78565b600060405180830381600087803b158015610af957600080fd5b505af1158015610b0d573d6000803e3d6000fd5b505050506105f430600960009054906101000a90046001600160a01b03166001600160a01b03166361d027b36040518163ffffffff1660e01b815260040160206040518083038186803b158015610b6357600080fd5b505afa158015610b77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9b9190611a5b565b6520bde73640006110eb565b6000546001600160a01b03163314610bd15760405162461bcd60e51b815260040161047e906119d6565b6105f461166d565b6060600880546103bb9061199b565b6000546001600160a01b03163314610c125760405162461bcd60e51b815260040161047e906119d6565b610c1d6001826116e8565b6040516001600160a01b038216907f138c5657200f42e5ac18112f8753b2be6c1a679d890e12b6694f1581f8bd929590600090a250565b610c5d336105af565b610c795760405162461bcd60e51b815260040161047e90611a9e565b610c8281610dc5565b610cc75760405162461bcd60e51b81526020600482015260166024820152751dd85b1b195d081b9bdd08189b1858dadb1a5cdd195960521b604482015260640161047e565b6001600160a01b038116600081815260056020908152604091829020805460ff1916905590519182527faab7954e9d246b167ef88aeddad35209ca2489d95a8aeb59e288d9b19fae5a5491015b60405180910390a150565b3360009081526004602090815260408083206001600160a01b038616845290915281205482811015610da15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161047e565b610dae3385858403610f4a565b5060019392505050565b600061044b3384846110eb565b6001600160a01b031660009081526005602052604090205460ff1690565b6000546001600160a01b03163314610e0d5760405162461bcd60e51b815260040161047e906119d6565b6001600160a01b038116610e725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161047e565b61060081611532565b610e84336105af565b610ea05760405162461bcd60e51b815260040161047e90611a9e565b610ea981610dc5565b15610ef65760405162461bcd60e51b815260206004820152601a60248201527f77616c6c657420616c726561647920626c61636b6c6973746564000000000000604482015260640161047e565b6001600160a01b038116600081815260056020908152604091829020805460ff1916600117905590519182527fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559101610d14565b6001600160a01b038316610fac5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161047e565b6001600160a01b03821661100d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161047e565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b61107982826112c5565b156110c65760405162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015260640161047e565b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b03831661114f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161047e565b6001600160a01b0382166111b15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161047e565b6111bc83838361176a565b6001600160a01b038316600090815260036020526040902054818110156112345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161047e565b6001600160a01b0380851660009081526003602052604080822085850390559185168152908120805484929061126b908490611a21565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112b791815260200190565b60405180910390a350505050565b60006001600160a01b0382166113285760405162461bcd60e51b815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f206164647265604482015261737360f01b606482015260840161047e565b506001600160a01b03166000908152602091909152604090205460ff1690565b60025460ff166113915760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161047e565b6002805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b03821661143b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161047e565b6114478260008361176a565b6001600160a01b038216600090815260036020526040902054818110156114bb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161047e565b6001600160a01b03831660009081526003602052604081208383039055600680548492906114ea908490611af1565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611062565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166115d85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161047e565b6115e46000838361176a565b80600660008282546115f69190611a21565b90915550506001600160a01b03821660009081526003602052604081208054839290611623908490611a21565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60025460ff16156116b35760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161047e565b6002805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113be3390565b6116f282826112c5565b6117485760405162461bcd60e51b815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6044820152606560f81b606482015260840161047e565b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60025460ff16156117d05760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b606482015260840161047e565b6117d982610dc5565b1580156117ec57506117ea83610dc5565b155b61152d5760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f74207472616e7366657220746f6b656e7320746f206f722066726f60448201526c1b48189b1858dadb1a5cdd1959609a1b606482015260840161047e565b600060208083528351808285015260005b8181101561187b5785810183015185820160400152820161185f565b8181111561188d576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461060057600080fd5b600080604083850312156118cb57600080fd5b82356118d6816118a3565b946020939093013593505050565b6000602082840312156118f657600080fd5b8135611901816118a3565b9392505050565b60008060006060848603121561191d57600080fd5b8335611928816118a3565b92506020840135611938816118a3565b929592945050506040919091013590565b60006020828403121561195b57600080fd5b5035919050565b6000806040838503121561197557600080fd5b8235611980816118a3565b91506020830135611990816118a3565b809150509250929050565b600181811c908216806119af57607f821691505b602082108114156119d057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a3457611a34611a0b565b500190565b600060208284031215611a4b57600080fd5b8151801515811461190157600080fd5b600060208284031215611a6d57600080fd5b8151611901816118a3565b6001600160a01b0394909416845260208401929092526040830152606082015260800190565b60208082526033908201527f426c61636b6c6973744d616e61676572526f6c653a2063616c6c657220646f6560408201527273206e6f7420686176652074686520726f6c6560681b606082015260800190565b600082821015611b0357611b03611a0b565b50039056fea2646970667358221220a0b3fe13d728a02a88e1052f8fadea44d183ab5bf162238c2b95191e6f1a0cb664736f6c63430008090033

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

0000000000000000000000008b0b1d6a3b46b676cd6da234cc1bf444fd2f6a3200000000000000000000000065a35599a063f3ca882b1550a328d8a543d28232

-----Decoded View---------------
Arg [0] : owner (address): 0x8B0b1D6A3B46b676CD6DA234cC1bf444fD2f6A32
Arg [1] : vestingContract (address): 0x65a35599a063f3CA882B1550A328D8a543D28232

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000008b0b1d6a3b46b676cd6da234cc1bf444fd2f6a32
Arg [1] : 00000000000000000000000065a35599a063f3ca882b1550a328d8a543d28232


Deployed Bytecode Sourcemap

12958:14707:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17393:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19612:169;;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;19612:169:0;1072:187:1;5135:189:0;;;;;;:::i;:::-;;:::i;:::-;;18565:108;18653:12;;18565:108;;;1662:25:1;;;1650:2;1635:18;18565:108:0;1516:177:1;20263:480:0;;;;;;:::i;:::-;;:::i;18408:92::-;;;18491:1;2301:36:1;;2289:2;2274:18;18408:92:0;2159:184:1;21152:215:0;;;;;;:::i;:::-;;:::i;4978:149::-;;;;;;:::i;:::-;;:::i;16012:65::-;;;:::i;17240:83::-;;;;;;:::i;:::-;;:::i;10206:86::-;10277:7;;;;10206:86;;18736:127;;;;;;:::i;:::-;-1:-1:-1;;;;;18837:18:0;18810:7;18837:18;;;:9;:18;;;;;;;18736:127;2606:103;;;:::i;13725:31::-;;;;;-1:-1:-1;;;;;13725:31:0;;;;;;-1:-1:-1;;;;;2697:32:1;;;2679:51;;2667:2;2652:18;13725:31:0;2533:203:1;14752:857:0;;;:::i;15783:61::-;;;:::i;1955:87::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;1955:87;;17612:104;;;:::i;5332:197::-;;;;;;:::i;:::-;;:::i;16908:216::-;;;;;;:::i;:::-;;:::i;21870:401::-;;;;;;:::i;:::-;;:::i;19076:175::-;;;;;;:::i;:::-;;:::i;16235:112::-;;;;;;:::i;:::-;;:::i;19314:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;19430:18:0;;;19403:7;19430:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19314:151;2864:201;;;;;;:::i;:::-;;:::i;16515:220::-;;;;;;:::i;:::-;;:::i;17393:100::-;17447:13;17480:5;17473:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17393:100;:::o;19612:169::-;19695:4;19712:39;790:10;19735:7;19744:6;19712:8;:39::i;:::-;-1:-1:-1;19769:4:0;19612:169;;;;:::o;5135:189::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;790:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;;;;;;;;;5219:41:::1;:18;5242:17:::0;5219:22:::1;:41::i;:::-;5276:40;::::0;-1:-1:-1;;;;;5276:40:0;::::1;::::0;::::1;::::0;;;::::1;5135:189:::0;:::o;20263:480::-;20403:4;20420:36;20430:6;20438:9;20449:6;20420:9;:36::i;:::-;-1:-1:-1;;;;;20496:19:0;;20469:24;20496:19;;;:11;:19;;;;;;;;790:10;20496:33;;;;;;;;20548:26;;;;20540:79;;;;-1:-1:-1;;;20540:79:0;;4082:2:1;20540:79:0;;;4064:21:1;4121:2;4101:18;;;4094:30;4160:34;4140:18;;;4133:62;-1:-1:-1;;;4211:18:1;;;4204:38;4259:19;;20540:79:0;3880:404:1;20540:79:0;20647:57;20656:6;790:10;20697:6;20678:16;:25;20647:8;:57::i;:::-;-1:-1:-1;20731:4:0;;20263:480;-1:-1:-1;;;;20263:480:0:o;21152:215::-;790:10;21240:4;21289:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;21289:34:0;;;;;;;;;;21240:4;;21257:80;;21280:7;;21289:47;;21326:10;;21289:47;:::i;:::-;21257:8;:80::i;4978:149::-;5054:4;5078:41;:18;5101:17;5078:22;:41::i;:::-;5071:48;4978:149;-1:-1:-1;;4978:149:0:o;16012:65::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;790:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;16059:10:::1;:8;:10::i;:::-;16012:65::o:0;17240:83::-;17288:27;790:10;17308:6;17288:5;:27::i;:::-;17240:83;:::o;2606:103::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;790:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;2671:30:::1;2698:1;2671:18;:30::i;14752:857::-:0;14812:16;;;;;;;;;-1:-1:-1;;;;;14812:16:0;-1:-1:-1;;;;;14803:38:0;;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14802:41;14794:73;;;;-1:-1:-1;;;14794:73:0;;5038:2:1;14794:73:0;;;5020:21:1;5077:2;5057:18;;;5050:30;-1:-1:-1;;;5096:18:1;;;5089:49;5155:18;;14794:73:0;4836:343:1;14794:73:0;14887:16;;14878:50;;-1:-1:-1;;;14878:50:0;;14922:4;14878:50;;;2679:51:1;-1:-1:-1;;;;;14887:16:0;;;;14878:35;;2652:18:1;;14878:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14939:37;14953:4;14960:15;14939:5;:37::i;:::-;15011:16;;14987:58;;15004:4;;-1:-1:-1;;;;;15011:16:0;15029:15;14987:8;:58::i;:::-;15065:16;;15098:37;;;-1:-1:-1;;;15098:37:0;;;;-1:-1:-1;;;;;15065:16:0;;;;15056:41;;15065:16;;15098:35;;:37;;;;;;;;;;;;;;;15065:16;15098:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15137:14;15153:1;15156:2;15056:103;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15179:16:0;;15212:33;;;-1:-1:-1;;;15212:33:0;;;;-1:-1:-1;;;;;15179:16:0;;;;-1:-1:-1;15170:41:0;;-1:-1:-1;15179:16:0;;15212:31;;:33;;;;;;;;;;;;;;;15179:16;15212:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15247:14;15263:1;15266:2;15170:99;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15289:16:0;;15322:42;;;-1:-1:-1;;;15322:42:0;;;;-1:-1:-1;;;;;15289:16:0;;;;-1:-1:-1;15280:41:0;;-1:-1:-1;15289:16:0;;15322:40;;:42;;;;;;;;;;;;;;;15289:16;15322:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15366:15;15383:1;15386:2;15280:109;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15409:16:0;;15442:43;;;-1:-1:-1;;;15442:43:0;;;;-1:-1:-1;;;;;15409:16:0;;;;-1:-1:-1;15400:41:0;;-1:-1:-1;15409:16:0;;15442:41;;:43;;;;;;;;;;;;;;;15409:16;15442:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15487:15;15504:2;15508;15400:111;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15522:79;15540:4;15556:16;;;;;;;;;-1:-1:-1;;;;;15556:16:0;-1:-1:-1;;;;;15547:35:0;;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15586:14;15522:9;:79::i;15783:61::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;790:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;15828:8:::1;:6;:8::i;17612:104::-:0;17668:13;17701:7;17694:14;;;;;:::i;5332:197::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;790:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;5419:44:::1;:18;5445:17:::0;5419:25:::1;:44::i;:::-;5479:42;::::0;-1:-1:-1;;;;;5479:42:0;::::1;::::0;::::1;::::0;;;::::1;5332:197:::0;:::o;16908:216::-;4864:30;4883:10;4864:18;:30::i;:::-;4856:94;;;;-1:-1:-1;;;4856:94:0;;;;;;;:::i;:::-;16993:20:::1;17005:7;16993:11;:20::i;:::-;16985:55;;;::::0;-1:-1:-1;;;16985:55:0;;7905:2:1;16985:55:0::1;::::0;::::1;7887:21:1::0;7944:2;7924:18;;;7917:30;-1:-1:-1;;;7963:18:1;;;7956:52;8025:18;;16985:55:0::1;7703:346:1::0;16985:55:0::1;-1:-1:-1::0;;;;;17051:21:0;::::1;17075:5;17051:21:::0;;;:12:::1;:21;::::0;;;;;;;;:29;;-1:-1:-1;;17051:29:0::1;::::0;;17096:20;;2679:51:1;;;17096:20:0::1;::::0;2652:18:1;17096:20:0::1;;;;;;;;16908:216:::0;:::o;21870:401::-;790:10;21963:4;22007:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;22007:34:0;;;;;;;;;;22060:35;;;;22052:85;;;;-1:-1:-1;;;22052:85:0;;8256:2:1;22052:85:0;;;8238:21:1;8295:2;8275:18;;;8268:30;8334:34;8314:18;;;8307:62;-1:-1:-1;;;8385:18:1;;;8378:35;8430:19;;22052:85:0;8054:401:1;22052:85:0;22165:67;790:10;22188:7;22216:15;22197:16;:34;22165:8;:67::i;:::-;-1:-1:-1;22259:4:0;;21870:401;-1:-1:-1;;;21870:401:0:o;19076:175::-;19162:4;19179:42;790:10;19203:9;19214:6;19179:9;:42::i;16235:112::-;-1:-1:-1;;;;;16318:21:0;16294:4;16318:21;;;:12;:21;;;;;;;;;16235:112::o;2864:201::-;2001:7;2028:6;-1:-1:-1;;;;;2028:6:0;790:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2953:22:0;::::1;2945:73;;;::::0;-1:-1:-1;;;2945:73:0;;8662:2:1;2945:73:0::1;::::0;::::1;8644:21:1::0;8701:2;8681:18;;;8674:30;8740:34;8720:18;;;8713:62;-1:-1:-1;;;8791:18:1;;;8784:36;8837:19;;2945:73:0::1;8460:402:1::0;2945:73:0::1;3029:28;3048:8;3029:18;:28::i;16515:220::-:0;4864:30;4883:10;4864:18;:30::i;:::-;4856:94;;;;-1:-1:-1;;;4856:94:0;;;;;;;:::i;:::-;16601:20:::1;16613:7;16601:11;:20::i;:::-;16600:21;16592:60;;;::::0;-1:-1:-1;;;16592:60:0;;9069:2:1;16592:60:0::1;::::0;::::1;9051:21:1::0;9108:2;9088:18;;;9081:30;9147:28;9127:18;;;9120:56;9193:18;;16592:60:0::1;8867:350:1::0;16592:60:0::1;-1:-1:-1::0;;;;;16663:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;;;;:28;;-1:-1:-1;;16663:28:0::1;16687:4;16663:28;::::0;;16707:20;;2679:51:1;;;16707:20:0::1;::::0;2652:18:1;16707:20:0::1;2533:203:1::0;25518:380:0;-1:-1:-1;;;;;25654:19:0;;25646:68;;;;-1:-1:-1;;;25646:68:0;;9424:2:1;25646:68:0;;;9406:21:1;9463:2;9443:18;;;9436:30;9502:34;9482:18;;;9475:62;-1:-1:-1;;;9553:18:1;;;9546:34;9597:19;;25646:68:0;9222:400:1;25646:68:0;-1:-1:-1;;;;;25733:21:0;;25725:68;;;;-1:-1:-1;;;25725:68:0;;9829:2:1;25725:68:0;;;9811:21:1;9868:2;9848:18;;;9841:30;9907:34;9887:18;;;9880:62;-1:-1:-1;;;9958:18:1;;;9951:32;10000:19;;25725:68:0;9627:398:1;25725:68:0;-1:-1:-1;;;;;25806:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25858:32;;1662:25:1;;;25858:32:0;;1635:18:1;25858:32:0;;;;;;;;25518:380;;;:::o;3707:178::-;3785:18;3789:4;3795:7;3785:3;:18::i;:::-;3784:19;3776:63;;;;-1:-1:-1;;;3776:63:0;;10232:2:1;3776:63:0;;;10214:21:1;10271:2;10251:18;;;10244:30;10310:33;10290:18;;;10283:61;10361:18;;3776:63:0;10030:355:1;3776:63:0;-1:-1:-1;;;;;3850:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;3850:27:0;3873:4;3850:27;;;3707:178::o;22761:721::-;-1:-1:-1;;;;;22901:20:0;;22893:70;;;;-1:-1:-1;;;22893:70:0;;10592:2:1;22893:70:0;;;10574:21:1;10631:2;10611:18;;;10604:30;10670:34;10650:18;;;10643:62;-1:-1:-1;;;10721:18:1;;;10714:35;10766:19;;22893:70:0;10390:401:1;22893:70:0;-1:-1:-1;;;;;22982:23:0;;22974:71;;;;-1:-1:-1;;;22974:71:0;;10998:2:1;22974:71:0;;;10980:21:1;11037:2;11017:18;;;11010:30;11076:34;11056:18;;;11049:62;-1:-1:-1;;;11127:18:1;;;11120:33;11170:19;;22974:71:0;10796:399:1;22974:71:0;23058:47;23079:6;23087:9;23098:6;23058:20;:47::i;:::-;-1:-1:-1;;;;;23142:17:0;;23118:21;23142:17;;;:9;:17;;;;;;23178:23;;;;23170:74;;;;-1:-1:-1;;;23170:74:0;;11402:2:1;23170:74:0;;;11384:21:1;11441:2;11421:18;;;11414:30;11480:34;11460:18;;;11453:62;-1:-1:-1;;;11531:18:1;;;11524:36;11577:19;;23170:74:0;11200:402:1;23170:74:0;-1:-1:-1;;;;;23272:17:0;;;;;;;:9;:17;;;;;;23292:22;;;23272:42;;23332:20;;;;;;;;:30;;23308:6;;23272:17;23332:30;;23308:6;;23332:30;:::i;:::-;;;;;;;;23397:9;-1:-1:-1;;;;;23380:35:0;23389:6;-1:-1:-1;;;;;23380:35:0;;23408:6;23380:35;;;;1662:25:1;;1650:2;1635:18;;1516:177;23380:35:0;;;;;;;;22882:600;22761:721;;;:::o;4243:203::-;4315:4;-1:-1:-1;;;;;4340:21:0;;4332:68;;;;-1:-1:-1;;;4332:68:0;;11809:2:1;4332:68:0;;;11791:21:1;11848:2;11828:18;;;11821:30;11887:34;11867:18;;;11860:62;-1:-1:-1;;;11938:18:1;;;11931:32;11980:19;;4332:68:0;11607:398:1;4332:68:0;-1:-1:-1;;;;;;4418:20:0;:11;:20;;;;;;;;;;;;;;;4243:203::o;11265:120::-;10277:7;;;;10801:41;;;;-1:-1:-1;;;10801:41:0;;12212:2:1;10801:41:0;;;12194:21:1;12251:2;12231:18;;;12224:30;-1:-1:-1;;;12270:18:1;;;12263:50;12330:18;;10801:41:0;12010:344:1;10801:41:0;11324:7:::1;:15:::0;;-1:-1:-1;;11324:15:0::1;::::0;;11355:22:::1;790:10:::0;11364:12:::1;11355:22;::::0;-1:-1:-1;;;;;2697:32:1;;;2679:51;;2667:2;2652:18;11355:22:0::1;;;;;;;11265:120::o:0;24501:579::-;-1:-1:-1;;;;;24585:21:0;;24577:67;;;;-1:-1:-1;;;24577:67:0;;12561:2:1;24577:67:0;;;12543:21:1;12600:2;12580:18;;;12573:30;12639:34;12619:18;;;12612:62;-1:-1:-1;;;12690:18:1;;;12683:31;12731:19;;24577:67:0;12359:397:1;24577:67:0;24657:49;24678:7;24695:1;24699:6;24657:20;:49::i;:::-;-1:-1:-1;;;;;24744:18:0;;24719:22;24744:18;;;:9;:18;;;;;;24781:24;;;;24773:71;;;;-1:-1:-1;;;24773:71:0;;12963:2:1;24773:71:0;;;12945:21:1;13002:2;12982:18;;;12975:30;13041:34;13021:18;;;13014:62;-1:-1:-1;;;13092:18:1;;;13085:32;13134:19;;24773:71:0;12761:398:1;24773:71:0;-1:-1:-1;;;;;24872:18:0;;;;;;:9;:18;;;;;24893:23;;;24872:44;;24934:12;:22;;24910:6;;24872:18;24934:22;;24910:6;;24934:22;:::i;:::-;;;;-1:-1:-1;;24974:37:0;;1662:25:1;;;25000:1:0;;-1:-1:-1;;;;;24974:37:0;;;;;1650:2:1;1635:18;24974:37:0;1516:177:1;25024:48:0;24566:514;24501:579;;:::o;3225:191::-;3299:16;3318:6;;-1:-1:-1;;;;;3335:17:0;;;-1:-1:-1;;;;;;3335:17:0;;;;;;3368:40;;3318:6;;;;;;;3368:40;;3299:16;3368:40;3288:128;3225:191;:::o;23769:399::-;-1:-1:-1;;;;;23853:21:0;;23845:65;;;;-1:-1:-1;;;23845:65:0;;13496:2:1;23845:65:0;;;13478:21:1;13535:2;13515:18;;;13508:30;13574:33;13554:18;;;13547:61;13625:18;;23845:65:0;13294:355:1;23845:65:0;23923:49;23952:1;23956:7;23965:6;23923:20;:49::i;:::-;24001:6;23985:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;24018:18:0;;;;;;:9;:18;;;;;:28;;24040:6;;24018:18;:28;;24040:6;;24018:28;:::i;:::-;;;;-1:-1:-1;;24062:37:0;;1662:25:1;;;-1:-1:-1;;;;;24062:37:0;;;24079:1;;24062:37;;1650:2:1;1635:18;24062:37:0;;;;;;;23769:399;;:::o;11006:118::-;10277:7;;;;10531:9;10523:38;;;;-1:-1:-1;;;10523:38:0;;13856:2:1;10523:38:0;;;13838:21:1;13895:2;13875:18;;;13868:30;-1:-1:-1;;;13914:18:1;;;13907:46;13970:18;;10523:38:0;13654:340:1;10523:38:0;11066:7:::1;:14:::0;;-1:-1:-1;;11066:14:0::1;11076:4;11066:14;::::0;;11096:20:::1;11103:12;790:10:::0;;710:98;3965:183;4045:18;4049:4;4055:7;4045:3;:18::i;:::-;4037:64;;;;-1:-1:-1;;;4037:64:0;;14201:2:1;4037:64:0;;;14183:21:1;14240:2;14220:18;;;14213:30;14279:34;14259:18;;;14252:62;-1:-1:-1;;;14330:18:1;;;14323:31;14371:19;;4037:64:0;13999:397:1;4037:64:0;-1:-1:-1;;;;;4112:20:0;4135:5;4112:20;;;;;;;;;;;:28;;-1:-1:-1;;4112:28:0;;;3965:183::o;26613:319::-;10277:7;;;;26761:9;26753:64;;;;-1:-1:-1;;;26753:64:0;;14603:2:1;26753:64:0;;;14585:21:1;14642:2;14622:18;;;14615:30;14681:34;14661:18;;;14654:62;-1:-1:-1;;;14732:18:1;;;14725:40;14782:19;;26753:64:0;14401:406:1;26753:64:0;26837:15;26849:2;26837:11;:15::i;:::-;26836:16;:38;;;;;26857:17;26869:4;26857:11;:17::i;:::-;26856:18;26836:38;26828:96;;;;-1:-1:-1;;;26828:96:0;;15014:2:1;26828:96:0;;;14996:21:1;15053:2;15033:18;;;15026:30;15092:34;15072:18;;;15065:62;-1:-1:-1;;;15143:18:1;;;15136:43;15196:19;;26828:96:0;14812:409:1;14:597;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;:::-;1500:5;1264:247;-1:-1:-1;;;1264:247:1:o;1698:456::-;1775:6;1783;1791;1844:2;1832:9;1823:7;1819:23;1815:32;1812:52;;;1860:1;1857;1850:12;1812:52;1899:9;1886:23;1918:31;1943:5;1918:31;:::i;:::-;1968:5;-1:-1:-1;2025:2:1;2010:18;;1997:32;2038:33;1997:32;2038:33;:::i;:::-;1698:456;;2090:7;;-1:-1:-1;;;2144:2:1;2129:18;;;;2116:32;;1698:456::o;2348:180::-;2407:6;2460:2;2448:9;2439:7;2435:23;2431:32;2428:52;;;2476:1;2473;2466:12;2428:52;-1:-1:-1;2499:23:1;;2348:180;-1:-1:-1;2348:180:1:o;2741:388::-;2809:6;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;2925:9;2912:23;2944:31;2969:5;2944:31;:::i;:::-;2994:5;-1:-1:-1;3051:2:1;3036:18;;3023:32;3064:33;3023:32;3064:33;:::i;:::-;3116:7;3106:17;;;2741:388;;;;;:::o;3134:380::-;3213:1;3209:12;;;;3256;;;3277:61;;3331:4;3323:6;3319:17;3309:27;;3277:61;3384:2;3376:6;3373:14;3353:18;3350:38;3347:161;;;3430:10;3425:3;3421:20;3418:1;3411:31;3465:4;3462:1;3455:15;3493:4;3490:1;3483:15;3347:161;;3134:380;;;:::o;3519:356::-;3721:2;3703:21;;;3740:18;;;3733:30;3799:34;3794:2;3779:18;;3772:62;3866:2;3851:18;;3519:356::o;4289:127::-;4350:10;4345:3;4341:20;4338:1;4331:31;4381:4;4378:1;4371:15;4405:4;4402:1;4395:15;4421:128;4461:3;4492:1;4488:6;4485:1;4482:13;4479:39;;;4498:18;;:::i;:::-;-1:-1:-1;4534:9:1;;4421:128::o;4554:277::-;4621:6;4674:2;4662:9;4653:7;4649:23;4645:32;4642:52;;;4690:1;4687;4680:12;4642:52;4722:9;4716:16;4775:5;4768:13;4761:21;4754:5;4751:32;4741:60;;4797:1;4794;4787:12;5184:251;5254:6;5307:2;5295:9;5286:7;5282:23;5278:32;5275:52;;;5323:1;5320;5313:12;5275:52;5355:9;5349:16;5374:31;5399:5;5374:31;:::i;5440:455::-;-1:-1:-1;;;;;5727:32:1;;;;5709:51;;5791:2;5776:18;;5769:34;;;;5834:2;5819:18;;5812:34;5877:2;5862:18;;5855:34;5696:3;5681:19;;5440:455::o;7283:415::-;7485:2;7467:21;;;7524:2;7504:18;;;7497:30;7563:34;7558:2;7543:18;;7536:62;-1:-1:-1;;;7629:2:1;7614:18;;7607:49;7688:3;7673:19;;7283:415::o;13164:125::-;13204:4;13232:1;13229;13226:8;13223:34;;;13237:18;;:::i;:::-;-1:-1:-1;13274:9:1;;13164:125::o

Swarm Source

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