ETH Price: $2,526.65 (+0.16%)

Token

Arealeum (ARE)
 

Overview

Max Total Supply

3,050,000,000 ARE

Holders

102

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,214 ARE

Value
$0.00
0x6EF004870F6BFC287DEA9Ed73626e842a62366F4
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ARE

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 1 of 5: ARE.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "./ERC20.sol";

contract ARE is ERC20("Arealeum", "ARE") {

  /**
  * @param wallet Address of the wallet, where tokens will be transferred to
  */
  constructor(address wallet) {
    _mint(wallet, uint256(3050000000) * 1 ether);
    // save owner address to receive fee from each tx in future
    _setOwner(wallet);
  }
}

File 2 of 5: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

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

File 3 of 5: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "./Context.sol";
import "./IERC20.sol";
import "./SafeMath.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    address private _owner;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) external virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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) external virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) external virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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:
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);

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

    function _setOwner(address account) internal {
        require(account != address(0), "ERC20: mint to the zero address");
        require(_owner == address(0), "Owner already assigned");

        _owner = account;
    }

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

File 4 of 5: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

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

File 5 of 5: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"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":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001c9538038062001c9583398181016040528101906200003791906200055f565b6040518060400160405280600881526020017f417265616c65756d0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f41524500000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb92919062000498565b508060049080519060200190620000d492919062000498565b506012600560006101000a81548160ff021916908360ff16021790555050506200011e81670de0b6b3a764000063b5cb4e8062000112919062000708565b6200013660201b60201c565b6200012f81620002e560201b60201c565b50620008d5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001a0906200065b565b60405180910390fd5b620001bd600083836200043060201b60201c565b620001d9816002546200043560201b6200071f1790919060201c565b60028190555062000237816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200043560201b6200071f1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002d991906200067d565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000358576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034f906200065b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620003ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e39062000639565b60405180910390fd5b80600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b6000808284620004469190620006ab565b9050838110156200048e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004859062000617565b60405180910390fd5b8091505092915050565b828054620004a690620007a7565b90600052602060002090601f016020900481019282620004ca576000855562000516565b82601f10620004e557805160ff191683800117855562000516565b8280016001018555821562000516579182015b8281111562000515578251825591602001919060010190620004f8565b5b50905062000525919062000529565b5090565b5b80821115620005445760008160009055506001016200052a565b5090565b6000815190506200055981620008bb565b92915050565b6000602082840312156200057857620005776200083b565b5b6000620005888482850162000548565b91505092915050565b6000620005a0601b836200069a565b9150620005ad8262000840565b602082019050919050565b6000620005c76016836200069a565b9150620005d48262000869565b602082019050919050565b6000620005ee601f836200069a565b9150620005fb8262000892565b602082019050919050565b62000611816200079d565b82525050565b60006020820190508181036000830152620006328162000591565b9050919050565b600060208201905081810360008301526200065481620005b8565b9050919050565b600060208201905081810360008301526200067681620005df565b9050919050565b600060208201905062000694600083018462000606565b92915050565b600082825260208201905092915050565b6000620006b8826200079d565b9150620006c5836200079d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006fd57620006fc620007dd565b5b828201905092915050565b600062000715826200079d565b915062000722836200079d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200075e576200075d620007dd565b5b828202905092915050565b600062000776826200077d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006002820490506001821680620007c057607f821691505b60208210811415620007d757620007d66200080c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f4f776e657220616c72656164792061737369676e656400000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620008c68162000769565b8114620008d257600080fd5b50565b6113b080620008e56000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ea8565b60405180910390f35b6100e660048036038101906100e19190610d38565b610308565b6040516100f39190610e8d565b60405180910390f35b610104610326565b6040516101119190610f6a565b60405180910390f35b610134600480360381019061012f9190610ce5565b610330565b6040516101419190610e8d565b60405180910390f35b610152610409565b60405161015f9190610f85565b60405180910390f35b610182600480360381019061017d9190610d38565b610420565b60405161018f9190610e8d565b60405180910390f35b6101b260048036038101906101ad9190610c78565b6104d3565b6040516101bf9190610f6a565b60405180910390f35b6101d061051b565b6040516101dd9190610ea8565b60405180910390f35b61020060048036038101906101fb9190610d38565b6105ad565b60405161020d9190610e8d565b60405180910390f35b610230600480360381019061022b9190610d38565b61067a565b60405161023d9190610e8d565b60405180910390f35b610260600480360381019061025b9190610ca5565b610698565b60405161026d9190610f6a565b60405180910390f35b606060038054610285906110ce565b80601f01602080910402602001604051908101604052809291908181526020018280546102b1906110ce565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561077d565b8484610785565b6001905092915050565b6000600254905090565b600061033d848484610950565b6103fe8461034961077d565b6103f98560405180606001604052806028815260200161132e60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103af61077d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610be59092919063ffffffff16565b610785565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006104c961042d61077d565b846104c4856001600061043e61077d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461071f90919063ffffffff16565b610785565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461052a906110ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610556906110ce565b80156105a35780601f10610578576101008083540402835291602001916105a3565b820191906000526020600020905b81548152906001019060200180831161058657829003601f168201915b5050505050905090565b60006106706105ba61077d565b8461066b8560405180606001604052806025815260200161135660259139600160006105e461077d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610be59092919063ffffffff16565b610785565b6001905092915050565b600061068e61068761077d565b8484610950565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080828461072e9190610fbc565b905083811015610773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076a90610f0a565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec90610f4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085c90610eea565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109439190610f6a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790610f2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2790610eca565b60405180910390fd5b610a3b838383610c49565b610aa681604051806060016040528060268152602001611308602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610be59092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b39816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461071f90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bd89190610f6a565b60405180910390a3505050565b6000838311158290610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c249190610ea8565b60405180910390fd5b5060008385610c3c9190611012565b9050809150509392505050565b505050565b600081359050610c5d816112d9565b92915050565b600081359050610c72816112f0565b92915050565b600060208284031215610c8e57610c8d61115e565b5b6000610c9c84828501610c4e565b91505092915050565b60008060408385031215610cbc57610cbb61115e565b5b6000610cca85828601610c4e565b9250506020610cdb85828601610c4e565b9150509250929050565b600080600060608486031215610cfe57610cfd61115e565b5b6000610d0c86828701610c4e565b9350506020610d1d86828701610c4e565b9250506040610d2e86828701610c63565b9150509250925092565b60008060408385031215610d4f57610d4e61115e565b5b6000610d5d85828601610c4e565b9250506020610d6e85828601610c63565b9150509250929050565b610d8181611058565b82525050565b6000610d9282610fa0565b610d9c8185610fab565b9350610dac81856020860161109b565b610db581611163565b840191505092915050565b6000610dcd602383610fab565b9150610dd882611174565b604082019050919050565b6000610df0602283610fab565b9150610dfb826111c3565b604082019050919050565b6000610e13601b83610fab565b9150610e1e82611212565b602082019050919050565b6000610e36602583610fab565b9150610e418261123b565b604082019050919050565b6000610e59602483610fab565b9150610e648261128a565b604082019050919050565b610e7881611084565b82525050565b610e878161108e565b82525050565b6000602082019050610ea26000830184610d78565b92915050565b60006020820190508181036000830152610ec28184610d87565b905092915050565b60006020820190508181036000830152610ee381610dc0565b9050919050565b60006020820190508181036000830152610f0381610de3565b9050919050565b60006020820190508181036000830152610f2381610e06565b9050919050565b60006020820190508181036000830152610f4381610e29565b9050919050565b60006020820190508181036000830152610f6381610e4c565b9050919050565b6000602082019050610f7f6000830184610e6f565b92915050565b6000602082019050610f9a6000830184610e7e565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610fc782611084565b9150610fd283611084565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561100757611006611100565b5b828201905092915050565b600061101d82611084565b915061102883611084565b92508282101561103b5761103a611100565b5b828203905092915050565b600061105182611064565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156110b957808201518184015260208101905061109e565b838111156110c8576000848401525b50505050565b600060028204905060018216806110e657607f821691505b602082108114156110fa576110f961112f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6112e281611046565b81146112ed57600080fd5b50565b6112f981611084565b811461130457600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201ccdc301eef6dcd8e632ac5a8e02525ab1f037ba0a7f615c28cb72113fde228c64736f6c63430008070033000000000000000000000000c1eda067eee4484c74c4a2b725e9f8c6a587b214

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ea8565b60405180910390f35b6100e660048036038101906100e19190610d38565b610308565b6040516100f39190610e8d565b60405180910390f35b610104610326565b6040516101119190610f6a565b60405180910390f35b610134600480360381019061012f9190610ce5565b610330565b6040516101419190610e8d565b60405180910390f35b610152610409565b60405161015f9190610f85565b60405180910390f35b610182600480360381019061017d9190610d38565b610420565b60405161018f9190610e8d565b60405180910390f35b6101b260048036038101906101ad9190610c78565b6104d3565b6040516101bf9190610f6a565b60405180910390f35b6101d061051b565b6040516101dd9190610ea8565b60405180910390f35b61020060048036038101906101fb9190610d38565b6105ad565b60405161020d9190610e8d565b60405180910390f35b610230600480360381019061022b9190610d38565b61067a565b60405161023d9190610e8d565b60405180910390f35b610260600480360381019061025b9190610ca5565b610698565b60405161026d9190610f6a565b60405180910390f35b606060038054610285906110ce565b80601f01602080910402602001604051908101604052809291908181526020018280546102b1906110ce565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561077d565b8484610785565b6001905092915050565b6000600254905090565b600061033d848484610950565b6103fe8461034961077d565b6103f98560405180606001604052806028815260200161132e60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103af61077d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610be59092919063ffffffff16565b610785565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006104c961042d61077d565b846104c4856001600061043e61077d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461071f90919063ffffffff16565b610785565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461052a906110ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610556906110ce565b80156105a35780601f10610578576101008083540402835291602001916105a3565b820191906000526020600020905b81548152906001019060200180831161058657829003601f168201915b5050505050905090565b60006106706105ba61077d565b8461066b8560405180606001604052806025815260200161135660259139600160006105e461077d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610be59092919063ffffffff16565b610785565b6001905092915050565b600061068e61068761077d565b8484610950565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080828461072e9190610fbc565b905083811015610773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076a90610f0a565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec90610f4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085c90610eea565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109439190610f6a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790610f2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2790610eca565b60405180910390fd5b610a3b838383610c49565b610aa681604051806060016040528060268152602001611308602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610be59092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b39816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461071f90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bd89190610f6a565b60405180910390a3505050565b6000838311158290610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c249190610ea8565b60405180910390fd5b5060008385610c3c9190611012565b9050809150509392505050565b505050565b600081359050610c5d816112d9565b92915050565b600081359050610c72816112f0565b92915050565b600060208284031215610c8e57610c8d61115e565b5b6000610c9c84828501610c4e565b91505092915050565b60008060408385031215610cbc57610cbb61115e565b5b6000610cca85828601610c4e565b9250506020610cdb85828601610c4e565b9150509250929050565b600080600060608486031215610cfe57610cfd61115e565b5b6000610d0c86828701610c4e565b9350506020610d1d86828701610c4e565b9250506040610d2e86828701610c63565b9150509250925092565b60008060408385031215610d4f57610d4e61115e565b5b6000610d5d85828601610c4e565b9250506020610d6e85828601610c63565b9150509250929050565b610d8181611058565b82525050565b6000610d9282610fa0565b610d9c8185610fab565b9350610dac81856020860161109b565b610db581611163565b840191505092915050565b6000610dcd602383610fab565b9150610dd882611174565b604082019050919050565b6000610df0602283610fab565b9150610dfb826111c3565b604082019050919050565b6000610e13601b83610fab565b9150610e1e82611212565b602082019050919050565b6000610e36602583610fab565b9150610e418261123b565b604082019050919050565b6000610e59602483610fab565b9150610e648261128a565b604082019050919050565b610e7881611084565b82525050565b610e878161108e565b82525050565b6000602082019050610ea26000830184610d78565b92915050565b60006020820190508181036000830152610ec28184610d87565b905092915050565b60006020820190508181036000830152610ee381610dc0565b9050919050565b60006020820190508181036000830152610f0381610de3565b9050919050565b60006020820190508181036000830152610f2381610e06565b9050919050565b60006020820190508181036000830152610f4381610e29565b9050919050565b60006020820190508181036000830152610f6381610e4c565b9050919050565b6000602082019050610f7f6000830184610e6f565b92915050565b6000602082019050610f9a6000830184610e7e565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610fc782611084565b9150610fd283611084565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561100757611006611100565b5b828201905092915050565b600061101d82611084565b915061102883611084565b92508282101561103b5761103a611100565b5b828203905092915050565b600061105182611064565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156110b957808201518184015260208101905061109e565b838111156110c8576000848401525b50505050565b600060028204905060018216806110e657607f821691505b602082108114156110fa576110f961112f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6112e281611046565b81146112ed57600080fd5b50565b6112f981611084565b811461130457600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201ccdc301eef6dcd8e632ac5a8e02525ab1f037ba0a7f615c28cb72113fde228c64736f6c63430008070033

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

