ETH Price: $2,178.61 (+2.14%)

Token

FOXYCO (FXC)
 

Overview

Max Total Supply

10,002,025.109 FXC

Holders

8

Transfers

-
0 (0%)

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
FXC

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion, MIT license
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol";

/**
 * @title FXC Token
 * @dev ERC-20 токен для криптовалюты FOXYCO (FXC)
 * 
 * Характеристики:
 * - Название: FOXYCO
 * - Символ: FXC
 * - Декimals: 18 (стандарт для ERC-20)
 * - Максимальная эмиссия: 21,000,000 FXC (как у Bitcoin)
 * - Собственник может паузить/возобновлять трансферы
 * - Собственник может сжигать токены
 */
contract FXC is ERC20, Ownable, ERC20Burnable, ERC20Pausable {
    // Максимальная эмиссия: 21,000,000 FXC (21000000 * 10^18)
    uint256 public constant MAX_SUPPLY = 21_000_000 * 10**18;
    
    // Флаг, показывающий, достигнута ли максимальная эмиссия
    bool public maxSupplyReached = false;
    
    // События
    event MaxSupplyReached(uint256 totalSupply);
    event BridgeMint(address indexed to, uint256 amount);
    event BridgeBurn(address indexed from, uint256 amount);
    
    /**
     * @dev Конструктор создает токен с начальной эмиссией
     * @param initialOwner Адрес, который получит права собственника
     * @param initialSupply Начальная эмиссия (например, для создания ликвидности)
     */
    constructor(
        address initialOwner,
        uint256 initialSupply
    ) ERC20("FOXYCO", "FXC") Ownable(initialOwner) {
        // Проверка, что начальная эмиссия не превышает максимальную
        require(initialSupply <= MAX_SUPPLY, "FXC: Initial supply exceeds max supply");
        
        // Если указана начальная эмиссия, выпускаем токены
        if (initialSupply > 0) {
            _mint(initialOwner, initialSupply);
            
            // Проверяем, достигнута ли максимальная эмиссия
            if (totalSupply() >= MAX_SUPPLY) {
                maxSupplyReached = true;
                emit MaxSupplyReached(MAX_SUPPLY);
            }
        }
    }
    
    /**
     * @dev Функция для выпуска токенов (только для собственника)
     * Используется для моста между блокчейнами или создания ликвидности
     * @param to Адрес получателя
     * @param amount Количество токенов для выпуска
     */
    function mint(address to, uint256 amount) public onlyOwner {
        require(!maxSupplyReached, "FXC: Max supply already reached");
        require(totalSupply() + amount <= MAX_SUPPLY, "FXC: Minting would exceed max supply");
        
        _mint(to, amount);
        
        // Проверяем, достигнута ли максимальная эмиссия после выпуска
        if (totalSupply() >= MAX_SUPPLY) {
            maxSupplyReached = true;
            emit MaxSupplyReached(MAX_SUPPLY);
        }
        
        emit BridgeMint(to, amount);
    }
    
    /**
     * @dev Функция для сжигания токенов через мост
     * Используется при конвертации ERC-20 обратно в нативный FXC
     * @param from Адрес отправителя
     * @param amount Количество токенов для сжигания
     */
    function bridgeBurn(address from, uint256 amount) public onlyOwner {
        _burn(from, amount);
        emit BridgeBurn(from, amount);
    }
    
    /**
     * @dev Пауза всех трансферов (только для собственника)
     * Используется в экстренных ситуациях
     */
    function pause() public onlyOwner {
        _pause();
    }
    
    /**
     * @dev Возобновление всех трансферов (только для собственника)
     */
    function unpause() public onlyOwner {
        _unpause();
    }
    
    /**
     * @dev Переопределяем функции трансфера для поддержки паузы
     */
    function _update(address from, address to, uint256 value)
        internal
        override(ERC20, ERC20Pausable)
    {
        super._update(from, to, value);
    }
    
    /**
     * @dev Получить информацию о токене
     * @return tokenName Название токена
     * @return tokenSymbol Символ токена
     * @return tokenDecimals Количество десятичных знаков
     * @return currentTotalSupply Текущая эмиссия
     * @return maxSupplyValue Максимальная эмиссия
     * @return maxSupplyReachedStatus Флаг достижения максимальной эмиссии
     */
    function getTokenInfo() public view returns (
        string memory tokenName,
        string memory tokenSymbol,
        uint8 tokenDecimals,
        uint256 currentTotalSupply,
        uint256 maxSupplyValue,
        bool maxSupplyReachedStatus
    ) {
        return (
            ERC20.name(),
            ERC20.symbol(),
            ERC20.decimals(),
            totalSupply(),
            MAX_SUPPLY,
            maxSupplyReached
        );
    }
}

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

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/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.
 */
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}.
     *
     * Both 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;
    }

    /// @inheritdoc IERC20
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

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

    /// @inheritdoc IERC20
    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));
        }
        _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);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;

