ETH Price: $3,272.60 (-0.07%)
Gas: 5 Gwei

Token

ARTX Token (ARTX)
 

Overview

Max Total Supply

9,778,390.80181 ARTX

Holders

1,149 (0.00%)

Market

Price

$0.06 @ 0.000020 ETH

Onchain Market Cap

$626,325.49

Circulating Supply Market Cap

$626,328.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
offerprice.eth
Balance
0.000014285714285714 ARTX

Value
$0.00 ( ~0 Eth) [0.0000%]
0xb63C261890b5647aaCbB8e8dDFBB635527d2213C
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

ARTX Capital is the first decentralized, traceable and non-custodial quantitative asset manager powered by AI & blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ARTXToken

Compiler Version
v0.6.4+commit.1dca32f3

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-31
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.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);
}

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @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.
 */
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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_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;
    }
}

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

// File: contracts/ARTX.sol

pragma solidity 0.6.4;

interface ILocker {
    /**
     * @dev Fails if transaction is not allowed. 
     * Return values can be ignored for AntiBot launches
     */
    function lockOrGetPenalty(address source, address dest)
    external
    returns (bool, uint256);
}


contract ARTXToken is Context, IERC20, Ownable {

    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    ILocker public locker;

    constructor () public {
        _name = "ARTX Token";
        _symbol = "ARTX";
        _decimals = 18;
        uint256 amount = 10000000000000000000000000;
        _totalSupply = amount;
        _balances[_msgSender()] = amount;
        emit Transfer(address(0), _msgSender(), amount);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ARTX: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ARTX: decreased allowance below zero"));
        return true;
    }

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

    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ARTX: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }

    function setLocker(address _locker) external onlyOwner() {
        locker = ILocker(_locker);
    }   

    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ARTX: transfer from the zero address");
        require(recipient != address(0), "ARTX: transfer to the zero address");
        if (address(locker) != address(0)) {
            locker.lockOrGetPenalty(sender, recipient);
        }
        _balances[sender] = _balances[sender].sub(amount, "ARTX: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ARTX: burn from the zero address");
        _balances[account] = _balances[account].sub(amount, "ARTX: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ARTX: approve from the zero address");
        require(spender != address(0), "ARTX: approve to the zero address");

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locker","outputs":[{"internalType":"contract ILocker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_locker","type":"address"}],"name":"setLocker","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"}]

