ETH Price: $3,076.88 (-1.34%)
Gas: 2 Gwei

Token

Exorde Network Token (EXD)
 

Overview

Max Total Supply

200,000,000 EXD

Holders

2,875 (0.00%)

Total Transfers

-

Market

Price

$0.04 @ 0.000013 ETH (-1.64%)

Onchain Market Cap

$8,033,592.00

Circulating Supply Market Cap

$1,554,095.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Exorde is a protocol aimed at collecting and extracting sentiment from social networks worldwide through a decentralized community. Exorde’s data is reliable therefore enabling e-reputation, trend analysis and wide social listening. Exorde’s utility token is at the core of its circular data economy.

Market

Volume (24H):$56,855.00
Market Capitalization:$1,554,095.00
Circulating Supply:38,645,212.00 EXD
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ExordeToken

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-02-06
*/

/*                                           

                                                  /////////////////   @@@@@@@@@@@@@@@@@@@@@@@@@@@@@               
                                                  /////////////////     #@@@@@@@@@@@@@@@@@@@@@@@@@@               
                                                  /////////////////        @@@@@@@@@@@@@@@@@@@@@@@@               
                                                  /////////////////           @@@@@@@@@@@@@@@@@@@@@               
                                                  /////////////////             ,@@@@@@@@@@@@@@@@@@               
                                                  /////////////////                &@@@@@@@@@@@@@@@               
                                                  /////////////////                   @@@@@@@@@@@@@               
                                                  /////////////////                     .@@@@@@@@@@               
                                                  /////////////////                        &@@@@@@@               
                                                  /////////////////                           @@@@@               
                                                  /////////////////                              @@               
                                                  /////////////////                                               
                                                  /////////////////                                               
                                                  /////////////////                                               
                                                  /////////////////                                               
                                                  /////////////////                                               
                                                  /////////////////                               @               
                                                  /////////////////                            /@@@               
                                                  /////////////////                          @@@@@@               
                                                  /////////////////                       @@@@@@@@@               
                                                  /////////////////                    %@@@@@@@@@@@               
                                                  /////////////////                 .@@@@@@@@@@@@@@               
                                                  /////////////////               @@@@@@@@@@@@@@@@@               
                                                  /////////////////            @@@@@@@@@@@@@@@@@@@@               
                                                  /////////////////         *@@@@@@@@@@@@@@@@@@@@@@               
                                                  /////////////////       @@@@@@@@@@@@@@@@@@@@@@@@@               
                                                  /////////////////    @@@@@@@@@@@@@@@@@@@@@@@@@@@@               




        oooooooooooo                                      .o8               ooooo      ooo               .                                       oooo        
        `888'     `8                                     "888               `888b.     `8'             .o8                                       `888        
         888         oooo    ooo  .ooooo.  oooo d8b  .oooo888   .ooooo.      8 `88b.    8   .ooooo.  .o888oo oooo oooo    ooo  .ooooo.  oooo d8b  888  oooo  
         888oooo8     `88b..8P'  d88' `88b `888""8P d88' `888  d88' `88b     8   `88b.  8  d88' `88b   888    `88. `88.  .8'  d88' `88b `888""8P  888 .8P'   
         888    "       Y888'    888   888  888     888   888  888ooo888     8     `88b.8  888ooo888   888     `88..]88..8'   888   888  888      888888.    
         888       o  .o8"'88b   888   888  888     888   888  888    .o     8       `888  888    .o   888 .    `888'`888'    888   888  888      888 `88b.  
        o888ooooood8 o88'   888o `Y8bod8P' d888b    `Y8bod88P" `Y8bod8P'    o8o        `8  `Y8bod8P'   "888"     `8'  `8'     `Y8bod8P' d888b    o888o o888o 



                                              ooooooooooooo           oooo                              
                                              8'   888   `8           `888                              
                                                   888       .ooooo.   888  oooo   .ooooo.  ooo. .oo.   
                                                   888      d88' `88b  888 .8P'   d88' `88b `888P"Y88b  
                                                   888      888   888  888888.    888ooo888  888   888  
                                                   888      888   888  888 `88b.  888    .o  888   888  
                                                  o888o     `Y8bod8P' o888o o888o `Y8bod8P' o888o o888o 

                                                                                          
 */ 
 
 
 /* Submitted for verification at Etherscan.io on 2023-02-06 */

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol
// 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/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.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/IERC20Metadata.sol


