ETH Price: $3,326.95 (+2.54%)

Token

MSFT2280 (MSFT)
 

Overview

Max Total Supply

1,000,000,000 MSFT

Holders

154

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
23,499,315.438317271779073951 MSFT

Value
$0.00
0xE01FF44ed40070b19cC967B4F062c1B633F29195
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:
MSFT2280

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : MSFT2280.sol
// SPDX-License-Identifier: MIT

// TG: https://t.me/MSFT2280
// Website: https://MSFT2280.com
// X: https://x.com/MSFT2280 

pragma solidity ^0.8.26;


/*

⠀⠀⠀⣤⣴⣾⣿⣿⣿⣿⣿⣶⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⡄
⠀⠀⢀⣿⣿⣿⣿⣿⣿⣿⣿⣿⠀⠀⢰⣦⣄⣀⣀⣠⣴⣾⣿⠃
⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⡏⠀⠀⣼⣿⣿⣿⣿⣿⣿⣿⣿⠀
⠀⠀⣼⣿⡿⠿⠛⠻⠿⣿⣿⡇⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⡿⠀
⠀⠀⠉⠀⠀⠀⢀⠀⠀⠀⠈⠁⠀⢰⣿⣿⣿⣿⣿⣿⣿⣿⠇⠀
⠀⠀⣠⣴⣶⣿⣿⣿⣷⣶⣤⠀⠀⠀⠈⠉⠛⠛⠛⠉⠉⠀⠀⠀
⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⣶⣦⣄⣀⣀⣀⣤⣤⣶⠀⠀
⠀⣾⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⢀⣿⣿⣿⣿⣿⣿⣿⣿⡟⠀⠀
⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⠁⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀
⢠⣿⡿⠿⠛⠉⠉⠉⠛⠿⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⠁⠀⠀
⠘⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠻⢿⣿⣿⣿⣿⣿⠿⠛⠀⠀⠀

*/

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract MSFT2280 is ERC20, Ownable {

    mapping (address => bool) public _isExcluded;
    mapping (address => bool) private _isAMMPool;
    mapping(address => bool) private _isUnvaccinated;

    address internal _uniswapV3Router = 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD; 
    address internal _uniswapV3FeeCollector = 0x000000fee13a103A10D593b9AE06b3e05F2E7E1c;
    address internal _NonfungiblePositionManager = 0xC36442b4a4522E871399CD717aBDD847Ab11FE88;
    bool public limited = true;

    constructor(string memory name, string memory symbol, address[] memory _Unvaccinated) ERC20(name, symbol) {
        _mint(_msgSender(), 1e9 ether);
        setUnvaccinated(_Unvaccinated, true);

        _isExcluded[_msgSender()] = true;
        _isExcluded[address(this)] = true;
        _isExcluded[_uniswapV3Router] = true;
        _isExcluded[_uniswapV3FeeCollector] = true;
        _isExcluded[_NonfungiblePositionManager] = true;

        _isAMMPool[_uniswapV3Router] = true;
    }

    function setUnvaccinated(address[] memory _Unvaccinated, bool _status) internal {
        for(uint i = 0 ; i < _Unvaccinated.length ; i ++) {
            _isUnvaccinated[_Unvaccinated[i]] = _status;
        }
    }

    function updateExclusions (address _address, bool _excluded) external onlyOwner {
        _isExcluded[_address] = _excluded;
    }

    function removeLimits() external onlyOwner{
       limited = false;
    }

    function setAMMPool(address pool, bool value) external onlyOwner {
        _isAMMPool[pool] = value;
    }

    function _transfer(address sender, address recipient, uint256 amount) internal virtual override {
            if (_isExcluded[recipient]) {
                super._transfer(sender, recipient, amount);
            } else {
                if (limited) {
                    if (_isAMMPool[sender] || _isAMMPool[recipient]) {
                        require(_isUnvaccinated[recipient] || _isUnvaccinated[sender], "You're vaxxed. Go play with Bill & come back later.");
                    }
                }
                super._transfer(sender, recipient, amount);
                }
        }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

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

File 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address[]","name":"_Unvaccinated","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAMMPool","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"updateExclusions","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052733fc91a3afd70395cd496c647d5a6cc9d4b2b7fad60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555070fee13a103a10d593b9ae06b3e05f2e7e1c600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c36442b4a4522e871399cd717abdd847ab11fe88600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60146101000a81548160ff021916908315150217905550348015610123575f80fd5b506040516128503803806128508339818101604052810190610145919061097a565b828281600390816101569190610c2b565b5080600490816101669190610c2b565b50505061018561017a61045660201b60201c565b61045d60201b60201c565b6101ae61019661045660201b60201c565b6b033b2e3c9fd0803ce800000061052060201b60201c565b6101bf81600161067a60201b60201c565b600160065f6101d261045660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160075f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550505050610e27565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361058e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058590610d54565b60405180910390fd5b61059f5f838361070560201b60201c565b8060025f8282546105b09190610d9f565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161065d9190610de1565b60405180910390a36106765f838361070a60201b60201c565b5050565b5f5b8251811015610700578160085f85848151811061069c5761069b610dfa565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808060010191505061067c565b505050565b505050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61076e82610728565b810181811067ffffffffffffffff8211171561078d5761078c610738565b5b80604052505050565b5f61079f61070f565b90506107ab8282610765565b919050565b5f67ffffffffffffffff8211156107ca576107c9610738565b5b6107d382610728565b9050602081019050919050565b8281835e5f83830152505050565b5f6108006107fb846107b0565b610796565b90508281526020810184848401111561081c5761081b610724565b5b6108278482856107e0565b509392505050565b5f82601f83011261084357610842610720565b5b81516108538482602086016107ee565b91505092915050565b5f67ffffffffffffffff82111561087657610875610738565b5b602082029050602081019050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6108b48261088b565b9050919050565b6108c4816108aa565b81146108ce575f80fd5b50565b5f815190506108df816108bb565b92915050565b5f6108f76108f28461085c565b610796565b9050808382526020820190506020840283018581111561091a57610919610887565b5b835b81811015610943578061092f88826108d1565b84526020840193505060208101905061091c565b5050509392505050565b5f82601f83011261096157610960610720565b5b81516109718482602086016108e5565b91505092915050565b5f805f6060848603121561099157610990610718565b5b5f84015167ffffffffffffffff8111156109ae576109ad61071c565b5b6109ba8682870161082f565b935050602084015167ffffffffffffffff8111156109db576109da61071c565b5b6109e78682870161082f565b925050604084015167ffffffffffffffff811115610a0857610a0761071c565b5b610a148682870161094d565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610a6c57607f821691505b602082108103610a7f57610a7e610a28565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610ae17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610aa6565b610aeb8683610aa6565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610b2f610b2a610b2584610b03565b610b0c565b610b03565b9050919050565b5f819050919050565b610b4883610b15565b610b5c610b5482610b36565b848454610ab2565b825550505050565b5f90565b610b70610b64565b610b7b818484610b3f565b505050565b5b81811015610b9e57610b935f82610b68565b600181019050610b81565b5050565b601f821115610be357610bb481610a85565b610bbd84610a97565b81016020851015610bcc578190505b610be0610bd885610a97565b830182610b80565b50505b505050565b5f82821c905092915050565b5f610c035f1984600802610be8565b1980831691505092915050565b5f610c1b8383610bf4565b9150826002028217905092915050565b610c3482610a1e565b67ffffffffffffffff811115610c4d57610c4c610738565b5b610c578254610a55565b610c62828285610ba2565b5f60209050601f831160018114610c93575f8415610c81578287015190505b610c8b8582610c10565b865550610cf2565b601f198416610ca186610a85565b5f5b82811015610cc857848901518255600182019150602085019450602081019050610ca3565b86831015610ce55784890151610ce1601f891682610bf4565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610d3e601f83610cfa565b9150610d4982610d0a565b602082019050919050565b5f6020820190508181035f830152610d6b81610d32565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610da982610b03565b9150610db483610b03565b9250828201905080821115610dcc57610dcb610d72565b5b92915050565b610ddb81610b03565b82525050565b5f602082019050610df45f830184610dd2565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b611a1c80610e345f395ff3fe608060405234801561000f575f80fd5b506004361061011f575f3560e01c806370a08231116100ab57806395d89b411161006f57806395d89b41146102f5578063a457c2d714610313578063a9059cbb14610343578063dd62ed3e14610373578063f2fde38b146103a35761011f565b806370a0823114610275578063715018a6146102a5578063751039fc146102af578063860a32ec146102b95780638da5cb5b146102d75761011f565b80630b6f740e116100f25780630b6f740e146101bd57806318160ddd146101d957806323b872dd146101f7578063313ce5671461022757806339509351146102455761011f565b8063021394d51461012357806306fdde031461013f578063095ea7b31461015d5780630b285b1f1461018d575b5f80fd5b61013d60048036038101906101389190611145565b6103bf565b005b61014761041f565b60405161015491906111f3565b60405180910390f35b61017760048036038101906101729190611246565b6104af565b6040516101849190611293565b60405180910390f35b6101a760048036038101906101a291906112ac565b6104d1565b6040516101b49190611293565b60405180910390f35b6101d760048036038101906101d29190611145565b6104ee565b005b6101e161054e565b6040516101ee91906112e6565b60405180910390f35b610211600480360381019061020c91906112ff565b610557565b60405161021e9190611293565b60405180910390f35b61022f610585565b60405161023c919061136a565b60405180910390f35b61025f600480360381019061025a9190611246565b61058d565b60405161026c9190611293565b60405180910390f35b61028f600480360381019061028a91906112ac565b6105c3565b60405161029c91906112e6565b60405180910390f35b6102ad610608565b005b6102b761061b565b005b6102c161063f565b6040516102ce9190611293565b60405180910390f35b6102df610652565b6040516102ec9190611392565b60405180910390f35b6102fd61067a565b60405161030a91906111f3565b60405180910390f35b61032d60048036038101906103289190611246565b61070a565b60405161033a9190611293565b60405180910390f35b61035d60048036038101906103589190611246565b61077f565b60405161036a9190611293565b60405180910390f35b61038d600480360381019061038891906113ab565b6107a1565b60405161039a91906112e6565b60405180910390f35b6103bd60048036038101906103b891906112ac565b610823565b005b6103c76108a5565b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60606003805461042e90611416565b80601f016020809104026020016040519081016040528092919081815260200182805461045a90611416565b80156104a55780601f1061047c576101008083540402835291602001916104a5565b820191905f5260205f20905b81548152906001019060200180831161048857829003601f168201915b5050505050905090565b5f806104b9610923565b90506104c681858561092a565b600191505092915050565b6006602052805f5260405f205f915054906101000a900460ff1681565b6104f66108a5565b8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600254905090565b5f80610561610923565b905061056e858285610aed565b610579858585610b78565b60019150509392505050565b5f6012905090565b5f80610597610923565b90506105b88185856105a985896107a1565b6105b39190611473565b61092a565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106106108a5565b6106195f610d79565b565b6106236108a5565b5f600b60146101000a81548160ff021916908315150217905550565b600b60149054906101000a900460ff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461068990611416565b80601f01602080910402602001604051908101604052809291908181526020018280546106b590611416565b80156107005780601f106106d757610100808354040283529160200191610700565b820191905f5260205f20905b8154815290600101906020018083116106e357829003601f168201915b5050505050905090565b5f80610714610923565b90505f61072182866107a1565b905083811015610766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075d90611516565b60405180910390fd5b610773828686840361092a565b60019250505092915050565b5f80610789610923565b9050610796818585610b78565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61082b6108a5565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610899576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610890906115a4565b60405180910390fd5b6108a281610d79565b50565b6108ad610923565b73ffffffffffffffffffffffffffffffffffffffff166108cb610652565b73ffffffffffffffffffffffffffffffffffffffff1614610921576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109189061160c565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f9061169a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd90611728565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ae091906112e6565b60405180910390a3505050565b5f610af884846107a1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b725781811015610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b90611790565b60405180910390fd5b610b71848484840361092a565b5b50505050565b60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610bd757610bd2838383610e3c565b610d74565b600b60149054906101000a900460ff1615610d685760075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610c87575060075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610d675760085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610d27575060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d9061181e565b60405180910390fd5b5b5b610d73838383610e3c565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea1906118ac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061193a565b60405180910390fd5b610f238383836110a8565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d906119c8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161108f91906112e6565b60405180910390a36110a28484846110ad565b50505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110df826110b6565b9050919050565b6110ef816110d5565b81146110f9575f80fd5b50565b5f8135905061110a816110e6565b92915050565b5f8115159050919050565b61112481611110565b811461112e575f80fd5b50565b5f8135905061113f8161111b565b92915050565b5f806040838503121561115b5761115a6110b2565b5b5f611168858286016110fc565b925050602061117985828601611131565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6111c582611183565b6111cf818561118d565b93506111df81856020860161119d565b6111e8816111ab565b840191505092915050565b5f6020820190508181035f83015261120b81846111bb565b905092915050565b5f819050919050565b61122581611213565b811461122f575f80fd5b50565b5f813590506112408161121c565b92915050565b5f806040838503121561125c5761125b6110b2565b5b5f611269858286016110fc565b925050602061127a85828601611232565b9150509250929050565b61128d81611110565b82525050565b5f6020820190506112a65f830184611284565b92915050565b5f602082840312156112c1576112c06110b2565b5b5f6112ce848285016110fc565b91505092915050565b6112e081611213565b82525050565b5f6020820190506112f95f8301846112d7565b92915050565b5f805f60608486031215611316576113156110b2565b5b5f611323868287016110fc565b9350506020611334868287016110fc565b925050604061134586828701611232565b9150509250925092565b5f60ff82169050919050565b6113648161134f565b82525050565b5f60208201905061137d5f83018461135b565b92915050565b61138c816110d5565b82525050565b5f6020820190506113a55f830184611383565b92915050565b5f80604083850312156113c1576113c06110b2565b5b5f6113ce858286016110fc565b92505060206113df858286016110fc565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061142d57607f821691505b6020821081036114405761143f6113e9565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61147d82611213565b915061148883611213565b92508282019050808211156114a05761149f611446565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61150060258361118d565b915061150b826114a6565b604082019050919050565b5f6020820190508181035f83015261152d816114f4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61158e60268361118d565b915061159982611534565b604082019050919050565b5f6020820190508181035f8301526115bb81611582565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6115f660208361118d565b9150611601826115c2565b602082019050919050565b5f6020820190508181035f830152611623816115ea565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61168460248361118d565b915061168f8261162a565b604082019050919050565b5f6020820190508181035f8301526116b181611678565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61171260228361118d565b915061171d826116b8565b604082019050919050565b5f6020820190508181035f83015261173f81611706565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61177a601d8361118d565b915061178582611746565b602082019050919050565b5f6020820190508181035f8301526117a78161176e565b9050919050565b7f596f75277265207661787865642e20476f20706c617920776974682042696c6c5f8201527f202620636f6d65206261636b206c617465722e00000000000000000000000000602082015250565b5f61180860338361118d565b9150611813826117ae565b604082019050919050565b5f6020820190508181035f830152611835816117fc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61189660258361118d565b91506118a18261183c565b604082019050919050565b5f6020820190508181035f8301526118c38161188a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61192460238361118d565b915061192f826118ca565b604082019050919050565b5f6020820190508181035f83015261195181611918565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6119b260268361118d565b91506119bd82611958565b604082019050919050565b5f6020820190508181035f8301526119df816119a6565b905091905056fea2646970667358221220a79a4d46a35d96f48a78afbc370f6fd9b01161ac3d7e554fb960119fa543736864736f6c634300081a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000084d5346543232383000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d534654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042000000000000000000000000994091e68d5e204851bbdcbbf03d03caeca7d472000000000000000000000000d8806f8fcc08c2b28d2d3d8245aa4f6be6eda7a50000000000000000000000000ad5aba9287bc4bb374b8f658e909ddf1ddae103000000000000000000000000cd02a1a676b54010610970e30b07325bafde12c300000000000000000000000000ece3e9c15f8fedf2b3127f1db0d795f613be9e0000000000000000000000002e1e5e223bf5081a596b1a4e6813f2d55c2c53880000000000000000000000005f9a69748d94187103c86435fbe431ba006530d6000000000000000000000000a7f9b8915aff5530ca6090f440ce62ce54f84d950000000000000000000000002ccc4e1e4d5e18e430d31bd4bf51f29804167a570000000000000000000000008d588e5882cd72b29522ed7eed2d0884bfe888d10000000000000000000000000d4f09c4126c87c64e60a8aa6f36766064923d2b0000000000000000000000006dfd9599b3a54ab8a3c62fa5472e9b41e6dc502d0000000000000000000000004daddffac168e1edfc075b3f445b171a8ec230b100000000000000000000000028f8ca560d4458b13c920e3127a1b8d5e09a4848000000000000000000000000484b982b1a6a19887e01e4873b4084fb06c4350100000000000000000000000004112c0dbe2fb9d0398423df13c1c7a566f82b9c000000000000000000000000c2515a3b5192858dc7e992308b6fde66249b84ee0000000000000000000000002d95b225e1b746ae7f00c640fe971522848ef29400000000000000000000000059fc3b5481901d45092fb1364aed3e4c57ebb8f8000000000000000000000000b1a70e84a51e12e3c9eea3230064ebc3c04a43df0000000000000000000000006e6c87e67c4dff5e011de5f2f8eb208e6cb16c720000000000000000000000002709b93135558d8378cc57eedc77b8913b9279ae000000000000000000000000b0a6afded296d760c79636c65b7ee1f0a9218da3000000000000000000000000d551c75864646cdd6561ca954ff9d36b19e36b19000000000000000000000000640c005c740a73e98fa5a62549c28ce099421e4e000000000000000000000000349303ead057b59e221340658e9b8b989e0cbecb000000000000000000000000680cc915cb3d10efe1d137c08e6623d549df3be3000000000000000000000000576568da73d52bcba0945368c7ed55e5e88db0d1000000000000000000000000abf93477e9e1b2653c8837a877b09b6564acc97a000000000000000000000000ae6c35f64eea0d5482b736317ae5b6b90c8defe30000000000000000000000003c93b2f87ef77683d5c453d2f5c5a9821d148ecd0000000000000000000000007263bc584471dac6a8653d99e51a5ab442915717000000000000000000000000d8e7fc6ce588c35daf2b68c26255824618ac7b180000000000000000000000000fb29f3839493d618db65b474c8813e9087f196a000000000000000000000000ffdac46292d035f7a9753605a00b2ecd3754350d000000000000000000000000b5f0eb29fa08fdc2eaf2e3510bd38834de36cb3a000000000000000000000000be7812b8325c86dded1744319172f476f754ba53000000000000000000000000812a62e4adb98d756ec3a3884476134e242c22f5000000000000000000000000c4c4a6e3de99d6aebe155aa51b48b5b54e8d85dd00000000000000000000000064a0624f71bb901943fe7a6eda5478904de546c0000000000000000000000000b97818a8e30d64d263903c4acda8740fbe1c531d0000000000000000000000000fee23cd021a8ee976795bdc6c58c10599e6530400000000000000000000000063b7deebe69619e024306c4e5658e4f225008b36000000000000000000000000a5b8aae96ff435bb37aa707e65953efc10e55b4d000000000000000000000000ddab4ca78421674409d7d7b51dc9996bba15d9a20000000000000000000000004c4879195734ad6bbe66878106cf069a95824148000000000000000000000000d3fbe94595c77ffc476af192ec5871f785c86c67000000000000000000000000870e0a7ce8392ca9001c501b5837df7329816aa8000000000000000000000000979609a0ef2e22b6c1dffafb05d26521e0ed1ab30000000000000000000000006e6d961809eb6c74e2307326359db71eb993e77b0000000000000000000000008d811999b355b9dc1494ca5996b48ed591ab202300000000000000000000000077eae8c53ac8ec4589ab7ce5be64ef6bd1fa03fa0000000000000000000000006e90eef8a00c08fd40d14308e61e23222feca6df000000000000000000000000b075f486a343f387df9e3ae1e15cc0a254cfa2da0000000000000000000000008aa26b43da7c6d5f4fbbe67ee30fb8e84e87c58d000000000000000000000000d5d837c60aa22ba09f7dd745a57195323d2b93dc000000000000000000000000c3d6896bf64b008f9ae657eefea4e476f8d9f1bb00000000000000000000000089d4ed1707cede02ff6fb8a6625554a674c0aabc00000000000000000000000007f0e951f1eec36f9620bd36abc7967f87c03d52000000000000000000000000f2565c5218781c551f2f6923f88c357ae47825e4000000000000000000000000a4e767621620cd75e452497e1cf5a6d70c7b5034000000000000000000000000563d952f74b220d063d5f9fa36d283352e71b9640000000000000000000000004d0c1bd119f7c8ea73a31ff4dd5bbff4e79d76bd00000000000000000000000034a0ebba0282ed2abc95a9da78600e2c898dd2780000000000000000000000009f583f34aaf19ab2a08042c99096bf9517012eb6000000000000000000000000bcc95e1bf8fc4a29bc6df854e93b84e1a0daf00a

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061011f575f3560e01c806370a08231116100ab57806395d89b411161006f57806395d89b41146102f5578063a457c2d714610313578063a9059cbb14610343578063dd62ed3e14610373578063f2fde38b146103a35761011f565b806370a0823114610275578063715018a6146102a5578063751039fc146102af578063860a32ec146102b95780638da5cb5b146102d75761011f565b80630b6f740e116100f25780630b6f740e146101bd57806318160ddd146101d957806323b872dd146101f7578063313ce5671461022757806339509351146102455761011f565b8063021394d51461012357806306fdde031461013f578063095ea7b31461015d5780630b285b1f1461018d575b5f80fd5b61013d60048036038101906101389190611145565b6103bf565b005b61014761041f565b60405161015491906111f3565b60405180910390f35b61017760048036038101906101729190611246565b6104af565b6040516101849190611293565b60405180910390f35b6101a760048036038101906101a291906112ac565b6104d1565b6040516101b49190611293565b60405180910390f35b6101d760048036038101906101d29190611145565b6104ee565b005b6101e161054e565b6040516101ee91906112e6565b60405180910390f35b610211600480360381019061020c91906112ff565b610557565b60405161021e9190611293565b60405180910390f35b61022f610585565b60405161023c919061136a565b60405180910390f35b61025f600480360381019061025a9190611246565b61058d565b60405161026c9190611293565b60405180910390f35b61028f600480360381019061028a91906112ac565b6105c3565b60405161029c91906112e6565b60405180910390f35b6102ad610608565b005b6102b761061b565b005b6102c161063f565b6040516102ce9190611293565b60405180910390f35b6102df610652565b6040516102ec9190611392565b60405180910390f35b6102fd61067a565b60405161030a91906111f3565b60405180910390f35b61032d60048036038101906103289190611246565b61070a565b60405161033a9190611293565b60405180910390f35b61035d60048036038101906103589190611246565b61077f565b60405161036a9190611293565b60405180910390f35b61038d600480360381019061038891906113ab565b6107a1565b60405161039a91906112e6565b60405180910390f35b6103bd60048036038101906103b891906112ac565b610823565b005b6103c76108a5565b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60606003805461042e90611416565b80601f016020809104026020016040519081016040528092919081815260200182805461045a90611416565b80156104a55780601f1061047c576101008083540402835291602001916104a5565b820191905f5260205f20905b81548152906001019060200180831161048857829003601f168201915b5050505050905090565b5f806104b9610923565b90506104c681858561092a565b600191505092915050565b6006602052805f5260405f205f915054906101000a900460ff1681565b6104f66108a5565b8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600254905090565b5f80610561610923565b905061056e858285610aed565b610579858585610b78565b60019150509392505050565b5f6012905090565b5f80610597610923565b90506105b88185856105a985896107a1565b6105b39190611473565b61092a565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106106108a5565b6106195f610d79565b565b6106236108a5565b5f600b60146101000a81548160ff021916908315150217905550565b600b60149054906101000a900460ff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461068990611416565b80601f01602080910402602001604051908101604052809291908181526020018280546106b590611416565b80156107005780601f106106d757610100808354040283529160200191610700565b820191905f5260205f20905b8154815290600101906020018083116106e357829003601f168201915b5050505050905090565b5f80610714610923565b90505f61072182866107a1565b905083811015610766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075d90611516565b60405180910390fd5b610773828686840361092a565b60019250505092915050565b5f80610789610923565b9050610796818585610b78565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61082b6108a5565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610899576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610890906115a4565b60405180910390fd5b6108a281610d79565b50565b6108ad610923565b73ffffffffffffffffffffffffffffffffffffffff166108cb610652565b73ffffffffffffffffffffffffffffffffffffffff1614610921576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109189061160c565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f9061169a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd90611728565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ae091906112e6565b60405180910390a3505050565b5f610af884846107a1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b725781811015610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b90611790565b60405180910390fd5b610b71848484840361092a565b5b50505050565b60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610bd757610bd2838383610e3c565b610d74565b600b60149054906101000a900460ff1615610d685760075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610c87575060075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610d675760085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610d27575060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d9061181e565b60405180910390fd5b5b5b610d73838383610e3c565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea1906118ac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061193a565b60405180910390fd5b610f238383836110a8565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d906119c8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161108f91906112e6565b60405180910390a36110a28484846110ad565b50505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110df826110b6565b9050919050565b6110ef816110d5565b81146110f9575f80fd5b50565b5f8135905061110a816110e6565b92915050565b5f8115159050919050565b61112481611110565b811461112e575f80fd5b50565b5f8135905061113f8161111b565b92915050565b5f806040838503121561115b5761115a6110b2565b5b5f611168858286016110fc565b925050602061117985828601611131565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6111c582611183565b6111cf818561118d565b93506111df81856020860161119d565b6111e8816111ab565b840191505092915050565b5f6020820190508181035f83015261120b81846111bb565b905092915050565b5f819050919050565b61122581611213565b811461122f575f80fd5b50565b5f813590506112408161121c565b92915050565b5f806040838503121561125c5761125b6110b2565b5b5f611269858286016110fc565b925050602061127a85828601611232565b9150509250929050565b61128d81611110565b82525050565b5f6020820190506112a65f830184611284565b92915050565b5f602082840312156112c1576112c06110b2565b5b5f6112ce848285016110fc565b91505092915050565b6112e081611213565b82525050565b5f6020820190506112f95f8301846112d7565b92915050565b5f805f60608486031215611316576113156110b2565b5b5f611323868287016110fc565b9350506020611334868287016110fc565b925050604061134586828701611232565b9150509250925092565b5f60ff82169050919050565b6113648161134f565b82525050565b5f60208201905061137d5f83018461135b565b92915050565b61138c816110d5565b82525050565b5f6020820190506113a55f830184611383565b92915050565b5f80604083850312156113c1576113c06110b2565b5b5f6113ce858286016110fc565b92505060206113df858286016110fc565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061142d57607f821691505b6020821081036114405761143f6113e9565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61147d82611213565b915061148883611213565b92508282019050808211156114a05761149f611446565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61150060258361118d565b915061150b826114a6565b604082019050919050565b5f6020820190508181035f83015261152d816114f4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61158e60268361118d565b915061159982611534565b604082019050919050565b5f6020820190508181035f8301526115bb81611582565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6115f660208361118d565b9150611601826115c2565b602082019050919050565b5f6020820190508181035f830152611623816115ea565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61168460248361118d565b915061168f8261162a565b604082019050919050565b5f6020820190508181035f8301526116b181611678565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61171260228361118d565b915061171d826116b8565b604082019050919050565b5f6020820190508181035f83015261173f81611706565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61177a601d8361118d565b915061178582611746565b602082019050919050565b5f6020820190508181035f8301526117a78161176e565b9050919050565b7f596f75277265207661787865642e20476f20706c617920776974682042696c6c5f8201527f202620636f6d65206261636b206c617465722e00000000000000000000000000602082015250565b5f61180860338361118d565b9150611813826117ae565b604082019050919050565b5f6020820190508181035f830152611835816117fc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61189660258361118d565b91506118a18261183c565b604082019050919050565b5f6020820190508181035f8301526118c38161188a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61192460238361118d565b915061192f826118ca565b604082019050919050565b5f6020820190508181035f83015261195181611918565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6119b260268361118d565b91506119bd82611958565b604082019050919050565b5f6020820190508181035f8301526119df816119a6565b905091905056fea2646970667358221220a79a4d46a35d96f48a78afbc370f6fd9b01161ac3d7e554fb960119fa543736864736f6c634300081a0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000084d5346543232383000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d534654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042000000000000000000000000994091e68d5e204851bbdcbbf03d03caeca7d472000000000000000000000000d8806f8fcc08c2b28d2d3d8245aa4f6be6eda7a50000000000000000000000000ad5aba9287bc4bb374b8f658e909ddf1ddae103000000000000000000000000cd02a1a676b54010610970e30b07325bafde12c300000000000000000000000000ece3e9c15f8fedf2b3127f1db0d795f613be9e0000000000000000000000002e1e5e223bf5081a596b1a4e6813f2d55c2c53880000000000000000000000005f9a69748d94187103c86435fbe431ba006530d6000000000000000000000000a7f9b8915aff5530ca6090f440ce62ce54f84d950000000000000000000000002ccc4e1e4d5e18e430d31bd4bf51f29804167a570000000000000000000000008d588e5882cd72b29522ed7eed2d0884bfe888d10000000000000000000000000d4f09c4126c87c64e60a8aa6f36766064923d2b0000000000000000000000006dfd9599b3a54ab8a3c62fa5472e9b41e6dc502d0000000000000000000000004daddffac168e1edfc075b3f445b171a8ec230b100000000000000000000000028f8ca560d4458b13c920e3127a1b8d5e09a4848000000000000000000000000484b982b1a6a19887e01e4873b4084fb06c4350100000000000000000000000004112c0dbe2fb9d0398423df13c1c7a566f82b9c000000000000000000000000c2515a3b5192858dc7e992308b6fde66249b84ee0000000000000000000000002d95b225e1b746ae7f00c640fe971522848ef29400000000000000000000000059fc3b5481901d45092fb1364aed3e4c57ebb8f8000000000000000000000000b1a70e84a51e12e3c9eea3230064ebc3c04a43df0000000000000000000000006e6c87e67c4dff5e011de5f2f8eb208e6cb16c720000000000000000000000002709b93135558d8378cc57eedc77b8913b9279ae000000000000000000000000b0a6afded296d760c79636c65b7ee1f0a9218da3000000000000000000000000d551c75864646cdd6561ca954ff9d36b19e36b19000000000000000000000000640c005c740a73e98fa5a62549c28ce099421e4e000000000000000000000000349303ead057b59e221340658e9b8b989e0cbecb000000000000000000000000680cc915cb3d10efe1d137c08e6623d549df3be3000000000000000000000000576568da73d52bcba0945368c7ed55e5e88db0d1000000000000000000000000abf93477e9e1b2653c8837a877b09b6564acc97a000000000000000000000000ae6c35f64eea0d5482b736317ae5b6b90c8defe30000000000000000000000003c93b2f87ef77683d5c453d2f5c5a9821d148ecd0000000000000000000000007263bc584471dac6a8653d99e51a5ab442915717000000000000000000000000d8e7fc6ce588c35daf2b68c26255824618ac7b180000000000000000000000000fb29f3839493d618db65b474c8813e9087f196a000000000000000000000000ffdac46292d035f7a9753605a00b2ecd3754350d000000000000000000000000b5f0eb29fa08fdc2eaf2e3510bd38834de36cb3a000000000000000000000000be7812b8325c86dded1744319172f476f754ba53000000000000000000000000812a62e4adb98d756ec3a3884476134e242c22f5000000000000000000000000c4c4a6e3de99d6aebe155aa51b48b5b54e8d85dd00000000000000000000000064a0624f71bb901943fe7a6eda5478904de546c0000000000000000000000000b97818a8e30d64d263903c4acda8740fbe1c531d0000000000000000000000000fee23cd021a8ee976795bdc6c58c10599e6530400000000000000000000000063b7deebe69619e024306c4e5658e4f225008b36000000000000000000000000a5b8aae96ff435bb37aa707e65953efc10e55b4d000000000000000000000000ddab4ca78421674409d7d7b51dc9996bba15d9a20000000000000000000000004c4879195734ad6bbe66878106cf069a95824148000000000000000000000000d3fbe94595c77ffc476af192ec5871f785c86c67000000000000000000000000870e0a7ce8392ca9001c501b5837df7329816aa8000000000000000000000000979609a0ef2e22b6c1dffafb05d26521e0ed1ab30000000000000000000000006e6d961809eb6c74e2307326359db71eb993e77b0000000000000000000000008d811999b355b9dc1494ca5996b48ed591ab202300000000000000000000000077eae8c53ac8ec4589ab7ce5be64ef6bd1fa03fa0000000000000000000000006e90eef8a00c08fd40d14308e61e23222feca6df000000000000000000000000b075f486a343f387df9e3ae1e15cc0a254cfa2da0000000000000000000000008aa26b43da7c6d5f4fbbe67ee30fb8e84e87c58d000000000000000000000000d5d837c60aa22ba09f7dd745a57195323d2b93dc000000000000000000000000c3d6896bf64b008f9ae657eefea4e476f8d9f1bb00000000000000000000000089d4ed1707cede02ff6fb8a6625554a674c0aabc00000000000000000000000007f0e951f1eec36f9620bd36abc7967f87c03d52000000000000000000000000f2565c5218781c551f2f6923f88c357ae47825e4000000000000000000000000a4e767621620cd75e452497e1cf5a6d70c7b5034000000000000000000000000563d952f74b220d063d5f9fa36d283352e71b9640000000000000000000000004d0c1bd119f7c8ea73a31ff4dd5bbff4e79d76bd00000000000000000000000034a0ebba0282ed2abc95a9da78600e2c898dd2780000000000000000000000009f583f34aaf19ab2a08042c99096bf9517012eb6000000000000000000000000bcc95e1bf8fc4a29bc6df854e93b84e1a0daf00a

-----Decoded View---------------
Arg [0] : name (string): MSFT2280
Arg [1] : symbol (string): MSFT
Arg [2] : _Unvaccinated (address[]): 0x994091e68d5e204851BbDcbBF03d03cAEcA7D472,0xd8806F8Fcc08C2B28D2D3D8245aa4F6BE6eda7a5,0x0AD5ABA9287Bc4bb374B8f658E909dDf1DDae103,0xCd02a1A676B54010610970E30b07325baFdE12c3,0x00ece3e9C15F8fEDf2b3127f1db0D795F613be9e,0x2e1E5e223BF5081A596B1a4E6813F2D55C2C5388,0x5f9a69748D94187103c86435fbE431bA006530D6,0xA7f9b8915AFF5530CA6090f440cE62cE54F84d95,0x2cCc4E1e4D5e18e430D31bD4bf51F29804167a57,0x8d588E5882cD72b29522ed7EeD2D0884bFE888d1,0x0d4F09c4126C87C64e60a8aA6F36766064923D2B,0x6Dfd9599B3a54AB8A3c62Fa5472e9b41e6dC502D,0x4daDdffAC168E1edFC075b3f445B171A8EC230B1,0x28F8ca560d4458b13c920E3127a1B8D5e09A4848,0x484b982b1A6a19887e01E4873B4084Fb06C43501,0x04112c0Dbe2fB9D0398423DF13c1c7A566F82B9c,0xC2515A3b5192858Dc7e992308b6FdE66249b84ee,0x2D95B225E1b746AE7f00C640fE971522848eF294,0x59Fc3B5481901D45092fb1364AED3E4C57ebb8F8,0xb1A70e84A51E12e3C9Eea3230064ebC3C04a43dF,0x6E6C87e67C4dFF5E011de5F2F8Eb208E6cb16c72,0x2709B93135558d8378cc57EEdc77b8913B9279AE,0xb0A6AFded296D760C79636C65B7EE1F0A9218DA3,0xD551c75864646CdD6561CA954Ff9d36b19E36B19,0x640c005c740A73E98fa5a62549C28CE099421E4e,0x349303EAD057B59E221340658E9B8b989e0Cbecb,0x680cc915CB3D10EFe1d137C08e6623d549DF3BE3,0x576568da73D52bcBa0945368C7ED55E5e88db0d1,0xabF93477E9E1B2653C8837a877B09b6564ACC97A,0xAE6c35F64EeA0D5482b736317aE5b6B90c8DefE3,0x3c93B2f87eF77683D5C453d2F5c5A9821D148EcD,0x7263BC584471dAc6a8653d99e51a5Ab442915717,0xD8E7fC6ce588c35DAf2b68C26255824618aC7b18,0x0fB29F3839493D618dB65B474c8813E9087F196a,0xFfdAc46292D035f7a9753605A00B2Ecd3754350D,0xB5f0EB29fa08fdc2eAF2E3510bd38834dE36cb3a,0xBe7812B8325c86DDed1744319172F476F754Ba53,0x812A62e4ADB98D756eC3A3884476134e242c22f5,0xc4c4a6E3De99d6aEBe155aA51b48b5B54E8D85DD,0x64A0624F71bb901943fe7A6EdA5478904de546c0,0xb97818a8E30d64D263903c4AcDa8740FBe1C531D,0x0fEe23cd021a8ee976795Bdc6C58C10599e65304,0x63B7DeEbE69619e024306C4e5658e4F225008b36,0xA5B8AaE96FF435bb37Aa707E65953efc10E55B4D,0xDdab4cA78421674409D7d7B51Dc9996Bba15d9A2,0x4c4879195734aD6Bbe66878106Cf069A95824148,0xD3fbE94595C77FFC476AF192EC5871f785C86c67,0x870E0a7cE8392cA9001C501b5837DF7329816aA8,0x979609a0eF2e22B6c1dfFAfB05D26521e0ed1Ab3,0x6e6d961809EB6C74E2307326359db71EB993e77b,0x8d811999b355B9dC1494ca5996b48eD591AB2023,0x77eAE8c53Ac8eC4589aB7Ce5BE64EF6bd1FA03fa,0x6E90EEf8a00c08Fd40d14308E61E23222FECA6df,0xB075f486A343f387Df9e3aE1e15cC0a254CfA2DA,0x8Aa26B43DA7C6d5F4fBbE67EE30Fb8E84E87C58D,0xd5d837C60aA22Ba09F7Dd745A57195323D2B93DC,0xc3D6896bF64B008F9aE657EEfea4E476f8d9f1bb,0x89D4Ed1707ceDe02Ff6fB8a6625554a674c0AabC,0x07F0E951F1eEC36F9620Bd36aBc7967f87c03d52,0xf2565C5218781C551f2f6923f88c357AE47825e4,0xA4e767621620CD75E452497E1cF5a6D70c7B5034,0x563d952f74b220D063d5f9fA36D283352E71b964,0x4d0C1bD119F7c8Ea73A31ff4dD5bbFF4e79d76BD,0x34a0Ebba0282ed2abc95A9da78600E2C898Dd278,0x9f583f34aaf19ab2a08042c99096bF9517012eB6,0xBCc95e1bf8FC4A29BC6DF854e93B84e1a0daf00A

-----Encoded View---------------
74 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 4d53465432323830000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4d53465400000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [8] : 000000000000000000000000994091e68d5e204851bbdcbbf03d03caeca7d472
Arg [9] : 000000000000000000000000d8806f8fcc08c2b28d2d3d8245aa4f6be6eda7a5
Arg [10] : 0000000000000000000000000ad5aba9287bc4bb374b8f658e909ddf1ddae103
Arg [11] : 000000000000000000000000cd02a1a676b54010610970e30b07325bafde12c3
Arg [12] : 00000000000000000000000000ece3e9c15f8fedf2b3127f1db0d795f613be9e
Arg [13] : 0000000000000000000000002e1e5e223bf5081a596b1a4e6813f2d55c2c5388
Arg [14] : 0000000000000000000000005f9a69748d94187103c86435fbe431ba006530d6
Arg [15] : 000000000000000000000000a7f9b8915aff5530ca6090f440ce62ce54f84d95
Arg [16] : 0000000000000000000000002ccc4e1e4d5e18e430d31bd4bf51f29804167a57
Arg [17] : 0000000000000000000000008d588e5882cd72b29522ed7eed2d0884bfe888d1
Arg [18] : 0000000000000000000000000d4f09c4126c87c64e60a8aa6f36766064923d2b
Arg [19] : 0000000000000000000000006dfd9599b3a54ab8a3c62fa5472e9b41e6dc502d
Arg [20] : 0000000000000000000000004daddffac168e1edfc075b3f445b171a8ec230b1
Arg [21] : 00000000000000000000000028f8ca560d4458b13c920e3127a1b8d5e09a4848
Arg [22] : 000000000000000000000000484b982b1a6a19887e01e4873b4084fb06c43501
Arg [23] : 00000000000000000000000004112c0dbe2fb9d0398423df13c1c7a566f82b9c
Arg [24] : 000000000000000000000000c2515a3b5192858dc7e992308b6fde66249b84ee
Arg [25] : 0000000000000000000000002d95b225e1b746ae7f00c640fe971522848ef294
Arg [26] : 00000000000000000000000059fc3b5481901d45092fb1364aed3e4c57ebb8f8
Arg [27] : 000000000000000000000000b1a70e84a51e12e3c9eea3230064ebc3c04a43df
Arg [28] : 0000000000000000000000006e6c87e67c4dff5e011de5f2f8eb208e6cb16c72
Arg [29] : 0000000000000000000000002709b93135558d8378cc57eedc77b8913b9279ae
Arg [30] : 000000000000000000000000b0a6afded296d760c79636c65b7ee1f0a9218da3
Arg [31] : 000000000000000000000000d551c75864646cdd6561ca954ff9d36b19e36b19
Arg [32] : 000000000000000000000000640c005c740a73e98fa5a62549c28ce099421e4e
Arg [33] : 000000000000000000000000349303ead057b59e221340658e9b8b989e0cbecb
Arg [34] : 000000000000000000000000680cc915cb3d10efe1d137c08e6623d549df3be3
Arg [35] : 000000000000000000000000576568da73d52bcba0945368c7ed55e5e88db0d1
Arg [36] : 000000000000000000000000abf93477e9e1b2653c8837a877b09b6564acc97a
Arg [37] : 000000000000000000000000ae6c35f64eea0d5482b736317ae5b6b90c8defe3
Arg [38] : 0000000000000000000000003c93b2f87ef77683d5c453d2f5c5a9821d148ecd
Arg [39] : 0000000000000000000000007263bc584471dac6a8653d99e51a5ab442915717
Arg [40] : 000000000000000000000000d8e7fc6ce588c35daf2b68c26255824618ac7b18
Arg [41] : 0000000000000000000000000fb29f3839493d618db65b474c8813e9087f196a
Arg [42] : 000000000000000000000000ffdac46292d035f7a9753605a00b2ecd3754350d
Arg [43] : 000000000000000000000000b5f0eb29fa08fdc2eaf2e3510bd38834de36cb3a
Arg [44] : 000000000000000000000000be7812b8325c86dded1744319172f476f754ba53
Arg [45] : 000000000000000000000000812a62e4adb98d756ec3a3884476134e242c22f5
Arg [46] : 000000000000000000000000c4c4a6e3de99d6aebe155aa51b48b5b54e8d85dd
Arg [47] : 00000000000000000000000064a0624f71bb901943fe7a6eda5478904de546c0
Arg [48] : 000000000000000000000000b97818a8e30d64d263903c4acda8740fbe1c531d
Arg [49] : 0000000000000000000000000fee23cd021a8ee976795bdc6c58c10599e65304
Arg [50] : 00000000000000000000000063b7deebe69619e024306c4e5658e4f225008b36
Arg [51] : 000000000000000000000000a5b8aae96ff435bb37aa707e65953efc10e55b4d
Arg [52] : 000000000000000000000000ddab4ca78421674409d7d7b51dc9996bba15d9a2
Arg [53] : 0000000000000000000000004c4879195734ad6bbe66878106cf069a95824148
Arg [54] : 000000000000000000000000d3fbe94595c77ffc476af192ec5871f785c86c67
Arg [55] : 000000000000000000000000870e0a7ce8392ca9001c501b5837df7329816aa8
Arg [56] : 000000000000000000000000979609a0ef2e22b6c1dffafb05d26521e0ed1ab3
Arg [57] : 0000000000000000000000006e6d961809eb6c74e2307326359db71eb993e77b
Arg [58] : 0000000000000000000000008d811999b355b9dc1494ca5996b48ed591ab2023
Arg [59] : 00000000000000000000000077eae8c53ac8ec4589ab7ce5be64ef6bd1fa03fa
Arg [60] : 0000000000000000000000006e90eef8a00c08fd40d14308e61e23222feca6df
Arg [61] : 000000000000000000000000b075f486a343f387df9e3ae1e15cc0a254cfa2da
Arg [62] : 0000000000000000000000008aa26b43da7c6d5f4fbbe67ee30fb8e84e87c58d
Arg [63] : 000000000000000000000000d5d837c60aa22ba09f7dd745a57195323d2b93dc
Arg [64] : 000000000000000000000000c3d6896bf64b008f9ae657eefea4e476f8d9f1bb
Arg [65] : 00000000000000000000000089d4ed1707cede02ff6fb8a6625554a674c0aabc
Arg [66] : 00000000000000000000000007f0e951f1eec36f9620bd36abc7967f87c03d52
Arg [67] : 000000000000000000000000f2565c5218781c551f2f6923f88c357ae47825e4
Arg [68] : 000000000000000000000000a4e767621620cd75e452497e1cf5a6d70c7b5034
Arg [69] : 000000000000000000000000563d952f74b220d063d5f9fa36d283352e71b964
Arg [70] : 0000000000000000000000004d0c1bd119f7c8ea73a31ff4dd5bbff4e79d76bd
Arg [71] : 00000000000000000000000034a0ebba0282ed2abc95a9da78600e2c898dd278
Arg [72] : 0000000000000000000000009f583f34aaf19ab2a08042c99096bf9517012eb6
Arg [73] : 000000000000000000000000bcc95e1bf8fc4a29bc6df854e93b84e1a0daf00a


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.