ETH Price: $2,968.27 (-1.47%)
Gas: 4 Gwei

Token

Degen Index (DI)
 

Overview

Max Total Supply

100,000,000 DI

Holders

386

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
2ez4me.eth
Balance
0.000000000000381315 DI

Value
$0.00
0x3a4894f709544e5a3289d55c3b7f988839362712
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:
DegenIndex

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 7 : DegenIndex.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";

/// @title Degen Index Token
/// @author no-op.eth // xlmoose.eth
contract DegenIndex is Ownable, Pausable, ERC20 {
    /// Total amount of tokens
    uint256 public constant TOTAL_SUPPLY = 100_000_000 ether;
    /// Allocation for LPs
    uint256 public constant LIQUIDITY = TOTAL_SUPPLY * 95 / 100;
    /// Reserve amount of tokens for developers
    uint256 public constant RESERVE = TOTAL_SUPPLY * 5 / 100;

    /// Amount must be greater than zero
    error NoZeroTransfers();
    /// Paused
    error ContractPaused();

    constructor(address _dev) ERC20("Degen Index", "DI") {
        _mint(msg.sender, LIQUIDITY);
        _mint(_dev, RESERVE);

        _pause();
    }

    /// @notice Pause trading
    function pause() external onlyOwner {
        _pause();
    }

    /// @notice Unpause trading
    function unpause() external onlyOwner {
        _unpause();
    }

    /**
     * @dev Hook that is called before any transfer of tokens.  This includes
     * minting and burning.
     *
     * Checks:
     * - transfer amount is non-zero
     * - contract is not paused.
     * - owner allowed to set up LP during pause.
     */
    function _beforeTokenTransfer(address sender, address recipient, uint256 amount) internal override {
        if (amount == 0) revert NoZeroTransfers();
        if (paused() && (owner() != sender && owner() != recipient)) revert ContractPaused();
        super._beforeTokenTransfer(sender, recipient, amount);
    }
}

File 2 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 3 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

File 4 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// 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 6 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev 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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 7 of 7 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    bool private _paused;

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

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

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

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

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

