ETH Price: $2,073.49 (-5.30%)

Token

Ally Token (ALY)
 

Overview

Max Total Supply

10,000,000,000 ALY

Holders

493 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (-2.40%)

Onchain Market Cap

$1,169,743.82

Circulating Supply Market Cap

$269,041.08

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Bidesk 30
Balance
955.12994403 ALY

Value
$0.11 ( ~5.30506458092877E-05 Eth) [0.0000%]
0x8c699A889413893Ca1f03bA6405ae66c66F955E6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The ALLY Eco leverages the power of blockchain focusing on privacy for communication and fast and secure financial transactions. It will offer a future independent incentivization protocol layer that can be scaled to all blockchain projects. ALLY is the hub for those looking to speak freely.

Profitability / Loss

Since Initial Offer Price
:$0.00 16.97%

Market

Volume (24H):$23.75
Market Capitalization:$269,041.08
Circulating Supply:2,300,000,000.00 ALY
Market Data Source: Coinmarketcap

IEO Information

IEO Address :0x0d0707963952f2fba59dd06f2b425ace40b492fe  
IEO Start Date :Sep 24, 2019  
IEO End Date :Sep 24, 2019  
IEO Price :$0.0001  

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AllyToken

Compiler Version
v0.5.1+commit.c8a2cb62

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-07-20
*/

pragma solidity 0.5.1;

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * > 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 Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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.
     *
     * > Note that 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 returns (uint8) {
        return _decimals;
    }
}

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

        return c;
    }

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

        return c;
    }

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

/**
 * @dev Implementation of the `IERC20` interface.
 *
 * functions revert instead of returning `false` on failure.
 * This behavior is nonetheless conventional and does not conflict
 * with the expectations of ERC20 applications.
 *
 * Additionally, an `Approval` event is emitted on calls to `transferFrom`.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard `decreaseAllowance` and `increaseAllowance`
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See `IERC20.approve`.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

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

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        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 `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
        return true;
    }

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

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

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

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

}

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

contract PauserRole {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

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

    modifier onlyPauser() {
        require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role");
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(msg.sender);
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

/**
 * @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.
 */
contract Pausable is PauserRole {
    /**
     * @dev Emitted when the pause is triggered by a pauser (`account`).
     */
    event Paused(address account);

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

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state. Assigns the Pauser role
     * to the deployer.
     */
    constructor () internal {
        _paused = false;
    }

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

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

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

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
}

/**
 * @title Pausable token
 * @dev ERC20 modified with pausable transfers.
 */
contract ERC20Pausable is ERC20, Pausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

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

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

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


/**
 * @title SKM Protocol ERC20 Token Contract
 * @author 
 *
 * @dev Implementation of the New Ally Token.
 */
contract AllyToken is ERC20Detailed, ERC20Pausable {
    string  private constant  TOKEN_NAME     = "Ally Token";
    string  private constant TOKEN_SYMBOL   = "ALY";
    uint private constant INITIAL_TOKENS = 10000000000;
    uint8 private constant DECIMALS = 18;
    uint256 private constant INITIAL_SUPPLY = INITIAL_TOKENS * (10 ** uint256(DECIMALS));

    address public contract_owner;
    uint256 public arrayLimit = 150;

    modifier onlyOwner () {
        require (msg.sender == contract_owner);
        _;
    }

    constructor()  public
        ERC20Detailed(TOKEN_NAME,TOKEN_SYMBOL,DECIMALS)
    {
        _mint(msg.sender, INITIAL_SUPPLY);
        contract_owner = msg.sender;
    }

    function setBatchTransferLimit(uint256 newLimit) public onlyOwner {
        require(newLimit != 0);
        arrayLimit = newLimit;
    }

    /**
    * @dev Batch transfer some tokens to some addresses, address and value is one-on-one.
    * @param addressList Array of addresses
    * @param amountList Array of transfer tokens number
    */
    function batchTransfer(address[] memory addressList, uint256[] memory amountList) public returns (bool) {
        uint256 length = addressList.length;
        require(addressList.length == amountList.length, "Inconsistent array length");
        require(length > 0 && length <= arrayLimit, "Invalid number of transfer objects");
        for (uint256 i = 0; i < length; i++) {
            require(amountList[i] > 0, "The transfer amount cannot be 0");
            require(addressList[i] != address(0), "Cannot transfer to the zero address");
            transfer(addressList[i], amountList[i]);
        }
        return true;
    }

    /**
    * @dev Batch transfer equal tokens amout to some addresses
    * @param addressList Array of addresses
    * @param value Number of transfer tokens amount
    */
    function batchTransferSingleValue(address[] memory addressList, uint256 value) public returns (bool) {
        uint256 length = addressList.length;
        require(length > 0 && length <= arrayLimit, "Invalid number of transfer objects");
        require(value > 0, "The transfer amount cannot be 0");
        for (uint256 i = 0; i < length; i++) {
            require(addressList[i] != address(0), "Cannot transfer to the zero address");
            transfer(addressList[i], value);
        }
        return true;
    }
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"contract_owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addressList","type":"address[]"},{"name":"amountList","type":"uint256[]"}],"name":"batchTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addressList","type":"address[]"},{"name":"value","type":"uint256"}],"name":"batchTransferSingleValue","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"arrayLimit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newLimit","type":"uint256"}],"name":"setBatchTransferLimit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

