ETH Price: $2,538.55 (+4.64%)

Token

Citizen Conflict (CITI)
 

Overview

Max Total Supply

200,000,000 CITI

Holders

32

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
ucanfollowme.eth
Balance
6,251,359.510490135283711952 CITI

Value
$0.00
0x33b279A7B0A21258Ac210d126BcBc168FaCEFa00
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:
CITI

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 7 of 7: token.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.22;

import "./ERC20.sol";
import "./IERC20.sol";
import "./Ownable.sol";

error MintPriceNotPaid();
error MaxSupply();
error NonExistentTokenURI();
error WithdrawTransfer();

contract CITI is ERC20, Ownable {
    constructor(string memory _name, string memory _symbol, address to) ERC20(_name, _symbol) Ownable(msg.sender) {
        uint256 amount = 200000000 * 10 ** 18;
        _mint(to, amount);
    }

    function extractPaymentToken(uint256 amount, address token) external onlyOwner {
        IERC20(token).transfer(msg.sender, amount);
    }

    function extractValue() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

File 1 of 7: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

File 2 of 7: draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @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 Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

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

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

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @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.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

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

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

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 3 of 7: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./IERC20Metadata.sol";
import {Context} from "./Context.sol";
import {IERC20Errors} from "./draft-IERC6093.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}.
 *
 * 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.
 *
 * 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 ERC may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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 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}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the ERC. 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 `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));
        }
        _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:
     * ```
     * 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);
            }
        }
    }
}

File 4 of 7: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

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);
}

File 5 of 7: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";

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

File 6 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "./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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"to","type":"address"}],"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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"token","type":"address"}],"name":"extractPaymentToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"extractValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"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"}]

