ETH Price: $3,161.46 (-2.91%)
Gas: 7 Gwei

Token

AscendEX token (ASD)
 

Overview

Max Total Supply

742,983,477.862 ASD

Holders

848 (0.00%)

Total Transfers

-

Market

Price

$0.05 @ 0.000016 ETH (-2.04%)

Onchain Market Cap

$38,099,257.41

Circulating Supply Market Cap

$33,875,519.61

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

AscendEX is a global digital asset financial platform founded by a group of Wall Street quantitative trading veterans in 2018, building on core value of “Efficiency, Resilience and Transparency.”

Market

Volume (24H):$2,640,971.82
Market Capitalization:$33,875,519.61
Circulating Supply:660,615,274.00 ASD
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AscendEXToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;



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



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



/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

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

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards 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).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            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.
 *
 * 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        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 virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
 * @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 {ERC20PresetMinterPauser}.
 *
 * 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 Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @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");
        _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");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        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 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");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += 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 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);
    }

    /**
     * @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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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 to 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].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}


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


contract AscendEXToken is ERC20, Pausable, Ownable {
    using SafeMath for uint256;

    constructor (string memory _name, string memory _symbol, uint256 _totalSupply) ERC20(_name, _symbol) {
        _mint(_msgSender(), _totalSupply);
    }

    function burn(uint256 amount) external {                   
        _burn(_msgSender(), amount);
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }


    function _beforeTokenTransfer(address from, address to, uint256 amount) internal override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "AscendEXToken: token transfer while paused");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":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"},{"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":"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":"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":[],"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"}]

60806040523480156200001157600080fd5b506040516200290338038062002903833981810160405281019062000037919062000495565b82828160039080519060200190620000519291906200035c565b5080600490805190602001906200006a9291906200035c565b5050506000600560006101000a81548160ff02191690831515021790555060006200009a6200016360201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200015a6200014d6200016360201b60201c565b826200016b60201b60201c565b50505062000886565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001d5906200059e565b60405180910390fd5b620001f260008383620002d060201b60201c565b80600260008282546200020691906200064d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200025d91906200064d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002c49190620005c0565b60405180910390a35050565b620002e88383836200034060201b62000ca21760201c565b620002f86200034560201b60201c565b156200033b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000332906200057c565b60405180910390fd5b505050565b505050565b6000600560009054906101000a900460ff16905090565b8280546200036a90620006ea565b90600052602060002090601f0160209004810192826200038e5760008555620003da565b82601f10620003a957805160ff1916838001178555620003da565b82800160010185558215620003da579182015b82811115620003d9578251825591602001919060010190620003bc565b5b509050620003e99190620003ed565b5090565b5b8082111562000408576000816000905550600101620003ee565b5090565b6000620004236200041d8462000606565b620005dd565b9050828152602081018484840111156200043c57600080fd5b62000449848285620006b4565b509392505050565b600082601f8301126200046357600080fd5b8151620004758482602086016200040c565b91505092915050565b6000815190506200048f816200086c565b92915050565b600080600060608486031215620004ab57600080fd5b600084015167ffffffffffffffff811115620004c657600080fd5b620004d48682870162000451565b935050602084015167ffffffffffffffff811115620004f257600080fd5b620005008682870162000451565b925050604062000513868287016200047e565b9150509250925092565b60006200052c602a836200063c565b91506200053982620007f4565b604082019050919050565b600062000553601f836200063c565b9150620005608262000843565b602082019050919050565b6200057681620006aa565b82525050565b6000602082019050818103600083015262000597816200051d565b9050919050565b60006020820190508181036000830152620005b98162000544565b9050919050565b6000602082019050620005d760008301846200056b565b92915050565b6000620005e9620005fc565b9050620005f7828262000720565b919050565b6000604051905090565b600067ffffffffffffffff821115620006245762000623620007b4565b5b6200062f82620007e3565b9050602081019050919050565b600082825260208201905092915050565b60006200065a82620006aa565b91506200066783620006aa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200069f576200069e62000756565b5b828201905092915050565b6000819050919050565b60005b83811015620006d4578082015181840152602081019050620006b7565b83811115620006e4576000848401525b50505050565b600060028204905060018216806200070357607f821691505b602082108114156200071a576200071962000785565b5b50919050565b6200072b82620007e3565b810181811067ffffffffffffffff821117156200074d576200074c620007b4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f417363656e644558546f6b656e3a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6200087781620006aa565b81146200088357600080fd5b50565b61206d80620008966000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102ab578063a457c2d7146102c9578063a9059cbb146102f9578063dd62ed3e14610329578063f2fde38b1461035957610116565b806370a0823114610249578063715018a6146102795780638456cb59146102835780638da5cb5b1461028d57610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633f4ba83a1461020557806342966c681461020f5780635c975abb1461022b57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610375565b6040516101309190611842565b60405180910390f35b610153600480360381019061014e9190611548565b610407565b6040516101609190611827565b60405180910390f35b610171610425565b60405161017e9190611a24565b60405180910390f35b6101a1600480360381019061019c91906114f9565b61042f565b6040516101ae9190611827565b60405180910390f35b6101bf610530565b6040516101cc9190611a3f565b60405180910390f35b6101ef60048036038101906101ea9190611548565b610539565b6040516101fc9190611827565b60405180910390f35b61020d6105e5565b005b61022960048036038101906102249190611584565b61066b565b005b61023361067f565b6040516102409190611827565b60405180910390f35b610263600480360381019061025e9190611494565b610696565b6040516102709190611a24565b60405180910390f35b6102816106de565b005b61028b61081b565b005b6102956108a1565b6040516102a2919061180c565b60405180910390f35b6102b36108cb565b6040516102c09190611842565b60405180910390f35b6102e360048036038101906102de9190611548565b61095d565b6040516102f09190611827565b60405180910390f35b610313600480360381019061030e9190611548565b610a51565b6040516103209190611827565b60405180910390f35b610343600480360381019061033e91906114bd565b610a6f565b6040516103509190611a24565b60405180910390f35b610373600480360381019061036e9190611494565b610af6565b005b60606003805461038490611b88565b80601f01602080910402602001604051908101604052809291908181526020018280546103b090611b88565b80156103fd5780601f106103d2576101008083540402835291602001916103fd565b820191906000526020600020905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b600061041b610414610ca7565b8484610caf565b6001905092915050565b6000600254905090565b600061043c848484610e7a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610487610ca7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fe90611944565b60405180910390fd5b61052485610513610ca7565b858461051f9190611acc565b610caf565b60019150509392505050565b60006012905090565b60006105db610546610ca7565b848460016000610554610ca7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105d69190611a76565b610caf565b6001905092915050565b6105ed610ca7565b73ffffffffffffffffffffffffffffffffffffffff1661060b6108a1565b73ffffffffffffffffffffffffffffffffffffffff1614610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065890611964565b60405180910390fd5b6106696110f9565b565b61067c610676610ca7565b8261119b565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106e6610ca7565b73ffffffffffffffffffffffffffffffffffffffff166107046108a1565b73ffffffffffffffffffffffffffffffffffffffff161461075a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075190611964565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610823610ca7565b73ffffffffffffffffffffffffffffffffffffffff166108416108a1565b73ffffffffffffffffffffffffffffffffffffffff1614610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e90611964565b60405180910390fd5b61089f61136f565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108da90611b88565b80601f016020809104026020016040519081016040528092919081815260200182805461090690611b88565b80156109535780601f1061092857610100808354040283529160200191610953565b820191906000526020600020905b81548152906001019060200180831161093657829003601f168201915b5050505050905090565b6000806001600061096c610ca7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090611a04565b60405180910390fd5b610a46610a34610ca7565b858584610a419190611acc565b610caf565b600191505092915050565b6000610a65610a5e610ca7565b8484610e7a565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610afe610ca7565b73ffffffffffffffffffffffffffffffffffffffff16610b1c6108a1565b73ffffffffffffffffffffffffffffffffffffffff1614610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990611964565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd9906118c4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d16906119e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d86906118e4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e6d9190611a24565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee1906119a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5190611864565b60405180910390fd5b610f65838383611412565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290611904565b60405180910390fd5b8181610ff79190611acc565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110879190611a76565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110eb9190611a24565b60405180910390a350505050565b61110161067f565b611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790611884565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611184610ca7565b604051611191919061180c565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290611984565b60405180910390fd5b61121782600083611412565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561129d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611294906118a4565b60405180910390fd5b81816112a99190611acc565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112fd9190611acc565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113629190611a24565b60405180910390a3505050565b61137761067f565b156113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90611924565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113fb610ca7565b604051611408919061180c565b60405180910390a1565b61141d838383610ca2565b61142561067f565b15611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c906119c4565b60405180910390fd5b505050565b60008135905061147981612009565b92915050565b60008135905061148e81612020565b92915050565b6000602082840312156114a657600080fd5b60006114b48482850161146a565b91505092915050565b600080604083850312156114d057600080fd5b60006114de8582860161146a565b92505060206114ef8582860161146a565b9150509250929050565b60008060006060848603121561150e57600080fd5b600061151c8682870161146a565b935050602061152d8682870161146a565b925050604061153e8682870161147f565b9150509250925092565b6000806040838503121561155b57600080fd5b60006115698582860161146a565b925050602061157a8582860161147f565b9150509250929050565b60006020828403121561159657600080fd5b60006115a48482850161147f565b91505092915050565b6115b681611b00565b82525050565b6115c581611b12565b82525050565b60006115d682611a5a565b6115e08185611a65565b93506115f0818560208601611b55565b6115f981611c18565b840191505092915050565b6000611611602383611a65565b915061161c82611c29565b604082019050919050565b6000611634601483611a65565b915061163f82611c78565b602082019050919050565b6000611657602283611a65565b915061166282611ca1565b604082019050919050565b600061167a602683611a65565b915061168582611cf0565b604082019050919050565b600061169d602283611a65565b91506116a882611d3f565b604082019050919050565b60006116c0602683611a65565b91506116cb82611d8e565b604082019050919050565b60006116e3601083611a65565b91506116ee82611ddd565b602082019050919050565b6000611706602883611a65565b915061171182611e06565b604082019050919050565b6000611729602083611a65565b915061173482611e55565b602082019050919050565b600061174c602183611a65565b915061175782611e7e565b604082019050919050565b600061176f602583611a65565b915061177a82611ecd565b604082019050919050565b6000611792602a83611a65565b915061179d82611f1c565b604082019050919050565b60006117b5602483611a65565b91506117c082611f6b565b604082019050919050565b60006117d8602583611a65565b91506117e382611fba565b604082019050919050565b6117f781611b3e565b82525050565b61180681611b48565b82525050565b600060208201905061182160008301846115ad565b92915050565b600060208201905061183c60008301846115bc565b92915050565b6000602082019050818103600083015261185c81846115cb565b905092915050565b6000602082019050818103600083015261187d81611604565b9050919050565b6000602082019050818103600083015261189d81611627565b9050919050565b600060208201905081810360008301526118bd8161164a565b9050919050565b600060208201905081810360008301526118dd8161166d565b9050919050565b600060208201905081810360008301526118fd81611690565b9050919050565b6000602082019050818103600083015261191d816116b3565b9050919050565b6000602082019050818103600083015261193d816116d6565b9050919050565b6000602082019050818103600083015261195d816116f9565b9050919050565b6000602082019050818103600083015261197d8161171c565b9050919050565b6000602082019050818103600083015261199d8161173f565b9050919050565b600060208201905081810360008301526119bd81611762565b9050919050565b600060208201905081810360008301526119dd81611785565b9050919050565b600060208201905081810360008301526119fd816117a8565b9050919050565b60006020820190508181036000830152611a1d816117cb565b9050919050565b6000602082019050611a3960008301846117ee565b92915050565b6000602082019050611a5460008301846117fd565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a8182611b3e565b9150611a8c83611b3e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ac157611ac0611bba565b5b828201905092915050565b6000611ad782611b3e565b9150611ae283611b3e565b925082821015611af557611af4611bba565b5b828203905092915050565b6000611b0b82611b1e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b73578082015181840152602081019050611b58565b83811115611b82576000848401525b50505050565b60006002820490506001821680611ba057607f821691505b60208210811415611bb457611bb3611be9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f417363656e644558546f6b656e3a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61201281611b00565b811461201d57600080fd5b50565b61202981611b3e565b811461203457600080fd5b5056fea2646970667358221220a04eb7a0d023eab90fe5e5114a20d0ec38eb8d9e29a1ef596de9e4bab4b00e3064736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000002674190488f41aff84e0000000000000000000000000000000000000000000000000000000000000000000e417363656e64455820746f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034153440000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102ab578063a457c2d7146102c9578063a9059cbb146102f9578063dd62ed3e14610329578063f2fde38b1461035957610116565b806370a0823114610249578063715018a6146102795780638456cb59146102835780638da5cb5b1461028d57610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633f4ba83a1461020557806342966c681461020f5780635c975abb1461022b57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610375565b6040516101309190611842565b60405180910390f35b610153600480360381019061014e9190611548565b610407565b6040516101609190611827565b60405180910390f35b610171610425565b60405161017e9190611a24565b60405180910390f35b6101a1600480360381019061019c91906114f9565b61042f565b6040516101ae9190611827565b60405180910390f35b6101bf610530565b6040516101cc9190611a3f565b60405180910390f35b6101ef60048036038101906101ea9190611548565b610539565b6040516101fc9190611827565b60405180910390f35b61020d6105e5565b005b61022960048036038101906102249190611584565b61066b565b005b61023361067f565b6040516102409190611827565b60405180910390f35b610263600480360381019061025e9190611494565b610696565b6040516102709190611a24565b60405180910390f35b6102816106de565b005b61028b61081b565b005b6102956108a1565b6040516102a2919061180c565b60405180910390f35b6102b36108cb565b6040516102c09190611842565b60405180910390f35b6102e360048036038101906102de9190611548565b61095d565b6040516102f09190611827565b60405180910390f35b610313600480360381019061030e9190611548565b610a51565b6040516103209190611827565b60405180910390f35b610343600480360381019061033e91906114bd565b610a6f565b6040516103509190611a24565b60405180910390f35b610373600480360381019061036e9190611494565b610af6565b005b60606003805461038490611b88565b80601f01602080910402602001604051908101604052809291908181526020018280546103b090611b88565b80156103fd5780601f106103d2576101008083540402835291602001916103fd565b820191906000526020600020905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b600061041b610414610ca7565b8484610caf565b6001905092915050565b6000600254905090565b600061043c848484610e7a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610487610ca7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fe90611944565b60405180910390fd5b61052485610513610ca7565b858461051f9190611acc565b610caf565b60019150509392505050565b60006012905090565b60006105db610546610ca7565b848460016000610554610ca7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105d69190611a76565b610caf565b6001905092915050565b6105ed610ca7565b73ffffffffffffffffffffffffffffffffffffffff1661060b6108a1565b73ffffffffffffffffffffffffffffffffffffffff1614610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065890611964565b60405180910390fd5b6106696110f9565b565b61067c610676610ca7565b8261119b565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106e6610ca7565b73ffffffffffffffffffffffffffffffffffffffff166107046108a1565b73ffffffffffffffffffffffffffffffffffffffff161461075a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075190611964565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610823610ca7565b73ffffffffffffffffffffffffffffffffffffffff166108416108a1565b73ffffffffffffffffffffffffffffffffffffffff1614610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e90611964565b60405180910390fd5b61089f61136f565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108da90611b88565b80601f016020809104026020016040519081016040528092919081815260200182805461090690611b88565b80156109535780601f1061092857610100808354040283529160200191610953565b820191906000526020600020905b81548152906001019060200180831161093657829003601f168201915b5050505050905090565b6000806001600061096c610ca7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090611a04565b60405180910390fd5b610a46610a34610ca7565b858584610a419190611acc565b610caf565b600191505092915050565b6000610a65610a5e610ca7565b8484610e7a565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610afe610ca7565b73ffffffffffffffffffffffffffffffffffffffff16610b1c6108a1565b73ffffffffffffffffffffffffffffffffffffffff1614610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990611964565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd9906118c4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d16906119e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d86906118e4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e6d9190611a24565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee1906119a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5190611864565b60405180910390fd5b610f65838383611412565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290611904565b60405180910390fd5b8181610ff79190611acc565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110879190611a76565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110eb9190611a24565b60405180910390a350505050565b61110161067f565b611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790611884565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611184610ca7565b604051611191919061180c565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290611984565b60405180910390fd5b61121782600083611412565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561129d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611294906118a4565b60405180910390fd5b81816112a99190611acc565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112fd9190611acc565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113629190611a24565b60405180910390a3505050565b61137761067f565b156113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90611924565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113fb610ca7565b604051611408919061180c565b60405180910390a1565b61141d838383610ca2565b61142561067f565b15611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c906119c4565b60405180910390fd5b505050565b60008135905061147981612009565b92915050565b60008135905061148e81612020565b92915050565b6000602082840312156114a657600080fd5b60006114b48482850161146a565b91505092915050565b600080604083850312156114d057600080fd5b60006114de8582860161146a565b92505060206114ef8582860161146a565b9150509250929050565b60008060006060848603121561150e57600080fd5b600061151c8682870161146a565b935050602061152d8682870161146a565b925050604061153e8682870161147f565b9150509250925092565b6000806040838503121561155b57600080fd5b60006115698582860161146a565b925050602061157a8582860161147f565b9150509250929050565b60006020828403121561159657600080fd5b60006115a48482850161147f565b91505092915050565b6115b681611b00565b82525050565b6115c581611b12565b82525050565b60006115d682611a5a565b6115e08185611a65565b93506115f0818560208601611b55565b6115f981611c18565b840191505092915050565b6000611611602383611a65565b915061161c82611c29565b604082019050919050565b6000611634601483611a65565b915061163f82611c78565b602082019050919050565b6000611657602283611a65565b915061166282611ca1565b604082019050919050565b600061167a602683611a65565b915061168582611cf0565b604082019050919050565b600061169d602283611a65565b91506116a882611d3f565b604082019050919050565b60006116c0602683611a65565b91506116cb82611d8e565b604082019050919050565b60006116e3601083611a65565b91506116ee82611ddd565b602082019050919050565b6000611706602883611a65565b915061171182611e06565b604082019050919050565b6000611729602083611a65565b915061173482611e55565b602082019050919050565b600061174c602183611a65565b915061175782611e7e565b604082019050919050565b600061176f602583611a65565b915061177a82611ecd565b604082019050919050565b6000611792602a83611a65565b915061179d82611f1c565b604082019050919050565b60006117b5602483611a65565b91506117c082611f6b565b604082019050919050565b60006117d8602583611a65565b91506117e382611fba565b604082019050919050565b6117f781611b3e565b82525050565b61180681611b48565b82525050565b600060208201905061182160008301846115ad565b92915050565b600060208201905061183c60008301846115bc565b92915050565b6000602082019050818103600083015261185c81846115cb565b905092915050565b6000602082019050818103600083015261187d81611604565b9050919050565b6000602082019050818103600083015261189d81611627565b9050919050565b600060208201905081810360008301526118bd8161164a565b9050919050565b600060208201905081810360008301526118dd8161166d565b9050919050565b600060208201905081810360008301526118fd81611690565b9050919050565b6000602082019050818103600083015261191d816116b3565b9050919050565b6000602082019050818103600083015261193d816116d6565b9050919050565b6000602082019050818103600083015261195d816116f9565b9050919050565b6000602082019050818103600083015261197d8161171c565b9050919050565b6000602082019050818103600083015261199d8161173f565b9050919050565b600060208201905081810360008301526119bd81611762565b9050919050565b600060208201905081810360008301526119dd81611785565b9050919050565b600060208201905081810360008301526119fd816117a8565b9050919050565b60006020820190508181036000830152611a1d816117cb565b9050919050565b6000602082019050611a3960008301846117ee565b92915050565b6000602082019050611a5460008301846117fd565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a8182611b3e565b9150611a8c83611b3e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ac157611ac0611bba565b5b828201905092915050565b6000611ad782611b3e565b9150611ae283611b3e565b925082821015611af557611af4611bba565b5b828203905092915050565b6000611b0b82611b1e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b73578082015181840152602081019050611b58565b83811115611b82576000848401525b50505050565b60006002820490506001821680611ba057607f821691505b60208210811415611bb457611bb3611be9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f417363656e644558546f6b656e3a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61201281611b00565b811461201d57600080fd5b50565b61202981611b3e565b811461203457600080fd5b5056fea2646970667358221220a04eb7a0d023eab90fe5e5114a20d0ec38eb8d9e29a1ef596de9e4bab4b00e3064736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000002674190488f41aff84e0000000000000000000000000000000000000000000000000000000000000000000e417363656e64455820746f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034153440000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): AscendEX token
Arg [1] : _symbol (string): ASD
Arg [2] : _totalSupply (uint256): 743798994444000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000002674190488f41aff84e0000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 417363656e64455820746f6b656e000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4153440000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

26345:747:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15400:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17567:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16520:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18218:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16362:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19049:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26782:67;;;:::i;:::-;;26599:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25157:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16691:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12874:148;;;:::i;:::-;;26711:63;;;:::i;:::-;;12223:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15619:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19767:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17031:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17269:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13177:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15400:100;15454:13;15487:5;15480:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15400:100;:::o;17567:169::-;17650:4;17667:39;17676:12;:10;:12::i;:::-;17690:7;17699:6;17667:8;:39::i;:::-;17724:4;17717:11;;17567:169;;;;:::o;16520:108::-;16581:7;16608:12;;16601:19;;16520:108;:::o;18218:422::-;18324:4;18341:36;18351:6;18359:9;18370:6;18341:9;:36::i;:::-;18390:24;18417:11;:19;18429:6;18417:19;;;;;;;;;;;;;;;:33;18437:12;:10;:12::i;:::-;18417:33;;;;;;;;;;;;;;;;18390:60;;18489:6;18469:16;:26;;18461:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;18551:57;18560:6;18568:12;:10;:12::i;:::-;18601:6;18582:16;:25;;;;:::i;:::-;18551:8;:57::i;:::-;18628:4;18621:11;;;18218:422;;;;;:::o;16362:93::-;16420:5;16445:2;16438:9;;16362:93;:::o;19049:215::-;19137:4;19154:80;19163:12;:10;:12::i;:::-;19177:7;19223:10;19186:11;:25;19198:12;:10;:12::i;:::-;19186:25;;;;;;;;;;;;;;;:34;19212:7;19186:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;19154:8;:80::i;:::-;19252:4;19245:11;;19049:215;;;;:::o;26782:67::-;12454:12;:10;:12::i;:::-;12443:23;;:7;:5;:7::i;:::-;:23;;;12435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26831:10:::1;:8;:10::i;:::-;26782:67::o:0;26599:104::-;26668:27;26674:12;:10;:12::i;:::-;26688:6;26668:5;:27::i;:::-;26599:104;:::o;25157:86::-;25204:4;25228:7;;;;;;;;;;;25221:14;;25157:86;:::o;16691:127::-;16765:7;16792:9;:18;16802:7;16792:18;;;;;;;;;;;;;;;;16785:25;;16691:127;;;:::o;12874:148::-;12454:12;:10;:12::i;:::-;12443:23;;:7;:5;:7::i;:::-;:23;;;12435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12981:1:::1;12944:40;;12965:6;;;;;;;;;;;12944:40;;;;;;;;;;;;13012:1;12995:6;;:19;;;;;;;;;;;;;;;;;;12874:148::o:0;26711:63::-;12454:12;:10;:12::i;:::-;12443:23;;:7;:5;:7::i;:::-;:23;;;12435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26758:8:::1;:6;:8::i;:::-;26711:63::o:0;12223:87::-;12269:7;12296:6;;;;;;;;;;;12289:13;;12223:87;:::o;15619:104::-;15675:13;15708:7;15701:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15619:104;:::o;19767:377::-;19860:4;19877:24;19904:11;:25;19916:12;:10;:12::i;:::-;19904:25;;;;;;;;;;;;;;;:34;19930:7;19904:34;;;;;;;;;;;;;;;;19877:61;;19977:15;19957:16;:35;;19949:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;20045:67;20054:12;:10;:12::i;:::-;20068:7;20096:15;20077:16;:34;;;;:::i;:::-;20045:8;:67::i;:::-;20132:4;20125:11;;;19767:377;;;;:::o;17031:175::-;17117:4;17134:42;17144:12;:10;:12::i;:::-;17158:9;17169:6;17134:9;:42::i;:::-;17194:4;17187:11;;17031:175;;;;:::o;17269:151::-;17358:7;17385:11;:18;17397:5;17385:18;;;;;;;;;;;;;;;:27;17404:7;17385:27;;;;;;;;;;;;;;;;17378:34;;17269:151;;;;:::o;13177:244::-;12454:12;:10;:12::i;:::-;12443:23;;:7;:5;:7::i;:::-;:23;;;12435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13286:1:::1;13266:22;;:8;:22;;;;13258:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13376:8;13347:38;;13368:6;;;;;;;;;;;13347:38;;;;;;;;;;;;13405:8;13396:6;;:17;;;;;;;;;;;;;;;;;;13177:244:::0;:::o;24072:92::-;;;;:::o;3872:98::-;3925:7;3952:10;3945:17;;3872:98;:::o;23123:346::-;23242:1;23225:19;;:5;:19;;;;23217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23323:1;23304:21;;:7;:21;;;;23296:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23407:6;23377:11;:18;23389:5;23377:18;;;;;;;;;;;;;;;:27;23396:7;23377:27;;;;;;;;;;;;;;;:36;;;;23445:7;23429:32;;23438:5;23429:32;;;23454:6;23429:32;;;;;;:::i;:::-;;;;;;;;23123:346;;;:::o;20634:604::-;20758:1;20740:20;;:6;:20;;;;20732:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20842:1;20821:23;;:9;:23;;;;20813:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20897:47;20918:6;20926:9;20937:6;20897:20;:47::i;:::-;20957:21;20981:9;:17;20991:6;20981:17;;;;;;;;;;;;;;;;20957:41;;21034:6;21017:13;:23;;21009:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21130:6;21114:13;:22;;;;:::i;:::-;21094:9;:17;21104:6;21094:17;;;;;;;;;;;;;;;:42;;;;21171:6;21147:9;:20;21157:9;21147:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;21212:9;21195:35;;21204:6;21195:35;;;21223:6;21195:35;;;;;;:::i;:::-;;;;;;;;20634:604;;;;:::o;26216:120::-;25760:8;:6;:8::i;:::-;25752:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;26285:5:::1;26275:7;;:15;;;;;;;;;;;;;;;;;;26306:22;26315:12;:10;:12::i;:::-;26306:22;;;;;;:::i;:::-;;;;;;;;26216:120::o:0;22191:494::-;22294:1;22275:21;;:7;:21;;;;22267:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22347:49;22368:7;22385:1;22389:6;22347:20;:49::i;:::-;22409:22;22434:9;:18;22444:7;22434:18;;;;;;;;;;;;;;;;22409:43;;22489:6;22471:14;:24;;22463:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;22583:6;22566:14;:23;;;;:::i;:::-;22545:9;:18;22555:7;22545:18;;;;;;;;;;;;;;;:44;;;;22616:6;22600:12;;:22;;;;;;;:::i;:::-;;;;;;;;22666:1;22640:37;;22649:7;22640:37;;;22670:6;22640:37;;;;;;:::i;:::-;;;;;;;;22191:494;;;:::o;25957:118::-;25483:8;:6;:8::i;:::-;25482:9;25474:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;26027:4:::1;26017:7;;:14;;;;;;;;;;;;;;;;;;26047:20;26054:12;:10;:12::i;:::-;26047:20;;;;;;:::i;:::-;;;;;;;;25957:118::o:0;26859:230::-;26960:44;26987:4;26993:2;26997:6;26960:26;:44::i;:::-;27026:8;:6;:8::i;:::-;27025:9;27017:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;26859:230;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;2008:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:366::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6692:220;;;:::o;6918:366::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;7064:220;;;:::o;7290:366::-;7432:3;7453:67;7517:2;7512:3;7453:67;:::i;:::-;7446:74;;7529:93;7618:3;7529:93;:::i;:::-;7647:2;7642:3;7638:12;7631:19;;7436:220;;;:::o;7662:366::-;7804:3;7825:67;7889:2;7884:3;7825:67;:::i;:::-;7818:74;;7901:93;7990:3;7901:93;:::i;:::-;8019:2;8014:3;8010:12;8003:19;;7808:220;;;:::o;8034:118::-;8121:24;8139:5;8121:24;:::i;:::-;8116:3;8109:37;8099:53;;:::o;8158:112::-;8241:22;8257:5;8241:22;:::i;:::-;8236:3;8229:35;8219:51;;:::o;8276:222::-;8369:4;8407:2;8396:9;8392:18;8384:26;;8420:71;8488:1;8477:9;8473:17;8464:6;8420:71;:::i;:::-;8374:124;;;;:::o;8504:210::-;8591:4;8629:2;8618:9;8614:18;8606:26;;8642:65;8704:1;8693:9;8689:17;8680:6;8642:65;:::i;:::-;8596:118;;;;:::o;8720:313::-;8833:4;8871:2;8860:9;8856:18;8848:26;;8920:9;8914:4;8910:20;8906:1;8895:9;8891:17;8884:47;8948:78;9021:4;9012:6;8948:78;:::i;:::-;8940:86;;8838:195;;;;:::o;9039:419::-;9205:4;9243:2;9232:9;9228:18;9220:26;;9292:9;9286:4;9282:20;9278:1;9267:9;9263:17;9256:47;9320:131;9446:4;9320:131;:::i;:::-;9312:139;;9210:248;;;:::o;9464:419::-;9630:4;9668:2;9657:9;9653:18;9645:26;;9717:9;9711:4;9707:20;9703:1;9692:9;9688:17;9681:47;9745:131;9871:4;9745:131;:::i;:::-;9737:139;;9635:248;;;:::o;9889:419::-;10055:4;10093:2;10082:9;10078:18;10070:26;;10142:9;10136:4;10132:20;10128:1;10117:9;10113:17;10106:47;10170:131;10296:4;10170:131;:::i;:::-;10162:139;;10060:248;;;:::o;10314:419::-;10480:4;10518:2;10507:9;10503:18;10495:26;;10567:9;10561:4;10557:20;10553:1;10542:9;10538:17;10531:47;10595:131;10721:4;10595:131;:::i;:::-;10587:139;;10485:248;;;:::o;10739:419::-;10905:4;10943:2;10932:9;10928:18;10920:26;;10992:9;10986:4;10982:20;10978:1;10967:9;10963:17;10956:47;11020:131;11146:4;11020:131;:::i;:::-;11012:139;;10910:248;;;:::o;11164:419::-;11330:4;11368:2;11357:9;11353:18;11345:26;;11417:9;11411:4;11407:20;11403:1;11392:9;11388:17;11381:47;11445:131;11571:4;11445:131;:::i;:::-;11437:139;;11335:248;;;:::o;11589:419::-;11755:4;11793:2;11782:9;11778:18;11770:26;;11842:9;11836:4;11832:20;11828:1;11817:9;11813:17;11806:47;11870:131;11996:4;11870:131;:::i;:::-;11862:139;;11760:248;;;:::o;12014:419::-;12180:4;12218:2;12207:9;12203:18;12195:26;;12267:9;12261:4;12257:20;12253:1;12242:9;12238:17;12231:47;12295:131;12421:4;12295:131;:::i;:::-;12287:139;;12185:248;;;:::o;12439:419::-;12605:4;12643:2;12632:9;12628:18;12620:26;;12692:9;12686:4;12682:20;12678:1;12667:9;12663:17;12656:47;12720:131;12846:4;12720:131;:::i;:::-;12712:139;;12610:248;;;:::o;12864:419::-;13030:4;13068:2;13057:9;13053:18;13045:26;;13117:9;13111:4;13107:20;13103:1;13092:9;13088:17;13081:47;13145:131;13271:4;13145:131;:::i;:::-;13137:139;;13035:248;;;:::o;13289:419::-;13455:4;13493:2;13482:9;13478:18;13470:26;;13542:9;13536:4;13532:20;13528:1;13517:9;13513:17;13506:47;13570:131;13696:4;13570:131;:::i;:::-;13562:139;;13460:248;;;:::o;13714:419::-;13880:4;13918:2;13907:9;13903:18;13895:26;;13967:9;13961:4;13957:20;13953:1;13942:9;13938:17;13931:47;13995:131;14121:4;13995:131;:::i;:::-;13987:139;;13885:248;;;:::o;14139:419::-;14305:4;14343:2;14332:9;14328:18;14320:26;;14392:9;14386:4;14382:20;14378:1;14367:9;14363:17;14356:47;14420:131;14546:4;14420:131;:::i;:::-;14412:139;;14310:248;;;:::o;14564:419::-;14730:4;14768:2;14757:9;14753:18;14745:26;;14817:9;14811:4;14807:20;14803:1;14792:9;14788:17;14781:47;14845:131;14971:4;14845:131;:::i;:::-;14837:139;;14735:248;;;:::o;14989:222::-;15082:4;15120:2;15109:9;15105:18;15097:26;;15133:71;15201:1;15190:9;15186:17;15177:6;15133:71;:::i;:::-;15087:124;;;;:::o;15217:214::-;15306:4;15344:2;15333:9;15329:18;15321:26;;15357:67;15421:1;15410:9;15406:17;15397:6;15357:67;:::i;:::-;15311:120;;;;:::o;15437:99::-;15489:6;15523:5;15517:12;15507:22;;15496:40;;;:::o;15542:169::-;15626:11;15660:6;15655:3;15648:19;15700:4;15695:3;15691:14;15676:29;;15638:73;;;;:::o;15717:305::-;15757:3;15776:20;15794:1;15776:20;:::i;:::-;15771:25;;15810:20;15828:1;15810:20;:::i;:::-;15805:25;;15964:1;15896:66;15892:74;15889:1;15886:81;15883:2;;;15970:18;;:::i;:::-;15883:2;16014:1;16011;16007:9;16000:16;;15761:261;;;;:::o;16028:191::-;16068:4;16088:20;16106:1;16088:20;:::i;:::-;16083:25;;16122:20;16140:1;16122:20;:::i;:::-;16117:25;;16161:1;16158;16155:8;16152:2;;;16166:18;;:::i;:::-;16152:2;16211:1;16208;16204:9;16196:17;;16073:146;;;;:::o;16225:96::-;16262:7;16291:24;16309:5;16291:24;:::i;:::-;16280:35;;16270:51;;;:::o;16327:90::-;16361:7;16404:5;16397:13;16390:21;16379:32;;16369:48;;;:::o;16423:126::-;16460:7;16500:42;16493:5;16489:54;16478:65;;16468:81;;;:::o;16555:77::-;16592:7;16621:5;16610:16;;16600:32;;;:::o;16638:86::-;16673:7;16713:4;16706:5;16702:16;16691:27;;16681:43;;;:::o;16730:307::-;16798:1;16808:113;16822:6;16819:1;16816:13;16808:113;;;16907:1;16902:3;16898:11;16892:18;16888:1;16883:3;16879:11;16872:39;16844:2;16841:1;16837:10;16832:15;;16808:113;;;16939:6;16936:1;16933:13;16930:2;;;17019:1;17010:6;17005:3;17001:16;16994:27;16930:2;16779:258;;;;:::o;17043:320::-;17087:6;17124:1;17118:4;17114:12;17104:22;;17171:1;17165:4;17161:12;17192:18;17182:2;;17248:4;17240:6;17236:17;17226:27;;17182:2;17310;17302:6;17299:14;17279:18;17276:38;17273:2;;;17329:18;;:::i;:::-;17273:2;17094:269;;;;:::o;17369:180::-;17417:77;17414:1;17407:88;17514:4;17511:1;17504:15;17538:4;17535:1;17528:15;17555:180;17603:77;17600:1;17593:88;17700:4;17697:1;17690:15;17724:4;17721:1;17714:15;17741:102;17782:6;17833:2;17829:7;17824:2;17817:5;17813:14;17809:28;17799:38;;17789:54;;;:::o;17849:222::-;17989:34;17985:1;17977:6;17973:14;17966:58;18058:5;18053:2;18045:6;18041:15;18034:30;17955:116;:::o;18077:170::-;18217:22;18213:1;18205:6;18201:14;18194:46;18183:64;:::o;18253:221::-;18393:34;18389:1;18381:6;18377:14;18370:58;18462:4;18457:2;18449:6;18445:15;18438:29;18359:115;:::o;18480:225::-;18620:34;18616:1;18608:6;18604:14;18597:58;18689:8;18684:2;18676:6;18672:15;18665:33;18586:119;:::o;18711:221::-;18851:34;18847:1;18839:6;18835:14;18828:58;18920:4;18915:2;18907:6;18903:15;18896:29;18817:115;:::o;18938:225::-;19078:34;19074:1;19066:6;19062:14;19055:58;19147:8;19142:2;19134:6;19130:15;19123:33;19044:119;:::o;19169:166::-;19309:18;19305:1;19297:6;19293:14;19286:42;19275:60;:::o;19341:227::-;19481:34;19477:1;19469:6;19465:14;19458:58;19550:10;19545:2;19537:6;19533:15;19526:35;19447:121;:::o;19574:182::-;19714:34;19710:1;19702:6;19698:14;19691:58;19680:76;:::o;19762:220::-;19902:34;19898:1;19890:6;19886:14;19879:58;19971:3;19966:2;19958:6;19954:15;19947:28;19868:114;:::o;19988:224::-;20128:34;20124:1;20116:6;20112:14;20105:58;20197:7;20192:2;20184:6;20180:15;20173:32;20094:118;:::o;20218:229::-;20358:34;20354:1;20346:6;20342:14;20335:58;20427:12;20422:2;20414:6;20410:15;20403:37;20324:123;:::o;20453:223::-;20593:34;20589:1;20581:6;20577:14;20570:58;20662:6;20657:2;20649:6;20645:15;20638:31;20559:117;:::o;20682:224::-;20822:34;20818:1;20810:6;20806:14;20799:58;20891:7;20886:2;20878:6;20874:15;20867:32;20788:118;:::o;20912:122::-;20985:24;21003:5;20985:24;:::i;:::-;20978:5;20975:35;20965:2;;21024:1;21021;21014:12;20965:2;20955:79;:::o;21040:122::-;21113:24;21131:5;21113:24;:::i;:::-;21106:5;21103:35;21093:2;;21152:1;21149;21142:12;21093:2;21083:79;:::o

Swarm Source

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