ETH Price: $3,029.46 (+3.35%)
Gas: 1 Gwei

Token

THE DOGE TRUTH (UFODOGE)
 

Overview

Max Total Supply

16,261,191,000,000 UFODOGE

Holders

110

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,268,991,293.049672797457744542 UFODOGE

Value
$0.00
0x5ff05d8687b2be4e04f36ad597daad32357eff31
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:
StandardERC20

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-05
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol



pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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 Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }   
    
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    function getUnlockTime() public view returns (uint256) {
        return _lockTime;
    }
    
    function getTime() public view returns (uint256) {
        return block.timestamp;
    }

    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = block.timestamp + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(block.timestamp > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public 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) 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 _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);

        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 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: contracts/token/ERC20/behaviours/ERC20Decimals.sol



pragma solidity ^0.8.0;


/**
 * @title ERC20Decimals
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
abstract contract ERC20Decimals is ERC20 {
    uint8 immutable private _decimals;

    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor (uint8 decimals_) {
        _decimals = decimals_;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }
}

// File: contracts/service/ServicePayer.sol



pragma solidity ^0.8.0;

interface IPayable {
    function pay(string memory serviceName) external payable;
}

// File: contracts/token/ERC20/StandardERC20.sol



pragma solidity ^0.8.0;



/**
 * @title StandardERC20
 * @dev Implementation of the StandardERC20
 */