608060405234801562000010575f80fd5b5060405162001d7538038062001d75833981810160405281019062000036919062000666565b33838381600390816200004a919062000934565b5080600490816200005c919062000934565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000d2575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000c9919062000a29565b60405180910390fd5b620000e3816200010f60201b60201c565b505f6aa56fa5b99019a5c80000009050620001058282620001d260201b60201c565b5050505062000b12565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000245575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200023c919062000a29565b60405180910390fd5b620002585f83836200025c60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620002b0578060025f828254620002a3919062000a71565b9250508190555062000381565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156200033c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620003339392919062000abc565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003ca578060025f828254039250508190555062000414565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000473919062000af7565b60405180910390a3505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620004e18262000499565b810181811067ffffffffffffffff82111715620005035762000502620004a9565b5b80604052505050565b5f6200051762000480565b9050620005258282620004d6565b919050565b5f67ffffffffffffffff821115620005475762000546620004a9565b5b620005528262000499565b9050602081019050919050565b5f5b838110156200057e57808201518184015260208101905062000561565b5f8484015250505050565b5f6200059f62000599846200052a565b6200050c565b905082815260208101848484011115620005be57620005bd62000495565b5b620005cb8482856200055f565b509392505050565b5f82601f830112620005ea57620005e962000491565b5b8151620005fc84826020860162000589565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620006308262000605565b9050919050565b620006428162000624565b81146200064d575f80fd5b50565b5f81519050620006608162000637565b92915050565b5f805f6060848603121562000680576200067f62000489565b5b5f84015167ffffffffffffffff811115620006a0576200069f6200048d565b5b620006ae86828701620005d3565b935050602084015167ffffffffffffffff811115620006d257620006d16200048d565b5b620006e086828701620005d3565b9250506040620006f38682870162000650565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200074c57607f821691505b60208210810362000762576200076162000707565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007c67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000789565b620007d2868362000789565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200081c620008166200081084620007ea565b620007f3565b620007ea565b9050919050565b5f819050919050565b6200083783620007fc565b6200084f620008468262000823565b84845462000795565b825550505050565b5f90565b6200086562000857565b620008728184846200082c565b505050565b5b8181101562000899576200088d5f826200085b565b60018101905062000878565b5050565b601f821115620008e857620008b28162000768565b620008bd846200077a565b81016020851015620008cd578190505b620008e5620008dc856200077a565b83018262000877565b50505b505050565b5f82821c905092915050565b5f6200090a5f1984600802620008ed565b1980831691505092915050565b5f620009248383620008f9565b9150826002028217905092915050565b6200093f82620006fd565b67ffffffffffffffff8111156200095b576200095a620004a9565b5b62000967825462000734565b620009748282856200089d565b5f60209050601f831160018114620009aa575f841562000995578287015190505b620009a1858262000917565b86555062000a10565b601f198416620009ba8662000768565b5f5b82811015620009e357848901518255600182019150602085019450602081019050620009bc565b8683101562000a035784890151620009ff601f891682620008f9565b8355505b6001600288020188555050505b505050505050565b62000a238162000624565b82525050565b5f60208201905062000a3e5f83018462000a18565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000a7d82620007ea565b915062000a8a83620007ea565b925082820190508082111562000aa55762000aa462000a44565b5b92915050565b62000ab681620007ea565b82525050565b5f60608201905062000ad15f83018662000a18565b62000ae0602083018562000aab565b62000aef604083018462000aab565b949350505050565b5f60208201905062000b0c5f83018462000aab565b92915050565b6112558062000b205f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b4114610224578063a9059cbb14610242578063dd62ed3e14610272578063f2fde38b146102a2576100e8565b806370a08231146101cc578063715018a6146101fc5780638da5cb5b14610206576100e8565b806318160ddd116100c657806318160ddd146101445780631decf73f1461016257806323b872dd1461017e578063313ce567146101ae576100e8565b806306fdde03146100ec578063095ea7b31461010a578063131c45211461013a575b5f80fd5b6100f46102be565b6040516101019190610e14565b60405180910390f35b610124600480360381019061011f9190610ec5565b61034e565b6040516101319190610f1d565b60405180910390f35b610142610370565b005b61014c6103be565b6040516101599190610f45565b60405180910390f35b61017c60048036038101906101779190610f5e565b6103c7565b005b61019860048036038101906101939190610f9c565b61044f565b6040516101a59190610f1d565b60405180910390f35b6101b661047d565b6040516101c39190611007565b60405180910390f35b6101e660048036038101906101e19190611020565b610485565b6040516101f39190610f45565b60405180910390f35b6102046104ca565b005b61020e6104dd565b60405161021b919061105a565b60405180910390f35b61022c610505565b6040516102399190610e14565b60405180910390f35b61025c60048036038101906102579190610ec5565b610595565b6040516102699190610f1d565b60405180910390f35b61028c60048036038101906102879190611073565b6105b7565b6040516102999190610f45565b60405180910390f35b6102bc60048036038101906102b79190611020565b610639565b005b6060600380546102cd906110de565b80601f01602080910402602001604051908101604052809291908181526020018280546102f9906110de565b80156103445780601f1061031b57610100808354040283529160200191610344565b820191905f5260205f20905b81548152906001019060200180831161032757829003601f168201915b5050505050905090565b5f806103586106bd565b90506103658185856106c4565b600191505092915050565b6103786106d6565b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156103bb573d5f803e3d5ffd5b50565b5f600254905090565b6103cf6106d6565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b815260040161040a92919061110e565b6020604051808303815f875af1158015610426573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061044a919061115f565b505050565b5f806104596106bd565b905061046685828561075d565b6104718585856107ef565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104d26106d6565b6104db5f6108df565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610514906110de565b80601f0160208091040260200160405190810160405280929190818152602001828054610540906110de565b801561058b5780601f106105625761010080835404028352916020019161058b565b820191905f5260205f20905b81548152906001019060200180831161056e57829003601f168201915b5050505050905090565b5f8061059f6106bd565b90506105ac8185856107ef565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106416106d6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106b1575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106a8919061105a565b60405180910390fd5b6106ba816108df565b50565b5f33905090565b6106d183838360016109a2565b505050565b6106de6106bd565b73ffffffffffffffffffffffffffffffffffffffff166106fc6104dd565b73ffffffffffffffffffffffffffffffffffffffff161461075b5761071f6106bd565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610752919061105a565b60405180910390fd5b565b5f61076884846105b7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107e957818110156107da578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107d19392919061118a565b60405180910390fd5b6107e884848484035f6109a2565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361085f575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610856919061105a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108cf575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108c6919061105a565b60405180910390fd5b6108da838383610b71565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a12575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a09919061105a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a82575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a79919061105a565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b6b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b629190610f45565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc1578060025f828254610bb591906111ec565b92505081905550610c8f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c4a578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c419392919061118a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd6578060025f8282540392505081905550610d20565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d7d9190610f45565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610dc1578082015181840152602081019050610da6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610de682610d8a565b610df08185610d94565b9350610e00818560208601610da4565b610e0981610dcc565b840191505092915050565b5f6020820190508181035f830152610e2c8184610ddc565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e6182610e38565b9050919050565b610e7181610e57565b8114610e7b575f80fd5b50565b5f81359050610e8c81610e68565b92915050565b5f819050919050565b610ea481610e92565b8114610eae575f80fd5b50565b5f81359050610ebf81610e9b565b92915050565b5f8060408385031215610edb57610eda610e34565b5b5f610ee885828601610e7e565b9250506020610ef985828601610eb1565b9150509250929050565b5f8115159050919050565b610f1781610f03565b82525050565b5f602082019050610f305f830184610f0e565b92915050565b610f3f81610e92565b82525050565b5f602082019050610f585f830184610f36565b92915050565b5f8060408385031215610f7457610f73610e34565b5b5f610f8185828601610eb1565b9250506020610f9285828601610e7e565b9150509250929050565b5f805f60608486031215610fb357610fb2610e34565b5b5f610fc086828701610e7e565b9350506020610fd186828701610e7e565b9250506040610fe286828701610eb1565b9150509250925092565b5f60ff82169050919050565b61100181610fec565b82525050565b5f60208201905061101a5f830184610ff8565b92915050565b5f6020828403121561103557611034610e34565b5b5f61104284828501610e7e565b91505092915050565b61105481610e57565b82525050565b5f60208201905061106d5f83018461104b565b92915050565b5f806040838503121561108957611088610e34565b5b5f61109685828601610e7e565b92505060206110a785828601610e7e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806110f557607f821691505b602082108103611108576111076110b1565b5b50919050565b5f6040820190506111215f83018561104b565b61112e6020830184610f36565b9392505050565b61113e81610f03565b8114611148575f80fd5b50565b5f8151905061115981611135565b92915050565b5f6020828403121561117457611173610e34565b5b5f6111818482850161114b565b91505092915050565b5f60608201905061119d5f83018661104b565b6111aa6020830185610f36565b6111b76040830184610f36565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6111f682610e92565b915061120183610e92565b9250828201905080821115611219576112186111bf565b5b9291505056fea2646970667358221220debc62177e6b78dfa456feadcae497a3c6646f6cad496b101ff88f9dcff3fb1c64736f6c63430008170033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000ca5931efcf40c5ae2f00cef46a7fa6f91f2eaa070000000000000000000000000000000000000000000000000000000000000010436974697a656e20436f6e666c6963740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044349544900000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b4114610224578063a9059cbb14610242578063dd62ed3e14610272578063f2fde38b146102a2576100e8565b806370a08231146101cc578063715018a6146101fc5780638da5cb5b14610206576100e8565b806318160ddd116100c657806318160ddd146101445780631decf73f1461016257806323b872dd1461017e578063313ce567146101ae576100e8565b806306fdde03146100ec578063095ea7b31461010a578063131c45211461013a575b5f80fd5b6100f46102be565b6040516101019190610e14565b60405180910390f35b610124600480360381019061011f9190610ec5565b61034e565b6040516101319190610f1d565b60405180910390f35b610142610370565b005b61014c6103be565b6040516101599190610f45565b60405180910390f35b61017c60048036038101906101779190610f5e565b6103c7565b005b61019860048036038101906101939190610f9c565b61044f565b6040516101a59190610f1d565b60405180910390f35b6101b661047d565b6040516101c39190611007565b60405180910390f35b6101e660048036038101906101e19190611020565b610485565b6040516101f39190610f45565b60405180910390f35b6102046104ca565b005b61020e6104dd565b60405161021b919061105a565b60405180910390f35b61022c610505565b6040516102399190610e14565b60405180910390f35b61025c60048036038101906102579190610ec5565b610595565b6040516102699190610f1d565b60405180910390f35b61028c60048036038101906102879190611073565b6105b7565b6040516102999190610f45565b60405180910390f35b6102bc60048036038101906102b79190611020565b610639565b005b6060600380546102cd906110de565b80601f01602080910402602001604051908101604052809291908181526020018280546102f9906110de565b80156103445780601f1061031b57610100808354040283529160200191610344565b820191905f5260205f20905b81548152906001019060200180831161032757829003601f168201915b5050505050905090565b5f806103586106bd565b90506103658185856106c4565b600191505092915050565b6103786106d6565b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156103bb573d5f803e3d5ffd5b50565b5f600254905090565b6103cf6106d6565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b815260040161040a92919061110e565b6020604051808303815f875af1158015610426573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061044a919061115f565b505050565b5f806104596106bd565b905061046685828561075d565b6104718585856107ef565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104d26106d6565b6104db5f6108df565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610514906110de565b80601f0160208091040260200160405190810160405280929190818152602001828054610540906110de565b801561058b5780601f106105625761010080835404028352916020019161058b565b820191905f5260205f20905b81548152906001019060200180831161056e57829003601f168201915b5050505050905090565b5f8061059f6106bd565b90506105ac8185856107ef565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106416106d6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106b1575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106a8919061105a565b60405180910390fd5b6106ba816108df565b50565b5f33905090565b6106d183838360016109a2565b505050565b6106de6106bd565b73ffffffffffffffffffffffffffffffffffffffff166106fc6104dd565b73ffffffffffffffffffffffffffffffffffffffff161461075b5761071f6106bd565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610752919061105a565b60405180910390fd5b565b5f61076884846105b7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107e957818110156107da578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107d19392919061118a565b60405180910390fd5b6107e884848484035f6109a2565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361085f575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610856919061105a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108cf575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108c6919061105a565b60405180910390fd5b6108da838383610b71565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a12575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a09919061105a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a82575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a79919061105a565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b6b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b629190610f45565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc1578060025f828254610bb591906111ec565b92505081905550610c8f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c4a578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c419392919061118a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd6578060025f8282540392505081905550610d20565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d7d9190610f45565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610dc1578082015181840152602081019050610da6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610de682610d8a565b610df08185610d94565b9350610e00818560208601610da4565b610e0981610dcc565b840191505092915050565b5f6020820190508181035f830152610e2c8184610ddc565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e6182610e38565b9050919050565b610e7181610e57565b8114610e7b575f80fd5b50565b5f81359050610e8c81610e68565b92915050565b5f819050919050565b610ea481610e92565b8114610eae575f80fd5b50565b5f81359050610ebf81610e9b565b92915050565b5f8060408385031215610edb57610eda610e34565b5b5f610ee885828601610e7e565b9250506020610ef985828601610eb1565b9150509250929050565b5f8115159050919050565b610f1781610f03565b82525050565b5f602082019050610f305f830184610f0e565b92915050565b610f3f81610e92565b82525050565b5f602082019050610f585f830184610f36565b92915050565b5f8060408385031215610f7457610f73610e34565b5b5f610f8185828601610eb1565b9250506020610f9285828601610e7e565b9150509250929050565b5f805f60608486031215610fb357610fb2610e34565b5b5f610fc086828701610e7e565b9350506020610fd186828701610e7e565b9250506040610fe286828701610eb1565b9150509250925092565b5f60ff82169050919050565b61100181610fec565b82525050565b5f60208201905061101a5f830184610ff8565b92915050565b5f6020828403121561103557611034610e34565b5b5f61104284828501610e7e565b91505092915050565b61105481610e57565b82525050565b5f60208201905061106d5f83018461104b565b92915050565b5f806040838503121561108957611088610e34565b5b5f61109685828601610e7e565b92505060206110a785828601610e7e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806110f557607f821691505b602082108103611108576111076110b1565b5b50919050565b5f6040820190506111215f83018561104b565b61112e6020830184610f36565b9392505050565b61113e81610f03565b8114611148575f80fd5b50565b5f8151905061115981611135565b92915050565b5f6020828403121561117457611173610e34565b5b5f6111818482850161114b565b91505092915050565b5f60608201905061119d5f83018661104b565b6111aa6020830185610f36565b6111b76040830184610f36565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6111f682610e92565b915061120183610e92565b9250828201905080821115611219576112186111bf565b5b9291505056fea2646970667358221220debc62177e6b78dfa456feadcae497a3c6646f6cad496b101ff88f9dcff3fb1c64736f6c63430008170033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000ca5931efcf40c5ae2f00cef46a7fa6f91f2eaa070000000000000000000000000000000000000000000000000000000000000010436974697a656e20436f6e666c6963740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044349544900000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Citizen Conflict
Arg [1] : _symbol (string): CITI
Arg [2] : to (address): 0xCA5931EFcf40c5Ae2F00cEf46A7fa6F91F2eAA07

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000ca5931efcf40c5ae2f00cef46a7fa6f91f2eaa07
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [4] : 436974697a656e20436f6e666c69637400000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4349544900000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

