ETH Price: $3,358.44 (-2.74%)
Gas: 4 Gwei

Token

Alphashard (ALPHASHARD)
 

Overview

Max Total Supply

100,000,000,000 ALPHASHARD

Holders

758

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
bcunicorn.eth
Balance
142,687.402133096441 ALPHASHARD

Value
$0.00
0x6e37d79b4744dd82261cfb7b4ccf77fe513be06f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AlphashardToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-19
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.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 meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.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.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

// File: contracts/AlphashardToken.sol


pragma solidity ^0.8.18;




contract AlphashardToken is Ownable, ERC20, ERC20Burnable {
   mapping(address => bool) public blacklists;

   constructor() ERC20("Alphashard", "ALPHASHARD") {
      _mint(msg.sender, 100_000_000_000_000_000_000_000_000_000);
   }

   function mint(uint256 _amount) external onlyOwner {
      _mint(msg.sender, _amount);
   }

   function blacklist(address _address, bool _isBlacklist) external onlyOwner {
      blacklists[_address] = _isBlacklist;
   }

   function _beforeTokenTransfer(
      address from,
      address to,
      uint256 /* amount */
   ) override internal virtual {

      require(!blacklists[from] && !blacklists[to], "your account is blacklisted");

   }
}

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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklist","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600a815260200169105b1c1a185cda185c9960b21b8152506040518060400160405280600a815260200169105314121054d210549160b21b815250620000726200006c620000b760201b60201c565b620000bb565b60046200008083826200033c565b5060056200008f82826200033c565b505050620000b1336c01431e0fae6d7217caa00000006200010b60201b60201c565b62000430565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001675760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001756000838362000202565b806003600082825462000189919062000408565b90915550506001600160a01b03821660009081526001602052604081208054839290620001b890849062000408565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03831660009081526006602052604090205460ff161580156200024557506001600160a01b03821660009081526006602052604090205460ff16155b620002935760405162461bcd60e51b815260206004820152601b60248201527f796f7572206163636f756e7420697320626c61636b6c6973746564000000000060448201526064016200015e565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002c357607f821691505b602082108103620002e457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200029357600081815260208120601f850160051c81016020861015620003135750805b601f850160051c820191505b8181101562000334578281556001016200031f565b505050505050565b81516001600160401b0381111562000358576200035862000298565b6200037081620003698454620002ae565b84620002ea565b602080601f831160018114620003a857600084156200038f5750858301515b600019600386901b1c1916600185901b17855562000334565b600085815260208120601f198616915b82811015620003d957888601518255948401946001909101908401620003b8565b5085821015620003f85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200042a57634e487b7160e01b600052601160045260246000fd5b92915050565b610f3180620004406000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a0712d6811610071578063a0712d6814610260578063a457c2d714610273578063a9059cbb14610286578063dd62ed3e14610299578063f2fde38b146102d257600080fd5b806370a08231146101f9578063715018a61461022257806379cc67901461022a5780638da5cb5b1461023d57806395d89b411461025857600080fd5b806323b872dd116100f457806323b872dd1461019c578063313ce567146101af57806339509351146101be578063404e5129146101d157806342966c68146101e657600080fd5b806306fdde0314610126578063095ea7b31461014457806316c021291461016757806318160ddd1461018a575b600080fd5b61012e6102e5565b60405161013b9190610d0b565b60405180910390f35b610157610152366004610d75565b610377565b604051901515815260200161013b565b610157610175366004610d9f565b60066020526000908152604090205460ff1681565b6003545b60405190815260200161013b565b6101576101aa366004610dc1565b61038e565b6040516012815260200161013b565b6101576101cc366004610d75565b61043d565b6101e46101df366004610dfd565b610479565b005b6101e46101f4366004610e39565b6104ac565b61018e610207366004610d9f565b6001600160a01b031660009081526001602052604090205490565b6101e46104b9565b6101e4610238366004610d75565b6104cd565b6000546040516001600160a01b03909116815260200161013b565b61012e610553565b6101e461026e366004610e39565b610562565b610157610281366004610d75565b610574565b610157610294366004610d75565b61060d565b61018e6102a7366004610e52565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101e46102e0366004610d9f565b61061a565b6060600480546102f490610e85565b80601f016020809104026020016040519081016040528092919081815260200182805461032090610e85565b801561036d5780601f106103425761010080835404028352916020019161036d565b820191906000526020600020905b81548152906001019060200180831161035057829003601f168201915b5050505050905090565b6000610384338484610690565b5060015b92915050565b600061039b8484846107b4565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104255760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104328533858403610690565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610384918590610474908690610ed5565b610690565b61048161098e565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6104b633826109e8565b50565b6104c161098e565b6104cb6000610b42565b565b60006104d983336102a7565b9050818110156105375760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b606482015260840161041c565b6105448333848403610690565b61054e83836109e8565b505050565b6060600580546102f490610e85565b61056a61098e565b6104b63382610b92565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105f65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161041c565b6106033385858403610690565b5060019392505050565b60006103843384846107b4565b61062261098e565b6001600160a01b0381166106875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161041c565b6104b681610b42565b6001600160a01b0383166106f25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161041c565b6001600160a01b0382166107535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161041c565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108185760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161041c565b6001600160a01b03821661087a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161041c565b610885838383610c7d565b6001600160a01b038316600090815260016020526040902054818110156108fd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161041c565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610934908490610ed5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161098091815260200190565b60405180910390a350505050565b6000546001600160a01b031633146104cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161041c565b6001600160a01b038216610a485760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161041c565b610a5482600083610c7d565b6001600160a01b03821660009081526001602052604090205481811015610ac85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161041c565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610af7908490610ee8565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216610be85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161041c565b610bf460008383610c7d565b8060036000828254610c069190610ed5565b90915550506001600160a01b03821660009081526001602052604081208054839290610c33908490610ed5565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03831660009081526006602052604090205460ff16158015610cbf57506001600160a01b03821660009081526006602052604090205460ff16155b61054e5760405162461bcd60e51b815260206004820152601b60248201527f796f7572206163636f756e7420697320626c61636b6c69737465640000000000604482015260640161041c565b600060208083528351808285015260005b81811015610d3857858101830151858201604001528201610d1c565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d7057600080fd5b919050565b60008060408385031215610d8857600080fd5b610d9183610d59565b946020939093013593505050565b600060208284031215610db157600080fd5b610dba82610d59565b9392505050565b600080600060608486031215610dd657600080fd5b610ddf84610d59565b9250610ded60208501610d59565b9150604084013590509250925092565b60008060408385031215610e1057600080fd5b610e1983610d59565b915060208301358015158114610e2e57600080fd5b809150509250929050565b600060208284031215610e4b57600080fd5b5035919050565b60008060408385031215610e6557600080fd5b610e6e83610d59565b9150610e7c60208401610d59565b90509250929050565b600181811c90821680610e9957607f821691505b602082108103610eb957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561038857610388610ebf565b8181038181111561038857610388610ebf56fea26469706673582212209b00a1f362200b0709c91ee9515abd36e2a558609eeee5af070dcca3dba41f9564736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a0712d6811610071578063a0712d6814610260578063a457c2d714610273578063a9059cbb14610286578063dd62ed3e14610299578063f2fde38b146102d257600080fd5b806370a08231146101f9578063715018a61461022257806379cc67901461022a5780638da5cb5b1461023d57806395d89b411461025857600080fd5b806323b872dd116100f457806323b872dd1461019c578063313ce567146101af57806339509351146101be578063404e5129146101d157806342966c68146101e657600080fd5b806306fdde0314610126578063095ea7b31461014457806316c021291461016757806318160ddd1461018a575b600080fd5b61012e6102e5565b60405161013b9190610d0b565b60405180910390f35b610157610152366004610d75565b610377565b604051901515815260200161013b565b610157610175366004610d9f565b60066020526000908152604090205460ff1681565b6003545b60405190815260200161013b565b6101576101aa366004610dc1565b61038e565b6040516012815260200161013b565b6101576101cc366004610d75565b61043d565b6101e46101df366004610dfd565b610479565b005b6101e46101f4366004610e39565b6104ac565b61018e610207366004610d9f565b6001600160a01b031660009081526001602052604090205490565b6101e46104b9565b6101e4610238366004610d75565b6104cd565b6000546040516001600160a01b03909116815260200161013b565b61012e610553565b6101e461026e366004610e39565b610562565b610157610281366004610d75565b610574565b610157610294366004610d75565b61060d565b61018e6102a7366004610e52565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101e46102e0366004610d9f565b61061a565b6060600480546102f490610e85565b80601f016020809104026020016040519081016040528092919081815260200182805461032090610e85565b801561036d5780601f106103425761010080835404028352916020019161036d565b820191906000526020600020905b81548152906001019060200180831161035057829003601f168201915b5050505050905090565b6000610384338484610690565b5060015b92915050565b600061039b8484846107b4565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104255760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104328533858403610690565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610384918590610474908690610ed5565b610690565b61048161098e565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6104b633826109e8565b50565b6104c161098e565b6104cb6000610b42565b565b60006104d983336102a7565b9050818110156105375760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b606482015260840161041c565b6105448333848403610690565b61054e83836109e8565b505050565b6060600580546102f490610e85565b61056a61098e565b6104b63382610b92565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105f65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161041c565b6106033385858403610690565b5060019392505050565b60006103843384846107b4565b61062261098e565b6001600160a01b0381166106875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161041c565b6104b681610b42565b6001600160a01b0383166106f25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161041c565b6001600160a01b0382166107535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161041c565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108185760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161041c565b6001600160a01b03821661087a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161041c565b610885838383610c7d565b6001600160a01b038316600090815260016020526040902054818110156108fd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161041c565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610934908490610ed5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161098091815260200190565b60405180910390a350505050565b6000546001600160a01b031633146104cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161041c565b6001600160a01b038216610a485760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161041c565b610a5482600083610c7d565b6001600160a01b03821660009081526001602052604090205481811015610ac85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161041c565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610af7908490610ee8565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216610be85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161041c565b610bf460008383610c7d565b8060036000828254610c069190610ed5565b90915550506001600160a01b03821660009081526001602052604081208054839290610c33908490610ed5565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03831660009081526006602052604090205460ff16158015610cbf57506001600160a01b03821660009081526006602052604090205460ff16155b61054e5760405162461bcd60e51b815260206004820152601b60248201527f796f7572206163636f756e7420697320626c61636b6c69737465640000000000604482015260640161041c565b600060208083528351808285015260005b81811015610d3857858101830151858201604001528201610d1c565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d7057600080fd5b919050565b60008060408385031215610d8857600080fd5b610d9183610d59565b946020939093013593505050565b600060208284031215610db157600080fd5b610dba82610d59565b9392505050565b600080600060608486031215610dd657600080fd5b610ddf84610d59565b9250610ded60208501610d59565b9150604084013590509250925092565b60008060408385031215610e1057600080fd5b610e1983610d59565b915060208301358015158114610e2e57600080fd5b809150509250929050565b600060208284031215610e4b57600080fd5b5035919050565b60008060408385031215610e6557600080fd5b610e6e83610d59565b9150610e7c60208401610d59565b90509250929050565b600181811c90821680610e9957607f821691505b602082108103610eb957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561038857610388610ebf565b8181038181111561038857610388610ebf56fea26469706673582212209b00a1f362200b0709c91ee9515abd36e2a558609eeee5af070dcca3dba41f9564736f6c63430008120033