contract StandardERC20 is ERC20Decimals, Ownable {
    
    mapping(address => bool) private _blacklisted;
    
    mapping (address => mapping (address => uint256)) private _allowances;
    
    constructor (
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        uint256 initialBalance_
    )
        ERC20(name_, symbol_)
        ERC20Decimals(decimals_)
    {
        require(initialBalance_ > 0, "StandardERC20: supply cannot be zero");

        _mint(_msgSender(), initialBalance_);
    }

    function decimals() public view virtual override returns (uint8) {
        return super.decimals();
    }
    
    
    function blacklist(address account) external onlyOwner {
        require(!_blacklisted[account], "Account is already blacklisted");
        _blacklisted[account] = true;
    }
    
    
    function whitelist(address account) external onlyOwner {
        require(_blacklisted[account], "Account is not blacklisted");
        _blacklisted[account] = false;
    }
    
    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }
    
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        require(!_blacklisted[sender], "You are blacklisted");
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }
            
    
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(!_blacklisted[msg.sender], "You are blacklisted");
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
    
    function increaseAllowance(address spender, uint256 addedValue) public override returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }
    
    
    function decreaseAllowance(address spender, uint256 subtractedValue) public override returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }
    
    
    function _approve(address owner, address spender, uint256 amount) internal override {
        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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"}],"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blacklist","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":[],"name":"getTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b5060405162002cbe38038062002cbe833981810160405281019062000037919062000464565b81848481600390805190602001906200005292919062000314565b5080600490805190602001906200006b92919062000314565b5050508060ff1660808160ff1660f81b8152505050600062000092620001a260201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000811162000177576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016e9062000561565b60405180910390fd5b620001986200018b620001a260201b60201c565b82620001aa60201b60201c565b5050505062000892565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200021d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002149062000583565b60405180910390fd5b62000231600083836200030f60201b60201c565b806002600082825462000245919062000632565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200029c919062000632565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003039190620005a5565b60405180910390a35050565b505050565b8280546200032290620006dc565b90600052602060002090601f01602090048101928262000346576000855562000392565b82601f106200036157805160ff191683800117855562000392565b8280016001018555821562000392579182015b828111156200039157825182559160200191906001019062000374565b5b509050620003a19190620003a5565b5090565b5b80821115620003c0576000816000905550600101620003a6565b5090565b6000620003db620003d584620005eb565b620005c2565b905082815260208101848484011115620003f457600080fd5b62000401848285620006a6565b509392505050565b600082601f8301126200041b57600080fd5b81516200042d848260208601620003c4565b91505092915050565b60008151905062000447816200085e565b92915050565b6000815190506200045e8162000878565b92915050565b600080600080608085870312156200047b57600080fd5b600085015167ffffffffffffffff8111156200049657600080fd5b620004a48782880162000409565b945050602085015167ffffffffffffffff811115620004c257600080fd5b620004d08782880162000409565b9350506040620004e3878288016200044d565b9250506060620004f68782880162000436565b91505092959194509250565b60006200051160248362000621565b91506200051e82620007e6565b604082019050919050565b600062000538601f8362000621565b9150620005458262000835565b602082019050919050565b6200055b816200068f565b82525050565b600060208201905081810360008301526200057c8162000502565b9050919050565b600060208201905081810360008301526200059e8162000529565b9050919050565b6000602082019050620005bc600083018462000550565b92915050565b6000620005ce620005e1565b9050620005dc828262000712565b919050565b6000604051905090565b600067ffffffffffffffff821115620006095762000608620007a6565b5b6200061482620007d5565b9050602081019050919050565b600082825260208201905092915050565b60006200063f826200068f565b91506200064c836200068f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000684576200068362000748565b5b828201905092915050565b6000819050919050565b600060ff82169050919050565b60005b83811015620006c6578082015181840152602081019050620006a9565b83811115620006d6576000848401525b50505050565b60006002820490506001821680620006f557607f821691505b602082108114156200070c576200070b62000777565b5b50919050565b6200071d82620007d5565b810181811067ffffffffffffffff821117156200073f576200073e620007a6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5374616e6461726445524332303a20737570706c792063616e6e6f742062652060008201527f7a65726f00000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000869816200068f565b81146200087557600080fd5b50565b620008838162000699565b81146200088f57600080fd5b50565b60805160f81c61240d620008b1600039600061182d015261240d6000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063a9059cbb11610071578063a9059cbb14610323578063dd46706414610353578063dd62ed3e1461036f578063f2fde38b1461039f578063f9f92be4146103bb5761012c565b80638da5cb5b1461029157806395d89b41146102af5780639b19251a146102cd578063a457c2d7146102e9578063a69df4b5146103195761012c565b806339509351116100f457806339509351146101eb578063557ed1ba1461021b578063602bc62b1461023957806370a0823114610257578063715018a6146102875761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103d7565b6040516101469190611c2e565b60405180910390f35b61016960048036038101906101649190611934565b610469565b6040516101769190611c13565b60405180910390f35b610187610487565b6040516101949190611e10565b60405180910390f35b6101b760048036038101906101b291906118e5565b610491565b6040516101c49190611c13565b60405180910390f35b6101d561061f565b6040516101e29190611e2b565b60405180910390f35b61020560048036038101906102009190611934565b61062e565b6040516102129190611c13565b60405180910390f35b6102236106da565b6040516102309190611e10565b60405180910390f35b6102416106e2565b60405161024e9190611e10565b60405180910390f35b610271600480360381019061026c9190611880565b6106ec565b60405161027e9190611e10565b60405180910390f35b61028f610734565b005b61029961088c565b6040516102a69190611bf8565b60405180910390f35b6102b76108b6565b6040516102c49190611c2e565b60405180910390f35b6102e760048036038101906102e29190611880565b610948565b005b61030360048036038101906102fe9190611934565b610ac6565b6040516103109190611c13565b60405180910390f35b610321610bba565b005b61033d60048036038101906103389190611934565b610d91565b60405161034a9190611c13565b60405180910390f35b61036d60048036038101906103689190611970565b610e3c565b005b610389600480360381019061038491906118a9565b61100a565b6040516103969190611e10565b60405180910390f35b6103b960048036038101906103b49190611880565b611091565b005b6103d560048036038101906103d09190611880565b611258565b005b6060600380546103e690611f74565b80601f016020809104026020016040519081016040528092919081815260200182805461041290611f74565b801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b600061047d6104766113d7565b84846113df565b6001905092915050565b6000600254905090565b6000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051790611d50565b60405180910390fd5b61052b8484846115aa565b6000600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105766113d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ed90611cf0565b60405180910390fd5b610613856106026113d7565b858461060e9190611eb8565b6113df565b60019150509392505050565b6000610629611829565b905090565b60006106d061063b6113d7565b8484600960006106496113d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106cb9190611e62565b6113df565b6001905092915050565b600042905090565b6000600754905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61073c6113d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c290611d10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108c590611f74565b80601f01602080910402602001604051908101604052809291908181526020018280546108f190611f74565b801561093e5780601f106109135761010080835404028352916020019161093e565b820191906000526020600020905b81548152906001019060200180831161092157829003601f168201915b5050505050905090565b6109506113d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690611d10565b60405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6290611d30565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060096000610ad56113d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8990611df0565b60405180910390fd5b610baf610b9d6113d7565b858584610baa9190611eb8565b6113df565b600191505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190611dd0565b60405180910390fd5b6007544211610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590611db0565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790611d50565b60405180910390fd5b610e32610e2b6113d7565b84846115aa565b6001905092915050565b610e446113d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca90611d10565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508042610f849190611e62565b600781905550600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110996113d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90611d10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90611c70565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112606113d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690611d10565b60405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390611cd0565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561144f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144690611d90565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690611c90565b60405180910390fd5b80600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161159d9190611e10565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190611d70565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561168a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168190611c50565b60405180910390fd5b611695838383611851565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290611cb0565b60405180910390fd5b81816117279190611eb8565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117b79190611e62565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161181b9190611e10565b60405180910390a350505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b505050565b600081359050611865816123a9565b92915050565b60008135905061187a816123c0565b92915050565b60006020828403121561189257600080fd5b60006118a084828501611856565b91505092915050565b600080604083850312156118bc57600080fd5b60006118ca85828601611856565b92505060206118db85828601611856565b9150509250929050565b6000806000606084860312156118fa57600080fd5b600061190886828701611856565b935050602061191986828701611856565b925050604061192a8682870161186b565b9150509250925092565b6000806040838503121561194757600080fd5b600061195585828601611856565b92505060206119668582860161186b565b9150509250929050565b60006020828403121561198257600080fd5b60006119908482850161186b565b91505092915050565b6119a281611eec565b82525050565b6119b181611efe565b82525050565b60006119c282611e46565b6119cc8185611e51565b93506119dc818560208601611f41565b6119e581612004565b840191505092915050565b60006119fd602383611e51565b9150611a0882612015565b604082019050919050565b6000611a20602683611e51565b9150611a2b82612064565b604082019050919050565b6000611a43602283611e51565b9150611a4e826120b3565b604082019050919050565b6000611a66602683611e51565b9150611a7182612102565b604082019050919050565b6000611a89601e83611e51565b9150611a9482612151565b602082019050919050565b6000611aac602883611e51565b9150611ab78261217a565b604082019050919050565b6000611acf602083611e51565b9150611ada826121c9565b602082019050919050565b6000611af2601a83611e51565b9150611afd826121f2565b602082019050919050565b6000611b15601383611e51565b9150611b208261221b565b602082019050919050565b6000611b38602583611e51565b9150611b4382612244565b604082019050919050565b6000611b5b602483611e51565b9150611b6682612293565b604082019050919050565b6000611b7e601f83611e51565b9150611b89826122e2565b602082019050919050565b6000611ba1602383611e51565b9150611bac8261230b565b604082019050919050565b6000611bc4602583611e51565b9150611bcf8261235a565b604082019050919050565b611be381611f2a565b82525050565b611bf281611f34565b82525050565b6000602082019050611c0d6000830184611999565b92915050565b6000602082019050611c2860008301846119a8565b92915050565b60006020820190508181036000830152611c4881846119b7565b905092915050565b60006020820190508181036000830152611c69816119f0565b9050919050565b60006020820190508181036000830152611c8981611a13565b9050919050565b60006020820190508181036000830152611ca981611a36565b9050919050565b60006020820190508181036000830152611cc981611a59565b9050919050565b60006020820190508181036000830152611ce981611a7c565b9050919050565b60006020820190508181036000830152611d0981611a9f565b9050919050565b60006020820190508181036000830152611d2981611ac2565b9050919050565b60006020820190508181036000830152611d4981611ae5565b9050919050565b60006020820190508181036000830152611d6981611b08565b9050919050565b60006020820190508181036000830152611d8981611b2b565b9050919050565b60006020820190508181036000830152611da981611b4e565b9050919050565b60006020820190508181036000830152611dc981611b71565b9050919050565b60006020820190508181036000830152611de981611b94565b9050919050565b60006020820190508181036000830152611e0981611bb7565b9050919050565b6000602082019050611e256000830184611bda565b92915050565b6000602082019050611e406000830184611be9565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611e6d82611f2a565b9150611e7883611f2a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ead57611eac611fa6565b5b828201905092915050565b6000611ec382611f2a565b9150611ece83611f2a565b925082821015611ee157611ee0611fa6565b5b828203905092915050565b6000611ef782611f0a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611f5f578082015181840152602081019050611f44565b83811115611f6e576000848401525b50505050565b60006002820490506001821680611f8c57607f821691505b60208210811415611fa057611f9f611fd5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4163636f756e7420697320616c726561647920626c61636b6c69737465640000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000600082015250565b7f596f752061726520626c61636b6c697374656400000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300600082015250565b7f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60008201527f6f636b0000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6123b281611eec565b81146123bd57600080fd5b50565b6123c981611f2a565b81146123d457600080fd5b5056fea264697066735822122081801ba339fab12051048e93e7fa9ac959cf38d6b5fca1a81d4de5d7fc5009e264736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000cd3ebdeea6162c8207a7000000000000000000000000000000000000000000000000000000000000000000000e54484520444f4745205452555448000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000755464f444f474500000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063a9059cbb11610071578063a9059cbb14610323578063dd46706414610353578063dd62ed3e1461036f578063f2fde38b1461039f578063f9f92be4146103bb5761012c565b80638da5cb5b1461029157806395d89b41146102af5780639b19251a146102cd578063a457c2d7146102e9578063a69df4b5146103195761012c565b806339509351116100f457806339509351146101eb578063557ed1ba1461021b578063602bc62b1461023957806370a0823114610257578063715018a6146102875761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103d7565b6040516101469190611c2e565b60405180910390f35b61016960048036038101906101649190611934565b610469565b6040516101769190611c13565b60405180910390f35b610187610487565b6040516101949190611e10565b60405180910390f35b6101b760048036038101906101b291906118e5565b610491565b6040516101c49190611c13565b60405180910390f35b6101d561061f565b6040516101e29190611e2b565b60405180910390f35b61020560048036038101906102009190611934565b61062e565b6040516102129190611c13565b60405180910390f35b6102236106da565b6040516102309190611e10565b60405180910390f35b6102416106e2565b60405161024e9190611e10565b60405180910390f35b610271600480360381019061026c9190611880565b6106ec565b60405161027e9190611e10565b60405180910390f35b61028f610734565b005b61029961088c565b6040516102a69190611bf8565b60405180910390f35b6102b76108b6565b6040516102c49190611c2e565b60405180910390f35b6102e760048036038101906102e29190611880565b610948565b005b61030360048036038101906102fe9190611934565b610ac6565b6040516103109190611c13565b60405180910390f35b610321610bba565b005b61033d60048036038101906103389190611934565b610d91565b60405161034a9190611c13565b60405180910390f35b61036d60048036038101906103689190611970565b610e3c565b005b610389600480360381019061038491906118a9565b61100a565b6040516103969190611e10565b60405180910390f35b6103b960048036038101906103b49190611880565b611091565b005b6103d560048036038101906103d09190611880565b611258565b005b6060600380546103e690611f74565b80601f016020809104026020016040519081016040528092919081815260200182805461041290611f74565b801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b600061047d6104766113d7565b84846113df565b6001905092915050565b6000600254905090565b6000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051790611d50565b60405180910390fd5b61052b8484846115aa565b6000600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105766113d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ed90611cf0565b60405180910390fd5b610613856106026113d7565b858461060e9190611eb8565b6113df565b60019150509392505050565b6000610629611829565b905090565b60006106d061063b6113d7565b8484600960006106496113d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106cb9190611e62565b6113df565b6001905092915050565b600042905090565b6000600754905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61073c6113d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c290611d10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108c590611f74565b80601f01602080910402602001604051908101604052809291908181526020018280546108f190611f74565b801561093e5780601f106109135761010080835404028352916020019161093e565b820191906000526020600020905b81548152906001019060200180831161092157829003601f168201915b5050505050905090565b6109506113d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690611d10565b60405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6290611d30565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060096000610ad56113d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8990611df0565b60405180910390fd5b610baf610b9d6113d7565b858584610baa9190611eb8565b6113df565b600191505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190611dd0565b60405180910390fd5b6007544211610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590611db0565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790611d50565b60405180910390fd5b610e32610e2b6113d7565b84846115aa565b6001905092915050565b610e446113d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca90611d10565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508042610f849190611e62565b600781905550600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110996113d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90611d10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90611c70565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112606113d7565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690611d10565b60405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390611cd0565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561144f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144690611d90565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690611c90565b60405180910390fd5b80600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161159d9190611e10565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190611d70565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561168a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168190611c50565b60405180910390fd5b611695838383611851565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290611cb0565b60405180910390fd5b81816117279190611eb8565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117b79190611e62565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161181b9190611e10565b60405180910390a350505050565b60007f0000000000000000000000000000000000000000000000000000000000000012905090565b505050565b600081359050611865816123a9565b92915050565b60008135905061187a816123c0565b92915050565b60006020828403121561189257600080fd5b60006118a084828501611856565b91505092915050565b600080604083850312156118bc57600080fd5b60006118ca85828601611856565b92505060206118db85828601611856565b9150509250929050565b6000806000606084860312156118fa57600080fd5b600061190886828701611856565b935050602061191986828701611856565b925050604061192a8682870161186b565b9150509250925092565b6000806040838503121561194757600080fd5b600061195585828601611856565b92505060206119668582860161186b565b9150509250929050565b60006020828403121561198257600080fd5b60006119908482850161186b565b91505092915050565b6119a281611eec565b82525050565b6119b181611efe565b82525050565b60006119c282611e46565b6119cc8185611e51565b93506119dc818560208601611f41565b6119e581612004565b840191505092915050565b60006119fd602383611e51565b9150611a0882612015565b604082019050919050565b6000611a20602683611e51565b9150611a2b82612064565b604082019050919050565b6000611a43602283611e51565b9150611a4e826120b3565b604082019050919050565b6000611a66602683611e51565b9150611a7182612102565b604082019050919050565b6000611a89601e83611e51565b9150611a9482612151565b602082019050919050565b6000611aac602883611e51565b9150611ab78261217a565b604082019050919050565b6000611acf602083611e51565b9150611ada826121c9565b602082019050919050565b6000611af2601a83611e51565b9150611afd826121f2565b602082019050919050565b6000611b15601383611e51565b9150611b208261221b565b602082019050919050565b6000611b38602583611e51565b9150611b4382612244565b604082019050919050565b6000611b5b602483611e51565b9150611b6682612293565b604082019050919050565b6000611b7e601f83611e51565b9150611b89826122e2565b602082019050919050565b6000611ba1602383611e51565b9150611bac8261230b565b604082019050919050565b6000611bc4602583611e51565b9150611bcf8261235a565b604082019050919050565b611be381611f2a565b82525050565b611bf281611f34565b82525050565b6000602082019050611c0d6000830184611999565b92915050565b6000602082019050611c2860008301846119a8565b92915050565b60006020820190508181036000830152611c4881846119b7565b905092915050565b60006020820190508181036000830152611c69816119f0565b9050919050565b60006020820190508181036000830152611c8981611a13565b9050919050565b60006020820190508181036000830152611ca981611a36565b9050919050565b60006020820190508181036000830152611cc981611a59565b9050919050565b60006020820190508181036000830152611ce981611a7c565b9050919050565b60006020820190508181036000830152611d0981611a9f565b9050919050565b60006020820190508181036000830152611d2981611ac2565b9050919050565b60006020820190508181036000830152611d4981611ae5565b9050919050565b60006020820190508181036000830152611d6981611b08565b9050919050565b60006020820190508181036000830152611d8981611b2b565b9050919050565b60006020820190508181036000830152611da981611b4e565b9050919050565b60006020820190508181036000830152611dc981611b71565b9050919050565b60006020820190508181036000830152611de981611b94565b9050919050565b60006020820190508181036000830152611e0981611bb7565b9050919050565b6000602082019050611e256000830184611bda565b92915050565b6000602082019050611e406000830184611be9565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611e6d82611f2a565b9150611e7883611f2a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ead57611eac611fa6565b5b828201905092915050565b6000611ec382611f2a565b9150611ece83611f2a565b925082821015611ee157611ee0611fa6565b5b828203905092915050565b6000611ef782611f0a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611f5f578082015181840152602081019050611f44565b83811115611f6e576000848401525b50505050565b60006002820490506001821680611f8c57607f821691505b60208210811415611fa057611f9f611fd5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4163636f756e7420697320616c726561647920626c61636b6c69737465640000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000600082015250565b7f596f752061726520626c61636b6c697374656400000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300600082015250565b7f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60008201527f6f636b0000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6123b281611eec565b81146123bd57600080fd5b50565b6123c981611f2a565b81146123d457600080fd5b5056fea264697066735822122081801ba339fab12051048e93e7fa9ac959cf38d6b5fca1a81d4de5d7fc5009e264736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000cd3ebdeea6162c8207a7000000000000000000000000000000000000000000000000000000000000000000000e54484520444f4745205452555448000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000755464f444f474500000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): THE DOGE TRUTH