000000000000000000000000c1eda067eee4484c74c4a2b725e9f8c6a587b214

-----Decoded View---------------
Arg [0] : wallet (address): 0xc1eda067Eee4484C74C4A2b725e9F8c6a587B214

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c1eda067eee4484c74c4a2b725e9f8c6a587b214


Deployed Bytecode Sourcemap

81:306:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2162:83:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4212:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3211:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4847:319;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3068:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5561:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3369:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2358:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6265:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3691:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3923:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2162:83;2201:13;2233:5;2226:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2162:83;:::o;4212:168::-;4297:4;4313:39;4322:12;:10;:12::i;:::-;4336:7;4345:6;4313:8;:39::i;:::-;4369:4;4362:11;;4212:168;;;;:::o;3211:100::-;3266:7;3292:12;;3285:19;;3211:100;:::o;4847:319::-;4955:4;4971:36;4981:6;4989:9;5000:6;4971:9;:36::i;:::-;5017:121;5026:6;5034:12;:10;:12::i;:::-;5048:89;5086:6;5048:89;;;;;;;;;;;;;;;;;:11;:19;5060:6;5048:19;;;;;;;;;;;;;;;:33;5068:12;:10;:12::i;:::-;5048:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;5017:8;:121::i;:::-;5155:4;5148:11;;4847:319;;;;;:::o;3068:83::-;3111:5;3135:9;;;;;;;;;;;3128:16;;3068:83;:::o;5561:217::-;5651:4;5667:83;5676:12;:10;:12::i;:::-;5690:7;5699:50;5738:10;5699:11;:25;5711:12;:10;:12::i;:::-;5699:25;;;;;;;;;;;;;;;:34;5725:7;5699:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;5667:8;:83::i;:::-;5767:4;5760:11;;5561:217;;;;:::o;3369:119::-;3437:7;3463:9;:18;3473:7;3463:18;;;;;;;;;;;;;;;;3456:25;;3369:119;;;:::o;2358:87::-;2399:13;2431:7;2424:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2358:87;:::o;6265:268::-;6360:4;6376:129;6385:12;:10;:12::i;:::-;6399:7;6408:96;6447:15;6408:96;;;;;;;;;;;;;;;;;:11;:25;6420:12;:10;:12::i;:::-;6408:25;;;;;;;;;;;;;;;:34;6434:7;6408:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;6376:8;:129::i;:::-;6522:4;6515:11;;6265:268;;;;:::o;3691:174::-;3779:4;3795:42;3805:12;:10;:12::i;:::-;3819:9;3830:6;3795:9;:42::i;:::-;3854:4;3847:11;;3691:174;;;;:::o;3923:151::-;4014:7;4040:11;:18;4052:5;4040:18;;;;;;;;;;;;;;;:27;4059:7;4040:27;;;;;;;;;;;;;;;;4033:34;;3923:151;;;;:::o;1027:176:4:-;1085:7;1104:9;1120:1;1116;:5;;;;:::i;:::-;1104:17;;1144:1;1139;:6;;1131:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;1195:1;1188:8;;;1027:176;;;;:::o;587:96:1:-;640:7;666:10;659:17;;587:96;:::o;8827:340:2:-;8945:1;8928:19;;:5;:19;;;;8920:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9025:1;9006:21;;:7;:21;;;;8998:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9107:6;9077:11;:18;9089:5;9077:18;;;;;;;;;;;;;;;:27;9096:7;9077:27;;;;;;;;;;;;;;;:36;;;;9144:7;9128:32;;9137:5;9128:32;;;9153:6;9128:32;;;;;;:::i;:::-;;;;;;;;8827:340;;;:::o;7007:530::-;7130:1;7112:20;;:6;:20;;;;7104:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7213:1;7192:23;;:9;:23;;;;7184:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7266:47;7287:6;7295:9;7306:6;7266:20;:47::i;:::-;7344:71;7366:6;7344:71;;;;;;;;;;;;;;;;;:9;:17;7354:6;7344:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;7324:9;:17;7334:6;7324:17;;;;;;;;;;;;;;;:91;;;;7448:32;7473:6;7448:9;:20;7458:9;7448:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;7425:9;:20;7435:9;7425:20;;;;;;;;;;;;;;;:55;;;;7512:9;7495:35;;7504:6;7495:35;;;7523:6;7495:35;;;;;;:::i;:::-;;;;;;;;7007:530;;;:::o;1494:187:4:-;1580:7;1612:1;1607;:6;;1615:12;1599:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1638:9;1654:1;1650;:5;;;;:::i;:::-;1638:17;;1673:1;1666:8;;;1494:187;;;;;:::o;9754:92:2:-;;;;:::o;7:139:5:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:109::-;2298:21;2313:5;2298:21;:::i;:::-;2293:3;2286:34;2217:109;;:::o;2332:364::-;2420:3;2448:39;2481:5;2448:39;:::i;:::-;2503:71;2567:6;2562:3;2503:71;:::i;:::-;2496:78;;2583:52;2628:6;2623:3;2616:4;2609:5;2605:16;2583:52;:::i;:::-;2660:29;2682:6;2660:29;:::i;:::-;2655:3;2651:39;2644:46;;2424:272;2332:364;;;;:::o;2702:366::-;2844:3;2865:67;2929:2;2924:3;2865:67;:::i;:::-;2858:74;;2941:93;3030:3;2941:93;:::i;:::-;3059:2;3054:3;3050:12;3043:19;;2702:366;;;:::o;3074:::-;3216:3;3237:67;3301:2;3296:3;3237:67;:::i;:::-;3230:74;;3313:93;3402:3;3313:93;:::i;:::-;3431:2;3426:3;3422:12;3415:19;;3074:366;;;:::o;3446:::-;3588:3;3609:67;3673:2;3668:3;3609:67;:::i;:::-;3602:74;;3685:93;3774:3;3685:93;:::i;:::-;3803:2;3798:3;3794:12;3787:19;;3446:366;;;:::o;3818:::-;3960:3;3981:67;4045:2;4040:3;3981:67;:::i;:::-;3974:74;;4057:93;4146:3;4057:93;:::i;:::-;4175:2;4170:3;4166:12;4159:19;;3818:366;;;:::o;4190:::-;4332:3;4353:67;4417:2;4412:3;4353:67;:::i;:::-;4346:74;;4429:93;4518:3;4429:93;:::i;:::-;4547:2;4542:3;4538:12;4531:19;;4190:366;;;:::o;4562:118::-;4649:24;4667:5;4649:24;:::i;:::-;4644:3;4637:37;4562:118;;:::o;4686:112::-;4769:22;4785:5;4769:22;:::i;:::-;4764:3;4757:35;4686:112;;:::o;4804:210::-;4891:4;4929:2;4918:9;4914:18;4906:26;;4942:65;5004:1;4993:9;4989:17;4980:6;4942:65;:::i;:::-;4804:210;;;;:::o;5020:313::-;5133:4;5171:2;5160:9;5156:18;5148:26;;5220:9;5214:4;5210:20;5206:1;5195:9;5191:17;5184:47;5248:78;5321:4;5312:6;5248:78;:::i;:::-;5240:86;;5020:313;;;;:::o;5339:419::-;5505:4;5543:2;5532:9;5528:18;5520:26;;5592:9;5586:4;5582:20;5578:1;5567:9;5563:17;5556:47;5620:131;5746:4;5620:131;:::i;:::-;5612:139;;5339:419;;;:::o;5764:::-;5930:4;5968:2;5957:9;5953:18;5945:26;;6017:9;6011:4;6007:20;6003:1;5992:9;5988:17;5981:47;6045:131;6171:4;6045:131;:::i;:::-;6037:139;;5764:419;;;:::o;6189:::-;6355:4;6393:2;6382:9;6378:18;6370:26;;6442:9;6436:4;6432:20;6428:1;6417:9;6413:17;6406:47;6470:131;6596:4;6470:131;:::i;:::-;6462:139;;6189:419;;;:::o;6614:::-;6780:4;6818:2;6807:9;6803:18;6795:26;;6867:9;6861:4;6857:20;6853:1;6842:9;6838:17;6831:47;6895:131;7021:4;6895:131;:::i;:::-;6887:139;;6614:419;;;:::o;7039:::-;7205:4;7243:2;7232:9;7228:18;7220:26;;7292:9;7286:4;7282:20;7278:1;7267:9;7263:17;7256:47;7320:131;7446:4;7320:131;:::i;:::-;7312:139;;7039:419;;;:::o;7464:222::-;7557:4;7595:2;7584:9;7580:18;7572:26;;7608:71;7676:1;7665:9;7661:17;7652:6;7608:71;:::i;:::-;7464:222;;;;:::o;7692:214::-;7781:4;7819:2;7808:9;7804:18;7796:26;;7832:67;7896:1;7885:9;7881:17;7872:6;7832:67;:::i;:::-;7692:214;;;;:::o;7993:99::-;8045:6;8079:5;8073:12;8063:22;;7993:99;;;:::o;8098:169::-;8182:11;8216:6;8211:3;8204:19;8256:4;8251:3;8247:14;8232:29;;8098:169;;;;:::o;8273:305::-;8313:3;8332:20;8350:1;8332:20;:::i;:::-;8327:25;;8366:20;8384:1;8366:20;:::i;:::-;8361:25;;8520:1;8452:66;8448:74;8445:1;8442:81;8439:107;;;8526:18;;:::i;:::-;8439:107;8570:1;8567;8563:9;8556:16;;8273:305;;;;:::o;8584:191::-;8624:4;8644:20;8662:1;8644:20;:::i;:::-;8639:25;;8678:20;8696:1;8678:20;:::i;:::-;8673:25;;8717:1;8714;8711:8;8708:34;;;8722:18;;:::i;:::-;8708:34;8767:1;8764;8760:9;8752:17;;8584:191;;;;:::o;8781:96::-;8818:7;8847:24;8865:5;8847:24;:::i;:::-;8836:35;;8781:96;;;:::o;8883:90::-;8917:7;8960:5;8953:13;8946:21;8935:32;;8883:90;;;:::o;8979:126::-;9016:7;9056:42;9049:5;9045:54;9034:65;;8979:126;;;:::o;9111:77::-;9148:7;9177:5;9166:16;;9111:77;;;:::o;9194:86::-;9229:7;9269:4;9262:5;9258:16;9247:27;;9194:86;;;:::o;9286:307::-;9354:1;9364:113;9378:6;9375:1;9372:13;9364:113;;;9463:1;9458:3;9454:11;9448:18;9444:1;9439:3;9435:11;9428:39;9400:2;9397:1;9393:10;9388:15;;9364:113;;;9495:6;9492:1;9489:13;9486:101;;;9575:1;9566:6;9561:3;9557:16;9550:27;9486:101;9335:258;9286:307;;;:::o;9599:320::-;9643:6;9680:1;9674:4;9670:12;9660:22;;9727:1;9721:4;9717:12;9748:18;9738:81;;9804:4;9796:6;9792:17;9782:27;;9738:81;9866:2;9858:6;9855:14;9835:18;9832:38;9829:84;;;9885:18;;:::i;:::-;9829:84;9650:269;9599:320;;;:::o;9925:180::-;9973:77;9970:1;9963:88;10070:4;10067:1;10060:15;10094:4;10091:1;10084:15;10111:180;10159:77;10156:1;10149:88;10256:4;10253:1;10246:15;10280:4;10277:1;10270:15;10420:117;10529:1;10526;10519:12;10543:102;10584:6;10635:2;10631:7;10626:2;10619:5;10615:14;10611:28;10601:38;;10543:102;;;:::o;10651:222::-;10791:34;10787:1;10779:6;10775:14;10768:58;10860:5;10855:2;10847:6;10843:15;10836:30;10651:222;:::o;10879:221::-;11019:34;11015:1;11007:6;11003:14;10996:58;11088:4;11083:2;11075:6;11071:15;11064:29;10879:221;:::o;11106:177::-;11246:29;11242:1;11234:6;11230:14;11223:53;11106:177;:::o;11289:224::-;11429:34;11425:1;11417:6;11413:14;11406:58;11498:7;11493:2;11485:6;11481:15;11474:32;11289:224;:::o;11519:223::-;11659:34;11655:1;11647:6;11643:14;11636:58;11728:6;11723:2;11715:6;11711:15;11704:31;11519:223;:::o;11748:122::-;11821:24;11839:5;11821:24;:::i;:::-;11814:5;11811:35;11801:63;;11860:1;11857;11850:12;11801:63;11748:122;:::o;11876:::-;11949:24;11967:5;11949:24;:::i;:::-;11942:5;11939:35;11929:63;;11988:1;11985;11978:12;11929:63;11876:122;:::o

Swarm Source

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