Deployed Bytecode Sourcemap

20780:705:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6688:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8855:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;8855:169:0;1004:187:1;20844:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;7808:108;7896:12;;7808:108;;;1533:25:1;;;1521:2;1506:18;7808:108:0;1387:177:1;9506:492:0;;;;;;:::i;:::-;;:::i;7650:93::-;;;7733:2;2044:36:1;;2032:2;2017:18;7650:93:0;1902:184:1;10407:215:0;;;;;;:::i;:::-;;:::i;21122:126::-;;;;;;:::i;:::-;;:::i;:::-;;17217:91;;;;;;:::i;:::-;;:::i;7979:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8080:18:0;8053:7;8080:18;;;:9;:18;;;;;;;7979:127;19885:103;;;:::i;17627:368::-;;;;;;:::i;:::-;;:::i;19237:87::-;19283:7;19310:6;19237:87;;-1:-1:-1;;;;;19310:6:0;;;2774:51:1;;2762:2;2747:18;19237:87:0;2628:203:1;6907:104:0;;;:::i;21023:92::-;;;;;;:::i;:::-;;:::i;11125:413::-;;;;;;:::i;:::-;;:::i;8319:175::-;;;;;;:::i;:::-;;:::i;8557:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8673:18:0;;;8646:7;8673:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8557:151;20143:201;;;;;;:::i;:::-;;:::i;6688:100::-;6742:13;6775:5;6768:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6688:100;:::o;8855:169::-;8938:4;8955:39;4423:10;8978:7;8987:6;8955:8;:39::i;:::-;-1:-1:-1;9012:4:0;8855:169;;;;;:::o;9506:492::-;9646:4;9663:36;9673:6;9681:9;9692:6;9663:9;:36::i;:::-;-1:-1:-1;;;;;9739:19:0;;9712:24;9739:19;;;:11;:19;;;;;;;;4423:10;9739:33;;;;;;;;9791:26;;;;9783:79;;;;-1:-1:-1;;;9783:79:0;;3688:2:1;9783:79:0;;;3670:21:1;3727:2;3707:18;;;3700:30;3766:34;3746:18;;;3739:62;-1:-1:-1;;;3817:18:1;;;3810:38;3865:19;;9783:79:0;;;;;;;;;9898:57;9907:6;4423:10;9948:6;9929:16;:25;9898:8;:57::i;:::-;-1:-1:-1;9986:4:0;;9506:492;-1:-1:-1;;;;9506:492:0:o;10407:215::-;4423:10;10495:4;10544:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10544:34:0;;;;;;;;;;10495:4;;10512:80;;10535:7;;10544:47;;10581:10;;10544:47;:::i;:::-;10512:8;:80::i;21122:126::-;19123:13;:11;:13::i;:::-;-1:-1:-1;;;;;21206:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:35;;-1:-1:-1;;21206:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21122:126::o;17217:91::-;17273:27;4423:10;17293:6;17273:5;:27::i;:::-;17217:91;:::o;19885:103::-;19123:13;:11;:13::i;:::-;19950:30:::1;19977:1;19950:18;:30::i;:::-;19885:103::o:0;17627:368::-;17704:24;17731:32;17741:7;4423:10;8557:151;:::i;17731:32::-;17704:59;;17802:6;17782:16;:26;;17774:75;;;;-1:-1:-1;;;17774:75:0;;4359:2:1;17774:75:0;;;4341:21:1;4398:2;4378:18;;;4371:30;4437:34;4417:18;;;4410:62;-1:-1:-1;;;4488:18:1;;;4481:34;4532:19;;17774:75:0;4157:400:1;17774:75:0;17885:58;17894:7;4423:10;17936:6;17917:16;:25;17885:8;:58::i;:::-;17965:22;17971:7;17980:6;17965:5;:22::i;:::-;17693:302;17627:368;;:::o;6907:104::-;6963:13;6996:7;6989:14;;;;;:::i;21023:92::-;19123:13;:11;:13::i;:::-;21082:26:::1;21088:10;21100:7;21082:5;:26::i;11125:413::-:0;4423:10;11218:4;11262:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11262:34:0;;;;;;;;;;11315:35;;;;11307:85;;;;-1:-1:-1;;;11307:85:0;;4764:2:1;11307:85:0;;;4746:21:1;4803:2;4783:18;;;4776:30;4842:34;4822:18;;;4815:62;-1:-1:-1;;;4893:18:1;;;4886:35;4938:19;;11307:85:0;4562:401:1;11307:85:0;11428:67;4423:10;11451:7;11479:15;11460:16;:34;11428:8;:67::i;:::-;-1:-1:-1;11526:4:0;;11125:413;-1:-1:-1;;;11125:413:0:o;8319:175::-;8405:4;8422:42;4423:10;8446:9;8457:6;8422:9;:42::i;20143:201::-;19123:13;:11;:13::i;:::-;-1:-1:-1;;;;;20232:22:0;::::1;20224:73;;;::::0;-1:-1:-1;;;20224:73:0;;5170:2:1;20224:73:0::1;::::0;::::1;5152:21:1::0;5209:2;5189:18;;;5182:30;5248:34;5228:18;;;5221:62;-1:-1:-1;;;5299:18:1;;;5292:36;5345:19;;20224:73:0::1;4968:402:1::0;20224:73:0::1;20308:28;20327:8;20308:18;:28::i;14809:380::-:0;-1:-1:-1;;;;;14945:19:0;;14937:68;;;;-1:-1:-1;;;14937:68:0;;5577:2:1;14937:68:0;;;5559:21:1;5616:2;5596:18;;;5589:30;5655:34;5635:18;;;5628:62;-1:-1:-1;;;5706:18:1;;;5699:34;5750:19;;14937:68:0;5375:400:1;14937:68:0;-1:-1:-1;;;;;15024:21:0;;15016:68;;;;-1:-1:-1;;;15016:68:0;;5982:2:1;15016:68:0;;;5964:21:1;6021:2;6001:18;;;5994:30;6060:34;6040:18;;;6033:62;-1:-1:-1;;;6111:18:1;;;6104:32;6153:19;;15016:68:0;5780:398:1;15016:68:0;-1:-1:-1;;;;;15097:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15149:32;;1533:25:1;;;15149:32:0;;1506:18:1;15149:32:0;;;;;;;14809:380;;;:::o;12028:733::-;-1:-1:-1;;;;;12168:20:0;;12160:70;;;;-1:-1:-1;;;12160:70:0;;6385:2:1;12160:70:0;;;6367:21:1;6424:2;6404:18;;;6397:30;6463:34;6443:18;;;6436:62;-1:-1:-1;;;6514:18:1;;;6507:35;6559:19;;12160:70:0;6183:401:1;12160:70:0;-1:-1:-1;;;;;12249:23:0;;12241:71;;;;-1:-1:-1;;;12241:71:0;;6791:2:1;12241:71:0;;;6773:21:1;6830:2;6810:18;;;6803:30;6869:34;6849:18;;;6842:62;-1:-1:-1;;;6920:18:1;;;6913:33;6963:19;;12241:71:0;6589:399:1;12241:71:0;12325:47;12346:6;12354:9;12365:6;12325:20;:47::i;:::-;-1:-1:-1;;;;;12409:17:0;;12385:21;12409:17;;;:9;:17;;;;;;12445:23;;;;12437:74;;;;-1:-1:-1;;;12437:74:0;;7195:2:1;12437:74:0;;;7177:21:1;7234:2;7214:18;;;7207:30;7273:34;7253:18;;;7246:62;-1:-1:-1;;;7324:18:1;;;7317:36;7370:19;;12437:74:0;6993:402:1;12437:74:0;-1:-1:-1;;;;;12547:17:0;;;;;;;:9;:17;;;;;;12567:22;;;12547:42;;12611:20;;;;;;;;:30;;12583:6;;12547:17;12611:30;;12583:6;;12611:30;:::i;:::-;;;;;;;;12676:9;-1:-1:-1;;;;;12659:35:0;12668:6;-1:-1:-1;;;;;12659:35:0;;12687:6;12659:35;;;;1533:25:1;;1521:2;1506:18;;1387:177;12659:35:0;;;;;;;;12149:612;12028:733;;;:::o;19402:132::-;19283:7;19310:6;-1:-1:-1;;;;;19310:6:0;4423:10;19466:23;19458:68;;;;-1:-1:-1;;;19458:68:0;;7602:2:1;19458:68:0;;;7584:21:1;;;7621:18;;;7614:30;7680:34;7660:18;;;7653:62;7732:18;;19458:68:0;7400:356:1;13780:591:0;-1:-1:-1;;;;;13864:21:0;;13856:67;;;;-1:-1:-1;;;13856:67:0;;7963:2:1;13856:67:0;;;7945:21:1;8002:2;7982:18;;;7975:30;8041:34;8021:18;;;8014:62;-1:-1:-1;;;8092:18:1;;;8085:31;8133:19;;13856:67:0;7761:397:1;13856:67:0;13936:49;13957:7;13974:1;13978:6;13936:20;:49::i;:::-;-1:-1:-1;;;;;14023:18:0;;13998:22;14023:18;;;:9;:18;;;;;;14060:24;;;;14052:71;;;;-1:-1:-1;;;14052:71:0;;8365:2:1;14052:71:0;;;8347:21:1;8404:2;8384:18;;;8377:30;8443:34;8423:18;;;8416:62;-1:-1:-1;;;8494:18:1;;;8487:32;8536:19;;14052:71:0;8163:398:1;14052:71:0;-1:-1:-1;;;;;14159:18:0;;;;;;:9;:18;;;;;14180:23;;;14159:44;;14225:12;:22;;14197:6;;14159:18;14225:22;;14197:6;;14225:22;:::i;:::-;;;;-1:-1:-1;;14265:37:0;;1533:25:1;;;14291:1:0;;-1:-1:-1;;;;;14265:37:0;;;;;1521:2:1;1506:18;14265:37:0;;;;;;;17693:302;17627:368;;:::o;20504:191::-;20578:16;20597:6;;-1:-1:-1;;;;;20614:17:0;;;-1:-1:-1;;;;;;20614:17:0;;;;;;20647:40;;20597:6;;;;;;;20647:40;;20578:16;20647:40;20567:128;20504:191;:::o;13048:399::-;-1:-1:-1;;;;;13132:21:0;;13124:65;;;;-1:-1:-1;;;13124:65:0;;8901:2:1;13124:65:0;;;8883:21:1;8940:2;8920:18;;;8913:30;8979:33;8959:18;;;8952:61;9030:18;;13124:65:0;8699:355:1;13124:65:0;13202:49;13231:1;13235:7;13244:6;13202:20;:49::i;:::-;13280:6;13264:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13297:18:0;;;;;;:9;:18;;;;;:28;;13319:6;;13297:18;:28;;13319:6;;13297:28;:::i;:::-;;;;-1:-1:-1;;13341:37:0;;1533:25:1;;;-1:-1:-1;;;;;13341:37:0;;;13358:1;;13341:37;;1521:2:1;1506:18;13341:37:0;;;;;;;13048:399;;:::o;21255:227::-;-1:-1:-1;;;;;21406:16:0;;;;;;:10;:16;;;;;;;;21405:17;:36;;;;-1:-1:-1;;;;;;21427:14:0;;;;;;:10;:14;;;;;;;;21426:15;21405:36;21397:76;;;;-1:-1:-1;;;21397:76:0;;9261:2:1;21397:76:0;;;9243:21:1;9300:2;9280:18;;;9273:30;9339:29;9319:18;;;9312:57;9386:18;;21397:76:0;9059:351:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;:::-;1337:39;1196:186;-1:-1:-1;;;1196:186:1:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2091:347::-;2156:6;2164;2217:2;2205:9;2196:7;2192:23;2188:32;2185:52;;;2233:1;2230;2223:12;2185:52;2256:29;2275:9;2256:29;:::i;:::-;2246:39;;2335:2;2324:9;2320:18;2307:32;2382:5;2375:13;2368:21;2361:5;2358:32;2348:60;;2404:1;2401;2394:12;2348:60;2427:5;2417:15;;;2091:347;;;;;:::o;2443:180::-;2502:6;2555:2;2543:9;2534:7;2530:23;2526:32;2523:52;;;2571:1;2568;2561:12;2523:52;-1:-1:-1;2594:23:1;;2443:180;-1:-1:-1;2443:180:1:o;2836:260::-;2904:6;2912;2965:2;2953:9;2944:7;2940:23;2936:32;2933:52;;;2981:1;2978;2971:12;2933:52;3004:29;3023:9;3004:29;:::i;:::-;2994:39;;3052:38;3086:2;3075:9;3071:18;3052:38;:::i;:::-;3042:48;;2836:260;;;;;:::o;3101:380::-;3180:1;3176:12;;;;3223;;;3244:61;;3298:4;3290:6;3286:17;3276:27;;3244:61;3351:2;3343:6;3340:14;3320:18;3317:38;3314:161;;3397:10;3392:3;3388:20;3385:1;3378:31;3432:4;3429:1;3422:15;3460:4;3457:1;3450:15;3314:161;;3101:380;;;:::o;3895:127::-;3956:10;3951:3;3947:20;3944:1;3937:31;3987:4;3984:1;3977:15;4011:4;4008:1;4001:15;4027:125;4092:9;;;4113:10;;;4110:36;;;4126:18;;:::i;8566:128::-;8633:9;;;8654:11;;;8651:37;;;8668:18;;:::i

Swarm Source

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