608060405260966008553480156200001657600080fd5b50604080518082018252600a81527f416c6c7920546f6b656e0000000000000000000000000000000000000000000060208083019182528351808501909452600384527f414c59000000000000000000000000000000000000000000000000000000000090840152815191929160129162000095916000919062000477565b508151620000ab90600190602085019062000477565b506002805460ff191660ff9290921691909117905550620000d79050336401000000006200011f810204565b6007805460ff1916905562000102336b204fce5e3e2502611000000064010000000062000171810204565b6007805461010060a860020a03191633610100021790556200051c565b6200013a600682640100000000620017e36200029482021704565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b600160a060020a0382161515620001e957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600554620002069082640100000000620016de6200033b82021704565b600555600160a060020a0382166000908152600360205260409020546200023c9082640100000000620016de6200033b82021704565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620002a98282640100000000620003b7810204565b156200031657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600082820183811015620003b057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000600160a060020a03821615156200045757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004ba57805160ff1916838001178555620004ea565b82800160010185558215620004ea579182015b82811115620004ea578251825591602001919060010190620004cd565b50620004f8929150620004fc565b5090565b6200051991905b80821115620004f8576000815560010162000503565b90565b6118b3806200052c6000396000f3fe608060405260043610610121577c0100000000000000000000000000000000000000000000000000000000600035046306fdde038114610126578063095ea7b3146101b057806318160ddd146101fd57806323b872dd14610224578063313ce56714610267578063384f58eb1461029257806339509351146102c35780633f4ba83a146102fc57806346fbf68e146103135780635c975abb146103465780636ef8d66d1461035b57806370a082311461037057806382dc1ec4146103a35780638456cb59146103d657806388d695b2146103eb5780638fa1ae051461051f57806395d89b41146105d1578063a457c2d7146105e6578063a9059cbb1461061f578063b4ae641c14610658578063ba48e0571461066d578063dd62ed3e14610697575b600080fd5b34801561013257600080fd5b5061013b6106d2565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017557818101518382015260200161015d565b50505050905090810190601f1680156101a25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101bc57600080fd5b506101e9600480360360408110156101d357600080fd5b50600160a060020a038135169060200135610768565b604080519115158252519081900360200190f35b34801561020957600080fd5b506102126107c5565b60408051918252519081900360200190f35b34801561023057600080fd5b506101e96004803603606081101561024757600080fd5b50600160a060020a038135811691602081013590911690604001356107cb565b34801561027357600080fd5b5061027c61082a565b6040805160ff9092168252519081900360200190f35b34801561029e57600080fd5b506102a7610833565b60408051600160a060020a039092168252519081900360200190f35b3480156102cf57600080fd5b506101e9600480360360408110156102e657600080fd5b50600160a060020a038135169060200135610847565b34801561030857600080fd5b5061031161089d565b005b34801561031f57600080fd5b506101e96004803603602081101561033657600080fd5b5035600160a060020a03166109bd565b34801561035257600080fd5b506101e96109d6565b34801561036757600080fd5b506103116109df565b34801561037c57600080fd5b506102126004803603602081101561039357600080fd5b5035600160a060020a03166109ea565b3480156103af57600080fd5b50610311600480360360208110156103c657600080fd5b5035600160a060020a0316610a05565b3480156103e257600080fd5b50610311610a96565b3480156103f757600080fd5b506101e96004803603604081101561040e57600080fd5b81019060208101813564010000000081111561042957600080fd5b82018360208201111561043b57600080fd5b8035906020019184602083028401116401000000008311171561045d57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156104ad57600080fd5b8201836020820111156104bf57600080fd5b803590602001918460208302840111640100000000831117156104e157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610ba6945050505050565b34801561052b57600080fd5b506101e96004803603604081101561054257600080fd5b81019060208101813564010000000081111561055d57600080fd5b82018360208201111561056f57600080fd5b8035906020019184602083028401116401000000008311171561059157600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610df8915050565b3480156105dd57600080fd5b5061013b610fb7565b3480156105f257600080fd5b506101e96004803603604081101561060957600080fd5b50600160a060020a038135169060200135611017565b34801561062b57600080fd5b506101e96004803603604081101561064257600080fd5b50600160a060020a03813516906020013561106d565b34801561066457600080fd5b506102126110c3565b34801561067957600080fd5b506103116004803603602081101561069057600080fd5b50356110c9565b3480156106a357600080fd5b50610212600480360360408110156106ba57600080fd5b50600160a060020a03813581169160200135166110f6565b60008054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561075e5780601f106107335761010080835404028352916020019161075e565b820191906000526020600020905b81548152906001019060200180831161074157829003601f168201915b5050505050905090565b60075460009060ff16156107b4576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611868833981519152604482015290519081900360640190fd5b6107be8383611121565b9392505050565b60055490565b60075460009060ff1615610817576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611868833981519152604482015290519081900360640190fd5b610822848484611137565b949350505050565b60025460ff1690565b6007546101009004600160a060020a031681565b60075460009060ff1615610893576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611868833981519152604482015290519081900360640190fd5b6107be838361118e565b6108a6336109bd565b1515610922576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60075460ff16151561097e576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6007805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006109d060068363ffffffff6111ca16565b92915050565b60075460ff1690565b6109e833611272565b565b600160a060020a031660009081526003602052604090205490565b610a0e336109bd565b1515610a8a576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b610a93816112ba565b50565b610a9f336109bd565b1515610b1b576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60075460ff1615610b64576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611868833981519152604482015290519081900360640190fd5b6007805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b81518151600091908114610c04576040805160e560020a62461bcd02815260206004820152601960248201527f496e636f6e73697374656e74206172726179206c656e67746800000000000000604482015290519081900360640190fd5b600081118015610c1657506008548111155b1515610c92576040805160e560020a62461bcd02815260206004820152602260248201527f496e76616c6964206e756d626572206f66207472616e73666572206f626a656360448201527f7473000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60005b81811015610ded5760008482815181101515610cad57fe5b6020908102909101015111610d0c576040805160e560020a62461bcd02815260206004820152601f60248201527f546865207472616e7366657220616d6f756e742063616e6e6f74206265203000604482015290519081900360640190fd5b8451600090869083908110610d1d57fe5b60209081029091010151600160a060020a03161415610dac576040805160e560020a62461bcd02815260206004820152602360248201527f43616e6e6f74207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b610de48582815181101515610dbd57fe5b906020019060200201518583815181101515610dd557fe5b9060200190602002015161106d565b50600101610c95565b506001949350505050565b81516000908181118015610e0e57506008548111155b1515610e8a576040805160e560020a62461bcd02815260206004820152602260248201527f496e76616c6964206e756d626572206f66207472616e73666572206f626a656360448201527f7473000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60008311610ee2576040805160e560020a62461bcd02815260206004820152601f60248201527f546865207472616e7366657220616d6f756e742063616e6e6f74206265203000604482015290519081900360640190fd5b60005b81811015610ded578451600090869083908110610efe57fe5b60209081029091010151600160a060020a03161415610f8d576040805160e560020a62461bcd02815260206004820152602360248201527f43616e6e6f74207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b610fae8582815181101515610f9e57fe5b906020019060200201518561106d565b50600101610ee5565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561075e5780601f106107335761010080835404028352916020019161075e565b60075460009060ff1615611063576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611868833981519152604482015290519081900360640190fd5b6107be8383611302565b60075460009060ff16156110b9576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611868833981519152604482015290519081900360640190fd5b6107be838361133e565b60085481565b6007546101009004600160a060020a031633146110e557600080fd5b8015156110f157600080fd5b600855565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600061112e33848461134b565b50600192915050565b60006111448484846114b8565b600160a060020a03841660009081526004602090815260408083203380855292529091205461118491869161117f908663ffffffff61167e16565b61134b565b5060019392505050565b336000818152600460209081526040808320600160a060020a0387168452909152812054909161112e91859061117f908663ffffffff6116de16565b6000600160a060020a0382161515611252576040805160e560020a62461bcd02815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b61128360068263ffffffff61173b16565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6112cb60068263ffffffff6117e316565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b336000818152600460209081526040808320600160a060020a0387168452909152812054909161112e91859061117f908663ffffffff61167e16565b600061112e3384846114b8565b600160a060020a03831615156113d0576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515611456576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a038316151561153e576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156115c4576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0383166000908152600360205260409020546115ed908263ffffffff61167e16565b600160a060020a038085166000908152600360205260408082209390935590841681522054611622908263ffffffff6116de16565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156116d8576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156107be576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b61174582826111ca565b15156117c1576040805160e560020a62461bcd02815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b6117ed82826111ca565b15611842576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556fe5061757361626c653a2070617573656400000000000000000000000000000000a165627a7a72305820f51b1c77b0c8e44861f0fdfa2366934eb8d6fa1c22b835419039d6957b2add430029