Settings
{
  "metadata": {
    "useLiteralContent": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_dev","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ContractPaused","type":"error"},{"inputs":[],"name":"NoZeroTransfers","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"LIQUIDITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b50604051620026c8380380620026c8833981810160405281019062000036919062000656565b6040518060400160405280600b81526020017f446567656e20496e6465780000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4449000000000000000000000000000000000000000000000000000000000000815250620000c2620000b66200018a60201b60201c565b6200019160201b60201c565b5f8060146101000a81548160ff0219169083151502179055508160049081620000ec9190620008ea565b508060059081620000fe9190620008ea565b5050506200013a336064605f6a52b7d2dcc80cd2e4000000620001229190620009fb565b6200012e919062000a72565b6200025260201b60201c565b6200017381606460056a52b7d2dcc80cd2e40000006200015b9190620009fb565b62000167919062000a72565b6200025260201b60201c565b62000183620003b860201b60201c565b5062000c27565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ba9062000b07565b60405180910390fd5b620002d65f83836200042c60201b60201c565b8060035f828254620002e9919062000b27565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000399919062000b72565b60405180910390a3620003b45f83836200055660201b60201c565b5050565b620003c86200055b60201b60201c565b60015f60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620004136200018a60201b60201c565b60405162000422919062000b9e565b60405180910390a1565b5f810362000466576040517f7713e26f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b62000476620005b060201b60201c565b80156200050657508273ffffffffffffffffffffffffffffffffffffffff16620004a5620005c560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16141580156200050557508173ffffffffffffffffffffffffffffffffffffffff16620004ec620005c560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614155b5b156200053e576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b62000551838383620005ec60201b60201c565b505050565b505050565b6200056b620005b060201b60201c565b15620005ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005a59062000c07565b60405180910390fd5b565b5f8060149054906101000a900460ff16905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200062082620005f5565b9050919050565b620006328162000614565b81146200063d575f80fd5b50565b5f81519050620006508162000627565b92915050565b5f602082840312156200066e576200066d620005f1565b5b5f6200067d8482850162000640565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200070257607f821691505b602082108103620007185762000717620006bd565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200077c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200073f565b6200078886836200073f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007d2620007cc620007c684620007a0565b620007a9565b620007a0565b9050919050565b5f819050919050565b620007ed83620007b2565b62000805620007fc82620007d9565b8484546200074b565b825550505050565b5f90565b6200081b6200080d565b62000828818484620007e2565b505050565b5b818110156200084f57620008435f8262000811565b6001810190506200082e565b5050565b601f8211156200089e5762000868816200071e565b620008738462000730565b8101602085101562000883578190505b6200089b620008928562000730565b8301826200082d565b50505b505050565b5f82821c905092915050565b5f620008c05f1984600802620008a3565b1980831691505092915050565b5f620008da8383620008af565b9150826002028217905092915050565b620008f58262000686565b67ffffffffffffffff81111562000911576200091062000690565b5b6200091d8254620006ea565b6200092a82828562000853565b5f60209050601f83116001811462000960575f84156200094b578287015190505b620009578582620008cd565b865550620009c6565b601f19841662000970866200071e565b5f5b82811015620009995784890151825560018201915060208501945060208101905062000972565b86831015620009b95784890151620009b5601f891682620008af565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000a0782620007a0565b915062000a1483620007a0565b925082820262000a2481620007a0565b9150828204841483151762000a3e5762000a3d620009ce565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000a7e82620007a0565b915062000a8b83620007a0565b92508262000a9e5762000a9d62000a45565b5b828204905092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000aef601f8362000aa9565b915062000afc8262000ab9565b602082019050919050565b5f6020820190508181035f83015262000b208162000ae1565b9050919050565b5f62000b3382620007a0565b915062000b4083620007a0565b925082820190508082111562000b5b5762000b5a620009ce565b5b92915050565b62000b6c81620007a0565b82525050565b5f60208201905062000b875f83018462000b61565b92915050565b62000b988162000614565b82525050565b5f60208201905062000bb35f83018462000b8d565b92915050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f62000bef60108362000aa9565b915062000bfc8262000bb9565b602082019050919050565b5f6020820190508181035f83015262000c208162000be1565b9050919050565b611a938062000c355f395ff3fe608060405234801561000f575f80fd5b506004361061012a575f3560e01c8063715018a6116100ab5780639d2cc4361161006f5780639d2cc436146102fc578063a457c2d71461031a578063a9059cbb1461034a578063dd62ed3e1461037a578063f2fde38b146103aa5761012a565b8063715018a61461028e5780638456cb59146102985780638da5cb5b146102a2578063902d55a5146102c057806395d89b41146102de5761012a565b8063313ce567116100f2578063313ce567146101e857806339509351146102065780633f4ba83a146102365780635c975abb1461024057806370a082311461025e5761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c57806323b872dd1461019a5780632861c7d1146101ca575b5f80fd5b6101366103c6565b6040516101439190611121565b60405180910390f35b610166600480360381019061016191906111d2565b610456565b604051610173919061122a565b60405180910390f35b610184610478565b6040516101919190611252565b60405180910390f35b6101b460048036038101906101af919061126b565b610481565b6040516101c1919061122a565b60405180910390f35b6101d26104af565b6040516101df9190611252565b60405180910390f35b6101f06104d6565b6040516101fd91906112d6565b60405180910390f35b610220600480360381019061021b91906111d2565b6104de565b60405161022d919061122a565b60405180910390f35b61023e610514565b005b610248610526565b604051610255919061122a565b60405180910390f35b610278600480360381019061027391906112ef565b61053b565b6040516102859190611252565b60405180910390f35b610296610581565b005b6102a0610594565b005b6102aa6105a6565b6040516102b79190611329565b60405180910390f35b6102c86105cd565b6040516102d59190611252565b60405180910390f35b6102e66105dc565b6040516102f39190611121565b60405180910390f35b61030461066c565b6040516103119190611252565b60405180910390f35b610334600480360381019061032f91906111d2565b610693565b604051610341919061122a565b60405180910390f35b610364600480360381019061035f91906111d2565b610708565b604051610371919061122a565b60405180910390f35b610394600480360381019061038f9190611342565b61072a565b6040516103a19190611252565b60405180910390f35b6103c460048036038101906103bf91906112ef565b6107ac565b005b6060600480546103d5906113ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610401906113ad565b801561044c5780601f106104235761010080835404028352916020019161044c565b820191905f5260205f20905b81548152906001019060200180831161042f57829003601f168201915b5050505050905090565b5f8061046061082e565b905061046d818585610835565b600191505092915050565b5f600354905090565b5f8061048b61082e565b90506104988582856109f8565b6104a3858585610a83565b60019150509392505050565b6064605f6a52b7d2dcc80cd2e40000006104c9919061140a565b6104d39190611478565b81565b5f6012905090565b5f806104e861082e565b90506105098185856104fa858961072a565b61050491906114a8565b610835565b600191505092915050565b61051c610cf2565b610524610d70565b565b5f8060149054906101000a900460ff16905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610589610cf2565b6105925f610dd1565b565b61059c610cf2565b6105a4610e92565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6a52b7d2dcc80cd2e400000081565b6060600580546105eb906113ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610617906113ad565b80156106625780601f1061063957610100808354040283529160200191610662565b820191905f5260205f20905b81548152906001019060200180831161064557829003601f168201915b5050505050905090565b606460056a52b7d2dcc80cd2e4000000610686919061140a565b6106909190611478565b81565b5f8061069d61082e565b90505f6106aa828661072a565b9050838110156106ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e69061154b565b60405180910390fd5b6106fc8286868403610835565b60019250505092915050565b5f8061071261082e565b905061071f818585610a83565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107b4610cf2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610819906115d9565b60405180910390fd5b61082b81610dd1565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a90611667565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610911576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610908906116f5565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109eb9190611252565b60405180910390a3505050565b5f610a03848461072a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a7d5781811015610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a669061175d565b60405180910390fd5b610a7c8484848403610835565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae8906117eb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5690611879565b60405180910390fd5b610b6a838383610ef4565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590611907565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cd99190611252565b60405180910390a3610cec848484610ffa565b50505050565b610cfa61082e565b73ffffffffffffffffffffffffffffffffffffffff16610d186105a6565b73ffffffffffffffffffffffffffffffffffffffff1614610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d659061196f565b60405180910390fd5b565b610d78610fff565b5f8060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610dba61082e565b604051610dc79190611329565b60405180910390a1565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610e9a611048565b60015f60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610edd61082e565b604051610eea9190611329565b60405180910390a1565b5f8103610f2d576040517f7713e26f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f35610526565b8015610fb357508273ffffffffffffffffffffffffffffffffffffffff16610f5b6105a6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610fb257508173ffffffffffffffffffffffffffffffffffffffff16610f996105a6565b73ffffffffffffffffffffffffffffffffffffffff1614155b5b15610fea576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ff5838383611092565b505050565b505050565b611007610526565b611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d906119d7565b60405180910390fd5b565b611050610526565b15611090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108790611a3f565b60405180910390fd5b565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156110ce5780820151818401526020810190506110b3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6110f382611097565b6110fd81856110a1565b935061110d8185602086016110b1565b611116816110d9565b840191505092915050565b5f6020820190508181035f83015261113981846110e9565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61116e82611145565b9050919050565b61117e81611164565b8114611188575f80fd5b50565b5f8135905061119981611175565b92915050565b5f819050919050565b6111b18161119f565b81146111bb575f80fd5b50565b5f813590506111cc816111a8565b92915050565b5f80604083850312156111e8576111e7611141565b5b5f6111f58582860161118b565b9250506020611206858286016111be565b9150509250929050565b5f8115159050919050565b61122481611210565b82525050565b5f60208201905061123d5f83018461121b565b92915050565b61124c8161119f565b82525050565b5f6020820190506112655f830184611243565b92915050565b5f805f6060848603121561128257611281611141565b5b5f61128f8682870161118b565b93505060206112a08682870161118b565b92505060406112b1868287016111be565b9150509250925092565b5f60ff82169050919050565b6112d0816112bb565b82525050565b5f6020820190506112e95f8301846112c7565b92915050565b5f6020828403121561130457611303611141565b5b5f6113118482850161118b565b91505092915050565b61132381611164565b82525050565b5f60208201905061133c5f83018461131a565b92915050565b5f806040838503121561135857611357611141565b5b5f6113658582860161118b565b92505060206113768582860161118b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806113c457607f821691505b6020821081036113d7576113d6611380565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6114148261119f565b915061141f8361119f565b925082820261142d8161119f565b91508282048414831517611444576114436113dd565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6114828261119f565b915061148d8361119f565b92508261149d5761149c61144b565b5b828204905092915050565b5f6114b28261119f565b91506114bd8361119f565b92508282019050808211156114d5576114d46113dd565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6115356025836110a1565b9150611540826114db565b604082019050919050565b5f6020820190508181035f83015261156281611529565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6115c36026836110a1565b91506115ce82611569565b604082019050919050565b5f6020820190508181035f8301526115f0816115b7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6116516024836110a1565b915061165c826115f7565b604082019050919050565b5f6020820190508181035f83015261167e81611645565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6116df6022836110a1565b91506116ea82611685565b604082019050919050565b5f6020820190508181035f83015261170c816116d3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611747601d836110a1565b915061175282611713565b602082019050919050565b5f6020820190508181035f8301526117748161173b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6117d56025836110a1565b91506117e08261177b565b604082019050919050565b5f6020820190508181035f830152611802816117c9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6118636023836110a1565b915061186e82611809565b604082019050919050565b5f6020820190508181035f83015261189081611857565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6118f16026836110a1565b91506118fc82611897565b604082019050919050565b5f6020820190508181035f83015261191e816118e5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6119596020836110a1565b915061196482611925565b602082019050919050565b5f6020820190508181035f8301526119868161194d565b9050919050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f6119c16014836110a1565b91506119cc8261198d565b602082019050919050565b5f6020820190508181035f8301526119ee816119b5565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f611a296010836110a1565b9150611a34826119f5565b602082019050919050565b5f6020820190508181035f830152611a5681611a1d565b905091905056fea264697066735822122002ccd707e457f0035e8f8cf45d2de73afe40ebffd657bb13ba428493e7e187c264736f6c6343000814003300000000000000000000000097112d1126d140832ad889e57f0fa46f695fe67d

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061012a575f3560e01c8063715018a6116100ab5780639d2cc4361161006f5780639d2cc436146102fc578063a457c2d71461031a578063a9059cbb1461034a578063dd62ed3e1461037a578063f2fde38b146103aa5761012a565b8063715018a61461028e5780638456cb59146102985780638da5cb5b146102a2578063902d55a5146102c057806395d89b41146102de5761012a565b8063313ce567116100f2578063313ce567146101e857806339509351146102065780633f4ba83a146102365780635c975abb1461024057806370a082311461025e5761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c57806323b872dd1461019a5780632861c7d1146101ca575b5f80fd5b6101366103c6565b6040516101439190611121565b60405180910390f35b610166600480360381019061016191906111d2565b610456565b604051610173919061122a565b60405180910390f35b610184610478565b6040516101919190611252565b60405180910390f35b6101b460048036038101906101af919061126b565b610481565b6040516101c1919061122a565b60405180910390f35b6101d26104af565b6040516101df9190611252565b60405180910390f35b6101f06104d6565b6040516101fd91906112d6565b60405180910390f35b610220600480360381019061021b91906111d2565b6104de565b60405161022d919061122a565b60405180910390f35b61023e610514565b005b610248610526565b604051610255919061122a565b60405180910390f35b610278600480360381019061027391906112ef565b61053b565b6040516102859190611252565b60405180910390f35b610296610581565b005b6102a0610594565b005b6102aa6105a6565b6040516102b79190611329565b60405180910390f35b6102c86105cd565b6040516102d59190611252565b60405180910390f35b6102e66105dc565b6040516102f39190611121565b60405180910390f35b61030461066c565b6040516103119190611252565b60405180910390f35b610334600480360381019061032f91906111d2565b610693565b604051610341919061122a565b60405180910390f35b610364600480360381019061035f91906111d2565b610708565b604051610371919061122a565b60405180910390f35b610394600480360381019061038f9190611342565b61072a565b6040516103a19190611252565b60405180910390f35b6103c460048036038101906103bf91906112ef565b6107ac565b005b6060600480546103d5906113ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610401906113ad565b801561044c5780601f106104235761010080835404028352916020019161044c565b820191905f5260205f20905b81548152906001019060200180831161042f57829003601f168201915b5050505050905090565b5f8061046061082e565b905061046d818585610835565b600191505092915050565b5f600354905090565b5f8061048b61082e565b90506104988582856109f8565b6104a3858585610a83565b60019150509392505050565b6064605f6a52b7d2dcc80cd2e40000006104c9919061140a565b6104d39190611478565b81565b5f6012905090565b5f806104e861082e565b90506105098185856104fa858961072a565b61050491906114a8565b610835565b600191505092915050565b61051c610cf2565b610524610d70565b565b5f8060149054906101000a900460ff16905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610589610cf2565b6105925f610dd1565b565b61059c610cf2565b6105a4610e92565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6a52b7d2dcc80cd2e400000081565b6060600580546105eb906113ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610617906113ad565b80156106625780601f1061063957610100808354040283529160200191610662565b820191905f5260205f20905b81548152906001019060200180831161064557829003601f168201915b5050505050905090565b606460056a52b7d2dcc80cd2e4000000610686919061140a565b6106909190611478565b81565b5f8061069d61082e565b90505f6106aa828661072a565b9050838110156106ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e69061154b565b60405180910390fd5b6106fc8286868403610835565b60019250505092915050565b5f8061071261082e565b905061071f818585610a83565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107b4610cf2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610819906115d9565b60405180910390fd5b61082b81610dd1565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a90611667565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610911576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610908906116f5565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109eb9190611252565b60405180910390a3505050565b5f610a03848461072a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a7d5781811015610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a669061175d565b60405180910390fd5b610a7c8484848403610835565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae8906117eb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5690611879565b60405180910390fd5b610b6a838383610ef4565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590611907565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cd99190611252565b60405180910390a3610cec848484610ffa565b50505050565b610cfa61082e565b73ffffffffffffffffffffffffffffffffffffffff16610d186105a6565b73ffffffffffffffffffffffffffffffffffffffff1614610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d659061196f565b60405180910390fd5b565b610d78610fff565b5f8060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610dba61082e565b604051610dc79190611329565b60405180910390a1565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610e9a611048565b60015f60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610edd61082e565b604051610eea9190611329565b60405180910390a1565b5f8103610f2d576040517f7713e26f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f35610526565b8015610fb357508273ffffffffffffffffffffffffffffffffffffffff16610f5b6105a6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610fb257508173ffffffffffffffffffffffffffffffffffffffff16610f996105a6565b73ffffffffffffffffffffffffffffffffffffffff1614155b5b15610fea576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ff5838383611092565b505050565b505050565b611007610526565b611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d906119d7565b60405180910390fd5b565b611050610526565b15611090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108790611a3f565b60405180910390fd5b565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156110ce5780820151818401526020810190506110b3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6110f382611097565b6110fd81856110a1565b935061110d8185602086016110b1565b611116816110d9565b840191505092915050565b5f6020820190508181035f83015261113981846110e9565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61116e82611145565b9050919050565b61117e81611164565b8114611188575f80fd5b50565b5f8135905061119981611175565b92915050565b5f819050919050565b6111b18161119f565b81146111bb575f80fd5b50565b5f813590506111cc816111a8565b92915050565b5f80604083850312156111e8576111e7611141565b5b5f6111f58582860161118b565b9250506020611206858286016111be565b9150509250929050565b5f8115159050919050565b61122481611210565b82525050565b5f60208201905061123d5f83018461121b565b92915050565b61124c8161119f565b82525050565b5f6020820190506112655f830184611243565b92915050565b5f805f6060848603121561128257611281611141565b5b5f61128f8682870161118b565b93505060206112a08682870161118b565b92505060406112b1868287016111be565b9150509250925092565b5f60ff82169050919050565b6112d0816112bb565b82525050565b5f6020820190506112e95f8301846112c7565b92915050565b5f6020828403121561130457611303611141565b5b5f6113118482850161118b565b91505092915050565b61132381611164565b82525050565b5f60208201905061133c5f83018461131a565b92915050565b5f806040838503121561135857611357611141565b5b5f6113658582860161118b565b92505060206113768582860161118b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806113c457607f821691505b6020821081036113d7576113d6611380565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6114148261119f565b915061141f8361119f565b925082820261142d8161119f565b91508282048414831517611444576114436113dd565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6114828261119f565b915061148d8361119f565b92508261149d5761149c61144b565b5b828204905092915050565b5f6114b28261119f565b91506114bd8361119f565b92508282019050808211156114d5576114d46113dd565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6115356025836110a1565b9150611540826114db565b604082019050919050565b5f6020820190508181035f83015261156281611529565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6115c36026836110a1565b91506115ce82611569565b604082019050919050565b5f6020820190508181035f8301526115f0816115b7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6116516024836110a1565b915061165c826115f7565b604082019050919050565b5f6020820190508181035f83015261167e81611645565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6116df6022836110a1565b91506116ea82611685565b604082019050919050565b5f6020820190508181035f83015261170c816116d3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611747601d836110a1565b915061175282611713565b602082019050919050565b5f6020820190508181035f8301526117748161173b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6117d56025836110a1565b91506117e08261177b565b604082019050919050565b5f6020820190508181035f830152611802816117c9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6118636023836110a1565b915061186e82611809565b604082019050919050565b5f6020820190508181035f83015261189081611857565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6118f16026836110a1565b91506118fc82611897565b604082019050919050565b5f6020820190508181035f83015261191e816118e5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6119596020836110a1565b915061196482611925565b602082019050919050565b5f6020820190508181035f8301526119868161194d565b9050919050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f6119c16014836110a1565b91506119cc8261198d565b602082019050919050565b5f6020820190508181035f8301526119ee816119b5565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f611a296010836110a1565b9150611a34826119f5565b602082019050919050565b5f6020820190508181035f830152611a5681611a1d565b905091905056fea264697066735822122002ccd707e457f0035e8f8cf45d2de73afe40ebffd657bb13ba428493e7e187c264736f6c63430008140033

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

00000000000000000000000097112d1126d140832ad889e57f0fa46f695fe67d

-----Decoded View---------------
Arg [0] : _dev (address): 0x97112D1126D140832AD889e57f0fa46F695Fe67D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000097112d1126d140832ad889e57f0fa46f695fe67d


Deployed Bytecode Sourcemap

290:1397:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3255:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5203:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;464:59:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3104:91:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5854:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1036:65:0;;;:::i;:::-;;1615:84:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3419:125:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:1;;;:::i;:::-;;937:61:0;;;:::i;:::-;;1201:85:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;375:56:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2369:102:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;577:56:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6575:427:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3740:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3987:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:198:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2158:98:3;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;4543:13;4559:12;:10;:12::i;:::-;4543:28;;4581:32;4590:5;4597:7;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;:::o;3255:106::-;3316:7;3342:12;;3335:19;;3255:106;:::o;5203:256::-;5300:4;5316:15;5334:12;:10;:12::i;:::-;5316:30;;5356:38;5372:4;5378:7;5387:6;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;5448:4;5441:11;;;5203:256;;;;;:::o;464:59:0:-;520:3;515:2;414:17;500;;;;:::i;:::-;:23;;;;:::i;:::-;464:59;:::o;3104:91:3:-;3162:5;3186:2;3179:9;;3104:91;:::o;5854:234::-;5942:4;5958:13;5974:12;:10;:12::i;:::-;5958:28;;5996:64;6005:5;6012:7;6049:10;6021:25;6031:5;6038:7;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;:::-;6077:4;6070:11;;;5854:234;;;;:::o;1036:65:0:-;1094:13:1;:11;:13::i;:::-;1084:10:0::1;:8;:10::i;:::-;1036:65::o:0;1615:84:2:-;1662:4;1685:7;;;;;;;;;;;1678:14;;1615:84;:::o;3419:125:3:-;3493:7;3519:9;:18;3529:7;3519:18;;;;;;;;;;;;;;;;3512:25;;3419:125;;;:::o;1824:101:1:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;937:61:0:-;1094:13:1;:11;:13::i;:::-;983:8:0::1;:6;:8::i;:::-;937:61::o:0;1201:85:1:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;375:56:0:-;414:17;375:56;:::o;2369:102:3:-;2425:13;2457:7;2450:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2369:102;:::o;577:56:0:-;630:3;626:1;414:17;611:16;;;;:::i;:::-;:22;;;;:::i;:::-;577:56;:::o;6575:427:3:-;6668:4;6684:13;6700:12;:10;:12::i;:::-;6684:28;;6722:24;6749:25;6759:5;6766:7;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;:::-;6991:4;6984:11;;;;6575:427;;;;:::o;3740:189::-;3819:4;3835:13;3851:12;:10;:12::i;:::-;3835:28;;3873;3883:5;3890:2;3894:6;3873:9;:28::i;:::-;3918:4;3911:11;;;3740:189;;;;:::o;3987:149::-;4076:7;4102:11;:18;4114:5;4102:18;;;;;;;;;;;;;;;:27;4121:7;4102:27;;;;;;;;;;;;;;;;4095:34;;3987:149;;;;:::o;2074:198:1:-;1094:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;::::0;2154:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;640:96:6:-;693:7;719:10;712:17;;640:96;:::o;10457:340:3:-;10575:1;10558:19;;:5;:19;;;10550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10655:1;10636:21;;:7;:21;;;10628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10737:6;10707:11;:18;10719:5;10707:18;;;;;;;;;;;;;;;:27;10726:7;10707:27;;;;;;;;;;;;;;;:36;;;;10774:7;10758:32;;10767:5;10758:32;;;10783:6;10758:32;;;;;;:::i;:::-;;;;;;;;10457:340;;;:::o;11078:411::-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;11264:17;11244:16;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;:::-;11240:243;11168:321;11078:411;;;:::o;7456:788::-;7568:1;7552:18;;:4;:18;;;7544:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7644:1;7630:16;;:2;:16;;;7622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7697:38;7718:4;7724:2;7728:6;7697:20;:38::i;:::-;7746:19;7768:9;:15;7778:4;7768:15;;;;;;;;;;;;;;;;7746:37;;7816:6;7801:11;:21;;7793:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7931:6;7917:11;:20;7899:9;:15;7909:4;7899:15;;;;;;;;;;;;;;;:38;;;;8131:6;8114:9;:13;8124:2;8114:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8178:2;8163:26;;8172:4;8163:26;;;8182:6;8163:26;;;;;;:::i;:::-;;;;;;;;8200:37;8220:4;8226:2;8230:6;8200:19;:37::i;:::-;7534:710;7456:788;;;:::o;1359:130:1:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;2433:117:2:-;1486:16;:14;:16::i;:::-;2501:5:::1;2491:7:::0;::::1;:15;;;;;;;;;;;;;;;;;;2521:22;2530:12;:10;:12::i;:::-;2521:22;;;;;;:::i;:::-;;;;;;;;2433:117::o:0;2426:187:1:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;2186:115:2:-;1239:19;:17;:19::i;:::-;2255:4:::1;2245:7;;:14;;;;;;;;;;;;;;;;;;2274:20;2281:12;:10;:12::i;:::-;2274:20;;;;;;:::i;:::-;;;;;;;;2186:115::o:0;1371:314:0:-;1494:1;1484:6;:11;1480:41;;1504:17;;;;;;;;;;;;;;1480:41;1535:8;:6;:8::i;:::-;:55;;;;;1559:6;1548:17;;:7;:5;:7::i;:::-;:17;;;;:41;;;;;1580:9;1569:20;;:7;:5;:7::i;:::-;:20;;;;1548:41;1535:55;1531:84;;;1599:16;;;;;;;;;;;;;;1531:84;1625:53;1652:6;1660:9;1671:6;1625:26;:53::i;:::-;1371:314;;;:::o;12752:90:3:-;;;;:::o;1945:106:2:-;2011:8;:6;:8::i;:::-;2003:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1945:106::o;1767:::-;1837:8;:6;:8::i;:::-;1836:9;1828:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1767:106::o;12073:91:3:-;;;;:::o;7:99:7:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:410;6758:7;6781:20;6799:1;6781:20;:::i;:::-;6776:25;;6815:20;6833:1;6815:20;:::i;:::-;6810:25;;6870:1;6867;6863:9;6892:30;6910:11;6892:30;:::i;:::-;6881:41;;7071:1;7062:7;7058:15;7055:1;7052:22;7032:1;7025:9;7005:83;6982:139;;7101:18;;:::i;:::-;6982:139;6766:362;6718:410;;;;:::o;7134:180::-;7182:77;7179:1;7172:88;7279:4;7276:1;7269:15;7303:4;7300:1;7293:15;7320:185;7360:1;7377:20;7395:1;7377:20;:::i;:::-;7372:25;;7411:20;7429:1;7411:20;:::i;:::-;7406:25;;7450:1;7440:35;;7455:18;;:::i;:::-;7440:35;7497:1;7494;7490:9;7485:14;;7320:185;;;;:::o;7511:191::-;7551:3;7570:20;7588:1;7570:20;:::i;:::-;7565:25;;7604:20;7622:1;7604:20;:::i;:::-;7599:25;;7647:1;7644;7640:9;7633:16;;7668:3;7665:1;7662:10;7659:36;;;7675:18;;:::i;:::-;7659:36;7511:191;;;;:::o;7708:224::-;7848:34;7844:1;7836:6;7832:14;7825:58;7917:7;7912:2;7904:6;7900:15;7893:32;7708:224;:::o;7938:366::-;8080:3;8101:67;8165:2;8160:3;8101:67;:::i;:::-;8094:74;;8177:93;8266:3;8177:93;:::i;:::-;8295:2;8290:3;8286:12;8279:19;;7938:366;;;:::o;8310:419::-;8476:4;8514:2;8503:9;8499:18;8491:26;;8563:9;8557:4;8553:20;8549:1;8538:9;8534:17;8527:47;8591:131;8717:4;8591:131;:::i;:::-;8583:139;;8310:419;;;:::o;8735:225::-;8875:34;8871:1;8863:6;8859:14;8852:58;8944:8;8939:2;8931:6;8927:15;8920:33;8735:225;:::o;8966:366::-;9108:3;9129:67;9193:2;9188:3;9129:67;:::i;:::-;9122:74;;9205:93;9294:3;9205:93;:::i;:::-;9323:2;9318:3;9314:12;9307:19;;8966:366;;;:::o;9338:419::-;9504:4;9542:2;9531:9;9527:18;9519:26;;9591:9;9585:4;9581:20;9577:1;9566:9;9562:17;9555:47;9619:131;9745:4;9619:131;:::i;:::-;9611:139;;9338:419;;;:::o;9763:223::-;9903:34;9899:1;9891:6;9887:14;9880:58;9972:6;9967:2;9959:6;9955:15;9948:31;9763:223;:::o;9992:366::-;10134:3;10155:67;10219:2;10214:3;10155:67;:::i;:::-;10148:74;;10231:93;10320:3;10231:93;:::i;:::-;10349:2;10344:3;10340:12;10333:19;;9992:366;;;:::o;10364:419::-;10530:4;10568:2;10557:9;10553:18;10545:26;;10617:9;10611:4;10607:20;10603:1;10592:9;10588:17;10581:47;10645:131;10771:4;10645:131;:::i;:::-;10637:139;;10364:419;;;:::o;10789:221::-;10929:34;10925:1;10917:6;10913:14;10906:58;10998:4;10993:2;10985:6;10981:15;10974:29;10789:221;:::o;11016:366::-;11158:3;11179:67;11243:2;11238:3;11179:67;:::i;:::-;11172:74;;11255:93;11344:3;11255:93;:::i;:::-;11373:2;11368:3;11364:12;11357:19;;11016:366;;;:::o;11388:419::-;11554:4;11592:2;11581:9;11577:18;11569:26;;11641:9;11635:4;11631:20;11627:1;11616:9;11612:17;11605:47;11669:131;11795:4;11669:131;:::i;:::-;11661:139;;11388:419;;;:::o;11813:179::-;11953:31;11949:1;11941:6;11937:14;11930:55;11813:179;:::o;11998:366::-;12140:3;12161:67;12225:2;12220:3;12161:67;:::i;:::-;12154:74;;12237:93;12326:3;12237:93;:::i;:::-;12355:2;12350:3;12346:12;12339:19;;11998:366;;;:::o;12370:419::-;12536:4;12574:2;12563:9;12559:18;12551:26;;12623:9;12617:4;12613:20;12609:1;12598:9;12594:17;12587:47;12651:131;12777:4;12651:131;:::i;:::-;12643:139;;12370:419;;;:::o;12795:224::-;12935:34;12931:1;12923:6;12919:14;12912:58;13004:7;12999:2;12991:6;12987:15;12980:32;12795:224;:::o;13025:366::-;13167:3;13188:67;13252:2;13247:3;13188:67;:::i;:::-;13181:74;;13264:93;13353:3;13264:93;:::i;:::-;13382:2;13377:3;13373:12;13366:19;;13025:366;;;:::o;13397:419::-;13563:4;13601:2;13590:9;13586:18;13578:26;;13650:9;13644:4;13640:20;13636:1;13625:9;13621:17;13614:47;13678:131;13804:4;13678:131;:::i;:::-;13670:139;;13397:419;;;:::o;13822:222::-;13962:34;13958:1;13950:6;13946:14;13939:58;14031:5;14026:2;14018:6;14014:15;14007:30;13822:222;:::o;14050:366::-;14192:3;14213:67;14277:2;14272:3;14213:67;:::i;:::-;14206:74;;14289:93;14378:3;14289:93;:::i;:::-;14407:2;14402:3;14398:12;14391:19;;14050:366;;;:::o;14422:419::-;14588:4;14626:2;14615:9;14611:18;14603:26;;14675:9;14669:4;14665:20;14661:1;14650:9;14646:17;14639:47;14703:131;14829:4;14703:131;:::i;:::-;14695:139;;14422:419;;;:::o;14847:225::-;14987:34;14983:1;14975:6;14971:14;14964:58;15056:8;15051:2;15043:6;15039:15;15032:33;14847:225;:::o;15078:366::-;15220:3;15241:67;15305:2;15300:3;15241:67;:::i;:::-;15234:74;;15317:93;15406:3;15317:93;:::i;:::-;15435:2;15430:3;15426:12;15419:19;;15078:366;;;:::o;15450:419::-;15616:4;15654:2;15643:9;15639:18;15631:26;;15703:9;15697:4;15693:20;15689:1;15678:9;15674:17;15667:47;15731:131;15857:4;15731:131;:::i;:::-;15723:139;;15450:419;;;:::o;15875:182::-;16015:34;16011:1;16003:6;15999:14;15992:58;15875:182;:::o;16063:366::-;16205:3;16226:67;16290:2;16285:3;16226:67;:::i;:::-;16219:74;;16302:93;16391:3;16302:93;:::i;:::-;16420:2;16415:3;16411:12;16404:19;;16063:366;;;:::o;16435:419::-;16601:4;16639:2;16628:9;16624:18;16616:26;;16688:9;16682:4;16678:20;16674:1;16663:9;16659:17;16652:47;16716:131;16842:4;16716:131;:::i;:::-;16708:139;;16435:419;;;:::o;16860:170::-;17000:22;16996:1;16988:6;16984:14;16977:46;16860:170;:::o;17036:366::-;17178:3;17199:67;17263:2;17258:3;17199:67;:::i;:::-;17192:74;;17275:93;17364:3;17275:93;:::i;:::-;17393:2;17388:3;17384:12;17377:19;;17036:366;;;:::o;17408:419::-;17574:4;17612:2;17601:9;17597:18;17589:26;;17661:9;17655:4;17651:20;17647:1;17636:9;17632:17;17625:47;17689:131;17815:4;17689:131;:::i;:::-;17681:139;;17408:419;;;:::o;17833:166::-;17973:18;17969:1;17961:6;17957:14;17950:42;17833:166;:::o;18005:366::-;18147:3;18168:67;18232:2;18227:3;18168:67;:::i;:::-;18161:74;;18244:93;18333:3;18244:93;:::i;:::-;18362:2;18357:3;18353:12;18346:19;;18005:366;;;:::o;18377:419::-;18543:4;18581:2;18570:9;18566:18;18558:26;;18630:9;18624:4;18620:20;18616:1;18605:9;18601:17;18594:47;18658:131;18784:4;18658:131;:::i;:::-;18650:139;;18377:419;;;:::o

Swarm Source

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