import {ERC20} from "../ERC20.sol";
import {Context} from "../../../utils/Context.sol";

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

    /**
     * @dev Destroys a `value` amount of tokens from `account`, deducting from
     * the caller's allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}

File 6 of 10 : ERC20Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC20Pausable.sol)

pragma solidity ^0.8.20;

import {ERC20} from "../ERC20.sol";
import {Pausable} from "../../../utils/Pausable.sol";

/**
 * @dev ERC-20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * IMPORTANT: This contract does not include public pause and unpause functions. In
 * addition to inheriting this contract, you must define both functions, invoking the
 * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate
 * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will
 * make the contract pause mechanism of the contract unreachable, and thus unusable.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_update}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _update(address from, address to, uint256 value) internal virtual override whenNotPaused {
        super._update(from, to, value);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity >=0.6.2;

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)

pragma solidity >=0.4.16;

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (utils/Pausable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

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

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

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

    /**
     * @dev The operation failed because the contract is paused.
     */
    error EnforcedPause();

    /**
     * @dev The operation failed because the contract is not paused.
     */
    error ExpectedPause();

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

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        if (paused()) {
            revert EnforcedPause();
        }
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        if (!paused()) {
            revert ExpectedPause();
        }
    }

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"},{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"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":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","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":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BridgeBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BridgeMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"MaxSupplyReached","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bridgeBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenInfo","outputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint8","name":"tokenDecimals","type":"uint8"},{"internalType":"uint256","name":"currentTotalSupply","type":"uint256"},{"internalType":"uint256","name":"maxSupplyValue","type":"uint256"},{"internalType":"bool","name":"maxSupplyReachedStatus","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyReached","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526005805460ff60a81b191690553480156200001e57600080fd5b50604051620013c5380380620013c58339810160408190526200004191620003fa565b8160405180604001604052806006815260200165464f5859434f60d01b8152506040518060400160405280600381526020016246584360e81b81525081600390816200008e9190620004da565b5060046200009d8282620004da565b5050506001600160a01b038116620000d057604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620000db81620001d9565b506a115eec47f6cf7e35000000811115620001485760405162461bcd60e51b815260206004820152602660248201527f4658433a20496e697469616c20737570706c792065786365656473206d617820604482015265737570706c7960d01b6064820152608401620000c7565b8015620001d1576200015b82826200022b565b6a115eec47f6cf7e350000006200017160025490565b10620001d1576005805460ff60a81b1916600160a81b1790556040517ff9f8491526cc7cbcafba2f8dd5c03c2dfe0b847a44e6eefd30c87fc1b744ea3a90620001c8906a115eec47f6cf7e35000000815260200190565b60405180910390a15b5050620005ce565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002575760405163ec442f0560e01b815260006004820152602401620000c7565b620002656000838362000269565b5050565b620002768383836200027b565b505050565b6200028562000292565b62000276838383620002c7565b620002a6600554600160a01b900460ff1690565b15620002c55760405163d93c066560e01b815260040160405180910390fd5b565b6001600160a01b038316620002f6578060026000828254620002ea9190620005a6565b909155506200036a9050565b6001600160a01b038316600090815260208190526040902054818110156200034b5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000c7565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166200038857600280548290039055620003a7565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003ed91815260200190565b60405180910390a3505050565b600080604083850312156200040e57600080fd5b82516001600160a01b03811681146200042657600080fd5b6020939093015192949293505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200046157607f821691505b6020821081036200048257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200027657600081815260208120601f850160051c81016020861015620004b15750805b601f850160051c820191505b81811015620004d257828155600101620004bd565b505050505050565b81516001600160401b03811115620004f657620004f662000436565b6200050e816200050784546200044c565b8462000488565b602080601f8311600181146200054657600084156200052d5750858301515b600019600386901b1c1916600185901b178555620004d2565b600085815260208120601f198616915b82811015620005775788860151825594840194600190910190840162000556565b5085821015620005965787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620005c857634e487b7160e01b600052601160045260246000fd5b92915050565b610de780620005de6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b85780638da5cb5b1161007c5780638da5cb5b1461028357806395d89b411461029e578063a9059cbb146102a6578063abb1dc44146102b9578063dd62ed3e146102d3578063f2fde38b1461030c57600080fd5b8063715018a61461023957806371ff01b01461024157806374f4f5471461025557806379cc6790146102685780638456cb591461027b57600080fd5b806332cb6b0c1161010a57806332cb6b0c146101bc5780633f4ba83a146101ce57806340c10f19146101d857806342966c68146101eb5780635c975abb146101fe57806370a082311461021057600080fd5b806306fdde0314610147578063095ea7b31461016557806318160ddd1461018857806323b872dd1461019a578063313ce567146101ad575b600080fd5b61014f61031f565b60405161015c9190610c03565b60405180910390f35b610178610173366004610c39565b6103b1565b604051901515815260200161015c565b6002545b60405190815260200161015c565b6101786101a8366004610c63565b6103cb565b6040516012815260200161015c565b61018c6a115eec47f6cf7e3500000081565b6101d66103ef565b005b6101d66101e6366004610c39565b610401565b6101d66101f9366004610c9f565b6105a6565b600554600160a01b900460ff16610178565b61018c61021e366004610cb8565b6001600160a01b031660009081526020819052604090205490565b6101d66105b3565b60055461017890600160a81b900460ff1681565b6101d6610263366004610c39565b6105c5565b6101d6610276366004610c39565b610612565b6101d661062b565b6005546040516001600160a01b03909116815260200161015c565b61014f61063b565b6101786102b4366004610c39565b61064a565b6102c1610658565b60405161015c96959493929190610cd3565b61018c6102e1366004610d23565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101d661031a366004610cb8565b6106a2565b60606003805461032e90610d56565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90610d56565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b6000336103bf8185856106dd565b60019150505b92915050565b6000336103d98582856106ef565b6103e485858561076e565b506001949350505050565b6103f76107cd565b6103ff6107fa565b565b6104096107cd565b600554600160a81b900460ff16156104685760405162461bcd60e51b815260206004820152601f60248201527f4658433a204d617820737570706c7920616c726561647920726561636865640060448201526064015b60405180910390fd5b6a115eec47f6cf7e350000008161047e60025490565b6104889190610d90565b11156104e25760405162461bcd60e51b8152602060048201526024808201527f4658433a204d696e74696e6720776f756c6420657863656564206d617820737560448201526370706c7960e01b606482015260840161045f565b6104ec828261084f565b6a115eec47f6cf7e3500000061050160025490565b1061055f576005805460ff60a81b1916600160a81b1790556040517ff9f8491526cc7cbcafba2f8dd5c03c2dfe0b847a44e6eefd30c87fc1b744ea3a90610556906a115eec47f6cf7e35000000815260200190565b60405180910390a15b816001600160a01b03167f397b33b307fc137878ebfc75b295289ec0ee25a31bb5bf034f33256fe8ea2aa68260405161059a91815260200190565b60405180910390a25050565b6105b03382610885565b50565b6105bb6107cd565b6103ff60006108bb565b6105cd6107cd565b6105d78282610885565b816001600160a01b03167f9b5b9a05e4726d8bb959f1440e05c6b8109443f2083bc4e386237d76545265538260405161059a91815260200190565b61061d8233836106ef565b6106278282610885565b5050565b6106336107cd565b6103ff61090d565b60606004805461032e90610d56565b6000336103bf81858561076e565b60608060008060008061066961031f565b61067161063b565b6012600254600554939a92995090975095506a115eec47f6cf7e350000009450600160a81b90910460ff1692509050565b6106aa6107cd565b6001600160a01b0381166106d457604051631e4fbdf760e01b81526000600482015260240161045f565b6105b0816108bb565b6106ea8383836001610950565b505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811015610768578181101561075957604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161045f565b61076884848484036000610950565b50505050565b6001600160a01b03831661079857604051634b637e8f60e11b81526000600482015260240161045f565b6001600160a01b0382166107c25760405163ec442f0560e01b81526000600482015260240161045f565b6106ea838383610a25565b6005546001600160a01b031633146103ff5760405163118cdaa760e01b815233600482015260240161045f565b610802610a30565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166108795760405163ec442f0560e01b81526000600482015260240161045f565b61062760008383610a25565b6001600160a01b0382166108af57604051634b637e8f60e11b81526000600482015260240161045f565b61062782600083610a25565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610915610a5a565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586108323390565b6001600160a01b03841661097a5760405163e602df0560e01b81526000600482015260240161045f565b6001600160a01b0383166109a457604051634a1406b160e11b81526000600482015260240161045f565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561076857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a1791815260200190565b60405180910390a350505050565b6106ea838383610a85565b600554600160a01b900460ff166103ff57604051638dfc202b60e01b815260040160405180910390fd5b600554600160a01b900460ff16156103ff5760405163d93c066560e01b815260040160405180910390fd5b610a8d610a5a565b6106ea8383836001600160a01b038316610abe578060026000828254610ab39190610d90565b90915550610b309050565b6001600160a01b03831660009081526020819052604090205481811015610b115760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161045f565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610b4c57600280548290039055610b6b565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bb091815260200190565b60405180910390a3505050565b6000815180845260005b81811015610be357602081850181015186830182015201610bc7565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000610c166020830184610bbd565b9392505050565b80356001600160a01b0381168114610c3457600080fd5b919050565b60008060408385031215610c4c57600080fd5b610c5583610c1d565b946020939093013593505050565b600080600060608486031215610c7857600080fd5b610c8184610c1d565b9250610c8f60208501610c1d565b9150604084013590509250925092565b600060208284031215610cb157600080fd5b5035919050565b600060208284031215610cca57600080fd5b610c1682610c1d565b60c081526000610ce660c0830189610bbd565b8281036020840152610cf88189610bbd565b91505060ff8616604083015284606083015283608083015282151560a0830152979650505050505050565b60008060408385031215610d3657600080fd5b610d3f83610c1d565b9150610d4d60208401610c1d565b90509250929050565b600181811c90821680610d6a57607f821691505b602082108103610d8a57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103c557634e487b7160e01b600052601160045260246000fdfea2646970667358221220a3d8e19fa78329fc168a44e53a001ec2644ee05988adac3d81366635a25fcb1464736f6c634300081400330000000000000000000000003a7242bb218a86f5f275cbb5f48871a2beb8683e0000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b85780638da5cb5b1161007c5780638da5cb5b1461028357806395d89b411461029e578063a9059cbb146102a6578063abb1dc44146102b9578063dd62ed3e146102d3578063f2fde38b1461030c57600080fd5b8063715018a61461023957806371ff01b01461024157806374f4f5471461025557806379cc6790146102685780638456cb591461027b57600080fd5b806332cb6b0c1161010a57806332cb6b0c146101bc5780633f4ba83a146101ce57806340c10f19146101d857806342966c68146101eb5780635c975abb146101fe57806370a082311461021057600080fd5b806306fdde0314610147578063095ea7b31461016557806318160ddd1461018857806323b872dd1461019a578063313ce567146101ad575b600080fd5b61014f61031f565b60405161015c9190610c03565b60405180910390f35b610178610173366004610c39565b6103b1565b604051901515815260200161015c565b6002545b60405190815260200161015c565b6101786101a8366004610c63565b6103cb565b6040516012815260200161015c565b61018c6a115eec47f6cf7e3500000081565b6101d66103ef565b005b6101d66101e6366004610c39565b610401565b6101d66101f9366004610c9f565b6105a6565b600554600160a01b900460ff16610178565b61018c61021e366004610cb8565b6001600160a01b031660009081526020819052604090205490565b6101d66105b3565b60055461017890600160a81b900460ff1681565b6101d6610263366004610c39565b6105c5565b6101d6610276366004610c39565b610612565b6101d661062b565b6005546040516001600160a01b03909116815260200161015c565b61014f61063b565b6101786102b4366004610c39565b61064a565b6102c1610658565b60405161015c96959493929190610cd3565b61018c6102e1366004610d23565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101d661031a366004610cb8565b6106a2565b60606003805461032e90610d56565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90610d56565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b6000336103bf8185856106dd565b60019150505b92915050565b6000336103d98582856106ef565b6103e485858561076e565b506001949350505050565b6103f76107cd565b6103ff6107fa565b565b6104096107cd565b600554600160a81b900460ff16156104685760405162461bcd60e51b815260206004820152601f60248201527f4658433a204d617820737570706c7920616c726561647920726561636865640060448201526064015b60405180910390fd5b6a115eec47f6cf7e350000008161047e60025490565b6104889190610d90565b11156104e25760405162461bcd60e51b8152602060048201526024808201527f4658433a204d696e74696e6720776f756c6420657863656564206d617820737560448201526370706c7960e01b606482015260840161045f565b6104ec828261084f565b6a115eec47f6cf7e3500000061050160025490565b1061055f576005805460ff60a81b1916600160a81b1790556040517ff9f8491526cc7cbcafba2f8dd5c03c2dfe0b847a44e6eefd30c87fc1b744ea3a90610556906a115eec47f6cf7e35000000815260200190565b60405180910390a15b816001600160a01b03167f397b33b307fc137878ebfc75b295289ec0ee25a31bb5bf034f33256fe8ea2aa68260405161059a91815260200190565b60405180910390a25050565b6105b03382610885565b50565b6105bb6107cd565b6103ff60006108bb565b6105cd6107cd565b6105d78282610885565b816001600160a01b03167f9b5b9a05e4726d8bb959f1440e05c6b8109443f2083bc4e386237d76545265538260405161059a91815260200190565b61061d8233836106ef565b6106278282610885565b5050565b6106336107cd565b6103ff61090d565b60606004805461032e90610d56565b6000336103bf81858561076e565b60608060008060008061066961031f565b61067161063b565b6012600254600554939a92995090975095506a115eec47f6cf7e350000009450600160a81b90910460ff1692509050565b6106aa6107cd565b6001600160a01b0381166106d457604051631e4fbdf760e01b81526000600482015260240161045f565b6105b0816108bb565b6106ea8383836001610950565b505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811015610768578181101561075957604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161045f565b61076884848484036000610950565b50505050565b6001600160a01b03831661079857604051634b637e8f60e11b81526000600482015260240161045f565b6001600160a01b0382166107c25760405163ec442f0560e01b81526000600482015260240161045f565b6106ea838383610a25565b6005546001600160a01b031633146103ff5760405163118cdaa760e01b815233600482015260240161045f565b610802610a30565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166108795760405163ec442f0560e01b81526000600482015260240161045f565b61062760008383610a25565b6001600160a01b0382166108af57604051634b637e8f60e11b81526000600482015260240161045f565b61062782600083610a25565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610915610a5a565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586108323390565b6001600160a01b03841661097a5760405163e602df0560e01b81526000600482015260240161045f565b6001600160a01b0383166109a457604051634a1406b160e11b81526000600482015260240161045f565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561076857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a1791815260200190565b60405180910390a350505050565b6106ea838383610a85565b600554600160a01b900460ff166103ff57604051638dfc202b60e01b815260040160405180910390fd5b600554600160a01b900460ff16156103ff5760405163d93c066560e01b815260040160405180910390fd5b610a8d610a5a565b6106ea8383836001600160a01b038316610abe578060026000828254610ab39190610d90565b90915550610b309050565b6001600160a01b03831660009081526020819052604090205481811015610b115760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161045f565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610b4c57600280548290039055610b6b565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bb091815260200190565b60405180910390a3505050565b6000815180845260005b81811015610be357602081850181015186830182015201610bc7565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000610c166020830184610bbd565b9392505050565b80356001600160a01b0381168114610c3457600080fd5b919050565b60008060408385031215610c4c57600080fd5b610c5583610c1d565b946020939093013593505050565b600080600060608486031215610c7857600080fd5b610c8184610c1d565b9250610c8f60208501610c1d565b9150604084013590509250925092565b600060208284031215610cb157600080fd5b5035919050565b600060208284031215610cca57600080fd5b610c1682610c1d565b60c081526000610ce660c0830189610bbd565b8281036020840152610cf88189610bbd565b91505060ff8616604083015284606083015283608083015282151560a0830152979650505050505050565b60008060408385031215610d3657600080fd5b610d3f83610c1d565b9150610d4d60208401610c1d565b90509250929050565b600181811c90821680610d6a57607f821691505b602082108103610d8a57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103c557634e487b7160e01b600052601160045260246000fdfea2646970667358221220a3d8e19fa78329fc168a44e53a001ec2644ee05988adac3d81366635a25fcb1464736f6c63430008140033

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

0000000000000000000000003a7242bb218a86f5f275cbb5f48871a2beb8683e0000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x3a7242BB218A86F5F275cbB5f48871a2bEB8683e
Arg [1] : initialSupply (uint256): 0

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000003a7242bb218a86f5f275cbb5f48871a2beb8683e
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

807:4946:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3902:186;;;;;;:::i;:::-;;:::i;:::-;;;1269:14:10;;1262:22;1244:41;;1232:2;1217:18;3902:186:2;1104:187:10;2803:97:2;2881:12;;2803:97;;;1442:25:10;;;1430:2;1415:18;2803:97:2;1296:177:10;4680:244:2;;;;;;:::i;:::-;;:::i;2688:82::-;;;2761:2;1953:36:10;;1941:2;1926:18;2688:82:2;1811:184:10;956:56:9;;993:19;956:56;;4407:63;;;:::i;:::-;;2926:583;;;;;;:::i;:::-;;:::i;618:87:4:-;;;;;;:::i;:::-;;:::i;1726:84:8:-;1796:7;;-1:-1:-1;;;1796:7:8;;;;1726:84;;2933:116:2;;;;;;:::i;:::-;-1:-1:-1;;;;;3024:18:2;2998:7;3024:18;;;;;;;;;;;;2933:116;2293:101:0;;;:::i;1132:36:9:-;;;;;-1:-1:-1;;;1132:36:9;;;;;;3863:142;;;;;;:::i;:::-;;:::i;1021:158:4:-;;;;;;:::i;:::-;;:::i;4206:59:9:-;;;:::i;1638:85:0:-;1710:6;;1638:85;;-1:-1:-1;;;;;1710:6:0;;;2522:51:10;;2510:2;2495:18;1638:85:0;2376:203:10;1962:93:2;;;:::i;3244:178::-;;;;;;:::i;:::-;;:::i;5299:452:9:-;;;:::i;:::-;;;;;;;;;;;;:::i;3455:140:2:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3561:18:2;;;3535:7;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3455:140;2543:215:0;;;;;;:::i;:::-;;:::i;1760:89:2:-;1805:13;1837:5;1830:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89;:::o;3902:186::-;3975:4;735:10:7;4029:31:2;735:10:7;4045:7:2;4054:5;4029:8;:31::i;:::-;4077:4;4070:11;;;3902:186;;;;;:::o;4680:244::-;4767:4;735:10:7;4823:37:2;4839:4;735:10:7;4854:5:2;4823:15;:37::i;:::-;4870:26;4880:4;4886:2;4890:5;4870:9;:26::i;:::-;-1:-1:-1;4913:4:2;;4680:244;-1:-1:-1;;;;4680:244:2:o;4407:63:9:-;1531:13:0;:11;:13::i;:::-;4453:10:9::1;:8;:10::i;:::-;4407:63::o:0;2926:583::-;1531:13:0;:11;:13::i;:::-;3004:16:9::1;::::0;-1:-1:-1;;;3004:16:9;::::1;;;3003:17;2995:61;;;::::0;-1:-1:-1;;;2995:61:9;;4129:2:10;2995:61:9::1;::::0;::::1;4111:21:10::0;4168:2;4148:18;;;4141:30;4207:33;4187:18;;;4180:61;4258:18;;2995:61:9::1;;;;;;;;;993:19;3090:6;3074:13;2881:12:2::0;;;2803:97;3074:13:9::1;:22;;;;:::i;:::-;:36;;3066:85;;;::::0;-1:-1:-1;;;3066:85:9;;4716:2:10;3066:85:9::1;::::0;::::1;4698:21:10::0;4755:2;4735:18;;;4728:30;4794:34;4774:18;;;4767:62;-1:-1:-1;;;4845:18:10;;;4838:34;4889:19;;3066:85:9::1;4514:400:10::0;3066:85:9::1;3170:17;3176:2;3180:6;3170:5;:17::i;:::-;993:19;3333:13;2881:12:2::0;;;2803:97;3333:13:9::1;:27;3329:128;;3376:16;:23:::0;;-1:-1:-1;;;;3376:23:9::1;-1:-1:-1::0;;;3376:23:9::1;::::0;;3418:28:::1;::::0;::::1;::::0;::::1;::::0;993:19:::1;1442:25:10::0;;1430:2;1415:18;;1296:177;3418:28:9::1;;;;;;;;3329:128;3491:2;-1:-1:-1::0;;;;;3480:22:9::1;;3495:6;3480:22;;;;1442:25:10::0;;1430:2;1415:18;;1296:177;3480:22:9::1;;;;;;;;2926:583:::0;;:::o;618:87:4:-;672:26;735:10:7;692:5:4;672;:26::i;:::-;618:87;:::o;2293:101:0:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;3863:142:9:-:0;1531:13:0;:11;:13::i;:::-;3940:19:9::1;3946:4;3952:6;3940:5;:19::i;:::-;3985:4;-1:-1:-1::0;;;;;3974:24:9::1;;3991:6;3974:24;;;;1442:25:10::0;;1430:2;1415:18;;1296:177;1021:158:4;1096:45;1112:7;735:10:7;1135:5:4;1096:15;:45::i;:::-;1151:21;1157:7;1166:5;1151;:21::i;:::-;1021:158;;:::o;4206:59:9:-;1531:13:0;:11;:13::i;:::-;4250:8:9::1;:6;:8::i;1962:93:2:-:0;2009:13;2041:7;2034:14;;;;;:::i;3244:178::-;3313:4;735:10:7;3367:27:2;735:10:7;3384:2:2;3388:5;3367:9;:27::i;5299:452:9:-;5353:23;5386:25;5421:19;5450:26;5486:22;5518:27;5583:12;:10;:12::i;:::-;5609:14;:12;:14::i;:::-;2761:2:2;2881:12;;5718:16:9;;5562:182;;;;-1:-1:-1;5562:182:9;;-1:-1:-1;5562:182:9;-1:-1:-1;993:19:9;;-1:-1:-1;;;;5718:16:9;;;;;;-1:-1:-1;5299:452:9;-1:-1:-1;5299:452:9:o;2543:215:0:-;1531:13;:11;:13::i;:::-;-1:-1:-1;;;;;2627:22:0;::::1;2623:91;;2672:31;::::0;-1:-1:-1;;;2672:31:0;;2700:1:::1;2672:31;::::0;::::1;2522:51:10::0;2495:18;;2672:31:0::1;2376:203:10::0;2623:91:0::1;2723:28;2742:8;2723:18;:28::i;8630:128:2:-:0;8714:37;8723:5;8730:7;8739:5;8746:4;8714:8;:37::i;:::-;8630:128;;;:::o;10319:476::-;-1:-1:-1;;;;;3561:18:2;;;10418:24;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10484:36:2;;10480:309;;;10559:5;10540:16;:24;10536:130;;;10591:60;;-1:-1:-1;;;10591:60:2;;-1:-1:-1;;;;;5139:32:10;;10591:60:2;;;5121:51:10;5188:18;;;5181:34;;;5231:18;;;5224:34;;;5094:18;;10591:60:2;4919:345:10;10536:130:2;10707:57;10716:5;10723:7;10751:5;10732:16;:24;10758:5;10707:8;:57::i;:::-;10408:387;10319:476;;;:::o;5297:300::-;-1:-1:-1;;;;;5380:18:2;;5376:86;;5421:30;;-1:-1:-1;;;5421:30:2;;5448:1;5421:30;;;2522:51:10;2495:18;;5421:30:2;2376:203:10;5376:86:2;-1:-1:-1;;;;;5475:16:2;;5471:86;;5514:32;;-1:-1:-1;;;5514:32:2;;5543:1;5514:32;;;2522:51:10;2495:18;;5514:32:2;2376:203:10;5471:86:2;5566:24;5574:4;5580:2;5584:5;5566:7;:24::i;1796:162:0:-;1710:6;;-1:-1:-1;;;;;1710:6:0;735:10:7;1855:23:0;1851:101;;1901:40;;-1:-1:-1;;;1901:40:0;;735:10:7;1901:40:0;;;2522:51:10;2495:18;;1901:40:0;2376:203:10;2586:117:8;1597:16;:14;:16::i;:::-;2644:7:::1;:15:::0;;-1:-1:-1;;;;2644:15:8::1;::::0;;2674:22:::1;735:10:7::0;2683:12:8::1;2674:22;::::0;-1:-1:-1;;;;;2540:32:10;;;2522:51;;2510:2;2495:18;2674:22:8::1;;;;;;;2586:117::o:0;7362:208:2:-;-1:-1:-1;;;;;7432:21:2;;7428:91;;7476:32;;-1:-1:-1;;;7476:32:2;;7505:1;7476:32;;;2522:51:10;2495:18;;7476:32:2;2376:203:10;7428:91:2;7528:35;7544:1;7548:7;7557:5;7528:7;:35::i;7888:206::-;-1:-1:-1;;;;;7958:21:2;;7954:89;;8002:30;;-1:-1:-1;;;8002:30:2;;8029:1;8002:30;;;2522:51:10;2495:18;;8002:30:2;2376:203:10;7954:89:2;8052:35;8060:7;8077:1;8081:5;8052:7;:35::i;2912:187:0:-;3004:6;;;-1:-1:-1;;;;;3020:17:0;;;-1:-1:-1;;;;;;3020:17:0;;;;;;;3052:40;;3004:6;;;3020:17;3004:6;;3052:40;;2985:16;;3052:40;2975:124;2912:187;:::o;2339:115:8:-;1350:19;:17;:19::i;:::-;2398:7:::1;:14:::0;;-1:-1:-1;;;;2398:14:8::1;-1:-1:-1::0;;;2398:14:8::1;::::0;;2427:20:::1;2434:12;735:10:7::0;;656:96;9605:432:2;-1:-1:-1;;;;;9717:19:2;;9713:89;;9759:32;;-1:-1:-1;;;9759:32:2;;9788:1;9759:32;;;2522:51:10;2495:18;;9759:32:2;2376:203:10;9713:89:2;-1:-1:-1;;;;;9815:21:2;;9811:90;;9859:31;;-1:-1:-1;;;9859:31:2;;9887:1;9859:31;;;2522:51:10;2495:18;;9859:31:2;2376:203:10;9811:90:2;-1:-1:-1;;;;;9910:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;9955:76;;;;10005:7;-1:-1:-1;;;;;9989:31:2;9998:5;-1:-1:-1;;;;;9989:31:2;;10014:5;9989:31;;;;1442:25:10;;1430:2;1415:18;;1296:177;9989:31:2;;;;;;;;9605:432;;;;:::o;4608:165:9:-;4736:30;4750:4;4756:2;4760:5;4736:13;:30::i;2078:126:8:-;1796:7;;-1:-1:-1;;;1796:7:8;;;;2136:62;;2172:15;;-1:-1:-1;;;2172:15:8;;;;;;;;;;;1878:128;1796:7;;-1:-1:-1;;;1796:7:8;;;;1939:61;;;1974:15;;-1:-1:-1;;;1974:15:8;;;;;;;;;;;1113:145:5;1350:19:8;:17;:19::i;:::-;1221:30:5::1;1235:4;1241:2;1245:5;-1:-1:-1::0;;;;;6001:18:2;;5997:540;;6153:5;6137:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;5997:540:2;;-1:-1:-1;5997:540:2;;-1:-1:-1;;;;;6211:15:2;;6189:19;6211:15;;;;;;;;;;;6244:19;;;6240:115;;;6290:50;;-1:-1:-1;;;6290:50:2;;-1:-1:-1;;;;;5139:32:10;;6290:50:2;;;5121:51:10;5188:18;;;5181:34;;;5231:18;;;5224:34;;;5094:18;;6290:50:2;4919:345:10;6240:115:2;-1:-1:-1;;;;;6475:15:2;;:9;:15;;;;;;;;;;6493:19;;;;6475:37;;5997:540;-1:-1:-1;;;;;6551:16:2;;6547:425;;6714:12;:21;;;;;;;6547:425;;;-1:-1:-1;;;;;6925:13:2;;:9;:13;;;;;;;;;;:22;;;;;;6547:425;7002:2;-1:-1:-1;;;;;6987:25:2;6996:4;-1:-1:-1;;;;;6987:25:2;;7006:5;6987:25;;;;1442::10;;1430:2;1415:18;;1296:177;6987:25:2;;;;;;;;5912:1107;;;:::o;14:423:10:-;56:3;94:5;88:12;121:6;116:3;109:19;146:1;156:162;170:6;167:1;164:13;156:162;;;232:4;288:13;;;284:22;;278:29;260:11;;;256:20;;249:59;185:12;156:162;;;160:3;363:1;356:4;347:6;342:3;338:16;334:27;327:38;426:4;419:2;415:7;410:2;402:6;398:15;394:29;389:3;385:39;381:50;374:57;;;14:423;;;;:::o;442:220::-;591:2;580:9;573:21;554:4;611:45;652:2;641:9;637:18;629:6;611:45;:::i;:::-;603:53;442:220;-1:-1:-1;;;442:220:10:o;667:173::-;735:20;;-1:-1:-1;;;;;784:31:10;;774:42;;764:70;;830:1;827;820:12;764:70;667:173;;;:::o;845:254::-;913:6;921;974:2;962:9;953:7;949:23;945:32;942:52;;;990:1;987;980:12;942:52;1013:29;1032:9;1013:29;:::i;:::-;1003:39;1089:2;1074:18;;;;1061:32;;-1:-1:-1;;;845:254:10:o;1478:328::-;1555:6;1563;1571;1624:2;1612:9;1603:7;1599:23;1595:32;1592:52;;;1640:1;1637;1630:12;1592:52;1663:29;1682:9;1663:29;:::i;:::-;1653:39;;1711:38;1745:2;1734:9;1730:18;1711:38;:::i;:::-;1701:48;;1796:2;1785:9;1781:18;1768:32;1758:42;;1478:328;;;;;:::o;2000:180::-;2059:6;2112:2;2100:9;2091:7;2087:23;2083:32;2080:52;;;2128:1;2125;2118:12;2080:52;-1:-1:-1;2151:23:10;;2000:180;-1:-1:-1;2000:180:10:o;2185:186::-;2244:6;2297:2;2285:9;2276:7;2272:23;2268:32;2265:52;;;2313:1;2310;2303:12;2265:52;2336:29;2355:9;2336:29;:::i;2584:688::-;2883:3;2872:9;2865:22;2846:4;2910:46;2951:3;2940:9;2936:19;2928:6;2910:46;:::i;:::-;3004:9;2996:6;2992:22;2987:2;2976:9;2972:18;2965:50;3032:33;3058:6;3050;3032:33;:::i;:::-;3024:41;;;3113:4;3105:6;3101:17;3096:2;3085:9;3081:18;3074:45;3155:6;3150:2;3139:9;3135:18;3128:34;3199:6;3193:3;3182:9;3178:19;3171:35;3257:6;3250:14;3243:22;3237:3;3226:9;3222:19;3215:51;2584:688;;;;;;;;;:::o;3277:260::-;3345:6;3353;3406:2;3394:9;3385:7;3381:23;3377:32;3374:52;;;3422:1;3419;3412:12;3374:52;3445:29;3464:9;3445:29;:::i;:::-;3435:39;;3493:38;3527:2;3516:9;3512:18;3493:38;:::i;:::-;3483:48;;3277:260;;;;;:::o;3542:380::-;3621:1;3617:12;;;;3664;;;3685:61;;3739:4;3731:6;3727:17;3717:27;;3685:61;3792:2;3784:6;3781:14;3761:18;3758:38;3755:161;;3838:10;3833:3;3829:20;3826:1;3819:31;3873:4;3870:1;3863:15;3901:4;3898:1;3891:15;3755:161;;3542:380;;;:::o;4287:222::-;4352:9;;;4373:10;;;4370:133;;;4425:10;4420:3;4416:20;4413:1;4406:31;4460:4;4457:1;4450:15;4488:4;4485:1;4478:15

Swarm Source

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