60806040523480156200001157600080fd5b506000620000276001600160e01b036200018816565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051808201909152600a8082526920a92a2c102a37b5b2b760b11b6020909201918252620000a4916004916200018d565b5060408051808201909152600480825263082a4a8b60e31b6020909201918252620000d2916005916200018d565b506006805460ff191660121790556a084595161401484a00000060038190558060016000620001096001600160e01b036200018816565b6001600160a01b03168152602081019190915260400160002055620001366001600160e01b036200018816565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3506200022f565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001d057805160ff191683800117855562000200565b8280016001018555821562000200579182015b8281111562000200578251825591602001919060010190620001e3565b506200020e92915062000212565b5090565b6200018a91905b808211156200020e576000815560010162000219565b611073806200023f6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d71461033d578063a9059cbb14610369578063d7b96d4e14610395578063dd62ed3e1461039d578063f2fde38b146103cb57610116565b8063715018a6146102dd57806379cc6790146102e55780638da5cb5b1461031157806395d89b411461033557610116565b806323b872dd116100e957806323b872dd1461021a578063313ce56714610250578063395093511461026e57806342966c681461029a57806370a08231146102b757610116565b806306fdde031461011b578063095ea7b314610198578063171060ec146101d857806318160ddd14610200575b600080fd5b6101236103f1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b038135169060200135610487565b604080519115158252519081900360200190f35b6101fe600480360360208110156101ee57600080fd5b50356001600160a01b03166104a4565b005b610208610536565b60408051918252519081900360200190f35b6101c46004803603606081101561023057600080fd5b506001600160a01b0381358116916020810135909116906040013561053c565b6102586105c9565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561028457600080fd5b506001600160a01b0381351690602001356105d2565b6101fe600480360360208110156102b057600080fd5b5035610626565b610208600480360360208110156102cd57600080fd5b50356001600160a01b031661063a565b6101fe610655565b6101fe600480360360408110156102fb57600080fd5b506001600160a01b038135169060200135610709565b610319610769565b604080516001600160a01b039092168252519081900360200190f35b610123610778565b6101c46004803603604081101561035357600080fd5b506001600160a01b0381351690602001356107d9565b6101c46004803603604081101561037f57600080fd5b506001600160a01b038135169060200135610847565b61031961085b565b610208600480360360408110156103b357600080fd5b506001600160a01b038135811691602001351661086f565b6101fe600480360360208110156103e157600080fd5b50356001600160a01b031661089a565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561047d5780601f106104525761010080835404028352916020019161047d565b820191906000526020600020905b81548152906001019060200180831161046057829003601f168201915b5050505050905090565b600061049b6104946109a4565b84846109a8565b50600192915050565b6104ac6109a4565b6000546001600160a01b0390811691161461050e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60035490565b6000610549848484610a94565b6105bf846105556109a4565b6105ba85604051806060016040528060278152602001610fb3602791396001600160a01b038a166000908152600260205260408120906105936109a4565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610c8d16565b6109a8565b5060019392505050565b60065460ff1690565b600061049b6105df6109a4565b846105ba85600260006105f06109a4565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610d2416565b6106376106316109a4565b82610d85565b50565b6001600160a01b031660009081526001602052604090205490565b61065d6109a4565b6000546001600160a01b039081169116146106bf576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600061074682604051806060016040528060238152602001610f2560239139610739866107346109a4565b61086f565b919063ffffffff610c8d16565b905061075a836107546109a4565b836109a8565b6107648383610d85565b505050565b6000546001600160a01b031690565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561047d5780601f106104525761010080835404028352916020019161047d565b600061049b6107e66109a4565b846105ba85604051806060016040528060248152602001610f8f60249139600260006108106109a4565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610c8d16565b600061049b6108546109a4565b8484610a94565b60065461010090046001600160a01b031681565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6108a26109a4565b6000546001600160a01b03908116911614610904576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166109495760405162461bcd60e51b8152600401808060200182810382526026815260200180610eff6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166109ed5760405162461bcd60e51b8152600401808060200182810382526023815260200180610f486023913960400191505060405180910390fd5b6001600160a01b038216610a325760405162461bcd60e51b815260040180806020018281038252602181526020018061101d6021913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610ad95760405162461bcd60e51b8152600401808060200182810382526024815260200180610f6b6024913960400191505060405180910390fd5b6001600160a01b038216610b1e5760405162461bcd60e51b8152600401808060200182810382526022815260200180610fda6022913960400191505060405180910390fd5b60065461010090046001600160a01b031615610bb9576006546040805163aa61a9dd60e01b81526001600160a01b03868116600483015285811660248301528251610100909404169263aa61a9dd926044808401939192918290030181600087803b158015610b8c57600080fd5b505af1158015610ba0573d6000803e3d6000fd5b505050506040513d6040811015610bb657600080fd5b50505b610bfc81604051806060016040528060258152602001610eda602591396001600160a01b038616600090815260016020526040902054919063ffffffff610c8d16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610c31908263ffffffff610d2416565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610d1c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ce1578181015183820152602001610cc9565b50505050905090810190601f168015610d0e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610d7e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610de0576040805162461bcd60e51b815260206004820181905260248201527f415254583a206275726e2066726f6d20746865207a65726f2061646472657373604482015290519081900360640190fd5b610e2381604051806060016040528060218152602001610ffc602191396001600160a01b038516600090815260016020526040902054919063ffffffff610c8d16565b6001600160a01b038316600090815260016020526040902055600354610e4f908263ffffffff610e9716565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610d7e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c8d56fe415254583a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373415254583a206275726e20616d6f756e74206578636565647320616c6c6f77616e6365415254583a20617070726f76652066726f6d20746865207a65726f2061646472657373415254583a207472616e736665722066726f6d20746865207a65726f2061646472657373415254583a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f415254583a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365415254583a207472616e7366657220746f20746865207a65726f2061646472657373415254583a206275726e20616d6f756e7420657863656564732062616c616e6365415254583a20617070726f766520746f20746865207a65726f2061646472657373a26469706673582212206aa2da7893e5fb4d5e583797f18f984e76272146062d51d31cf06f271d0ff3a464736f6c63430006040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d71461033d578063a9059cbb14610369578063d7b96d4e14610395578063dd62ed3e1461039d578063f2fde38b146103cb57610116565b8063715018a6146102dd57806379cc6790146102e55780638da5cb5b1461031157806395d89b411461033557610116565b806323b872dd116100e957806323b872dd1461021a578063313ce56714610250578063395093511461026e57806342966c681461029a57806370a08231146102b757610116565b806306fdde031461011b578063095ea7b314610198578063171060ec146101d857806318160ddd14610200575b600080fd5b6101236103f1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b038135169060200135610487565b604080519115158252519081900360200190f35b6101fe600480360360208110156101ee57600080fd5b50356001600160a01b03166104a4565b005b610208610536565b60408051918252519081900360200190f35b6101c46004803603606081101561023057600080fd5b506001600160a01b0381358116916020810135909116906040013561053c565b6102586105c9565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561028457600080fd5b506001600160a01b0381351690602001356105d2565b6101fe600480360360208110156102b057600080fd5b5035610626565b610208600480360360208110156102cd57600080fd5b50356001600160a01b031661063a565b6101fe610655565b6101fe600480360360408110156102fb57600080fd5b506001600160a01b038135169060200135610709565b610319610769565b604080516001600160a01b039092168252519081900360200190f35b610123610778565b6101c46004803603604081101561035357600080fd5b506001600160a01b0381351690602001356107d9565b6101c46004803603604081101561037f57600080fd5b506001600160a01b038135169060200135610847565b61031961085b565b610208600480360360408110156103b357600080fd5b506001600160a01b038135811691602001351661086f565b6101fe600480360360208110156103e157600080fd5b50356001600160a01b031661089a565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561047d5780601f106104525761010080835404028352916020019161047d565b820191906000526020600020905b81548152906001019060200180831161046057829003601f168201915b5050505050905090565b600061049b6104946109a4565b84846109a8565b50600192915050565b6104ac6109a4565b6000546001600160a01b0390811691161461050e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60035490565b6000610549848484610a94565b6105bf846105556109a4565b6105ba85604051806060016040528060278152602001610fb3602791396001600160a01b038a166000908152600260205260408120906105936109a4565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610c8d16565b6109a8565b5060019392505050565b60065460ff1690565b600061049b6105df6109a4565b846105ba85600260006105f06109a4565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610d2416565b6106376106316109a4565b82610d85565b50565b6001600160a01b031660009081526001602052604090205490565b61065d6109a4565b6000546001600160a01b039081169116146106bf576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600061074682604051806060016040528060238152602001610f2560239139610739866107346109a4565b61086f565b919063ffffffff610c8d16565b905061075a836107546109a4565b836109a8565b6107648383610d85565b505050565b6000546001600160a01b031690565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561047d5780601f106104525761010080835404028352916020019161047d565b600061049b6107e66109a4565b846105ba85604051806060016040528060248152602001610f8f60249139600260006108106109a4565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610c8d16565b600061049b6108546109a4565b8484610a94565b60065461010090046001600160a01b031681565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6108a26109a4565b6000546001600160a01b03908116911614610904576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166109495760405162461bcd60e51b8152600401808060200182810382526026815260200180610eff6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166109ed5760405162461bcd60e51b8152600401808060200182810382526023815260200180610f486023913960400191505060405180910390fd5b6001600160a01b038216610a325760405162461bcd60e51b815260040180806020018281038252602181526020018061101d6021913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610ad95760405162461bcd60e51b8152600401808060200182810382526024815260200180610f6b6024913960400191505060405180910390fd5b6001600160a01b038216610b1e5760405162461bcd60e51b8152600401808060200182810382526022815260200180610fda6022913960400191505060405180910390fd5b60065461010090046001600160a01b031615610bb9576006546040805163aa61a9dd60e01b81526001600160a01b03868116600483015285811660248301528251610100909404169263aa61a9dd926044808401939192918290030181600087803b158015610b8c57600080fd5b505af1158015610ba0573d6000803e3d6000fd5b505050506040513d6040811015610bb657600080fd5b50505b610bfc81604051806060016040528060258152602001610eda602591396001600160a01b038616600090815260016020526040902054919063ffffffff610c8d16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610c31908263ffffffff610d2416565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610d1c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ce1578181015183820152602001610cc9565b50505050905090810190601f168015610d0e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610d7e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610de0576040805162461bcd60e51b815260206004820181905260248201527f415254583a206275726e2066726f6d20746865207a65726f2061646472657373604482015290519081900360640190fd5b610e2381604051806060016040528060218152602001610ffc602191396001600160a01b038516600090815260016020526040902054919063ffffffff610c8d16565b6001600160a01b038316600090815260016020526040902055600354610e4f908263ffffffff610e9716565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610d7e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c8d56fe415254583a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373415254583a206275726e20616d6f756e74206578636565647320616c6c6f77616e6365415254583a20617070726f76652066726f6d20746865207a65726f2061646472657373415254583a207472616e736665722066726f6d20746865207a65726f2061646472657373415254583a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f415254583a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365415254583a207472616e7366657220746f20746865207a65726f2061646472657373415254583a206275726e20616d6f756e7420657863656564732062616c616e6365415254583a20617070726f766520746f20746865207a65726f2061646472657373a26469706673582212206aa2da7893e5fb4d5e583797f18f984e76272146062d51d31cf06f271d0ff3a464736f6c63430006040033

