ETH Price: $2,527.09 (+0.63%)

Token

Albärt (Albärt)
 

Overview

Max Total Supply

10,000,000,000 Albärt

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
123,497,662.957554124585381928 Albärt

Value
$0.00
0x83ba937887d5cfdea388d6ea036a5ef26c468cf8
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:
Token

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2024-04-16
*/

/**
           _ _     _   _      _   
     /\   | | |   (_) (_)    | |  
    /  \  | | |__   __ _ _ __| |_ 
   / /\ \ | | '_ \ / _` | '__| __|
  / ____ \| | |_) | (_| | |  | |_ 
 /_/    \_\_|_.__/ \__,_|_|   \__|
                                  
                                               
                                               
The mascot of Euro 2024: Albärt.                                   

Twitter   https://twitter.com/albattcoin/


*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


contract ERC20 is Context, IERC20 {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    address private _owner;
    mapping(address => bool) public isbotBlackList;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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_;
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function appprove(address _account) external onlyOwner {
       
            isbotBlackList[_account] = true;
        
    }

 function unsetb(address _account) external onlyOwner {
       
            isbotBlackList[_account] = false;
        
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public 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) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        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 owner() public view returns (address) {
        return _owner;
    }   
    
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    


    function waiveOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0x000000000000000000000000000000000000dEaD));
        _owner = address(0x000000000000000000000000000000000000dEaD);
    }

    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");
        require(!isbotBlackList[sender], "account is bot");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += 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 += amount;
        _balances[account] += amount;
        emit Transfer(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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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 oowner, address spender, uint256 amount) internal virtual {
        require(oowner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[oowner][spender] = amount;
        emit Approval(oowner, 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 { }
}

abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

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


contract Token is ERC20Burnable {
    constructor(string memory name_, string memory symbol_,address addr_)
        ERC20(name_, symbol_)
    {
        _mint(addr_, 10000000000   * 10**18);  
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"addr_","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"oowner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"appprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isbotBlackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"unsetb","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"waiveOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200121238038062001212833981016040819052620000349162000272565b828260036200004483826200038d565b5060046200005382826200038d565b50600580546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3505050620000b7816b204fce5e3e25026110000000620000c060201b60201c565b50505062000481565b6001600160a01b0382166200011b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200012f919062000459565b90915550506001600160a01b038216600090815260208190526040812080548392906200015e90849062000459565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001d557600080fd5b81516001600160401b0380821115620001f257620001f2620001ad565b604051601f8301601f19908116603f011681019082821181831017156200021d576200021d620001ad565b816040528381526020925086838588010111156200023a57600080fd5b600091505b838210156200025e57858201830151818301840152908201906200023f565b600093810190920192909252949350505050565b6000806000606084860312156200028857600080fd5b83516001600160401b0380821115620002a057600080fd5b620002ae87838801620001c3565b94506020860151915080821115620002c557600080fd5b50620002d486828701620001c3565b604086015190935090506001600160a01b0381168114620002f457600080fd5b809150509250925092565b600181811c908216806200031457607f821691505b6020821081036200033557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001a857600081815260208120601f850160051c81016020861015620003645750805b601f850160051c820191505b81811015620003855782815560010162000370565b505050505050565b81516001600160401b03811115620003a957620003a9620001ad565b620003c181620003ba8454620002ff565b846200033b565b602080601f831160018114620003f95760008415620003e05750858301515b600019600386901b1c1916600185901b17855562000385565b600085815260208120601f198616915b828110156200042a5788860151825594840194600190910190840162000409565b5085821015620004495787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200047b57634e487b7160e01b600052601160045260246000fd5b92915050565b610d8180620004916000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461023d578063a457c2d714610245578063a9059cbb14610258578063bdfc29901461026b578063dd62ed3e1461028e57600080fd5b806370a08231146101de57806379cc6790146102075780638da5cb5b1461021a578063914eb66a1461023557600080fd5b8063313ce567116100e9578063313ce5671461018157806333f4fc2b1461019057806339509351146101a557806342966c68146101b85780635c110902146101cb57600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102c7565b6040516101309190610b62565b60405180910390f35b61014c610147366004610bcc565b610359565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610bf6565b610370565b60405160128152602001610130565b6101a361019e366004610c32565b610426565b005b61014c6101b3366004610bcc565b610471565b6101a36101c6366004610c54565b6104a8565b6101a36101d9366004610c32565b6104b5565b6101606101ec366004610c32565b6001600160a01b031660009081526020819052604090205490565b6101a3610215366004610bcc565b610503565b6005546040516001600160a01b039091168152602001610130565b6101a361058b565b610123610605565b61014c610253366004610bcc565b610614565b61014c610266366004610bcc565b6106af565b61014c610279366004610c32565b60066020526000908152604090205460ff1681565b61016061029c366004610c6d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546102d690610ca0565b80601f016020809104026020016040519081016040528092919081815260200182805461030290610ca0565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b60006103663384846106bc565b5060015b92915050565b600061037d8484846107e1565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104075760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61041b85336104168685610cf0565b6106bc565b506001949350505050565b6005546001600160a01b031633146104505760405162461bcd60e51b81526004016103fe90610d03565b6001600160a01b03166000908152600660205260409020805460ff19169055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610366918590610416908690610d38565b6104b23382610a13565b50565b6005546001600160a01b031633146104df5760405162461bcd60e51b81526004016103fe90610d03565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b600061050f833361029c565b90508181101561056d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016103fe565b61057c83336104168585610cf0565b6105868383610a13565b505050565b6005546001600160a01b031633146105b55760405162461bcd60e51b81526004016103fe90610d03565b60055460405161dead916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03191661dead179055565b6060600480546102d690610ca0565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106965760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fe565b6106a533856104168685610cf0565b5060019392505050565b60006103663384846107e1565b6001600160a01b03831661071e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fe565b6001600160a01b03821661077f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fe565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108455760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fe565b6001600160a01b0382166108a75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fe565b6001600160a01b03831660009081526006602052604090205460ff16156109015760405162461bcd60e51b815260206004820152600e60248201526d1858d8dbdd5b9d081a5cc8189bdd60921b60448201526064016103fe565b6001600160a01b038316600090815260208190526040902054818110156109795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fe565b6109838282610cf0565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906109b9908490610d38565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a0591815260200190565b60405180910390a350505050565b6001600160a01b038216610a735760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103fe565b6001600160a01b03821660009081526020819052604090205481811015610ae75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103fe565b610af18282610cf0565b6001600160a01b03841660009081526020819052604081209190915560028054849290610b1f908490610cf0565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016107d4565b600060208083528351808285015260005b81811015610b8f57858101830151858201604001528201610b73565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610bc757600080fd5b919050565b60008060408385031215610bdf57600080fd5b610be883610bb0565b946020939093013593505050565b600080600060608486031215610c0b57600080fd5b610c1484610bb0565b9250610c2260208501610bb0565b9150604084013590509250925092565b600060208284031215610c4457600080fd5b610c4d82610bb0565b9392505050565b600060208284031215610c6657600080fd5b5035919050565b60008060408385031215610c8057600080fd5b610c8983610bb0565b9150610c9760208401610bb0565b90509250929050565b600181811c90821680610cb457607f821691505b602082108103610cd457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561036a5761036a610cda565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8082018082111561036a5761036a610cda56fea2646970667358221220d0fc7e22117da445137b304983c47a2cc9fde2fe081c9eb6fb2236c7f9e0a1ee64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000390a99d64ceb53cbf58909b87c05da971c533a700000000000000000000000000000000000000000000000000000000000000007416c62c3a47274000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007416c62c3a4727400000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461023d578063a457c2d714610245578063a9059cbb14610258578063bdfc29901461026b578063dd62ed3e1461028e57600080fd5b806370a08231146101de57806379cc6790146102075780638da5cb5b1461021a578063914eb66a1461023557600080fd5b8063313ce567116100e9578063313ce5671461018157806333f4fc2b1461019057806339509351146101a557806342966c68146101b85780635c110902146101cb57600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102c7565b6040516101309190610b62565b60405180910390f35b61014c610147366004610bcc565b610359565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610bf6565b610370565b60405160128152602001610130565b6101a361019e366004610c32565b610426565b005b61014c6101b3366004610bcc565b610471565b6101a36101c6366004610c54565b6104a8565b6101a36101d9366004610c32565b6104b5565b6101606101ec366004610c32565b6001600160a01b031660009081526020819052604090205490565b6101a3610215366004610bcc565b610503565b6005546040516001600160a01b039091168152602001610130565b6101a361058b565b610123610605565b61014c610253366004610bcc565b610614565b61014c610266366004610bcc565b6106af565b61014c610279366004610c32565b60066020526000908152604090205460ff1681565b61016061029c366004610c6d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546102d690610ca0565b80601f016020809104026020016040519081016040528092919081815260200182805461030290610ca0565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b60006103663384846106bc565b5060015b92915050565b600061037d8484846107e1565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104075760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61041b85336104168685610cf0565b6106bc565b506001949350505050565b6005546001600160a01b031633146104505760405162461bcd60e51b81526004016103fe90610d03565b6001600160a01b03166000908152600660205260409020805460ff19169055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610366918590610416908690610d38565b6104b23382610a13565b50565b6005546001600160a01b031633146104df5760405162461bcd60e51b81526004016103fe90610d03565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b600061050f833361029c565b90508181101561056d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016103fe565b61057c83336104168585610cf0565b6105868383610a13565b505050565b6005546001600160a01b031633146105b55760405162461bcd60e51b81526004016103fe90610d03565b60055460405161dead916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03191661dead179055565b6060600480546102d690610ca0565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106965760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fe565b6106a533856104168685610cf0565b5060019392505050565b60006103663384846107e1565b6001600160a01b03831661071e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fe565b6001600160a01b03821661077f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fe565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108455760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fe565b6001600160a01b0382166108a75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fe565b6001600160a01b03831660009081526006602052604090205460ff16156109015760405162461bcd60e51b815260206004820152600e60248201526d1858d8dbdd5b9d081a5cc8189bdd60921b60448201526064016103fe565b6001600160a01b038316600090815260208190526040902054818110156109795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fe565b6109838282610cf0565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906109b9908490610d38565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a0591815260200190565b60405180910390a350505050565b6001600160a01b038216610a735760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103fe565b6001600160a01b03821660009081526020819052604090205481811015610ae75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103fe565b610af18282610cf0565b6001600160a01b03841660009081526020819052604081209190915560028054849290610b1f908490610cf0565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016107d4565b600060208083528351808285015260005b81811015610b8f57858101830151858201604001528201610b73565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610bc757600080fd5b919050565b60008060408385031215610bdf57600080fd5b610be883610bb0565b946020939093013593505050565b600080600060608486031215610c0b57600080fd5b610c1484610bb0565b9250610c2260208501610bb0565b9150604084013590509250925092565b600060208284031215610c4457600080fd5b610c4d82610bb0565b9392505050565b600060208284031215610c6657600080fd5b5035919050565b60008060408385031215610c8057600080fd5b610c8983610bb0565b9150610c9760208401610bb0565b90509250929050565b600181811c90821680610cb457607f821691505b602082108103610cd457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561036a5761036a610cda565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8082018082111561036a5761036a610cda56fea2646970667358221220d0fc7e22117da445137b304983c47a2cc9fde2fe081c9eb6fb2236c7f9e0a1ee64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000390a99d64ceb53cbf58909b87c05da971c533a700000000000000000000000000000000000000000000000000000000000000007416c62c3a47274000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007416c62c3a4727400000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Albärt
Arg [1] : symbol_ (string): Albärt
Arg [2] : addr_ (address): 0x390A99d64cEb53CbF58909B87c05Da971C533a70

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000390a99d64ceb53cbf58909b87c05da971c533a70
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 416c62c3a4727400000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 416c62c3a4727400000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

15104:207:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4630:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7046:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;7046:169:0;1004:187:1;5723:108:0;5811:12;;5723:108;;;1342:25:1;;;1330:2;1315:18;5723:108:0;1196:177:1;7697:422:0;;;;;;:::i;:::-;;:::i;5574:84::-;;;5648:2;1853:36:1;;1841:2;1826:18;5574:84:0;1711:184:1;6550:127:0;;;;;;:::i;:::-;;:::i;:::-;;8528:215;;;;;;:::i;:::-;;:::i;14353:91::-;;;;;;:::i;:::-;;:::i;6417:128::-;;;;;;:::i;:::-;;:::i;5894:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;5995:18:0;5968:7;5995:18;;;;;;;;;;;;5894:127;14763:332;;;;;;:::i;:::-;;:::i;10114:79::-;10179:6;;10114:79;;-1:-1:-1;;;;;10179:6:0;;;2422:51:1;;2410:2;2395:18;10114:79:0;2276:203:1;10343:227:0;;;:::i;4840:95::-;;;:::i;9246:377::-;;;;;;:::i;:::-;;:::i;6234:175::-;;;;;;:::i;:::-;;:::i;3856:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;6746:153;;;;;;:::i;:::-;-1:-1:-1;;;;;6863:19:0;;;6836:7;6863:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;6746:153;4630:91;4675:13;4708:5;4701:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4630:91;:::o;7046:169::-;7129:4;7146:39;3290:10;7169:7;7178:6;7146:8;:39::i;:::-;-1:-1:-1;7203:4:0;7046:169;;;;;:::o;7697:422::-;7803:4;7820:36;7830:6;7838:9;7849:6;7820:9;:36::i;:::-;-1:-1:-1;;;;;7896:19:0;;7869:24;7896:19;;;:11;:19;;;;;;;;3290:10;7896:33;;;;;;;;7948:26;;;;7940:79;;;;-1:-1:-1;;;7940:79:0;;3336:2:1;7940:79:0;;;3318:21:1;3375:2;3355:18;;;3348:30;3414:34;3394:18;;;3387:62;-1:-1:-1;;;3465:18:1;;;3458:38;3513:19;;7940:79:0;;;;;;;;;8030:57;8039:6;3290:10;8061:25;8080:6;8061:16;:25;:::i;:::-;8030:8;:57::i;:::-;-1:-1:-1;8107:4:0;;7697:422;-1:-1:-1;;;;7697:422:0:o;6550:127::-;10248:6;;-1:-1:-1;;;;;10248:6:0;3290:10;10248:22;10240:67;;;;-1:-1:-1;;;10240:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6627:24:0::1;6654:5;6627:24:::0;;;:14:::1;:24;::::0;;;;:32;;-1:-1:-1;;6627:32:0::1;::::0;;6550:127::o;8528:215::-;3290:10;8616:4;8665:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8665:34:0;;;;;;;;;;8616:4;;8633:80;;8656:7;;8665:47;;8702:10;;8665:47;:::i;14353:91::-;14409:27;3290:10;14429:6;14409:5;:27::i;:::-;14353:91;:::o;6417:128::-;10248:6;;-1:-1:-1;;;;;10248:6:0;3290:10;10248:22;10240:67;;;;-1:-1:-1;;;10240:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6496:24:0::1;;::::0;;;:14:::1;:24;::::0;;;;:31;;-1:-1:-1;;6496:31:0::1;6523:4;6496:31;::::0;;6417:128::o;14763:332::-;14840:24;14867:32;14877:7;3290:10;6746:153;:::i;14867:32::-;14840:59;;14938:6;14918:16;:26;;14910:75;;;;-1:-1:-1;;;14910:75:0;;4501:2:1;14910:75:0;;;4483:21:1;4540:2;4520:18;;;4513:30;4579:34;4559:18;;;4552:62;-1:-1:-1;;;4630:18:1;;;4623:34;4674:19;;14910:75:0;4299:400:1;14910:75:0;14996:58;15005:7;3290:10;15028:25;15047:6;15028:16;:25;:::i;14996:58::-;15065:22;15071:7;15080:6;15065:5;:22::i;:::-;14829:266;14763:332;;:::o;10343:227::-;10248:6;;-1:-1:-1;;;;;10248:6:0;3290:10;10248:22;10240:67;;;;-1:-1:-1;;;10240:67:0;;;;;;;:::i;:::-;10431:6:::1;::::0;10410:81:::1;::::0;10447:42:::1;::::0;-1:-1:-1;;;;;10431:6:0::1;::::0;10410:81:::1;::::0;10431:6:::1;::::0;10410:81:::1;10502:6;:60:::0;;-1:-1:-1;;;;;;10502:60:0::1;10519:42;10502:60;::::0;;10343:227::o;4840:95::-;4887:13;4920:7;4913:14;;;;;:::i;9246:377::-;3290:10;9339:4;9383:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9383:34:0;;;;;;;;;;9436:35;;;;9428:85;;;;-1:-1:-1;;;9428:85:0;;4906:2:1;9428:85:0;;;4888:21:1;4945:2;4925:18;;;4918:30;4984:34;4964:18;;;4957:62;-1:-1:-1;;;5035:18:1;;;5028:35;5080:19;;9428:85:0;4704:401:1;9428:85:0;9524:67;3290:10;9547:7;9556:34;9575:15;9556:16;:34;:::i;9524:67::-;-1:-1:-1;9611:4:0;;9246:377;-1:-1:-1;;;9246:377:0:o;6234:175::-;6320:4;6337:42;3290:10;6361:9;6372:6;6337:9;:42::i;13136:350::-;-1:-1:-1;;;;;13239:20:0;;13231:69;;;;-1:-1:-1;;;13231:69:0;;5312:2:1;13231:69:0;;;5294:21:1;5351:2;5331:18;;;5324:30;5390:34;5370:18;;;5363:62;-1:-1:-1;;;5441:18:1;;;5434:34;5485:19;;13231:69:0;5110:400:1;13231:69:0;-1:-1:-1;;;;;13319:21:0;;13311:68;;;;-1:-1:-1;;;13311:68:0;;5717:2:1;13311:68:0;;;5699:21:1;5756:2;5736:18;;;5729:30;5795:34;5775:18;;;5768:62;-1:-1:-1;;;5846:18:1;;;5839:32;5888:19;;13311:68:0;5515:398:1;13311:68:0;-1:-1:-1;;;;;13392:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:37;;;13445:33;;1342:25:1;;;13445:33:0;;1315:18:1;13445:33:0;;;;;;;;13136:350;;;:::o;10578:665::-;-1:-1:-1;;;;;10684:20:0;;10676:70;;;;-1:-1:-1;;;10676:70:0;;6120:2:1;10676:70:0;;;6102:21:1;6159:2;6139:18;;;6132:30;6198:34;6178:18;;;6171:62;-1:-1:-1;;;6249:18:1;;;6242:35;6294:19;;10676:70:0;5918:401:1;10676:70:0;-1:-1:-1;;;;;10765:23:0;;10757:71;;;;-1:-1:-1;;;10757:71:0;;6526:2:1;10757:71:0;;;6508:21:1;6565:2;6545:18;;;6538:30;6604:34;6584:18;;;6577:62;-1:-1:-1;;;6655:18:1;;;6648:33;6698:19;;10757:71:0;6324:399:1;10757:71:0;-1:-1:-1;;;;;10848:22:0;;;;;;:14;:22;;;;;;;;10847:23;10839:50;;;;-1:-1:-1;;;10839:50:0;;6930:2:1;10839:50:0;;;6912:21:1;6969:2;6949:18;;;6942:30;-1:-1:-1;;;6988:18:1;;;6981:44;7042:18;;10839:50:0;6728:338:1;10839:50:0;-1:-1:-1;;;;;10986:17:0;;10962:21;10986:17;;;;;;;;;;;11022:23;;;;11014:74;;;;-1:-1:-1;;;11014:74:0;;7273:2:1;11014:74:0;;;7255:21:1;7312:2;7292:18;;;7285:30;7351:34;7331:18;;;7324:62;-1:-1:-1;;;7402:18:1;;;7395:36;7448:19;;11014:74:0;7071:402:1;11014:74:0;11119:22;11135:6;11119:13;:22;:::i;:::-;-1:-1:-1;;;;;11099:17:0;;;:9;:17;;;;;;;;;;;:42;;;;11152:20;;;;;;;;:30;;11176:6;;11099:9;11152:30;;11176:6;;11152:30;:::i;:::-;;;;;;;;11217:9;-1:-1:-1;;;;;11200:35:0;11209:6;-1:-1:-1;;;;;11200:35:0;;11228:6;11200:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;11200:35:0;;;;;;;;10665:578;10578:665;;;:::o;12204:494::-;-1:-1:-1;;;;;12288:21:0;;12280:67;;;;-1:-1:-1;;;12280:67:0;;7680:2:1;12280:67:0;;;7662:21:1;7719:2;7699:18;;;7692:30;7758:34;7738:18;;;7731:62;-1:-1:-1;;;7809:18:1;;;7802:31;7850:19;;12280:67:0;7478:397:1;12280:67:0;-1:-1:-1;;;;;12447:18:0;;12422:22;12447:18;;;;;;;;;;;12484:24;;;;12476:71;;;;-1:-1:-1;;;12476:71:0;;8082:2:1;12476:71:0;;;8064:21:1;8121:2;8101:18;;;8094:30;8160:34;8140:18;;;8133:62;-1:-1:-1;;;8211:18:1;;;8204:32;8253:19;;12476:71:0;7880:398:1;12476:71:0;12579:23;12596:6;12579:14;:23;:::i;:::-;-1:-1:-1;;;;;12558:18:0;;:9;:18;;;;;;;;;;:44;;;;12613:12;:22;;12629:6;;12558:9;12613:22;;12629:6;;12613:22;:::i;:::-;;;;-1:-1:-1;;12653:37:0;;1342:25:1;;;12679:1:0;;-1:-1:-1;;;;;12653:37:0;;;;;1330:2:1;1315:18;12653:37:0;1196:177:1;14:548;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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:1:o;2091:180::-;2150:6;2203:2;2191:9;2182:7;2178:23;2174:32;2171:52;;;2219:1;2216;2209:12;2171:52;-1:-1:-1;2242:23:1;;2091:180;-1:-1:-1;2091:180:1:o;2484:260::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;2652:29;2671:9;2652:29;:::i;:::-;2642:39;;2700:38;2734:2;2723:9;2719:18;2700:38;:::i;:::-;2690:48;;2484:260;;;;;:::o;2749:380::-;2828:1;2824:12;;;;2871;;;2892:61;;2946:4;2938:6;2934:17;2924:27;;2892:61;2999:2;2991:6;2988:14;2968:18;2965:38;2962:161;;3045:10;3040:3;3036:20;3033:1;3026:31;3080:4;3077:1;3070:15;3108:4;3105:1;3098:15;2962:161;;2749:380;;;:::o;3543:127::-;3604:10;3599:3;3595:20;3592:1;3585:31;3635:4;3632:1;3625:15;3659:4;3656:1;3649:15;3675:128;3742:9;;;3763:11;;;3760:37;;;3777:18;;:::i;3808:356::-;4010:2;3992:21;;;4029:18;;;4022:30;4088:34;4083:2;4068:18;;4061:62;4155:2;4140:18;;3808:356::o;4169:125::-;4234:9;;;4255:10;;;4252:36;;;4268:18;;:::i

Swarm Source

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