249:505:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2096:91:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4389:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;638:113:6;;;:::i;:::-;;3198:99:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;490:140:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5157:249:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3049:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3360:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2361:103:4;;;:::i;:::-;;1686:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2306:95:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3683:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3928:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2619:220:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2096:91:1;2141:13;2174:5;2167:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2096:91;:::o;4389:190::-;4462:4;4479:13;4495:12;:10;:12::i;:::-;4479:28;;4518:31;4527:5;4534:7;4543:5;4518:8;:31::i;:::-;4567:4;4560:11;;;4389:190;;;;:::o;638:113:6:-;1572:13:4;:11;:13::i;:::-;700:10:6::1;692:28;;:51;721:21;692:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;638:113::o:0;3198:99:1:-;3250:7;3277:12;;3270:19;;3198:99;:::o;490:140:6:-;1572:13:4;:11;:13::i;:::-;587:5:6::1;580:22;;;603:10;615:6;580:42;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;490:140:::0;;:::o;5157:249:1:-;5244:4;5261:15;5279:12;:10;:12::i;:::-;5261:30;;5302:37;5318:4;5324:7;5333:5;5302:15;:37::i;:::-;5350:26;5360:4;5366:2;5370:5;5350:9;:26::i;:::-;5394:4;5387:11;;;5157:249;;;;;:::o;3049:84::-;3098:5;3123:2;3116:9;;3049:84;:::o;3360:118::-;3425:7;3452:9;:18;3462:7;3452:18;;;;;;;;;;;;;;;;3445:25;;3360:118;;;:::o;2361:103:4:-;1572:13;:11;:13::i;:::-;2426:30:::1;2453:1;2426:18;:30::i;:::-;2361:103::o:0;1686:87::-;1732:7;1759:6;;;;;;;;;;;1752:13;;1686:87;:::o;2306:95:1:-;2353:13;2386:7;2379:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2306:95;:::o;3683:182::-;3752:4;3769:13;3785:12;:10;:12::i;:::-;3769:28;;3808:27;3818:5;3825:2;3829:5;3808:9;:27::i;:::-;3853:4;3846:11;;;3683:182;;;;:::o;3928:142::-;4008:7;4035:11;:18;4047:5;4035:18;;;;;;;;;;;;;;;:27;4054:7;4035:27;;;;;;;;;;;;;;;;4028:34;;3928:142;;;;:::o;2619:220:4:-;1572:13;:11;:13::i;:::-;2724:1:::1;2704:22;;:8;:22;;::::0;2700:93:::1;;2778:1;2750:31;;;;;;;;;;;:::i;:::-;;;;;;;;2700:93;2803:28;2822:8;2803:18;:28::i;:::-;2619:220:::0;:::o;672:98:0:-;725:7;752:10;745:17;;672:98;:::o;9216:130:1:-;9301:37;9310:5;9317:7;9326:5;9333:4;9301:8;:37::i;:::-;9216:130;;;:::o;1851:166:4:-;1922:12;:10;:12::i;:::-;1911:23;;:7;:5;:7::i;:::-;:23;;;1907:103;;1985:12;:10;:12::i;:::-;1958:40;;;;;;;;;;;:::i;:::-;;;;;;;;1907:103;1851:166::o;10932:487:1:-;11032:24;11059:25;11069:5;11076:7;11059:9;:25::i;:::-;11032:52;;11119:17;11099:16;:37;11095:317;;11176:5;11157:16;:24;11153:132;;;11236:7;11245:16;11263:5;11209:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;11153:132;11328:57;11337:5;11344:7;11372:5;11353:16;:24;11379:5;11328:8;:57::i;:::-;11095:317;11021:398;10932:487;;;:::o;5791:308::-;5891:1;5875:18;;:4;:18;;;5871:88;;5944:1;5917:30;;;;;;;;;;;:::i;:::-;;;;;;;;5871:88;5987:1;5973:16;;:2;:16;;;5969:88;;6042:1;6013:32;;;;;;;;;;;:::i;:::-;;;;;;;;5969:88;6067:24;6075:4;6081:2;6085:5;6067:7;:24::i;:::-;5791:308;;;:::o;2999:191:4:-;3073:16;3092:6;;;;;;;;;;;3073:25;;3118:8;3109:6;;:17;;;;;;;;;;;;;;;;;;3173:8;3142:40;;3163:8;3142:40;;;;;;;;;;;;3062:128;2999:191;:::o;10197:443:1:-;10327:1;10310:19;;:5;:19;;;10306:91;;10382:1;10353:32;;;;;;;;;;;:::i;:::-;;;;;;;;10306:91;10430:1;10411:21;;:7;:21;;;10407:92;;10484:1;10456:31;;;;;;;;;;;:::i;:::-;;;;;;;;10407:92;10539:5;10509:11;:18;10521:5;10509:18;;;;;;;;;;;;;;;:27;10528:7;10509:27;;;;;;;;;;;;;;;:35;;;;10559:9;10555:78;;;10606:7;10590:31;;10599:5;10590:31;;;10615:5;10590:31;;;;;;:::i;:::-;;;;;;;;10555:78;10197:443;;;;:::o;6423:1135::-;6529:1;6513:18;;:4;:18;;;6509:552;;6667:5;6651:12;;:21;;;;;;;:::i;:::-;;;;;;;;6509:552;;;6705:19;6727:9;:15;6737:4;6727:15;;;;;;;;;;;;;;;;6705:37;;6775:5;6761:11;:19;6757:117;;;6833:4;6839:11;6852:5;6808:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6757:117;7029:5;7015:11;:19;6997:9;:15;7007:4;6997:15;;;;;;;;;;;;;;;:37;;;;6690:371;6509:552;7091:1;7077:16;;:2;:16;;;7073:435;;7259:5;7243:12;;:21;;;;;;;;;;;7073:435;;;7476:5;7459:9;:13;7469:2;7459:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;7073:435;7540:2;7525:25;;7534:4;7525:25;;;7544:5;7525:25;;;;;;:::i;:::-;;;;;;;;6423:1135;;;:::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:474::-;3866:6;3874;3923:2;3911:9;3902:7;3898:23;3894:32;3891:119;;;3929:79;;:::i;:::-;3891:119;4049:1;4074:53;4119:7;4110:6;4099:9;4095:22;4074:53;:::i;:::-;4064:63;;4020:117;4176:2;4202:53;4247:7;4238:6;4227:9;4223:22;4202:53;:::i;:::-;4192:63;;4147:118;3798:474;;;;;:::o;4278:619::-;4355:6;4363;4371;4420:2;4408:9;4399:7;4395:23;4391:32;4388:119;;;4426:79;;:::i;:::-;4388:119;4546:1;4571:53;4616:7;4607:6;4596:9;4592:22;4571:53;:::i;:::-;4561:63;;4517:117;4673:2;4699:53;4744:7;4735:6;4724:9;4720:22;4699:53;:::i;:::-;4689:63;;4644:118;4801:2;4827:53;4872:7;4863:6;4852:9;4848:22;4827:53;:::i;:::-;4817:63;;4772:118;4278:619;;;;;:::o;4903:86::-;4938:7;4978:4;4971:5;4967:16;4956:27;;4903:86;;;:::o;4995:112::-;5078:22;5094:5;5078:22;:::i;:::-;5073:3;5066:35;4995:112;;:::o;5113:214::-;5202:4;5240:2;5229:9;5225:18;5217:26;;5253:67;5317:1;5306:9;5302:17;5293:6;5253:67;:::i;:::-;5113:214;;;;:::o;5333:329::-;5392:6;5441:2;5429:9;5420:7;5416:23;5412:32;5409:119;;;5447:79;;:::i;:::-;5409:119;5567:1;5592:53;5637:7;5628:6;5617:9;5613:22;5592:53;:::i;:::-;5582:63;;5538:117;5333:329;;;;:::o;5668:118::-;5755:24;5773:5;5755:24;:::i;:::-;5750:3;5743:37;5668:118;;:::o;5792:222::-;5885:4;5923:2;5912:9;5908:18;5900:26;;5936:71;6004:1;5993:9;5989:17;5980:6;5936:71;:::i;:::-;5792:222;;;;:::o;6020:474::-;6088:6;6096;6145:2;6133:9;6124:7;6120:23;6116:32;6113:119;;;6151:79;;:::i;:::-;6113:119;6271:1;6296:53;6341:7;6332:6;6321:9;6317:22;6296:53;:::i;:::-;6286:63;;6242:117;6398:2;6424:53;6469:7;6460:6;6449:9;6445:22;6424:53;:::i;:::-;6414:63;;6369:118;6020:474;;;;;:::o;6500:180::-;6548:77;6545:1;6538:88;6645:4;6642:1;6635:15;6669:4;6666:1;6659:15;6686:320;6730:6;6767:1;6761:4;6757:12;6747:22;;6814:1;6808:4;6804:12;6835:18;6825:81;;6891:4;6883:6;6879:17;6869:27;;6825:81;6953:2;6945:6;6942:14;6922:18;6919:38;6916:84;;6972:18;;:::i;:::-;6916:84;6737:269;6686:320;;;:::o;7012:332::-;7133:4;7171:2;7160:9;7156:18;7148:26;;7184:71;7252:1;7241:9;7237:17;7228:6;7184:71;:::i;:::-;7265:72;7333:2;7322:9;7318:18;7309:6;7265:72;:::i;:::-;7012:332;;;;;:::o;7350:116::-;7420:21;7435:5;7420:21;:::i;:::-;7413:5;7410:32;7400:60;;7456:1;7453;7446:12;7400:60;7350:116;:::o;7472:137::-;7526:5;7557:6;7551:13;7542:22;;7573:30;7597:5;7573:30;:::i;:::-;7472:137;;;;:::o;7615:345::-;7682:6;7731:2;7719:9;7710:7;7706:23;7702:32;7699:119;;;7737:79;;:::i;:::-;7699:119;7857:1;7882:61;7935:7;7926:6;7915:9;7911:22;7882:61;:::i;:::-;7872:71;;7828:125;7615:345;;;;:::o;7966:442::-;8115:4;8153:2;8142:9;8138:18;8130:26;;8166:71;8234:1;8223:9;8219:17;8210:6;8166:71;:::i;:::-;8247:72;8315:2;8304:9;8300:18;8291:6;8247:72;:::i;:::-;8329;8397:2;8386:9;8382:18;8373:6;8329:72;:::i;:::-;7966:442;;;;;;:::o;8414:180::-;8462:77;8459:1;8452:88;8559:4;8556:1;8549:15;8583:4;8580:1;8573:15;8600:191;8640:3;8659:20;8677:1;8659:20;:::i;:::-;8654:25;;8693:20;8711:1;8693:20;:::i;:::-;8688:25;;8736:1;8733;8729:9;8722:16;;8757:3;8754:1;8751:10;8748:36;;;8764:18;;:::i;:::-;8748:36;8600:191;;;;:::o

Swarm Source

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