ETH Price: $3,510.29 (+4.56%)
Gas: 4 Gwei

Token

Arcana Network (XAR)
 

Overview

Max Total Supply

1,000,000,000 XAR

Holders

1,545 (0.00%)

Market

Price

$0.05 @ 0.000013 ETH (-7.27%)

Onchain Market Cap

$46,167,860.00

Circulating Supply Market Cap

$5,407,924.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Medusa Drainer 1
Balance
525.449171922807014304 XAR

Value
$24.26 ( ~0.00691110233640896 Eth) [0.0001%]
0xFa7575CaA049e5cFD96a2783da2C85663f0Da817
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Arcana is an UX focussed decentralised network and powering a suite of B2B and B2C products.

Market

Volume (24H):$99,982.00
Market Capitalization:$5,407,924.00
Circulating Supply:116,756,473.00 XAR
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
VariableSupplyERC20Token

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-31
*/

// Sources flattened with hardhat v2.17.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File @openzeppelin/contracts/access/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

// File contracts/AccessProtected.sol

pragma solidity 0.8.14;

/** 
@title Access Limiter to multiple owner-specified accounts.
@dev Exposes the onlyAdmin modifier, which will revert (ADMIN_ACCESS_REQUIRED) if the caller is not the owner nor the admin.
*/
abstract contract AccessProtected is Context {
    mapping(address => bool) private _admins; // user address => admin? mapping

    event AdminAccessSet(address indexed _admin, bool _enabled);

    constructor() {
        _admins[_msgSender()] = true;
        emit AdminAccessSet(_msgSender(), true);
    }

    /**
     * Throws if called by any account that isn't an admin or an owner.
     */
    modifier onlyAdmin() {
        require(_admins[_msgSender()], "ADMIN_ACCESS_REQUIRED");
        _;
    }

    function isAdmin(address _addressToCheck) external view returns (bool) {
        return _admins[_addressToCheck];
    }

    /**
     * @notice Set/unset Admin Access for a given address.
     *
     * @param admin - Address of the new admin (or the one to be removed)
     * @param isEnabled - Enable/Disable Admin Access
     */
    function setAdmin(address admin, bool isEnabled) public onlyAdmin {
        require(admin != address(0), "INVALID_ADDRESS");
        _admins[admin] = isEnabled;
        emit AdminAccessSet(admin, isEnabled);
    }
}

// File contracts/token/VariableSupplyERC20Token.sol

pragma solidity ^0.8.14;

/**
@notice A ERC20 token contract that allows minting at will, with limited or unlimited supply.
 */
