ETH Price: $2,461.31 (+1.99%)
 

Overview

Max Total Supply

1,000,000,000 AICO

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
40,000 AICO

Value
$0.00
0x1ec0b96e6d2925598abc84dc310fe4c01af0da68
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:
Aico

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-05-24
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

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

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

  /**
   * @dev Initializes the contract setting the deployer as the initial owner.
   */
  constructor () {
    address msgSender = _msgSender();
    _owner = msgSender;
    emit OwnershipTransferred(address(0), msgSender);
  }

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

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(_owner == _msgSender(), "Ownable: caller is not the owner");
    _;
  }

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

  /**
   * @dev Transfers ownership of the contract to a new account (`newOwner`).
   * Can only be called by the current owner.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    _transferOwnership(newOwner);
  }

  /**
   * @dev Transfers ownership of the contract to a new account (`newOwner`).
   */
  function _transferOwnership(address newOwner) internal {
    require(newOwner != address(0), "Ownable: new owner is the zero address");
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * 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 ERC-20
 * applications.
 */
contract Aico is Context, IERC20, IERC20Metadata, IERC20Errors, Ownable {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    uint256 public transferFee = 0;
    uint256 public pairFee = 0;

    mapping(address pair => bool) public pairs;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor() {
        _name = "CompanionAI";
        _symbol = "AICO";
        _mint(owner(), 1000000000 * 10 ** 18);
    }

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }

        if ((pairs[from] || pairs[to]) && pairFee > 0) {
            uint256 fee = value * pairFee / 100;
            uint256 amount = value - fee;
            _update(from, owner(), fee);
            _update(from, to, amount);
        } else if (!pairs[from] && !pairs[to] && transferFee > 0) {
            uint256 fee = value * transferFee / 100;
            uint256 amount = value - fee;
            _update(from, owner(), fee);
            _update(from, to, amount);
        } else {
            _update(from, to, value);
        }
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }

    function setTransferFee(uint256 newFee) public onlyOwner returns (bool) {
        transferFee = newFee;
        return true;
    }

    function setPairFee(uint256 newFee) public onlyOwner returns (bool) {
        pairFee = newFee;
        return true;
    }

    function setPairEnabled(address pair, bool enabled) public onlyOwner returns (bool) {
        pairs[pair] = enabled;
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","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":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":"value","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":[],"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":"pairFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"pairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setPairEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"setPairFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"setTransferFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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"}]

60806040525f6006555f60075534801562000018575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051808201909152600b81526a436f6d70616e696f6e414960a81b60208201526004906200008a9082620002f4565b506040805180820190915260048152634149434f60e01b6020820152600590620000b59082620002f4565b50620000df620000cc5f546001600160a01b031690565b6b033b2e3c9fd0803ce8000000620000e5565b620003e2565b6001600160a01b038216620001145760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b620001215f838362000125565b5050565b6001600160a01b03831662000153578060035f828254620001479190620003bc565b90915550620001c59050565b6001600160a01b0383165f9081526001602052604090205481811015620001a75760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016200010b565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b038216620001e35760038054829003905562000201565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200024791815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200027d57607f821691505b6020821081036200029c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620002ef575f81815260208120601f850160051c81016020861015620002ca5750805b601f850160051c820191505b81811015620002eb57828155600101620002d6565b5050505b505050565b81516001600160401b0381111562000310576200031062000254565b620003288162000321845462000268565b84620002a2565b602080601f8311600181146200035e575f8415620003465750858301515b5f19600386901b1c1916600185901b178555620002eb565b5f85815260208120601f198616915b828110156200038e578886015182559484019460019091019084016200036d565b5085821015620003ac57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620003dc57634e487b7160e01b5f52601160045260245ffd5b92915050565b610c2280620003f05f395ff3fe608060405234801561000f575f80fd5b5060043610610111575f3560e01c8063715018a61161009e578063a9059cbb1161006e578063a9059cbb14610220578063acb2ad6f14610233578063dd62ed3e1461023c578063f2fde38b14610274578063fe33b30214610287575f80fd5b8063715018a6146101e15780638da5cb5b146101eb5780638f02bb5b1461020557806395d89b4114610218575f80fd5b806323b872dd116100e457806323b872dd14610171578063313ce56714610184578063437faefc146101935780635b0489a0146101a657806370a08231146101b9575f80fd5b806306fdde0314610115578063095ea7b31461013357806318160ddd14610156578063218cf69a14610168575b5f80fd5b61011d6102a9565b60405161012a91906109ac565b60405180910390f35b610146610141366004610a0d565b610339565b604051901515815260200161012a565b6003545b60405190815260200161012a565b61015a60075481565b61014661017f366004610a35565b610352565b6040516012815260200161012a565b6101466101a1366004610a6e565b610375565b6101466101b4366004610a85565b6103b6565b61015a6101c7366004610abe565b6001600160a01b03165f9081526001602052604090205490565b6101e961040e565b005b5f546040516001600160a01b03909116815260200161012a565b610146610213366004610a6e565b61047f565b61011d6104b2565b61014661022e366004610a0d565b6104c1565b61015a60065481565b61015a61024a366004610ade565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101e9610282366004610abe565b6104ce565b610146610295366004610abe565b60086020525f908152604090205460ff1681565b6060600480546102b890610b0f565b80601f01602080910402602001604051908101604052809291908181526020018280546102e490610b0f565b801561032f5780601f106103065761010080835404028352916020019161032f565b820191905f5260205f20905b81548152906001019060200180831161031257829003601f168201915b5050505050905090565b5f33610346818585610503565b60019150505b92915050565b5f3361035f858285610515565b61036a858585610590565b506001949350505050565b5f80546001600160a01b031633146103a85760405162461bcd60e51b815260040161039f90610b47565b60405180910390fd5b50600781905560015b919050565b5f80546001600160a01b031633146103e05760405162461bcd60e51b815260040161039f90610b47565b506001600160a01b0382165f908152600860205260409020805482151560ff19909116179055600192915050565b5f546001600160a01b031633146104375760405162461bcd60e51b815260040161039f90610b47565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f80546001600160a01b031633146104a95760405162461bcd60e51b815260040161039f90610b47565b50600655600190565b6060600580546102b890610b0f565b5f33610346818585610590565b5f546001600160a01b031633146104f75760405162461bcd60e51b815260040161039f90610b47565b610500816106f6565b50565b61051083838360016107b4565b505050565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f19811461058a578181101561057c57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161039f565b61058a84848484035f6107b4565b50505050565b6001600160a01b0383166105b957604051634b637e8f60e11b81525f600482015260240161039f565b6001600160a01b0382166105e25760405163ec442f0560e01b81525f600482015260240161039f565b6001600160a01b0383165f9081526008602052604090205460ff168061061f57506001600160a01b0382165f9081526008602052604090205460ff165b801561062c57505f600754115b15610688575f6064600754836106429190610b90565b61064c9190610ba7565b90505f6106598284610bc6565b9050610676856106705f546001600160a01b031690565b84610886565b610681858583610886565b5050505050565b6001600160a01b0383165f9081526008602052604090205460ff161580156106c857506001600160a01b0382165f9081526008602052604090205460ff16155b80156106d557505f600654115b156106eb575f6064600654836106429190610b90565b610510838383610886565b6001600160a01b03811661075b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039f565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0384166107dd5760405163e602df0560e01b81525f600482015260240161039f565b6001600160a01b03831661080657604051634a1406b160e11b81525f600482015260240161039f565b6001600160a01b038085165f908152600260209081526040808320938716835292905220829055801561058a57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161087891815260200190565b60405180910390a350505050565b6001600160a01b0383166108b0578060035f8282546108a59190610bd9565b909155506109209050565b6001600160a01b0383165f90815260016020526040902054818110156109025760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161039f565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b03821661093c5760038054829003905561095a565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161099f91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b818110156109d7578581018301518582016040015282016109bb565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146103b1575f80fd5b5f8060408385031215610a1e575f80fd5b610a27836109f7565b946020939093013593505050565b5f805f60608486031215610a47575f80fd5b610a50846109f7565b9250610a5e602085016109f7565b9150604084013590509250925092565b5f60208284031215610a7e575f80fd5b5035919050565b5f8060408385031215610a96575f80fd5b610a9f836109f7565b915060208301358015158114610ab3575f80fd5b809150509250929050565b5f60208284031215610ace575f80fd5b610ad7826109f7565b9392505050565b5f8060408385031215610aef575f80fd5b610af8836109f7565b9150610b06602084016109f7565b90509250929050565b600181811c90821680610b2357607f821691505b602082108103610b4157634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761034c5761034c610b7c565b5f82610bc157634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561034c5761034c610b7c565b8082018082111561034c5761034c610b7c56fea26469706673582212207cb7c3cd661fdb95b5d1b4c666474f5936cbe3154c0c9cd87be4bbdac571c4e164736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610111575f3560e01c8063715018a61161009e578063a9059cbb1161006e578063a9059cbb14610220578063acb2ad6f14610233578063dd62ed3e1461023c578063f2fde38b14610274578063fe33b30214610287575f80fd5b8063715018a6146101e15780638da5cb5b146101eb5780638f02bb5b1461020557806395d89b4114610218575f80fd5b806323b872dd116100e457806323b872dd14610171578063313ce56714610184578063437faefc146101935780635b0489a0146101a657806370a08231146101b9575f80fd5b806306fdde0314610115578063095ea7b31461013357806318160ddd14610156578063218cf69a14610168575b5f80fd5b61011d6102a9565b60405161012a91906109ac565b60405180910390f35b610146610141366004610a0d565b610339565b604051901515815260200161012a565b6003545b60405190815260200161012a565b61015a60075481565b61014661017f366004610a35565b610352565b6040516012815260200161012a565b6101466101a1366004610a6e565b610375565b6101466101b4366004610a85565b6103b6565b61015a6101c7366004610abe565b6001600160a01b03165f9081526001602052604090205490565b6101e961040e565b005b5f546040516001600160a01b03909116815260200161012a565b610146610213366004610a6e565b61047f565b61011d6104b2565b61014661022e366004610a0d565b6104c1565b61015a60065481565b61015a61024a366004610ade565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101e9610282366004610abe565b6104ce565b610146610295366004610abe565b60086020525f908152604090205460ff1681565b6060600480546102b890610b0f565b80601f01602080910402602001604051908101604052809291908181526020018280546102e490610b0f565b801561032f5780601f106103065761010080835404028352916020019161032f565b820191905f5260205f20905b81548152906001019060200180831161031257829003601f168201915b5050505050905090565b5f33610346818585610503565b60019150505b92915050565b5f3361035f858285610515565b61036a858585610590565b506001949350505050565b5f80546001600160a01b031633146103a85760405162461bcd60e51b815260040161039f90610b47565b60405180910390fd5b50600781905560015b919050565b5f80546001600160a01b031633146103e05760405162461bcd60e51b815260040161039f90610b47565b506001600160a01b0382165f908152600860205260409020805482151560ff19909116179055600192915050565b5f546001600160a01b031633146104375760405162461bcd60e51b815260040161039f90610b47565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f80546001600160a01b031633146104a95760405162461bcd60e51b815260040161039f90610b47565b50600655600190565b6060600580546102b890610b0f565b5f33610346818585610590565b5f546001600160a01b031633146104f75760405162461bcd60e51b815260040161039f90610b47565b610500816106f6565b50565b61051083838360016107b4565b505050565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f19811461058a578181101561057c57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161039f565b61058a84848484035f6107b4565b50505050565b6001600160a01b0383166105b957604051634b637e8f60e11b81525f600482015260240161039f565b6001600160a01b0382166105e25760405163ec442f0560e01b81525f600482015260240161039f565b6001600160a01b0383165f9081526008602052604090205460ff168061061f57506001600160a01b0382165f9081526008602052604090205460ff165b801561062c57505f600754115b15610688575f6064600754836106429190610b90565b61064c9190610ba7565b90505f6106598284610bc6565b9050610676856106705f546001600160a01b031690565b84610886565b610681858583610886565b5050505050565b6001600160a01b0383165f9081526008602052604090205460ff161580156106c857506001600160a01b0382165f9081526008602052604090205460ff16155b80156106d557505f600654115b156106eb575f6064600654836106429190610b90565b610510838383610886565b6001600160a01b03811661075b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039f565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0384166107dd5760405163e602df0560e01b81525f600482015260240161039f565b6001600160a01b03831661080657604051634a1406b160e11b81525f600482015260240161039f565b6001600160a01b038085165f908152600260209081526040808320938716835292905220829055801561058a57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161087891815260200190565b60405180910390a350505050565b6001600160a01b0383166108b0578060035f8282546108a59190610bd9565b909155506109209050565b6001600160a01b0383165f90815260016020526040902054818110156109025760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161039f565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b03821661093c5760038054829003905561095a565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161099f91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b818110156109d7578581018301518582016040015282016109bb565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146103b1575f80fd5b5f8060408385031215610a1e575f80fd5b610a27836109f7565b946020939093013593505050565b5f805f60608486031215610a47575f80fd5b610a50846109f7565b9250610a5e602085016109f7565b9150604084013590509250925092565b5f60208284031215610a7e575f80fd5b5035919050565b5f8060408385031215610a96575f80fd5b610a9f836109f7565b915060208301358015158114610ab3575f80fd5b809150509250929050565b5f60208284031215610ace575f80fd5b610ad7826109f7565b9392505050565b5f8060408385031215610aef575f80fd5b610af8836109f7565b9150610b06602084016109f7565b90509250929050565b600181811c90821680610b2357607f821691505b602082108103610b4157634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761034c5761034c610b7c565b5f82610bc157634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561034c5761034c610b7c565b8082018082111561034c5761034c610b7c56fea26469706673582212207cb7c3cd661fdb95b5d1b4c666474f5936cbe3154c0c9cd87be4bbdac571c4e164736f6c63430008140033

Deployed Bytecode Sourcemap

9158:11150:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9990:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12283:190;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;12283:190:0;1004:187:1;11092:99:0;11171:12;;11092:99;;;1342:25:1;;;1330:2;1315:18;11092:99:0;1196:177:1;9523:26:0;;;;;;13083:249;;;;;;:::i;:::-;;:::i;10943:84::-;;;11017:2;1853:36:1;;1841:2;1826:18;10943:84:0;1711:184:1;20026:125:0;;;;;;:::i;:::-;;:::i;20159:146::-;;;;;;:::i;:::-;;:::i;11254:118::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11346:18:0;11319:7;11346:18;;;:9;:18;;;;;;;11254:118;7684:130;;;:::i;:::-;;7082:73;7120:7;7143:6;7082:73;;-1:-1:-1;;;;;7143:6:0;;;2774:51:1;;2762:2;2747:18;7082:73:0;2628:203:1;19885:133:0;;;;;;:::i;:::-;;:::i;10200:95::-;;;:::i;11577:182::-;;;;;;:::i;:::-;;:::i;9486:30::-;;;;;;11822:142;;;;;;:::i;:::-;-1:-1:-1;;;;;11929:18:0;;;11902:7;11929:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11822:142;7959:103;;;;;;:::i;:::-;;:::i;9558:42::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;9990:91;10035:13;10068:5;10061:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9990:91;:::o;12283:190::-;12356:4;3922:10;12412:31;3922:10;12428:7;12437:5;12412:8;:31::i;:::-;12461:4;12454:11;;;12283:190;;;;;:::o;13083:249::-;13170:4;3922:10;13228:37;13244:4;3922:10;13259:5;13228:15;:37::i;:::-;13276:26;13286:4;13292:2;13296:5;13276:9;:26::i;:::-;-1:-1:-1;13320:4:0;;13083:249;-1:-1:-1;;;;13083:249:0:o;20026:125::-;20088:4;7276:6;;-1:-1:-1;;;;;7276:6:0;3922:10;7276:22;7268:67;;;;-1:-1:-1;;;7268:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;20105:7:0::1;:16:::0;;;20139:4:::1;7342:1;20026:125:::0;;;:::o;20159:146::-;20237:4;7276:6;;-1:-1:-1;;;;;7276:6:0;3922:10;7276:22;7268:67;;;;-1:-1:-1;;;7268:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;20254:11:0;::::1;;::::0;;;:5:::1;:11;::::0;;;;:21;;;::::1;;-1:-1:-1::0;;20254:21:0;;::::1;;::::0;;;20159:146;;;;:::o;7684:130::-;7276:6;;-1:-1:-1;;;;;7276:6:0;3922:10;7276:22;7268:67;;;;-1:-1:-1;;;7268:67:0;;;;;;;:::i;:::-;7779:1:::1;7763:6:::0;;7742:40:::1;::::0;-1:-1:-1;;;;;7763:6:0;;::::1;::::0;7742:40:::1;::::0;7779:1;;7742:40:::1;7806:1;7789:19:::0;;-1:-1:-1;;;;;;7789:19:0::1;::::0;;7684:130::o;19885:133::-;19951:4;7276:6;;-1:-1:-1;;;;;7276:6:0;3922:10;7276:22;7268:67;;;;-1:-1:-1;;;7268:67:0;;;;;;;:::i;:::-;-1:-1:-1;19968:11:0::1;:20:::0;20006:4:::1;::::0;19885:133::o;10200:95::-;10247:13;10280:7;10273:14;;;;;:::i;11577:182::-;11646:4;3922:10;11702:27;3922:10;11719:2;11723:5;11702:9;:27::i;7959:103::-;7276:6;;-1:-1:-1;;;;;7276:6:0;3922:10;7276:22;7268:67;;;;-1:-1:-1;;;7268:67:0;;;;;;;:::i;:::-;8028:28:::1;8047:8;8028:18;:28::i;:::-;7959:103:::0;:::o;17658:130::-;17743:37;17752:5;17759:7;17768:5;17775:4;17743:8;:37::i;:::-;17658:130;;;:::o;19390:487::-;-1:-1:-1;;;;;11929:18:0;;;19490:24;11929:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;19557:37:0;;19553:317;;19634:5;19615:16;:24;19611:132;;;19667:60;;-1:-1:-1;;;19667:60:0;;-1:-1:-1;;;;;4067:32:1;;19667:60:0;;;4049:51:1;4116:18;;;4109:34;;;4159:18;;;4152:34;;;4022:18;;19667:60:0;3847:345:1;19611:132:0;19786:57;19795:5;19802:7;19830:5;19811:16;:24;19837:5;19786:8;:57::i;:::-;19479:398;19390:487;;;:::o;13717:824::-;-1:-1:-1;;;;;13801:18:0;;13797:88;;13843:30;;-1:-1:-1;;;13843:30:0;;13870:1;13843:30;;;2774:51:1;2747:18;;13843:30:0;2628:203:1;13797:88:0;-1:-1:-1;;;;;13899:16:0;;13895:88;;13939:32;;-1:-1:-1;;;13939:32:0;;13968:1;13939:32;;;2774:51:1;2747:18;;13939:32:0;2628:203:1;13895:88:0;-1:-1:-1;;;;;14000:11:0;;;;;;:5;:11;;;;;;;;;:24;;-1:-1:-1;;;;;;14015:9:0;;;;;;:5;:9;;;;;;;;14000:24;13999:41;;;;;14039:1;14029:7;;:11;13999:41;13995:539;;;14057:11;14089:3;14079:7;;14071:5;:15;;;;:::i;:::-;:21;;;;:::i;:::-;14057:35;-1:-1:-1;14107:14:0;14124:11;14057:35;14124:5;:11;:::i;:::-;14107:28;;14150:27;14158:4;14164:7;7120;7143:6;-1:-1:-1;;;;;7143:6:0;;7082:73;14164:7;14173:3;14150:7;:27::i;:::-;14192:25;14200:4;14206:2;14210:6;14192:7;:25::i;:::-;14042:187;;17658:130;;;:::o;13995:539::-;-1:-1:-1;;;;;14240:11:0;;;;;;:5;:11;;;;;;;;14239:12;:26;;;;-1:-1:-1;;;;;;14256:9:0;;;;;;:5;:9;;;;;;;;14255:10;14239:26;:45;;;;;14283:1;14269:11;;:15;14239:45;14235:299;;;14301:11;14337:3;14323:11;;14315:5;:19;;;;:::i;14235:299::-;14498:24;14506:4;14512:2;14516:5;14498:7;:24::i;8160:215::-;-1:-1:-1;;;;;8230:22:0;;8222:73;;;;-1:-1:-1;;;8222:73:0;;5059:2:1;8222:73:0;;;5041:21:1;5098:2;5078:18;;;5071:30;5137:34;5117:18;;;5110:62;-1:-1:-1;;;5188:18:1;;;5181:36;5234:19;;8222:73:0;4857:402:1;8222:73:0;8328:6;;;8307:38;;-1:-1:-1;;;;;8307:38:0;;;;8328:6;;;8307:38;;;8352:6;:17;;-1:-1:-1;;;;;;8352:17:0;-1:-1:-1;;;;;8352:17:0;;;;;;;;;;8160:215::o;18655:443::-;-1:-1:-1;;;;;18768:19:0;;18764:91;;18811:32;;-1:-1:-1;;;18811:32:0;;18840:1;18811:32;;;2774:51:1;2747:18;;18811:32:0;2628:203:1;18764:91:0;-1:-1:-1;;;;;18869:21:0;;18865:92;;18914:31;;-1:-1:-1;;;18914:31:0;;18942:1;18914:31;;;2774:51:1;2747:18;;18914:31:0;2628:203:1;18865:92:0;-1:-1:-1;;;;;18967:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;19013:78;;;;19064:7;-1:-1:-1;;;;;19048:31:0;19057:5;-1:-1:-1;;;;;19048:31:0;;19073:5;19048:31;;;;1342:25:1;;1330:2;1315:18;;1196:177;19048:31:0;;;;;;;;18655:443;;;;:::o;14865:1135::-;-1:-1:-1;;;;;14955:18:0;;14951:552;;15109:5;15093:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;14951:552:0;;-1:-1:-1;14951:552:0;;-1:-1:-1;;;;;15169:15:0;;15147:19;15169:15;;;:9;:15;;;;;;15203:19;;;15199:117;;;15250:50;;-1:-1:-1;;;15250:50:0;;-1:-1:-1;;;;;4067:32:1;;15250:50:0;;;4049:51:1;4116:18;;;4109:34;;;4159:18;;;4152:34;;;4022:18;;15250:50:0;3847:345:1;15199:117:0;-1:-1:-1;;;;;15439:15:0;;;;;;:9;:15;;;;;15457:19;;;;15439:37;;14951:552;-1:-1:-1;;;;;15519:16:0;;15515:435;;15685:12;:21;;;;;;;15515:435;;;-1:-1:-1;;;;;15901:13:0;;;;;;:9;:13;;;;;:22;;;;;;15515:435;15982:2;-1:-1:-1;;;;;15967:25:0;15976:4;-1:-1:-1;;;;;15967:25:0;;15986:5;15967:25;;;;1342::1;;1330:2;1315:18;;1196:177;15967:25:0;;;;;;;;14865:1135;;;:::o;14:548:1:-;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;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;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:180::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;-1:-1:-1;2051:23:1;;1900:180;-1:-1:-1;1900:180:1:o;2085:347::-;2150:6;2158;2211:2;2199:9;2190:7;2186:23;2182:32;2179:52;;;2227:1;2224;2217:12;2179:52;2250:29;2269:9;2250:29;:::i;:::-;2240:39;;2329:2;2318:9;2314:18;2301:32;2376:5;2369:13;2362:21;2355:5;2352:32;2342:60;;2398:1;2395;2388:12;2342:60;2421:5;2411:15;;;2085:347;;;;;:::o;2437:186::-;2496:6;2549:2;2537:9;2528:7;2524:23;2520:32;2517:52;;;2565:1;2562;2555:12;2517:52;2588:29;2607:9;2588:29;:::i;:::-;2578:39;2437:186;-1:-1:-1;;;2437:186: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;3486:356::-;3688:2;3670:21;;;3707:18;;;3700:30;3766:34;3761:2;3746:18;;3739:62;3833:2;3818:18;;3486:356::o;4197:127::-;4258:10;4253:3;4249:20;4246:1;4239:31;4289:4;4286:1;4279:15;4313:4;4310:1;4303:15;4329:168;4402:9;;;4433;;4450:15;;;4444:22;;4430:37;4420:71;;4471:18;;:::i;4502:217::-;4542:1;4568;4558:132;;4612:10;4607:3;4603:20;4600:1;4593:31;4647:4;4644:1;4637:15;4675:4;4672:1;4665:15;4558:132;-1:-1:-1;4704:9:1;;4502:217::o;4724:128::-;4791:9;;;4812:11;;;4809:37;;;4826:18;;:::i;5264:125::-;5329:9;;;5350:10;;;5347:36;;;5363:18;;:::i

Swarm Source

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