Deployed Bytecode

0x608060405260043610610121577c0100000000000000000000000000000000000000000000000000000000600035046306fdde038114610126578063095ea7b3146101b057806318160ddd146101fd57806323b872dd14610224578063313ce56714610267578063384f58eb1461029257806339509351146102c35780633f4ba83a146102fc57806346fbf68e146103135780635c975abb146103465780636ef8d66d1461035b57806370a082311461037057806382dc1ec4146103a35780638456cb59146103d657806388d695b2146103eb5780638fa1ae051461051f57806395d89b41146105d1578063a457c2d7146105e6578063a9059cbb1461061f578063b4ae641c14610658578063ba48e0571461066d578063dd62ed3e14610697575b600080fd5b34801561013257600080fd5b5061013b6106d2565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017557818101518382015260200161015d565b50505050905090810190601f1680156101a25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101bc57600080fd5b506101e9600480360360408110156101d357600080fd5b50600160a060020a038135169060200135610768565b604080519115158252519081900360200190f35b34801561020957600080fd5b506102126107c5565b60408051918252519081900360200190f35b34801561023057600080fd5b506101e96004803603606081101561024757600080fd5b50600160a060020a038135811691602081013590911690604001356107cb565b34801561027357600080fd5b5061027c61082a565b6040805160ff9092168252519081900360200190f35b34801561029e57600080fd5b506102a7610833565b60408051600160a060020a039092168252519081900360200190f35b3480156102cf57600080fd5b506101e9600480360360408110156102e657600080fd5b50600160a060020a038135169060200135610847565b34801561030857600080fd5b5061031161089d565b005b34801561031f57600080fd5b506101e96004803603602081101561033657600080fd5b5035600160a060020a03166109bd565b34801561035257600080fd5b506101e96109d6565b34801561036757600080fd5b506103116109df565b34801561037c57600080fd5b506102126004803603602081101561039357600080fd5b5035600160a060020a03166109ea565b3480156103af57600080fd5b50610311600480360360208110156103c657600080fd5b5035600160a060020a0316610a05565b3480156103e257600080fd5b50610311610a96565b3480156103f757600080fd5b506101e96004803603604081101561040e57600080fd5b81019060208101813564010000000081111561042957600080fd5b82018360208201111561043b57600080fd5b8035906020019184602083028401116401000000008311171561045d57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156104ad57600080fd5b8201836020820111156104bf57600080fd5b803590602001918460208302840111640100000000831117156104e157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610ba6945050505050565b34801561052b57600080fd5b506101e96004803603604081101561054257600080fd5b81019060208101813564010000000081111561055d57600080fd5b82018360208201111561056f57600080fd5b8035906020019184602083028401116401000000008311171561059157600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610df8915050565b3480156105dd57600080fd5b5061013b610fb7565b3480156105f257600080fd5b506101e96004803603604081101561060957600080fd5b50600160a060020a038135169060200135611017565b34801561062b57600080fd5b506101e96004803603604081101561064257600080fd5b50600160a060020a03813516906020013561106d565b34801561066457600080fd5b506102126110c3565b34801561067957600080fd5b506103116004803603602081101561069057600080fd5b50356110c9565b3480156106a357600080fd5b50610212600480360360408110156106ba57600080fd5b50600160a060020a03813581169160200135166110f6565b60008054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561075e5780601f106107335761010080835404028352916020019161075e565b820191906000526020600020905b81548152906001019060200180831161074157829003601f168201915b5050505050905090565b60075460009060ff16156107b4576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611868833981519152604482015290519081900360640190fd5b6107be8383611121565b9392505050565b60055490565b60075460009060ff1615610817576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611868833981519152604482015290519081900360640190fd5b610822848484611137565b949350505050565b60025460ff1690565b6007546101009004600160a060020a031681565b60075460009060ff1615610893576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611868833981519152604482015290519081900360640190fd5b6107be838361118e565b6108a6336109bd565b1515610922576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60075460ff16151561097e576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6007805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006109d060068363ffffffff6111ca16565b92915050565b60075460ff1690565b6109e833611272565b565b600160a060020a031660009081526003602052604090205490565b610a0e336109bd565b1515610a8a576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b610a93816112ba565b50565b610a9f336109bd565b1515610b1b576040805160e560020a62461bcd02815260206004820152603060248201527f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f207468652050617573657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b60075460ff1615610b64576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611868833981519152604482015290519081900360640190fd5b6007805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b81518151600091908114610c04576040805160e560020a62461bcd02815260206004820152601960248201527f496e636f6e73697374656e74206172726179206c656e67746800000000000000604482015290519081900360640190fd5b600081118015610c1657506008548111155b1515610c92576040805160e560020a62461bcd02815260206004820152602260248201527f496e76616c6964206e756d626572206f66207472616e73666572206f626a656360448201527f7473000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60005b81811015610ded5760008482815181101515610cad57fe5b6020908102909101015111610d0c576040805160e560020a62461bcd02815260206004820152601f60248201527f546865207472616e7366657220616d6f756e742063616e6e6f74206265203000604482015290519081900360640190fd5b8451600090869083908110610d1d57fe5b60209081029091010151600160a060020a03161415610dac576040805160e560020a62461bcd02815260206004820152602360248201527f43616e6e6f74207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b610de48582815181101515610dbd57fe5b906020019060200201518583815181101515610dd557fe5b9060200190602002015161106d565b50600101610c95565b506001949350505050565b81516000908181118015610e0e57506008548111155b1515610e8a576040805160e560020a62461bcd02815260206004820152602260248201527f496e76616c6964206e756d626572206f66207472616e73666572206f626a656360448201527f7473000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60008311610ee2576040805160e560020a62461bcd02815260206004820152601f60248201527f546865207472616e7366657220616d6f756e742063616e6e6f74206265203000604482015290519081900360640190fd5b60005b81811015610ded578451600090869083908110610efe57fe5b60209081029091010151600160a060020a03161415610f8d576040805160e560020a62461bcd02815260206004820152602360248201527f43616e6e6f74207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b610fae8582815181101515610f9e57fe5b906020019060200201518561106d565b50600101610ee5565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561075e5780601f106107335761010080835404028352916020019161075e565b60075460009060ff1615611063576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611868833981519152604482015290519081900360640190fd5b6107be8383611302565b60075460009060ff16156110b9576040805160e560020a62461bcd0281526020600482015260106024820152600080516020611868833981519152604482015290519081900360640190fd5b6107be838361133e565b60085481565b6007546101009004600160a060020a031633146110e557600080fd5b8015156110f157600080fd5b600855565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600061112e33848461134b565b50600192915050565b60006111448484846114b8565b600160a060020a03841660009081526004602090815260408083203380855292529091205461118491869161117f908663ffffffff61167e16565b61134b565b5060019392505050565b336000818152600460209081526040808320600160a060020a0387168452909152812054909161112e91859061117f908663ffffffff6116de16565b6000600160a060020a0382161515611252576040805160e560020a62461bcd02815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b61128360068263ffffffff61173b16565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6112cb60068263ffffffff6117e316565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b336000818152600460209081526040808320600160a060020a0387168452909152812054909161112e91859061117f908663ffffffff61167e16565b600061112e3384846114b8565b600160a060020a03831615156113d0576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515611456576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a038316151561153e576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156115c4576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0383166000908152600360205260409020546115ed908263ffffffff61167e16565b600160a060020a038085166000908152600360205260408082209390935590841681522054611622908263ffffffff6116de16565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156116d8576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156107be576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b61174582826111ca565b15156117c1576040805160e560020a62461bcd02815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b6117ed82826111ca565b15611842576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556fe5061757361626c653a2070617573656400000000000000000000000000000000a165627a7a72305820f51b1c77b0c8e44861f0fdfa2366934eb8d6fa1c22b835419039d6957b2add430029