contract VariableSupplyERC20Token is ERC20, AccessProtected {
    uint256 public mintableSupply;
    bool public burnable;
    uint256 public burntSupply;

    /**
    @notice A ERC20 token contract that allows minting at will, with limited or unlimited supply. No burning possible
    @dev
    @param name_ - Name of the token
    @param symbol_ - Symbol of the token
    @param initialSupply_ - How much to immediately mint (saves another transaction). If 0, no mint at the beginning.
    @param maxSupply_ - What's the maximum supply. The contract won't allow minting over this amount. Set to 0 for no limit.
    */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 initialSupply_,
        uint256 maxSupply_,
        bool burnable_
    ) ERC20(name_, symbol_) {
        // max supply == 0 means mint at will.
        // initialSupply_ == 0 means nothing preminted
        // Therefore, we have valid scenarios if either of them is 0
        // However, if both are 0 we might have a valid scenario as well - user just wants to create a token but doesn't want to mint anything
        // Should we allow this?
        require(initialSupply_ > 0 || maxSupply_ > 0, "INVALID_AMOUNT");
        mintableSupply = maxSupply_;

        // Note: the check whether initial supply is less than or equal than mintableSupply will happen in mint fn.
        if (initialSupply_ > 0) {
            mint(_msgSender(), initialSupply_);
        }
        burnable = burnable_;
    }

    /**
     * @dev Throws if burnable is false.
     */
    modifier onlyBurnable() {
        require(burnable, "Not available to burn");
        _;
    }

    function mint(address account, uint256 amount) public onlyAdmin {
        require(account != address(0), "INVALID_ADDRESS");
        // If we're using maxSupply, we need to make sure we respect it
        // mintableSupply = 0 means mint at will
        if (mintableSupply > 0) {
            require(amount <= mintableSupply, "INVALID_AMOUNT");
            // We need to reduce the amount only if we're using the limit, if not just leave it be
            mintableSupply -= amount;
        }
        _mint(account, amount);
    }

    function burn(uint256 amount) public virtual onlyAdmin onlyBurnable {
        _burn(_msgSender(), amount);
        burntSupply += amount;
    }

    // We can't really have burn, because that could make our vesting contract not work.
    // Example: if the user can burn tokens already assigned to vesting schedules, it could be unable to pay its obligations.
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"initialSupply_","type":"uint256"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"},{"internalType":"bool","name":"burnable_","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_admin","type":"address"},{"indexed":false,"internalType":"bool","name":"_enabled","type":"bool"}],"name":"AdminAccessSet","type":"event"},{"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":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burntSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addressToCheck","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"},{"internalType":"bool","name":"isEnabled","type":"bool"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001442380380620014428339810160408190526200003491620004d8565b8451859085906200004d90600390602085019062000365565b5080516200006390600490602084019062000365565b5050506001600560006200007c6200017960201b60201c565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620000ac3390565b6001600160a01b03167fe529461c8529abc0e0fe7c5ee361f74fe22e0b7574df1fc0b7558a282091fb786001604051620000ea911515815260200190565b60405180910390a26000831180620001025750600082115b620001455760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d05353d5539560921b60448201526064015b60405180910390fd5b600682905582156200015d576200015d33846200017d565b6007805460ff191691151591909117905550620005f792505050565b3390565b3360009081526005602052604090205460ff16620001de5760405162461bcd60e51b815260206004820152601560248201527f41444d494e5f4143434553535f5245515549524544000000000000000000000060448201526064016200013c565b6001600160a01b038216620002285760405162461bcd60e51b815260206004820152600f60248201526e494e56414c49445f4144445245535360881b60448201526064016200013c565b600654156200029057600654811115620002765760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d05353d5539560921b60448201526064016200013c565b80600660008282546200028a919062000586565b90915550505b6200029c8282620002a0565b5050565b6001600160a01b038216620002f85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200013c565b80600260008282546200030c9190620005a0565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36200029c565b8280546200037390620005bb565b90600052602060002090601f016020900481019282620003975760008555620003e2565b82601f10620003b257805160ff1916838001178555620003e2565b82800160010185558215620003e2579182015b82811115620003e2578251825591602001919060010190620003c5565b50620003f0929150620003f4565b5090565b5b80821115620003f05760008155600101620003f5565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200043357600080fd5b81516001600160401b03808211156200045057620004506200040b565b604051601f8301601f19908116603f011681019082821181831017156200047b576200047b6200040b565b816040528381526020925086838588010111156200049857600080fd5b600091505b83821015620004bc57858201830151818301840152908201906200049d565b83821115620004ce5760008385830101525b9695505050505050565b600080600080600060a08688031215620004f157600080fd5b85516001600160401b03808211156200050957600080fd5b6200051789838a0162000421565b965060208801519150808211156200052e57600080fd5b506200053d8882890162000421565b9450506040860151925060608601519150608086015180151581146200056257600080fd5b809150509295509295909350565b634e487b7160e01b600052601160045260246000fd5b6000828210156200059b576200059b62000570565b500390565b60008219821115620005b657620005b662000570565b500190565b600181811c90821680620005d057607f821691505b602082108103620005f157634e487b7160e01b600052602260045260246000fd5b50919050565b610e3b80620006076000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80634b0bddd2116100a2578063a07c7ce411610071578063a07c7ce414610244578063a457c2d714610251578063a9059cbb14610264578063cc5c095c14610277578063dd62ed3e1461028057600080fd5b80634b0bddd2146101f7578063561045291461020a57806370a082311461021357806395d89b411461023c57600080fd5b806324d7806c116100e957806324d7806c14610181578063313ce567146101ad57806339509351146101bc57806340c10f19146101cf57806342966c68146101e457600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b610123610293565b6040516101309190610bd6565b60405180910390f35b61014c610147366004610c47565b610325565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610c71565b61033d565b61014c61018f366004610cad565b6001600160a01b031660009081526005602052604090205460ff1690565b60405160128152602001610130565b61014c6101ca366004610c47565b610361565b6101e26101dd366004610c47565b610383565b005b6101e26101f2366004610ccf565b610474565b6101e2610205366004610ce8565b610511565b61016060085481565b610160610221366004610cad565b6001600160a01b031660009081526020819052604090205490565b6101236105e7565b60075461014c9060ff1681565b61014c61025f366004610c47565b6105f6565b61014c610272366004610c47565b610671565b61016060065481565b61016061028e366004610d24565b61067f565b6060600380546102a290610d57565b80601f01602080910402602001604051908101604052809291908181526020018280546102ce90610d57565b801561031b5780601f106102f05761010080835404028352916020019161031b565b820191906000526020600020905b8154815290600101906020018083116102fe57829003601f168201915b5050505050905090565b6000336103338185856106aa565b5060019392505050565b60003361034b8582856107cf565b610356858585610849565b506001949350505050565b600033610333818585610374838361067f565b61037e9190610da7565b6106aa565b3360009081526005602052604090205460ff166103bb5760405162461bcd60e51b81526004016103b290610dbf565b60405180910390fd5b6001600160a01b0382166104035760405162461bcd60e51b815260206004820152600f60248201526e494e56414c49445f4144445245535360881b60448201526064016103b2565b600654156104665760065481111561044e5760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d05353d5539560921b60448201526064016103b2565b80600660008282546104609190610dee565b90915550505b61047082826109ed565b5050565b3360009081526005602052604090205460ff166104a35760405162461bcd60e51b81526004016103b290610dbf565b60075460ff166104ed5760405162461bcd60e51b81526020600482015260156024820152742737ba1030bb30b4b630b13632903a3790313ab93760591b60448201526064016103b2565b6104f73382610aac565b80600860008282546105099190610da7565b909155505050565b3360009081526005602052604090205460ff166105405760405162461bcd60e51b81526004016103b290610dbf565b6001600160a01b0382166105885760405162461bcd60e51b815260206004820152600f60248201526e494e56414c49445f4144445245535360881b60448201526064016103b2565b6001600160a01b038216600081815260056020908152604091829020805460ff191685151590811790915591519182527fe529461c8529abc0e0fe7c5ee361f74fe22e0b7574df1fc0b7558a282091fb78910160405180910390a25050565b6060600480546102a290610d57565b60003381610604828661067f565b9050838110156106645760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b2565b61035682868684036106aa565b600033610333818585610849565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661070c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b2565b6001600160a01b03821661076d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107db848461067f565b9050600019811461084357818110156108365760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b2565b61084384848484036106aa565b50505050565b6001600160a01b0383166108ad5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b2565b6001600160a01b03821661090f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b2565b6001600160a01b038316600090815260208190526040902054818110156109875760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b2565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610843565b6001600160a01b038216610a435760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103b2565b8060026000828254610a559190610da7565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216610b0c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103b2565b6001600160a01b03821660009081526020819052604090205481811015610b805760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103b2565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107c2565b600060208083528351808285015260005b81811015610c0357858101830151858201604001528201610be7565b81811115610c15576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c4257600080fd5b919050565b60008060408385031215610c5a57600080fd5b610c6383610c2b565b946020939093013593505050565b600080600060608486031215610c8657600080fd5b610c8f84610c2b565b9250610c9d60208501610c2b565b9150604084013590509250925092565b600060208284031215610cbf57600080fd5b610cc882610c2b565b9392505050565b600060208284031215610ce157600080fd5b5035919050565b60008060408385031215610cfb57600080fd5b610d0483610c2b565b915060208301358015158114610d1957600080fd5b809150509250929050565b60008060408385031215610d3757600080fd5b610d4083610c2b565b9150610d4e60208401610c2b565b90509250929050565b600181811c90821680610d6b57607f821691505b602082108103610d8b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610dba57610dba610d91565b500190565b602080825260159082015274105113525397d050d0d154d4d7d491545552549151605a1b604082015260600190565b600082821015610e0057610e00610d91565b50039056fea2646970667358221220b853a6c41bd289303eef520f008122373bef8117e3b4dc8db4df46ce6b6c3a3964736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000033b2e3c9fd0803ce800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000e417263616e61204e6574776f726b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035841520000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80634b0bddd2116100a2578063a07c7ce411610071578063a07c7ce414610244578063a457c2d714610251578063a9059cbb14610264578063cc5c095c14610277578063dd62ed3e1461028057600080fd5b80634b0bddd2146101f7578063561045291461020a57806370a082311461021357806395d89b411461023c57600080fd5b806324d7806c116100e957806324d7806c14610181578063313ce567146101ad57806339509351146101bc57806340c10f19146101cf57806342966c68146101e457600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b610123610293565b6040516101309190610bd6565b60405180910390f35b61014c610147366004610c47565b610325565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610c71565b61033d565b61014c61018f366004610cad565b6001600160a01b031660009081526005602052604090205460ff1690565b60405160128152602001610130565b61014c6101ca366004610c47565b610361565b6101e26101dd366004610c47565b610383565b005b6101e26101f2366004610ccf565b610474565b6101e2610205366004610ce8565b610511565b61016060085481565b610160610221366004610cad565b6001600160a01b031660009081526020819052604090205490565b6101236105e7565b60075461014c9060ff1681565b61014c61025f366004610c47565b6105f6565b61014c610272366004610c47565b610671565b61016060065481565b61016061028e366004610d24565b61067f565b6060600380546102a290610d57565b80601f01602080910402602001604051908101604052809291908181526020018280546102ce90610d57565b801561031b5780601f106102f05761010080835404028352916020019161031b565b820191906000526020600020905b8154815290600101906020018083116102fe57829003601f168201915b5050505050905090565b6000336103338185856106aa565b5060019392505050565b60003361034b8582856107cf565b610356858585610849565b506001949350505050565b600033610333818585610374838361067f565b61037e9190610da7565b6106aa565b3360009081526005602052604090205460ff166103bb5760405162461bcd60e51b81526004016103b290610dbf565b60405180910390fd5b6001600160a01b0382166104035760405162461bcd60e51b815260206004820152600f60248201526e494e56414c49445f4144445245535360881b60448201526064016103b2565b600654156104665760065481111561044e5760405162461bcd60e51b815260206004820152600e60248201526d1253959053125117d05353d5539560921b60448201526064016103b2565b80600660008282546104609190610dee565b90915550505b61047082826109ed565b5050565b3360009081526005602052604090205460ff166104a35760405162461bcd60e51b81526004016103b290610dbf565b60075460ff166104ed5760405162461bcd60e51b81526020600482015260156024820152742737ba1030bb30b4b630b13632903a3790313ab93760591b60448201526064016103b2565b6104f73382610aac565b80600860008282546105099190610da7565b909155505050565b3360009081526005602052604090205460ff166105405760405162461bcd60e51b81526004016103b290610dbf565b6001600160a01b0382166105885760405162461bcd60e51b815260206004820152600f60248201526e494e56414c49445f4144445245535360881b60448201526064016103b2565b6001600160a01b038216600081815260056020908152604091829020805460ff191685151590811790915591519182527fe529461c8529abc0e0fe7c5ee361f74fe22e0b7574df1fc0b7558a282091fb78910160405180910390a25050565b6060600480546102a290610d57565b60003381610604828661067f565b9050838110156106645760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b2565b61035682868684036106aa565b600033610333818585610849565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661070c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b2565b6001600160a01b03821661076d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107db848461067f565b9050600019811461084357818110156108365760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b2565b61084384848484036106aa565b50505050565b6001600160a01b0383166108ad5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b2565b6001600160a01b03821661090f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b2565b6001600160a01b038316600090815260208190526040902054818110156109875760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b2565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610843565b6001600160a01b038216610a435760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103b2565b8060026000828254610a559190610da7565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216610b0c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103b2565b6001600160a01b03821660009081526020819052604090205481811015610b805760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103b2565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107c2565b600060208083528351808285015260005b81811015610c0357858101830151858201604001528201610be7565b81811115610c15576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c4257600080fd5b919050565b60008060408385031215610c5a57600080fd5b610c6383610c2b565b946020939093013593505050565b600080600060608486031215610c8657600080fd5b610c8f84610c2b565b9250610c9d60208501610c2b565b9150604084013590509250925092565b600060208284031215610cbf57600080fd5b610cc882610c2b565b9392505050565b600060208284031215610ce157600080fd5b5035919050565b60008060408385031215610cfb57600080fd5b610d0483610c2b565b915060208301358015158114610d1957600080fd5b809150509250929050565b60008060408385031215610d3757600080fd5b610d4083610c2b565b9150610d4e60208401610c2b565b90509250929050565b600181811c90821680610d6b57607f821691505b602082108103610d8b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610dba57610dba610d91565b500190565b602080825260159082015274105113525397d050d0d154d4d7d491545552549151605a1b604082015260600190565b600082821015610e0057610e00610d91565b50039056fea2646970667358221220b853a6c41bd289303eef520f008122373bef8117e3b4dc8db4df46ce6b6c3a3964736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000033b2e3c9fd0803ce800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000e417263616e61204e6574776f726b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035841520000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Arcana Network
Arg [1] : symbol_ (string): XAR
Arg [2] : initialSupply_ (uint256): 1000000000000000000000000000
Arg [3] : maxSupply_ (uint256): 0
Arg [4] : burnable_ (bool): True

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 417263616e61204e6574776f726b000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 5841520000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

22589:2631:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9577:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12003:226;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;12003:226:0;1053:187:1;10706:108:0;10794:12;;10706:108;;;1391:25:1;;;1379:2;1364:18;10706:108:0;1245:177:1;12809:295:0;;;;;;:::i;:::-;;:::i;21831:121::-;;;;;;:::i;:::-;-1:-1:-1;;;;;21920:24:0;21896:4;21920:24;;;:7;:24;;;;;;;;;21831:121;10548:93;;;10631:2;2093:36:1;;2081:2;2066:18;10548:93:0;1951:184:1;13513:263:0;;;;;;:::i;:::-;;:::i;24305:539::-;;;;;;:::i;:::-;;:::i;:::-;;24852:146;;;;;;:::i;:::-;;:::i;22176:217::-;;;;;;:::i;:::-;;:::i;22719:26::-;;;;;;10877:143;;;;;;:::i;:::-;-1:-1:-1;;;;;10994:18:0;10967:7;10994:18;;;;;;;;;;;;10877:143;9796:104;;;:::i;22692:20::-;;;;;;;;;14279:498;;;;;;:::i;:::-;;:::i;11226:218::-;;;;;;:::i;:::-;;:::i;22656:29::-;;;;;;11507:176;;;;;;:::i;:::-;;:::i;9577:100::-;9631:13;9664:5;9657:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9577:100;:::o;12003:226::-;12111:4;861:10;12167:32;861:10;12183:7;12192:6;12167:8;:32::i;:::-;-1:-1:-1;12217:4:0;;12003:226;-1:-1:-1;;;12003:226:0:o;12809:295::-;12940:4;861:10;12998:38;13014:4;861:10;13029:6;12998:15;:38::i;:::-;13047:27;13057:4;13063:2;13067:6;13047:9;:27::i;:::-;-1:-1:-1;13092:4:0;;12809:295;-1:-1:-1;;;;12809:295:0:o;13513:263::-;13626:4;861:10;13682:64;861:10;13698:7;13735:10;13707:25;861:10;13698:7;13707:9;:25::i;:::-;:38;;;;:::i;:::-;13682:8;:64::i;24305:539::-;861:10;21756:21;;;;:7;:21;;;;;;;;21748:55;;;;-1:-1:-1;;;21748:55:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;24388:21:0;::::1;24380:49;;;::::0;-1:-1:-1;;;24380:49:0;;4144:2:1;24380:49:0::1;::::0;::::1;4126:21:1::0;4183:2;4163:18;;;4156:30;-1:-1:-1;;;4202:18:1;;;4195:45;4257:18;;24380:49:0::1;3942:339:1::0;24380:49:0::1;24567:14;::::0;:18;24563:241:::1;;24620:14;;24610:6;:24;;24602:51;;;::::0;-1:-1:-1;;;24602:51:0;;4488:2:1;24602:51:0::1;::::0;::::1;4470:21:1::0;4527:2;4507:18;;;4500:30;-1:-1:-1;;;4546:18:1;;;4539:44;4600:18;;24602:51:0::1;4286:338:1::0;24602:51:0::1;24786:6;24768:14;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;24563:241:0::1;24814:22;24820:7;24829:6;24814:5;:22::i;:::-;24305:539:::0;;:::o;24852:146::-;861:10;21756:21;;;;:7;:21;;;;;;;;21748:55;;;;-1:-1:-1;;;21748:55:0;;;;;;;:::i;:::-;24243:8:::1;::::0;::::1;;24235:42;;;::::0;-1:-1:-1;;;24235:42:0;;4961:2:1;24235:42:0::1;::::0;::::1;4943:21:1::0;5000:2;4980:18;;;4973:30;-1:-1:-1;;;5019:18:1;;;5012:51;5080:18;;24235:42:0::1;4759:345:1::0;24235:42:0::1;24931:27:::2;861:10:::0;24951:6:::2;24931:5;:27::i;:::-;24984:6;24969:11;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;24852:146:0:o;22176:217::-;861:10;21756:21;;;;:7;:21;;;;;;;;21748:55;;;;-1:-1:-1;;;21748:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22261:19:0;::::1;22253:47;;;::::0;-1:-1:-1;;;22253:47:0;;4144:2:1;22253:47:0::1;::::0;::::1;4126:21:1::0;4183:2;4163:18;;;4156:30;-1:-1:-1;;;4202:18:1;;;4195:45;4257:18;;22253:47:0::1;3942:339:1::0;22253:47:0::1;-1:-1:-1::0;;;;;22311:14:0;::::1;;::::0;;;:7:::1;:14;::::0;;;;;;;;:26;;-1:-1:-1;;22311:26:0::1;::::0;::::1;;::::0;;::::1;::::0;;;22353:32;;1193:41:1;;;22353:32:0::1;::::0;1166:18:1;22353:32:0::1;;;;;;;22176:217:::0;;:::o;9796:104::-;9852:13;9885:7;9878:14;;;;;:::i;14279:498::-;14397:4;861:10;14397:4;14480:25;861:10;14497:7;14480:9;:25::i;:::-;14453:52;;14558:15;14538:16;:35;;14516:122;;;;-1:-1:-1;;;14516:122:0;;5311:2:1;14516:122:0;;;5293:21:1;5350:2;5330:18;;;5323:30;5389:34;5369:18;;;5362:62;-1:-1:-1;;;5440:18:1;;;5433:35;5485:19;;14516:122:0;5109:401:1;14516:122:0;14674:60;14683:5;14690:7;14718:15;14699:16;:34;14674:8;:60::i;11226:218::-;11330:4;861:10;11386:28;861:10;11403:2;11407:6;11386:9;:28::i;11507:176::-;-1:-1:-1;;;;;11648:18:0;;;11621:7;11648:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11507:176::o;18405:380::-;-1:-1:-1;;;;;18541:19:0;;18533:68;;;;-1:-1:-1;;;18533:68:0;;5717:2:1;18533:68:0;;;5699:21:1;5756:2;5736:18;;;5729:30;5795:34;5775:18;;;5768:62;-1:-1:-1;;;5846:18:1;;;5839:34;5890:19;;18533:68:0;5515:400:1;18533:68:0;-1:-1:-1;;;;;18620:21:0;;18612:68;;;;-1:-1:-1;;;18612:68:0;;6122:2:1;18612:68:0;;;6104:21:1;6161:2;6141:18;;;6134:30;6200:34;6180:18;;;6173:62;-1:-1:-1;;;6251:18:1;;;6244:32;6293:19;;18612:68:0;5920:398:1;18612:68:0;-1:-1:-1;;;;;18693:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18745:32;;1391:25:1;;;18745:32:0;;1364:18:1;18745:32:0;;;;;;;;18405:380;;;:::o;19076:502::-;19211:24;19238:25;19248:5;19255:7;19238:9;:25::i;:::-;19211:52;;-1:-1:-1;;19278:16:0;:37;19274:297;;19378:6;19358:16;:26;;19332:117;;;;-1:-1:-1;;;19332:117:0;;6525:2:1;19332:117:0;;;6507:21:1;6564:2;6544:18;;;6537:30;6603:31;6583:18;;;6576:59;6652:18;;19332:117:0;6323:353:1;19332:117:0;19493:51;19502:5;19509:7;19537:6;19518:16;:25;19493:8;:51::i;:::-;19200:378;19076:502;;;:::o;15247:877::-;-1:-1:-1;;;;;15378:18:0;;15370:68;;;;-1:-1:-1;;;15370:68:0;;6883:2:1;15370:68:0;;;6865:21:1;6922:2;6902:18;;;6895:30;6961:34;6941:18;;;6934:62;-1:-1:-1;;;7012:18:1;;;7005:35;7057:19;;15370:68:0;6681:401:1;15370:68:0;-1:-1:-1;;;;;15457:16:0;;15449:64;;;;-1:-1:-1;;;15449:64:0;;7289:2:1;15449:64:0;;;7271:21:1;7328:2;7308:18;;;7301:30;7367:34;7347:18;;;7340:62;-1:-1:-1;;;7418:18:1;;;7411:33;7461:19;;15449:64:0;7087:399:1;15449:64:0;-1:-1:-1;;;;;15599:15:0;;15577:19;15599:15;;;;;;;;;;;15647:21;;;;15625:109;;;;-1:-1:-1;;;15625:109:0;;7693:2:1;15625:109:0;;;7675:21:1;7732:2;7712:18;;;7705:30;7771:34;7751:18;;;7744:62;-1:-1:-1;;;7822:18:1;;;7815:36;7868:19;;15625:109:0;7491:402:1;15625:109:0;-1:-1:-1;;;;;15770:15:0;;;:9;:15;;;;;;;;;;;15788:20;;;15770:38;;15988:13;;;;;;;;;;:23;;;;;;16040:26;;1391:25:1;;;15988:13:0;;16040:26;;1364:18:1;16040:26:0;;;;;;;16079:37;17292:675;16411:548;-1:-1:-1;;;;;16495:21:0;;16487:65;;;;-1:-1:-1;;;16487:65:0;;8100:2:1;16487:65:0;;;8082:21:1;8139:2;8119:18;;;8112:30;8178:33;8158:18;;;8151:61;8229:18;;16487:65:0;7898:355:1;16487:65:0;16643:6;16627:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16798:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;16853:37;1391:25:1;;;16853:37:0;;1364:18:1;16853:37:0;;;;;;;24305:539;;:::o;17292:675::-;-1:-1:-1;;;;;17376:21:0;;17368:67;;;;-1:-1:-1;;;17368:67:0;;8460:2:1;17368:67:0;;;8442:21:1;8499:2;8479:18;;;8472:30;8538:34;8518:18;;;8511:62;-1:-1:-1;;;8589:18:1;;;8582:31;8630:19;;17368:67:0;8258:397:1;17368:67:0;-1:-1:-1;;;;;17535:18:0;;17510:22;17535:18;;;;;;;;;;;17572:24;;;;17564:71;;;;-1:-1:-1;;;17564:71:0;;8862:2:1;17564:71:0;;;8844:21:1;8901:2;8881:18;;;8874:30;8940:34;8920:18;;;8913:62;-1:-1:-1;;;8991:18:1;;;8984:32;9033:19;;17564:71:0;8660:398:1;17564:71:0;-1:-1:-1;;;;;17671:18:0;;:9;:18;;;;;;;;;;;17692:23;;;17671:44;;17810:12;:22;;;;;;;17861:37;1391:25:1;;;17671:9:0;;:18;17861:37;;1364:18:1;17861:37:0;1245:177:1;14:597;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1760:186::-;1819:6;1872:2;1860:9;1851:7;1847:23;1843:32;1840:52;;;1888:1;1885;1878:12;1840:52;1911:29;1930:9;1911:29;:::i;:::-;1901:39;1760:186;-1:-1:-1;;;1760:186:1:o;2140:180::-;2199:6;2252:2;2240:9;2231:7;2227:23;2223:32;2220:52;;;2268:1;2265;2258:12;2220:52;-1:-1:-1;2291:23:1;;2140:180;-1:-1:-1;2140:180:1:o;2325:347::-;2390:6;2398;2451:2;2439:9;2430:7;2426:23;2422:32;2419:52;;;2467:1;2464;2457:12;2419:52;2490:29;2509:9;2490:29;:::i;:::-;2480:39;;2569:2;2558:9;2554:18;2541:32;2616:5;2609:13;2602:21;2595:5;2592:32;2582:60;;2638:1;2635;2628:12;2582:60;2661:5;2651:15;;;2325:347;;;;;:::o;2677:260::-;2745:6;2753;2806:2;2794:9;2785:7;2781:23;2777:32;2774:52;;;2822:1;2819;2812:12;2774:52;2845:29;2864:9;2845:29;:::i;:::-;2835:39;;2893:38;2927:2;2916:9;2912:18;2893:38;:::i;:::-;2883:48;;2677:260;;;;;:::o;2942:380::-;3021:1;3017:12;;;;3064;;;3085:61;;3139:4;3131:6;3127:17;3117:27;;3085:61;3192:2;3184:6;3181:14;3161:18;3158:38;3155:161;;3238:10;3233:3;3229:20;3226:1;3219:31;3273:4;3270:1;3263:15;3301:4;3298:1;3291:15;3155:161;;2942:380;;;:::o;3327:127::-;3388:10;3383:3;3379:20;3376:1;3369:31;3419:4;3416:1;3409:15;3443:4;3440:1;3433:15;3459:128;3499:3;3530:1;3526:6;3523:1;3520:13;3517:39;;;3536:18;;:::i;:::-;-1:-1:-1;3572:9:1;;3459:128::o;3592:345::-;3794:2;3776:21;;;3833:2;3813:18;;;3806:30;-1:-1:-1;;;3867:2:1;3852:18;;3845:51;3928:2;3913:18;;3592:345::o;4629:125::-;4669:4;4697:1;4694;4691:8;4688:34;;;4702:18;;:::i;:::-;-1:-1:-1;4739:9:1;;4629:125::o

Swarm Source

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