Arg [1] : symbol_ (string): UFODOGE
Arg [2] : decimals_ (uint8): 18
Arg [3] : initialBalance_ (uint256): 16261191000000000000000000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000cd3ebdeea6162c8207a7000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 54484520444f4745205452555448000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 55464f444f474500000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

18060:2951:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8305:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10472:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9425:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19280:478;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18618:107;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20031:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6876:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6774;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9596:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6366:148;;;:::i;:::-;;6141:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8524:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18939:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20265:378;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7212:305;;;:::i;:::-;;19784:235;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6974:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19125:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6522:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18743:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8305:100;8359:13;8392:5;8385:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8305:100;:::o;10472:169::-;10555:4;10572:39;10581:12;:10;:12::i;:::-;10595:7;10604:6;10572:8;:39::i;:::-;10629:4;10622:11;;10472:169;;;;:::o;9425:108::-;9486:7;9513:12;;9506:19;;9425:108;:::o;19280:478::-;19378:4;19404:12;:20;19417:6;19404:20;;;;;;;;;;;;;;;;;;;;;;;;;19403:21;19395:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;19459:36;19469:6;19477:9;19488:6;19459:9;:36::i;:::-;19508:24;19535:11;:19;19547:6;19535:19;;;;;;;;;;;;;;;:33;19555:12;:10;:12::i;:::-;19535:33;;;;;;;;;;;;;;;;19508:60;;19607:6;19587:16;:26;;19579:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;19669:57;19678:6;19686:12;:10;:12::i;:::-;19719:6;19700:16;:25;;;;:::i;:::-;19669:8;:57::i;:::-;19746:4;19739:11;;;19280:478;;;;;:::o;18618:107::-;18676:5;18701:16;:14;:16::i;:::-;18694:23;;18618:107;:::o;20031:216::-;20120:4;20137:80;20146:12;:10;:12::i;:::-;20160:7;20206:10;20169:11;:25;20181:12;:10;:12::i;:::-;20169:25;;;;;;;;;;;;;;;:34;20195:7;20169:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;20137:8;:80::i;:::-;20235:4;20228:11;;20031:216;;;;:::o;6876:90::-;6916:7;6943:15;6936:22;;6876:90;:::o;6774:::-;6820:7;6847:9;;6840:16;;6774:90;:::o;9596:127::-;9670:7;9697:9;:18;9707:7;9697:18;;;;;;;;;;;;;;;;9690:25;;9596:127;;;:::o;6366:148::-;6285:12;:10;:12::i;:::-;6275:22;;:6;;;;;;;;;;;:22;;;6267:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;6473:1:::1;6436:40;;6457:6;;;;;;;;;;;6436:40;;;;;;;;;;;;6504:1;6487:6;;:19;;;;;;;;;;;;;;;;;;6366:148::o:0;6141:79::-;6179:7;6206:6;;;;;;;;;;;6199:13;;6141:79;:::o;8524:104::-;8580:13;8613:7;8606:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8524:104;:::o;18939:174::-;6285:12;:10;:12::i;:::-;6275:22;;:6;;;;;;;;;;;:22;;;6267:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19013:12:::1;:21;19026:7;19013:21;;;;;;;;;;;;;;;;;;;;;;;;;19005:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;19100:5;19076:12;:21;19089:7;19076:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;18939:174:::0;:::o;20265:378::-;20359:4;20376:24;20403:11;:25;20415:12;:10;:12::i;:::-;20403:25;;;;;;;;;;;;;;;:34;20429:7;20403:34;;;;;;;;;;;;;;;;20376:61;;20476:15;20456:16;:35;;20448:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;20544:67;20553:12;:10;:12::i;:::-;20567:7;20595:15;20576:16;:34;;;;:::i;:::-;20544:8;:67::i;:::-;20631:4;20624:11;;;20265:378;;;;:::o;7212:305::-;7282:10;7264:28;;:14;;;;;;;;;;;:28;;;7256:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;7369:9;;7351:15;:27;7343:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7460:14;;;;;;;;;;;7431:44;;7452:6;;;;;;;;;;;7431:44;;;;;;;;;;;;7495:14;;;;;;;;;;;7486:6;;:23;;;;;;;;;;;;;;;;;;7212:305::o;19784:235::-;19862:4;19888:12;:24;19901:10;19888:24;;;;;;;;;;;;;;;;;;;;;;;;;19887:25;19879:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;19947:42;19957:12;:10;:12::i;:::-;19971:9;19982:6;19947:9;:42::i;:::-;20007:4;20000:11;;19784:235;;;;:::o;6974:226::-;6285:12;:10;:12::i;:::-;6275:22;;:6;;;;;;;;;;;:22;;;6267:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;7055:6:::1;;;;;;;;;;;7038:14;;:23;;;;;;;;;;;;;;;;;;7089:1;7072:6;;:19;;;;;;;;;;;;;;;;;;7132:4;7114:15;:22;;;;:::i;:::-;7102:9;:34;;;;7189:1;7152:40;;7173:6;;;;;;;;;;;7152:40;;;;;;;;;;;;6974:226:::0;:::o;19125:143::-;19206:7;19233:11;:18;19245:5;19233:18;;;;;;;;;;;;;;;:27;19252:7;19233:27;;;;;;;;;;;;;;;;19226:34;;19125:143;;;;:::o;6522:244::-;6285:12;:10;:12::i;:::-;6275:22;;:6;;;;;;;;;;;:22;;;6267:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;6631:1:::1;6611:22;;:8;:22;;;;6603:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6721:8;6692:38;;6713:6;;;;;;;;;;;6692:38;;;;;;;;;;;;6750:8;6741:6;;:17;;;;;;;;;;;;;;;;;;6522:244:::0;:::o;18743:178::-;6285:12;:10;:12::i;:::-;6275:22;;:6;;;;;;;;;;;:22;;;6267:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18818:12:::1;:21;18831:7;18818:21;;;;;;;;;;;;;;;;;;;;;;;;;18817:22;18809:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18909:4;18885:12;:21;18898:7;18885:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;18743:178:::0;:::o;4119:98::-;4172:7;4199:10;4192:17;;4119:98;:::o;20661:347::-;20781:1;20764:19;;:5;:19;;;;20756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20862:1;20843:21;;:7;:21;;;;20835:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20946:6;20916:11;:18;20928:5;20916:18;;;;;;;;;;;;;;;:27;20935:7;20916:27;;;;;;;;;;;;;;;:36;;;;20984:7;20968:32;;20977:5;20968:32;;;20993:6;20968:32;;;;;;:::i;:::-;;;;;;;;20661:347;;;:::o;13539:604::-;13663:1;13645:20;;:6;:20;;;;13637:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13747:1;13726:23;;:9;:23;;;;13718:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13802:47;13823:6;13831:9;13842:6;13802:20;:47::i;:::-;13862:21;13886:9;:17;13896:6;13886:17;;;;;;;;;;;;;;;;13862:41;;13939:6;13922:13;:23;;13914:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14035:6;14019:13;:22;;;;:::i;:::-;13999:9;:17;14009:6;13999:17;;;;;;;;;;;;;;;:42;;;;14076:6;14052:9;:20;14062:9;14052:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14117:9;14100:35;;14109:6;14100:35;;;14128:6;14100:35;;;;;;:::i;:::-;;;;;;;;13539:604;;;;:::o;17618:100::-;17676:5;17701:9;17694:16;;17618:100;:::o;16977:92::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;2008:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:366::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6692:220;;;:::o;6918:366::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;7064:220;;;:::o;7290:366::-;7432:3;7453:67;7517:2;7512:3;7453:67;:::i;:::-;7446:74;;7529:93;7618:3;7529:93;:::i;:::-;7647:2;7642:3;7638:12;7631:19;;7436:220;;;:::o;7662:366::-;7804:3;7825:67;7889:2;7884:3;7825:67;:::i;:::-;7818:74;;7901:93;7990:3;7901:93;:::i;:::-;8019:2;8014:3;8010:12;8003:19;;7808:220;;;:::o;8034:118::-;8121:24;8139:5;8121:24;:::i;:::-;8116:3;8109:37;8099:53;;:::o;8158:112::-;8241:22;8257:5;8241:22;:::i;:::-;8236:3;8229:35;8219:51;;:::o;8276:222::-;8369:4;8407:2;8396:9;8392:18;8384:26;;8420:71;8488:1;8477:9;8473:17;8464:6;8420:71;:::i;:::-;8374:124;;;;:::o;8504:210::-;8591:4;8629:2;8618:9;8614:18;8606:26;;8642:65;8704:1;8693:9;8689:17;8680:6;8642:65;:::i;:::-;8596:118;;;;:::o;8720:313::-;8833:4;8871:2;8860:9;8856:18;8848:26;;8920:9;8914:4;8910:20;8906:1;8895:9;8891:17;8884:47;8948:78;9021:4;9012:6;8948:78;:::i;:::-;8940:86;;8838:195;;;;:::o;9039:419::-;9205:4;9243:2;9232:9;9228:18;9220:26;;9292:9;9286:4;9282:20;9278:1;9267:9;9263:17;9256:47;9320:131;9446:4;9320:131;:::i;:::-;9312:139;;9210:248;;;:::o;9464:419::-;9630:4;9668:2;9657:9;9653:18;9645:26;;9717:9;9711:4;9707:20;9703:1;9692:9;9688:17;9681:47;9745:131;9871:4;9745:131;:::i;:::-;9737:139;;9635:248;;;:::o;9889:419::-;10055:4;10093:2;10082:9;10078:18;10070:26;;10142:9;10136:4;10132:20;10128:1;10117:9;10113:17;10106:47;10170:131;10296:4;10170:131;:::i;:::-;10162:139;;10060:248;;;:::o;10314:419::-;10480:4;10518:2;10507:9;10503:18;10495:26;;10567:9;10561:4;10557:20;10553:1;10542:9;10538:17;10531:47;10595:131;10721:4;10595:131;:::i;:::-;10587:139;;10485:248;;;:::o;10739:419::-;10905:4;10943:2;10932:9;10928:18;10920:26;;10992:9;10986:4;10982:20;10978:1;10967:9;10963:17;10956:47;11020:131;11146:4;11020:131;:::i;:::-;11012:139;;10910:248;;;:::o;11164:419::-;11330:4;11368:2;11357:9;11353:18;11345:26;;11417:9;11411:4;11407:20;11403:1;11392:9;11388:17;11381:47;11445:131;11571:4;11445:131;:::i;:::-;11437:139;;11335:248;;;:::o;11589:419::-;11755:4;11793:2;11782:9;11778:18;11770:26;;11842:9;11836:4;11832:20;11828:1;11817:9;11813:17;11806:47;11870:131;11996:4;11870:131;:::i;:::-;11862:139;;11760:248;;;:::o;12014:419::-;12180:4;12218:2;12207:9;12203:18;12195:26;;12267:9;12261:4;12257:20;12253:1;12242:9;12238:17;12231:47;12295:131;12421:4;12295:131;:::i;:::-;12287:139;;12185:248;;;:::o;12439:419::-;12605:4;12643:2;12632:9;12628:18;12620:26;;12692:9;12686:4;12682:20;12678:1;12667:9;12663:17;12656:47;12720:131;12846:4;12720:131;:::i;:::-;12712:139;;12610:248;;;:::o;12864:419::-;13030:4;13068:2;13057:9;13053:18;13045:26;;13117:9;13111:4;13107:20;13103:1;13092:9;13088:17;13081:47;13145:131;13271:4;13145:131;:::i;:::-;13137:139;;13035:248;;;:::o;13289:419::-;13455:4;13493:2;13482:9;13478:18;13470:26;;13542:9;13536:4;13532:20;13528:1;13517:9;13513:17;13506:47;13570:131;13696:4;13570:131;:::i;:::-;13562:139;;13460:248;;;:::o;13714:419::-;13880:4;13918:2;13907:9;13903:18;13895:26;;13967:9;13961:4;13957:20;13953:1;13942:9;13938:17;13931:47;13995:131;14121:4;13995:131;:::i;:::-;13987:139;;13885:248;;;:::o;14139:419::-;14305:4;14343:2;14332:9;14328:18;14320:26;;14392:9;14386:4;14382:20;14378:1;14367:9;14363:17;14356:47;14420:131;14546:4;14420:131;:::i;:::-;14412:139;;14310:248;;;:::o;14564:419::-;14730:4;14768:2;14757:9;14753:18;14745:26;;14817:9;14811:4;14807:20;14803:1;14792:9;14788:17;14781:47;14845:131;14971:4;14845:131;:::i;:::-;14837:139;;14735:248;;;:::o;14989:222::-;15082:4;15120:2;15109:9;15105:18;15097:26;;15133:71;15201:1;15190:9;15186:17;15177:6;15133:71;:::i;:::-;15087:124;;;;:::o;15217:214::-;15306:4;15344:2;15333:9;15329:18;15321:26;;15357:67;15421:1;15410:9;15406:17;15397:6;15357:67;:::i;:::-;15311:120;;;;:::o;15437:99::-;15489:6;15523:5;15517:12;15507:22;;15496:40;;;:::o;15542:169::-;15626:11;15660:6;15655:3;15648:19;15700:4;15695:3;15691:14;15676:29;;15638:73;;;;:::o;15717:305::-;15757:3;15776:20;15794:1;15776:20;:::i;:::-;15771:25;;15810:20;15828:1;15810:20;:::i;:::-;15805:25;;15964:1;15896:66;15892:74;15889:1;15886:81;15883:2;;;15970:18;;:::i;:::-;15883:2;16014:1;16011;16007:9;16000:16;;15761:261;;;;:::o;16028:191::-;16068:4;16088:20;16106:1;16088:20;:::i;:::-;16083:25;;16122:20;16140:1;16122:20;:::i;:::-;16117:25;;16161:1;16158;16155:8;16152:2;;;16166:18;;:::i;:::-;16152:2;16211:1;16208;16204:9;16196:17;;16073:146;;;;:::o;16225:96::-;16262:7;16291:24;16309:5;16291:24;:::i;:::-;16280:35;;16270:51;;;:::o;16327:90::-;16361:7;16404:5;16397:13;16390:21;16379:32;;16369:48;;;:::o;16423:126::-;16460:7;16500:42;16493:5;16489:54;16478:65;;16468:81;;;:::o;16555:77::-;16592:7;16621:5;16610:16;;16600:32;;;:::o;16638:86::-;16673:7;16713:4;16706:5;16702:16;16691:27;;16681:43;;;:::o;16730:307::-;16798:1;16808:113;16822:6;16819:1;16816:13;16808:113;;;16907:1;16902:3;16898:11;16892:18;16888:1;16883:3;16879:11;16872:39;16844:2;16841:1;16837:10;16832:15;;16808:113;;;16939:6;16936:1;16933:13;16930:2;;;17019:1;17010:6;17005:3;17001:16;16994:27;16930:2;16779:258;;;;:::o;17043:320::-;17087:6;17124:1;17118:4;17114:12;17104:22;;17171:1;17165:4;17161:12;17192:18;17182:2;;17248:4;17240:6;17236:17;17226:27;;17182:2;17310;17302:6;17299:14;17279:18;17276:38;17273:2;;;17329:18;;:::i;:::-;17273:2;17094:269;;;;:::o;17369:180::-;17417:77;17414:1;17407:88;17514:4;17511:1;17504:15;17538:4;17535:1;17528:15;17555:180;17603:77;17600:1;17593:88;17700:4;17697:1;17690:15;17724:4;17721:1;17714:15;17741:102;17782:6;17833:2;17829:7;17824:2;17817:5;17813:14;17809:28;17799:38;;17789:54;;;:::o;17849:222::-;17989:34;17985:1;17977:6;17973:14;17966:58;18058:5;18053:2;18045:6;18041:15;18034:30;17955:116;:::o;18077:225::-;18217:34;18213:1;18205:6;18201:14;18194:58;18286:8;18281:2;18273:6;18269:15;18262:33;18183:119;:::o;18308:221::-;18448:34;18444:1;18436:6;18432:14;18425:58;18517:4;18512:2;18504:6;18500:15;18493:29;18414:115;:::o;18535:225::-;18675:34;18671:1;18663:6;18659:14;18652:58;18744:8;18739:2;18731:6;18727:15;18720:33;18641:119;:::o;18766:180::-;18906:32;18902:1;18894:6;18890:14;18883:56;18872:74;:::o;18952:227::-;19092:34;19088:1;19080:6;19076:14;19069:58;19161:10;19156:2;19148:6;19144:15;19137:35;19058:121;:::o;19185:182::-;19325:34;19321:1;19313:6;19309:14;19302:58;19291:76;:::o;19373:176::-;19513:28;19509:1;19501:6;19497:14;19490:52;19479:70;:::o;19555:169::-;19695:21;19691:1;19683:6;19679:14;19672:45;19661:63;:::o;19730:224::-;19870:34;19866:1;19858:6;19854:14;19847:58;19939:7;19934:2;19926:6;19922:15;19915:32;19836:118;:::o;19960:223::-;20100:34;20096:1;20088:6;20084:14;20077:58;20169:6;20164:2;20156:6;20152:15;20145:31;20066:117;:::o;20189:181::-;20329:33;20325:1;20317:6;20313:14;20306:57;20295:75;:::o;20376:222::-;20516:34;20512:1;20504:6;20500:14;20493:58;20585:5;20580:2;20572:6;20568:15;20561:30;20482:116;:::o;20604:224::-;20744:34;20740:1;20732:6;20728:14;20721:58;20813:7;20808:2;20800:6;20796:15;20789:32;20710:118;:::o;20834:122::-;20907:24;20925:5;20907:24;:::i;:::-;20900:5;20897:35;20887:2;;20946:1;20943;20936:12;20887:2;20877:79;:::o;20962:122::-;21035:24;21053:5;21035:24;:::i;:::-;21028:5;21025:35;21015:2;;21074:1;21071;21064:12;21015:2;21005:79;:::o

Swarm Source

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