// 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/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

// File: contracts/token-distribution/ExordeToken.sol



pragma solidity 0.8.8;


/**
@title Exorde Network ERC20 Token
@author Mathias Dail - CTO @ Exorde Labs
*/

contract ExordeToken is  ERC20Capped {
    constructor() ERC20 ("Exorde Network Token", "EXD") ERC20Capped(200*(10**6)*(10**18)) {
        _mint(0xd27b4910372155743878737dE0A80008C55D50D1, 200*(10**6)*(10**18)); // 200 000 000 (two hundred million) EXD, with 18 decimals (by default)
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

60a06040523480156200001157600080fd5b50604080518082018252601481527f45786f726465204e6574776f726b20546f6b656e0000000000000000000000006020808301918252835180850190945260038085526211561160ea1b9185019190915282516aa56fa5b99019a5c800000094926200007f92916200027d565b508051620000959060049060208401906200027d565b50505060008111620000ee5760405162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a206361702069732030000000000000000000000060448201526064015b60405180910390fd5b6080526200011c73d27b4910372155743878737de0a80008c55d50d16aa56fa5b99019a5c800000062000122565b62000387565b608051816200013b620001b260201b6200027b1760201c565b62000147919062000323565b1115620001975760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a20636170206578636565646564000000000000006044820152606401620000e5565b620001ae8282620001b860201b6200038f1760201c565b5050565b60025490565b6001600160a01b038216620002105760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000e5565b806002600082825462000224919062000323565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620001ae565b8280546200028b906200034a565b90600052602060002090601f016020900481019282620002af5760008555620002fa565b82601f10620002ca57805160ff1916838001178555620002fa565b82800160010185558215620002fa579182015b82811115620002fa578251825591602001919060010190620002dd565b50620003089291506200030c565b5090565b5b808211156200030857600081556001016200030d565b600082198211156200034557634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200035f57607f821691505b602082108114156200038157634e487b7160e01b600052602260045260246000fd5b50919050565b608051610953620003a3600039600061013001526109536000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80633950935111610071578063395093511461015457806370a082311461016757806395d89b4114610190578063a457c2d714610198578063a9059cbb146101ab578063dd62ed3e146101be57600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd1461010c578063313ce5671461011f578063355274ea1461012e575b600080fd5b6100c16101d1565b6040516100ce9190610790565b60405180910390f35b6100ea6100e5366004610801565b610263565b60405190151581526020016100ce565b6002545b6040519081526020016100ce565b6100ea61011a36600461082b565b610281565b604051601281526020016100ce565b7f00000000000000000000000000000000000000000000000000000000000000006100fe565b6100ea610162366004610801565b6102a5565b6100fe610175366004610867565b6001600160a01b031660009081526020819052604090205490565b6100c16102c7565b6100ea6101a6366004610801565b6102d6565b6100ea6101b9366004610801565b610356565b6100fe6101cc366004610889565b610364565b6060600380546101e0906108bc565b80601f016020809104026020016040519081016040528092919081815260200182805461020c906108bc565b80156102595780601f1061022e57610100808354040283529160200191610259565b820191906000526020600020905b81548152906001019060200180831161023c57829003601f168201915b5050505050905090565b60003361027181858561044e565b5060019392505050565b60025490565b60003361028f858285610572565b61029a8585856105ec565b506001949350505050565b6000336102718185856102b88383610364565b6102c291906108f7565b61044e565b6060600480546101e0906108bc565b600033816102e48286610364565b9050838110156103495760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61029a828686840361044e565b6000336102718185856105ec565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0382166103e55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610340565b80600260008282546103f791906108f7565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166104b05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610340565b6001600160a01b0382166105115760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610340565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061057e8484610364565b905060001981146105e657818110156105d95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610340565b6105e6848484840361044e565b50505050565b6001600160a01b0383166106505760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610340565b6001600160a01b0382166106b25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610340565b6001600160a01b0383166000908152602081905260409020548181101561072a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610340565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105e6565b600060208083528351808285015260005b818110156107bd578581018301518582016040015282016107a1565b818111156107cf576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146107fc57600080fd5b919050565b6000806040838503121561081457600080fd5b61081d836107e5565b946020939093013593505050565b60008060006060848603121561084057600080fd5b610849846107e5565b9250610857602085016107e5565b9150604084013590509250925092565b60006020828403121561087957600080fd5b610882826107e5565b9392505050565b6000806040838503121561089c57600080fd5b6108a5836107e5565b91506108b3602084016107e5565b90509250929050565b600181811c908216806108d057607f821691505b602082108114156108f157634e487b7160e01b600052602260045260246000fd5b50919050565b6000821982111561091857634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220a64470b03ad6face8b4e4d195f2d65734017f934cb0b762ef34e320ade2e0ac764736f6c63430008080033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80633950935111610071578063395093511461015457806370a082311461016757806395d89b4114610190578063a457c2d714610198578063a9059cbb146101ab578063dd62ed3e146101be57600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd1461010c578063313ce5671461011f578063355274ea1461012e575b600080fd5b6100c16101d1565b6040516100ce9190610790565b60405180910390f35b6100ea6100e5366004610801565b610263565b60405190151581526020016100ce565b6002545b6040519081526020016100ce565b6100ea61011a36600461082b565b610281565b604051601281526020016100ce565b7f000000000000000000000000000000000000000000a56fa5b99019a5c80000006100fe565b6100ea610162366004610801565b6102a5565b6100fe610175366004610867565b6001600160a01b031660009081526020819052604090205490565b6100c16102c7565b6100ea6101a6366004610801565b6102d6565b6100ea6101b9366004610801565b610356565b6100fe6101cc366004610889565b610364565b6060600380546101e0906108bc565b80601f016020809104026020016040519081016040528092919081815260200182805461020c906108bc565b80156102595780601f1061022e57610100808354040283529160200191610259565b820191906000526020600020905b81548152906001019060200180831161023c57829003601f168201915b5050505050905090565b60003361027181858561044e565b5060019392505050565b60025490565b60003361028f858285610572565b61029a8585856105ec565b506001949350505050565b6000336102718185856102b88383610364565b6102c291906108f7565b61044e565b6060600480546101e0906108bc565b600033816102e48286610364565b9050838110156103495760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61029a828686840361044e565b6000336102718185856105ec565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0382166103e55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610340565b80600260008282546103f791906108f7565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166104b05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610340565b6001600160a01b0382166105115760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610340565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061057e8484610364565b905060001981146105e657818110156105d95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610340565b6105e6848484840361044e565b50505050565b6001600160a01b0383166106505760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610340565b6001600160a01b0382166106b25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610340565b6001600160a01b0383166000908152602081905260409020548181101561072a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610340565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105e6565b600060208083528351808285015260005b818110156107bd578581018301518582016040015282016107a1565b818111156107cf576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146107fc57600080fd5b919050565b6000806040838503121561081457600080fd5b61081d836107e5565b946020939093013593505050565b60008060006060848603121561084057600080fd5b610849846107e5565b9250610857602085016107e5565b9150604084013590509250925092565b60006020828403121561087957600080fd5b610882826107e5565b9392505050565b6000806040838503121561089c57600080fd5b6108a5836107e5565b91506108b3602084016107e5565b90509250929050565b600181811c908216806108d057607f821691505b602082108114156108f157634e487b7160e01b600052602260045260246000fd5b50919050565b6000821982111561091857634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220a64470b03ad6face8b4e4d195f2d65734017f934cb0b762ef34e320ade2e0ac764736f6c63430008080033

Deployed Bytecode Sourcemap

24303:295:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11903:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14254:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;14254:201:0;1053:187:1;13023:108:0;13111:12;;13023:108;;;1391:25:1;;;1379:2;1364:18;13023:108:0;1245:177:1;15035:295:0;;;;;;:::i;:::-;;:::i;12865:93::-;;;12948:2;1902:36:1;;1890:2;1875:18;12865:93:0;1760:184:1;23771:83:0;23842:4;23771:83;;15739:238;;;;;;:::i;:::-;;:::i;13194:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13295:18:0;13268:7;13295:18;;;;;;;;;;;;13194:127;12122:104;;;:::i;16480:436::-;;;;;;:::i;:::-;;:::i;13527:193::-;;;;;;:::i;:::-;;:::i;13783:151::-;;;;;;:::i;:::-;;:::i;11903:100::-;11957:13;11990:5;11983:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11903:100;:::o;14254:201::-;14337:4;6011:10;14393:32;6011:10;14409:7;14418:6;14393:8;:32::i;:::-;-1:-1:-1;14443:4:0;;14254:201;-1:-1:-1;;;14254:201:0:o;13023:108::-;13111:12;;;13023:108::o;15035:295::-;15166:4;6011:10;15224:38;15240:4;6011:10;15255:6;15224:15;:38::i;:::-;15273:27;15283:4;15289:2;15293:6;15273:9;:27::i;:::-;-1:-1:-1;15318:4:0;;15035:295;-1:-1:-1;;;;15035:295:0:o;15739:238::-;15827:4;6011:10;15883:64;6011:10;15899:7;15936:10;15908:25;6011:10;15899:7;15908:9;:25::i;:::-;:38;;;;:::i;:::-;15883:8;:64::i;12122:104::-;12178:13;12211:7;12204:14;;;;;:::i;16480:436::-;16573:4;6011:10;16573:4;16656:25;6011:10;16673:7;16656:9;:25::i;:::-;16629:52;;16720:15;16700:16;:35;;16692:85;;;;-1:-1:-1;;;16692:85:0;;3222:2:1;16692:85:0;;;3204:21:1;3261:2;3241:18;;;3234:30;3300:34;3280:18;;;3273:62;-1:-1:-1;;;3351:18:1;;;3344:35;3396:19;;16692:85:0;;;;;;;;;16813:60;16822:5;16829:7;16857:15;16838:16;:34;16813:8;:60::i;13527:193::-;13606:4;6011:10;13662:28;6011:10;13679:2;13683:6;13662:9;:28::i;13783:151::-;-1:-1:-1;;;;;13899:18:0;;;13872:7;13899:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13783:151::o;18513:548::-;-1:-1:-1;;;;;18597:21:0;;18589:65;;;;-1:-1:-1;;;18589:65:0;;3628:2:1;18589:65:0;;;3610:21:1;3667:2;3647:18;;;3640:30;3706:33;3686:18;;;3679:61;3757:18;;18589:65:0;3426:355:1;18589:65:0;18745:6;18729:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;18900:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;18955:37;1391:25:1;;;18955:37:0;;1364:18:1;18955:37:0;;;;;;;18513:548;;:::o;20507:380::-;-1:-1:-1;;;;;20643:19:0;;20635:68;;;;-1:-1:-1;;;20635:68:0;;3988:2:1;20635:68:0;;;3970:21:1;4027:2;4007:18;;;4000:30;4066:34;4046:18;;;4039:62;-1:-1:-1;;;4117:18:1;;;4110:34;4161:19;;20635:68:0;3786:400:1;20635:68:0;-1:-1:-1;;;;;20722:21:0;;20714:68;;;;-1:-1:-1;;;20714:68:0;;4393:2:1;20714:68:0;;;4375:21:1;4432:2;4412:18;;;4405:30;4471:34;4451:18;;;4444:62;-1:-1:-1;;;4522:18:1;;;4515:32;4564:19;;20714:68:0;4191:398:1;20714:68:0;-1:-1:-1;;;;;20795:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20847:32;;1391:25:1;;;20847:32:0;;1364:18:1;20847:32:0;;;;;;;20507:380;;;:::o;21178:453::-;21313:24;21340:25;21350:5;21357:7;21340:9;:25::i;:::-;21313:52;;-1:-1:-1;;21380:16:0;:37;21376:248;;21462:6;21442:16;:26;;21434:68;;;;-1:-1:-1;;;21434:68:0;;4796:2:1;21434:68:0;;;4778:21:1;4835:2;4815:18;;;4808:30;4874:31;4854:18;;;4847:59;4923:18;;21434:68:0;4594:353:1;21434:68:0;21546:51;21555:5;21562:7;21590:6;21571:16;:25;21546:8;:51::i;:::-;21302:329;21178:453;;;:::o;17386:840::-;-1:-1:-1;;;;;17517:18:0;;17509:68;;;;-1:-1:-1;;;17509:68:0;;5154:2:1;17509:68:0;;;5136:21:1;5193:2;5173:18;;;5166:30;5232:34;5212:18;;;5205:62;-1:-1:-1;;;5283:18:1;;;5276:35;5328:19;;17509:68:0;4952:401:1;17509:68:0;-1:-1:-1;;;;;17596:16:0;;17588:64;;;;-1:-1:-1;;;17588:64:0;;5560:2:1;17588:64:0;;;5542:21:1;5599:2;5579:18;;;5572:30;5638:34;5618:18;;;5611:62;-1:-1:-1;;;5689:18:1;;;5682:33;5732:19;;17588:64:0;5358:399:1;17588:64:0;-1:-1:-1;;;;;17738:15:0;;17716:19;17738:15;;;;;;;;;;;17772:21;;;;17764:72;;;;-1:-1:-1;;;17764:72:0;;5964:2:1;17764:72:0;;;5946:21:1;6003:2;5983:18;;;5976:30;6042:34;6022:18;;;6015:62;-1:-1:-1;;;6093:18:1;;;6086:36;6139:19;;17764:72:0;5762:402:1;17764:72:0;-1:-1:-1;;;;;17872:15:0;;;:9;:15;;;;;;;;;;;17890:20;;;17872:38;;18090:13;;;;;;;;;;:23;;;;;;18142:26;;1391:25:1;;;18090:13:0;;18142:26;;1364:18:1;18142:26:0;;;;;;;18181:37;22231:125;14:597:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;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;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2140:260::-;2208:6;2216;2269:2;2257:9;2248:7;2244:23;2240:32;2237:52;;;2285:1;2282;2275:12;2237:52;2308:29;2327:9;2308:29;:::i;:::-;2298:39;;2356:38;2390:2;2379:9;2375:18;2356:38;:::i;:::-;2346:48;;2140:260;;;;;:::o;2405:380::-;2484:1;2480:12;;;;2527;;;2548:61;;2602:4;2594:6;2590:17;2580:27;;2548:61;2655:2;2647:6;2644:14;2624:18;2621:38;2618:161;;;2701:10;2696:3;2692:20;2689:1;2682:31;2736:4;2733:1;2726:15;2764:4;2761:1;2754:15;2618:161;;2405:380;;;:::o;2790:225::-;2830:3;2861:1;2857:6;2854:1;2851:13;2848:136;;;2906:10;2901:3;2897:20;2894:1;2887:31;2941:4;2938:1;2931:15;2969:4;2966:1;2959:15;2848:136;-1:-1:-1;3000:9:1;;2790:225::o

Swarm Source

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