Deployed Bytecode Sourcemap

11844:4366:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;11844:4366:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;12531: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;12531:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13385:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13385:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;14793:101;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;14793:101:0;-1:-1:-1;;;;;14793:101:0;;:::i;:::-;;12808:100;;;:::i;:::-;;;;;;;;;;;;;;;;13562:320;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13562:320:0;;;;;;;;;;;;;;;;;:::i;12717:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13890:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13890:218:0;;;;;;;;:::i;14392:91::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;14392:91:0;;:::i;12916:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;12916:119:0;-1:-1:-1;;;;;12916:119:0;;:::i;5557:148::-;;;:::i;14491:294::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;14491:294:0;;;;;;;;:::i;4915:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;4915:79:0;;;;;;;;;;;;;;12622:87;;;:::i;14116:268::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;14116:268:0;;;;;;;;:::i;13043:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13043:175:0;;;;;;;;:::i;12193:21::-;;;:::i;13226:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13226:151:0;;;;;;;;;;:::i;5860:244::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;5860:244:0;-1:-1:-1;;;;;5860:244:0;;:::i;12531:83::-;12601:5;12594:12;;;;;;;;-1:-1:-1;;12594:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12568:13;;12594:12;;12601:5;;12594:12;;12601:5;12594:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12531:83;:::o;13385:169::-;13468:4;13485:39;13494:12;:10;:12::i;:::-;13508:7;13517:6;13485:8;:39::i;:::-;-1:-1:-1;13542:4:0;13385:169;;;;:::o;14793:101::-;5137:12;:10;:12::i;:::-;5127:6;;-1:-1:-1;;;;;5127:6:0;;;:22;;;5119:67;;;;;-1:-1:-1;;;5119:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14861:6:::1;:25:::0;;-1:-1:-1;;;;;14861:25:0;;::::1;;;-1:-1:-1::0;;;;;;14861:25:0;;::::1;::::0;;;::::1;::::0;;14793:101::o;12808:100::-;12888:12;;12808:100;:::o;13562:320::-;13668:4;13685:36;13695:6;13703:9;13714:6;13685:9;:36::i;:::-;13732:120;13741:6;13749:12;:10;:12::i;:::-;13763:88;13801:6;13763:88;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13763:19:0;;;;;;:11;:19;;;;;;13783:12;:10;:12::i;:::-;-1:-1:-1;;;;;13763:33:0;;;;;;;;;;;;-1:-1:-1;13763:33:0;;;:88;;:37;:88;:::i;:::-;13732:8;:120::i;:::-;-1:-1:-1;13870:4:0;13562:320;;;;;:::o;12717:83::-;12783:9;;;;12717:83;:::o;13890:218::-;13978:4;13995:83;14004:12;:10;:12::i;:::-;14018:7;14027:50;14066:10;14027:11;:25;14039:12;:10;:12::i;:::-;-1:-1:-1;;;;;14027:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14027:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;14392:91::-;14448:27;14454:12;:10;:12::i;:::-;14468:6;14448:5;:27::i;:::-;14392:91;:::o;12916:119::-;-1:-1:-1;;;;;13009:18:0;12982:7;13009:18;;;:9;:18;;;;;;;12916:119::o;5557:148::-;5137:12;:10;:12::i;:::-;5127:6;;-1:-1:-1;;;;;5127:6:0;;;:22;;;5119:67;;;;;-1:-1:-1;;;5119:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5664:1:::1;5648:6:::0;;5627:40:::1;::::0;-1:-1:-1;;;;;5648:6:0;;::::1;::::0;5627:40:::1;::::0;5664:1;;5627:40:::1;5695:1;5678:19:::0;;-1:-1:-1;;;;;;5678:19:0::1;::::0;;5557:148::o;14491:294::-;14568:26;14597:83;14634:6;14597:83;;;;;;;;;;;;;;;;;:32;14607:7;14616:12;:10;:12::i;:::-;14597:9;:32::i;:::-;:36;:83;;:36;:83;:::i;:::-;14568:112;;14693:51;14702:7;14711:12;:10;:12::i;:::-;14725:18;14693:8;:51::i;:::-;14755:22;14761:7;14770:6;14755:5;:22::i;:::-;14491:294;;;:::o;4915:79::-;4953:7;4980:6;-1:-1:-1;;;;;4980:6:0;4915:79;:::o;12622:87::-;12694:7;12687:14;;;;;;;;-1:-1:-1;;12687:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12661:13;;12687:14;;12694:7;;12687:14;;12694:7;12687:14;;;;;;;;;;;;;;;;;;;;;;;;14116:268;14209:4;14226:128;14235:12;:10;:12::i;:::-;14249:7;14258:95;14297:15;14258:95;;;;;;;;;;;;;;;;;:11;:25;14270:12;:10;:12::i;:::-;-1:-1:-1;;;;;14258:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14258:25:0;;;:34;;;;;;;;;;;:95;;:38;:95;:::i;13043:175::-;13129:4;13146:42;13156:12;:10;:12::i;:::-;13170:9;13181:6;13146:9;:42::i;12193:21::-;;;;;;-1:-1:-1;;;;;12193:21:0;;:::o;13226:151::-;-1:-1:-1;;;;;13342:18:0;;;13315:7;13342:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13226:151::o;5860:244::-;5137:12;:10;:12::i;:::-;5127:6;;-1:-1:-1;;;;;5127:6:0;;;:22;;;5119:67;;;;;-1:-1:-1;;;5119:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5949:22:0;::::1;5941:73;;;;-1:-1:-1::0;;;5941:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6051:6;::::0;;6030:38:::1;::::0;-1:-1:-1;;;;;6030:38:0;;::::1;::::0;6051:6;::::1;::::0;6030:38:::1;::::0;::::1;6079:6;:17:::0;;-1:-1:-1;;;;;;6079:17:0::1;-1:-1:-1::0;;;;;6079:17:0;;;::::1;::::0;;;::::1;::::0;;5860:244::o;3491:106::-;3579:10;3491:106;:::o;15861:344::-;-1:-1:-1;;;;;15963:19:0;;15955:67;;;;-1:-1:-1;;;15955:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16041:21:0;;16033:67;;;;-1:-1:-1;;;16033:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16113:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16165:32;;;;;;;;;;;;;;;;;15861:344;;;:::o;14905:588::-;-1:-1:-1;;;;;15011:20:0;;15003:69;;;;-1:-1:-1;;;15003:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15091:23:0;;15083:70;;;;-1:-1:-1;;;15083:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15176:6;;;;;-1:-1:-1;;;;;15176:6:0;15168:29;15164:104;;15214:6;;:42;;;-1:-1:-1;;;15214:42:0;;-1:-1:-1;;;;;15214:42:0;;;;;;;;;;;;;;;;:6;;;;;;:23;;:42;;;;;;;;;;;;;-1:-1:-1;15214:6:0;:42;;;2:2:-1;;;;27:1;24;17:12;2:2;15214:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15214:42:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;15164:104:0;15298:70;15320:6;15298:70;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15298:17:0;;;;;;:9;:17;;;;;;;:70;;:21;:70;:::i;:::-;-1:-1:-1;;;;;15278:17:0;;;;;;;:9;:17;;;;;;:90;;;;15402:20;;;;;;;:32;;15427:6;15402:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;15379:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;15450:35;;;;;;;15379:20;;15450:35;;;;;;;;;;;;;14905:588;;;:::o;7970:192::-;8056:7;8092:12;8084:6;;;;8076:29;;;;-1:-1:-1;;;8076:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8076:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8128:5:0;;;7970:192::o;7067:181::-;7125:7;7157:5;;;7181:6;;;;7173:46;;;;;-1:-1:-1;;;7173:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7239:1;7067:181;-1:-1:-1;;;7067:181:0:o;15501:352::-;-1:-1:-1;;;;;15585:21:0;;15577:66;;;;;-1:-1:-1;;;15577:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15675:67;15698:6;15675:67;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15675:18:0;;;;;;:9;:18;;;;;;;:67;;:22;:67;:::i;:::-;-1:-1:-1;;;;;15654:18:0;;;;;;:9;:18;;;;;:88;15768:12;;:24;;15785:6;15768:24;:16;:24;:::i;:::-;15753:12;:39;15808:37;;;;;;;;15834:1;;-1:-1:-1;;;;;15808:37:0;;;;;;;;;;;;15501:352;;:::o;7531:136::-;7589:7;7616:43;7620:1;7623;7616:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

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