Deployed Bytecode Sourcemap

19439:2440:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3428:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3428:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;3428:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18811:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18811:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18811:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;8940:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8940:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;18643:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18643:160:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18643:160:0;;;;;;;;;;;;;;;;;:::i;4286:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4286:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19806:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19806:29:0;;;:::i;:::-;;;;-1:-1:-1;;;;;19806:29:0;;;;;;;;;;;;;;18959:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18959:167:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18959:167:0;;;;;;;;:::i;18244:118::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18244:118:0;;;:::i;:::-;;15826:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15826:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15826:109:0;-1:-1:-1;;;;;15826:109:0;;:::i;17453:78::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17453:78:0;;;:::i;16043:77::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16043:77:0;;;:::i;9094:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9094:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9094:110:0;-1:-1:-1;;;;;9094:110:0;;:::i;15943:92::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15943:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15943:92:0;-1:-1:-1;;;;;15943:92:0;;:::i;18033:116::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18033:116:0;;;:::i;20520:640::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20520:640:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20520:640:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;20520:640:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;20520:640:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;20520:640:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;20520:640:0;;;;;;;;-1:-1:-1;20520:640:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;20520:640:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;20520:640:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;20520:640:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;20520:640:0;;-1:-1:-1;20520:640:0;;-1:-1:-1;;;;;20520:640:0:i;21347:529::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21347:529:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21347:529:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;21347:529:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;21347:529:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;21347:529:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;21347:529:0;;-1:-1:-1;;21347:529:0;;;-1:-1:-1;21347:529:0;;-1:-1:-1;;21347:529:0:i;3630:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3630:87:0;;;:::i;19134:177::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19134:177:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19134:177:0;;;;;;;;:::i;18503:132::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18503:132:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18503:132:0;;;;;;;;:::i;19842:31::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19842:31:0;;;:::i;20163:139::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20163:139:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20163:139:0;;:::i;9636:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9636:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9636:134:0;;;;;;;;;;:::i;3428:83::-;3498:5;3491:12;;;;;;;;-1:-1:-1;;3491:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3465:13;;3491:12;;3498:5;;3491:12;;3498:5;3491:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3428:83;:::o;18811:140::-;17690:7;;18890:4;;17690:7;;17689:8;17681:37;;;;;-1:-1:-1;;;;;17681:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17681:37:0;;;;;;;;;;;;;;;18914:29;18928:7;18937:5;18914:13;:29::i;:::-;18907:36;18811:140;-1:-1:-1;;;18811:140:0:o;8940:91::-;9011:12;;8940:91;:::o;18643:160::-;17690:7;;18736:4;;17690:7;;17689:8;17681:37;;;;;-1:-1:-1;;;;;17681:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17681:37:0;;;;;;;;;;;;;;;18760:35;18779:4;18785:2;18789:5;18760:18;:35::i;:::-;18753:42;18643:160;-1:-1:-1;;;;18643:160:0:o;4286:83::-;4352:9;;;;4286:83;:::o;19806:29::-;;;;;;-1:-1:-1;;;;;19806:29:0;;:::o;18959:167::-;17690:7;;19050:4;;17690:7;;17689:8;17681:37;;;;;-1:-1:-1;;;;;17681:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17681:37:0;;;;;;;;;;;;;;;19074:44;19098:7;19107:10;19074:23;:44::i;18244:118::-;15725:20;15734:10;15725:8;:20::i;:::-;15717:81;;;;;;;-1:-1:-1;;;;;15717:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17889:7;;;;17881:40;;;;;;;-1:-1:-1;;;;;17881:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18303:7;:15;;-1:-1:-1;;18303:15:0;;;18334:20;;;18343:10;18334:20;;;;;;;;;;;;;18244:118::o;15826:109::-;15882:4;15906:21;:8;15919:7;15906:21;:12;:21;:::i;:::-;15899:28;15826:109;-1:-1:-1;;15826:109:0:o;17453:78::-;17516:7;;;;17453:78;:::o;16043:77::-;16087:25;16101:10;16087:13;:25::i;:::-;16043:77::o;9094:110::-;-1:-1:-1;;;;;9178:18:0;9151:7;9178:18;;;:9;:18;;;;;;;9094:110::o;15943:92::-;15725:20;15734:10;15725:8;:20::i;:::-;15717:81;;;;;;;-1:-1:-1;;;;;15717:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16008:19;16019:7;16008:10;:19::i;:::-;15943:92;:::o;18033:116::-;15725:20;15734:10;15725:8;:20::i;:::-;15717:81;;;;;;;-1:-1:-1;;;;;15717:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17690:7;;;;17689:8;17681:37;;;;;-1:-1:-1;;;;;17681:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17681:37:0;;;;;;;;;;;;;;;18093:7;:14;;-1:-1:-1;;18093:14:0;18103:4;18093:14;;;18123:18;;;18130:10;18123:18;;;;;;;;;;;;;18033:116::o;20520:640::-;20652:18;;20711:17;;20618:4;;20652:18;20689:39;;20681:77;;;;;-1:-1:-1;;;;;20681:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20786:1;20777:6;:10;:34;;;;;20801:10;;20791:6;:20;;20777:34;20769:81;;;;;;;-1:-1:-1;;;;;20769:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20866:9;20861:270;20885:6;20881:1;:10;20861:270;;;20937:1;20921:10;20932:1;20921:13;;;;;;;;;;;;;;;;;;;:17;20913:61;;;;;-1:-1:-1;;;;;20913:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20997:14;;21023:1;;20997:11;;21009:1;;20997:14;;;;;;;;;;;;;;;-1:-1:-1;;;;;20997:28:0;;;20989:76;;;;;-1:-1:-1;;;;;20989:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21080:39;21089:11;21101:1;21089:14;;;;;;;;;;;;;;;;;;21105:10;21116:1;21105:13;;;;;;;;;;;;;;;;;;21080:8;:39::i;:::-;-1:-1:-1;20893:3:0;;20861:270;;;-1:-1:-1;21148:4:0;;20520:640;-1:-1:-1;;;;20520:640:0:o;21347:529::-;21476:18;;21442:4;;21513:10;;;:34;;;;;21537:10;;21527:6;:20;;21513:34;21505:81;;;;;;;-1:-1:-1;;;;;21505:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21613:1;21605:9;;21597:53;;;;;-1:-1:-1;;;;;21597:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21666:9;21661:186;21685:6;21681:1;:10;21661:186;;;21721:14;;21747:1;;21721:11;;21733:1;;21721:14;;;;;;;;;;;;;;;-1:-1:-1;;;;;21721:28:0;;;21713:76;;;;;-1:-1:-1;;;;;21713:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21804:31;21813:11;21825:1;21813:14;;;;;;;;;;;;;;;;;;21829:5;21804:8;:31::i;:::-;-1:-1:-1;21693:3:0;;21661:186;;3630:87;3702:7;3695:14;;;;;;;;-1:-1:-1;;3695:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3669:13;;3695:14;;3702:7;;3695:14;;3702:7;3695:14;;;;;;;;;;;;;;;;;;;;;;;;19134:177;17690:7;;19230:4;;17690:7;;17689:8;17681:37;;;;;-1:-1:-1;;;;;17681:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17681:37:0;;;;;;;;;;;;;;;19254:49;19278:7;19287:15;19254:23;:49::i;18503:132::-;17690:7;;18578:4;;17690:7;;17689:8;17681:37;;;;;-1:-1:-1;;;;;17681:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17681:37:0;;;;;;;;;;;;;;;18602:25;18617:2;18621:5;18602:14;:25::i;19842:31::-;;;;:::o;20163:139::-;19938:14;;;;;-1:-1:-1;;;;;19938:14:0;19924:10;:28;19915:38;;;;;;20248:13;;;20240:22;;;;;;20273:10;:21;20163:139::o;9636:134::-;-1:-1:-1;;;;;9735:18:0;;;9708:7;9735:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9636:134::o;9917:148::-;9982:4;9999:36;10008:10;10020:7;10029:5;9999:8;:36::i;:::-;-1:-1:-1;10053:4:0;9917:148;;;;:::o;10536:256::-;10625:4;10642:36;10652:6;10660:9;10671:6;10642:9;:36::i;:::-;-1:-1:-1;;;;;10718:19:0;;;;;;:11;:19;;;;;;;;10706:10;10718:31;;;;;;;;;10689:73;;10698:6;;10718:43;;10754:6;10718:43;:35;:43;:::i;:::-;10689:8;:73::i;:::-;-1:-1:-1;10780:4:0;10536:256;;;;;:::o;11201:206::-;11307:10;11281:4;11328:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11328:32:0;;;;;;;;;;11281:4;;11298:79;;11319:7;;11328:48;;11365:10;11328:48;:36;:48;:::i;15201:203::-;15273:4;-1:-1:-1;;;;;15298:21:0;;;;15290:68;;;;;-1:-1:-1;;;;;15290:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15376:20:0;:11;:20;;;;;;;;;;;;;;;15201:203::o;16258:130::-;16318:24;:8;16334:7;16318:24;:15;:24;:::i;:::-;16358:22;;-1:-1:-1;;;;;16358:22:0;;;;;;;;16258:130;:::o;16128:122::-;16185:21;:8;16198:7;16185:21;:12;:21;:::i;:::-;16222:20;;-1:-1:-1;;;;;16222:20:0;;;;;;;;16128:122;:::o;11910:216::-;12021:10;11995:4;12042:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12042:32:0;;;;;;;;;;11995:4;;12012:84;;12033:7;;12042:53;;12079:15;12042:53;:36;:53;:::i;9417:156::-;9486:4;9503:40;9513:10;9525:9;9536:6;9503:9;:40::i;14074:335::-;-1:-1:-1;;;;;14167:19:0;;;;14159:68;;;;;-1:-1:-1;;;;;14159:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14246:21:0;;;;14238:68;;;;;-1:-1:-1;;;;;14238:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14319:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;14370:31;;;;;;;;;;;;;;;;;14074:335;;;:::o;12616:429::-;-1:-1:-1;;;;;12714:20:0;;;;12706:70;;;;;-1:-1:-1;;;;;12706:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12795:23:0;;;;12787:71;;;;;-1:-1:-1;;;;;12787:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12891:17:0;;;;;;:9;:17;;;;;;:29;;12913:6;12891:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;12871:17:0;;;;;;;:9;:17;;;;;;:49;;;;12954:20;;;;;;;:32;;12979:6;12954:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;12931:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;13002:35;;;;;;;12931:20;;13002:35;;;;;;;;;;;;;12616:429;;;:::o;5664:184::-;5722:7;5750:6;;;;5742:49;;;;;-1:-1:-1;;;;;5742:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5814:5:0;;;5664:184::o;5208:181::-;5266:7;5298:5;;;5322:6;;;;5314:46;;;;;-1:-1:-1;;;;;5314:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;14923:183;15003:18;15007:4;15013:7;15003:3;:18::i;:::-;14995:64;;;;;;;-1:-1:-1;;;;;14995:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15070:20:0;15093:5;15070:20;;;;;;;;;;;:28;;-1:-1:-1;;15070:28:0;;;14923:183::o;14665:178::-;14743:18;14747:4;14753:7;14743:3;:18::i;:::-;14742:19;14734:63;;;;;-1:-1:-1;;;;;14734:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14808:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;14808:27:0;14831:4;14808:27;;;14665:178::o

Swarm Source

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