ETH Price: $3,160.10 (-8.95%)
Gas: 4 Gwei

Token

Just Kek (JKEK)
 

Overview

Max Total Supply

990,106,293.00030464457009575 JKEK

Holders

173

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,462,377.494212937296392786 JKEK

Value
$0.00
0x1a02f462ecaaf41fa2a3521e7dc34f004f785bd7
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:
KekToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : KekToken.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;

import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract KekToken is ERC20, ERC20Burnable, Ownable {
    using Address for address payable;
    using SafeMath for uint256;

    address public treasury;
    uint32 public tax = 4;

    uint256 public maxWalletAmount;
    address public uniswapV2Pair;
    bool public maxWalletAmountEnabled = true;

    event TreasuryAddressUpdated(address newTreasury);
    event UniswapV2PairUpdated(address newUniswapV2Pair);
    event TaxUpdated(uint256 taxAmount);
    event MaxWalletAmountCheckPassed(address recipient, uint256 amount);
    event MaxWalletToggled(bool enabled);

    constructor(uint256 supply, address _treasury) ERC20("Just Kek", "JKEK") {
        _mint(msg.sender, supply.mul(10 ** decimals()));
        maxWalletAmount = supply.mul(10 ** decimals()).div(100);
        treasury = _treasury;
    }

    function setTreasuryAddress(address _treasury) external onlyOwner {
        require(
            _treasury != address(0),
            "Zero address cannot be set as Treasury"
        );
        treasury = _treasury;

        emit TreasuryAddressUpdated(_treasury);
    }

    function setUniswapV2Pair(address _uniswapV2Pair) external onlyOwner {
        require(
            _uniswapV2Pair != address(0),
            "Zero address cannot be set as UniswapV2Pair"
        );
        uniswapV2Pair = _uniswapV2Pair;
        emit UniswapV2PairUpdated(_uniswapV2Pair);
    }

    function toggleWalletLimit(bool enabled) external onlyOwner {
        maxWalletAmountEnabled = enabled;
        emit MaxWalletToggled(enabled);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "Trading has not started");
            return;
        }

        if (maxWalletAmountEnabled && from == uniswapV2Pair) {
            require(
                super.balanceOf(to) + amount <= maxWalletAmount,
                "Forbidden. Wallet maximum amount exceeded"
            );
        }
    }

        function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual override {
        uint256 feeAmount = amount.mul(tax).div(1000);
        uint256 burnAmount = feeAmount.div(2);
        uint256 treasuryAmount = feeAmount.sub(burnAmount);
        uint256 netAmount = amount.sub(feeAmount);

        super._transfer(sender, recipient, netAmount);
        super._transfer(sender, treasury, treasuryAmount);
        super._burn(sender, burnAmount);
    }

    function setTax(uint32 _tax) external onlyOwner {
        require(_tax <= 50, "Maximum tax allowed is 5%");
        tax = _tax;
        emit TaxUpdated(tax);
    }

    receive() external payable {}
}

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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 9 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

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

File 4 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 5 of 9 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 6 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 7 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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) {
        return msg.data;
    }
}

File 8 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 9 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` 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 from,
        address to,
        uint256 amount
    ) 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":"uint256","name":"supply","type":"uint256"},{"internalType":"address","name":"_treasury","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":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxWalletAmountCheckPassed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"MaxWalletToggled","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":false,"internalType":"uint256","name":"taxAmount","type":"uint256"}],"name":"TaxUpdated","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newTreasury","type":"address"}],"name":"TreasuryAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newUniswapV2Pair","type":"address"}],"name":"UniswapV2PairUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmountEnabled","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_tax","type":"uint32"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapV2Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggleWalletLimit","outputs":[],"stateMutability":"nonpayable","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":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526004600660146101000a81548163ffffffff021916908363ffffffff1602179055506001600860146101000a81548160ff0219169083151502179055503480156200004e57600080fd5b506040516200357438038062003574833981810160405281019062000074919062000862565b6040518060400160405280600881526020017f4a757374204b656b0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4a4b454b000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000f89291906200070d565b508060049080519060200190620001119291906200070d565b50505062000134620001286200021c60201b60201c565b6200022460201b60201c565b6200017c33620001706200014d620002ea60201b60201c565b600a6200015b919062000a39565b85620002f360201b62000da01790919060201c565b6200030b60201b60201c565b620001cd6064620001b962000196620002ea60201b60201c565b600a620001a4919062000a39565b85620002f360201b62000da01790919060201c565b6200047960201b62000db61790919060201c565b60078190555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000dcf565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b6000818362000303919062000a8a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200037e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003759062000b4c565b60405180910390fd5b62000392600083836200049160201b60201c565b8060026000828254620003a6919062000b6e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000459919062000bdc565b60405180910390a362000475600083836200069660201b60201c565b5050565b6000818362000489919062000c28565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415620005b557620004f96200069b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806200056d57506200053e6200069b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b620005af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005a69062000cb0565b60405180910390fd5b62000691565b600860149054906101000a900460ff1680156200061f5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156200069057600754816200063f84620006c560201b620009581760201c565b6200064b919062000b6e565b11156200068f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006869062000d48565b60405180910390fd5b5b5b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b8280546200071b9062000d99565b90600052602060002090601f0160209004810192826200073f57600085556200078b565b82601f106200075a57805160ff19168380011785556200078b565b828001600101855582156200078b579182015b828111156200078a5782518255916020019190600101906200076d565b5b5090506200079a91906200079e565b5090565b5b80821115620007b95760008160009055506001016200079f565b5090565b600080fd5b6000819050919050565b620007d781620007c2565b8114620007e357600080fd5b50565b600081519050620007f781620007cc565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200082a82620007fd565b9050919050565b6200083c816200081d565b81146200084857600080fd5b50565b6000815190506200085c8162000831565b92915050565b600080604083850312156200087c576200087b620007bd565b5b60006200088c85828601620007e6565b92505060206200089f858286016200084b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000937578086048111156200090f576200090e620008a9565b5b60018516156200091f5780820291505b80810290506200092f85620008d8565b9450620008ef565b94509492505050565b60008262000952576001905062000a25565b8162000962576000905062000a25565b81600181146200097b57600281146200098657620009bc565b600191505062000a25565b60ff8411156200099b576200099a620008a9565b5b8360020a915084821115620009b557620009b4620008a9565b5b5062000a25565b5060208310610133831016604e8410600b8410161715620009f65782820a905083811115620009f057620009ef620008a9565b5b62000a25565b62000a058484846001620008e5565b9250905081840481111562000a1f5762000a1e620008a9565b5b81810290505b9392505050565b600060ff82169050919050565b600062000a4682620007c2565b915062000a538362000a2c565b925062000a827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000940565b905092915050565b600062000a9782620007c2565b915062000aa483620007c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ae05762000adf620008a9565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b34601f8362000aeb565b915062000b418262000afc565b602082019050919050565b6000602082019050818103600083015262000b678162000b25565b9050919050565b600062000b7b82620007c2565b915062000b8883620007c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000bc05762000bbf620008a9565b5b828201905092915050565b62000bd681620007c2565b82525050565b600060208201905062000bf3600083018462000bcb565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000c3582620007c2565b915062000c4283620007c2565b92508262000c555762000c5462000bf9565b5b828204905092915050565b7f54726164696e6720686173206e6f742073746172746564000000000000000000600082015250565b600062000c9860178362000aeb565b915062000ca58262000c60565b602082019050919050565b6000602082019050818103600083015262000ccb8162000c89565b9050919050565b7f466f7262696464656e2e2057616c6c6574206d6178696d756d20616d6f756e7460008201527f2065786365656465640000000000000000000000000000000000000000000000602082015250565b600062000d3060298362000aeb565b915062000d3d8262000cd2565b604082019050919050565b6000602082019050818103600083015262000d638162000d21565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000db257607f821691505b6020821081141562000dc95762000dc862000d6a565b5b50919050565b6127958062000ddf6000396000f3fe60806040526004361061016a5760003560e01c806370a08231116100d1578063a29a60891161008a578063aa4bde2811610064578063aa4bde281461054b578063d0813c3214610576578063dd62ed3e1461059f578063f2fde38b146105dc57610171565b8063a29a6089146104a8578063a457c2d7146104d1578063a9059cbb1461050e57610171565b806370a08231146103aa578063715018a6146103e757806379cc6790146103fe5780638da5cb5b1461042757806395d89b411461045257806399c8d5561461047d57610171565b80633852c326116101235780633852c3261461029c57806339509351146102c557806342966c681461030257806349bd5a5e1461032b57806361d027b3146103565780636605bfda1461038157610171565b806306fdde0314610176578063095ea7b3146101a15780631785de97146101de57806318160ddd1461020957806323b872dd14610234578063313ce5671461027157610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b610605565b6040516101989190611918565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c391906119d3565b610697565b6040516101d59190611a2e565b60405180910390f35b3480156101ea57600080fd5b506101f36106ba565b6040516102009190611a2e565b60405180910390f35b34801561021557600080fd5b5061021e6106cd565b60405161022b9190611a58565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190611a73565b6106d7565b6040516102689190611a2e565b60405180910390f35b34801561027d57600080fd5b50610286610706565b6040516102939190611ae2565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190611b39565b61070f565b005b3480156102d157600080fd5b506102ec60048036038101906102e791906119d3565b6107ce565b6040516102f99190611a2e565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190611b66565b610805565b005b34801561033757600080fd5b50610340610819565b60405161034d9190611ba2565b60405180910390f35b34801561036257600080fd5b5061036b61083f565b6040516103789190611ba2565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190611bbd565b610865565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190611bbd565b610958565b6040516103de9190611a58565b60405180910390f35b3480156103f357600080fd5b506103fc6109a0565b005b34801561040a57600080fd5b50610425600480360381019061042091906119d3565b6109b4565b005b34801561043357600080fd5b5061043c6109d4565b6040516104499190611ba2565b60405180910390f35b34801561045e57600080fd5b506104676109fe565b6040516104749190611918565b60405180910390f35b34801561048957600080fd5b50610492610a90565b60405161049f9190611bf9565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca9190611bbd565b610aa6565b005b3480156104dd57600080fd5b506104f860048036038101906104f391906119d3565b610b99565b6040516105059190611a2e565b60405180910390f35b34801561051a57600080fd5b50610535600480360381019061053091906119d3565b610c10565b6040516105429190611a2e565b60405180910390f35b34801561055757600080fd5b50610560610c33565b60405161056d9190611a58565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190611c40565b610c39565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190611c6d565b610c95565b6040516105d39190611a58565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190611bbd565b610d1c565b005b60606003805461061490611cdc565b80601f016020809104026020016040519081016040528092919081815260200182805461064090611cdc565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b5050505050905090565b6000806106a2610dcc565b90506106af818585610dd4565b600191505092915050565b600860149054906101000a900460ff1681565b6000600254905090565b6000806106e2610dcc565b90506106ef858285610f9f565b6106fa85858561102b565b60019150509392505050565b60006012905090565b6107176110ff565b60328163ffffffff161115610761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075890611d5a565b60405180910390fd5b80600660146101000a81548163ffffffff021916908363ffffffff1602179055507f35ad15e7f5e4a16b548e8916bd02c51847dde8d106f334b4edaaacf140e43c91600660149054906101000a900463ffffffff166040516107c39190611db5565b60405180910390a150565b6000806107d9610dcc565b90506107fa8185856107eb8589610c95565b6107f59190611dff565b610dd4565b600191505092915050565b610816610810610dcc565b8261117d565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61086d6110ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d490611ec7565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb6a5e89655cf506139085f051af608195ed056f8dc550b180a1c38d401e2b6c48160405161094d9190611ba2565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109a86110ff565b6109b2600061134b565b565b6109c6826109c0610dcc565b83610f9f565b6109d0828261117d565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a0d90611cdc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3990611cdc565b8015610a865780601f10610a5b57610100808354040283529160200191610a86565b820191906000526020600020905b815481529060010190602001808311610a6957829003601f168201915b5050505050905090565b600660149054906101000a900463ffffffff1681565b610aae6110ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590611f59565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f7ce2f660d28151927edf092d28b8ad31996fd3c11a637db41ddb1cd1a34bee0e81604051610b8e9190611ba2565b60405180910390a150565b600080610ba4610dcc565b90506000610bb28286610c95565b905083811015610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee90611feb565b60405180910390fd5b610c048286868403610dd4565b60019250505092915050565b600080610c1b610dcc565b9050610c2881858561102b565b600191505092915050565b60075481565b610c416110ff565b80600860146101000a81548160ff0219169083151502179055507f433dd3d6521f7249524607185ecbb04177683225367e85db2ae6542faf37688481604051610c8a9190611a2e565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d246110ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b9061207d565b60405180910390fd5b610d9d8161134b565b50565b60008183610dae919061209d565b905092915050565b60008183610dc49190612126565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906121c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab9061225b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f929190611a58565b60405180910390a3505050565b6000610fab8484610c95565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110255781811015611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e906122c7565b60405180910390fd5b6110248484848403610dd4565b5b50505050565b600061106c6103e861105e600660149054906101000a900463ffffffff1663ffffffff1685610da090919063ffffffff16565b610db690919063ffffffff16565b90506000611084600283610db690919063ffffffff16565b9050600061109b828461141190919063ffffffff16565b905060006110b2848661141190919063ffffffff16565b90506110bf878783611427565b6110ec87600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611427565b6110f6878461117d565b50505050505050565b611107610dcc565b73ffffffffffffffffffffffffffffffffffffffff166111256109d4565b73ffffffffffffffffffffffffffffffffffffffff161461117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290612333565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e4906123c5565b60405180910390fd5b6111f98260008361169f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561127f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127690612457565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113329190611a58565b60405180910390a36113468360008461187a565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361141f9190612477565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e9061251d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe906125af565b60405180910390fd5b61151283838361169f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f90612641565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116869190611a58565b60405180910390a361169984848461187a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156117ad576116fe6109d4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611769575061173a6109d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f906126ad565b60405180910390fd5b611875565b600860149054906101000a900460ff1680156118165750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611874576007548161182884610958565b6118329190611dff565b1115611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a9061273f565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118b957808201518184015260208101905061189e565b838111156118c8576000848401525b50505050565b6000601f19601f8301169050919050565b60006118ea8261187f565b6118f4818561188a565b935061190481856020860161189b565b61190d816118ce565b840191505092915050565b6000602082019050818103600083015261193281846118df565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061196a8261193f565b9050919050565b61197a8161195f565b811461198557600080fd5b50565b60008135905061199781611971565b92915050565b6000819050919050565b6119b08161199d565b81146119bb57600080fd5b50565b6000813590506119cd816119a7565b92915050565b600080604083850312156119ea576119e961193a565b5b60006119f885828601611988565b9250506020611a09858286016119be565b9150509250929050565b60008115159050919050565b611a2881611a13565b82525050565b6000602082019050611a436000830184611a1f565b92915050565b611a528161199d565b82525050565b6000602082019050611a6d6000830184611a49565b92915050565b600080600060608486031215611a8c57611a8b61193a565b5b6000611a9a86828701611988565b9350506020611aab86828701611988565b9250506040611abc868287016119be565b9150509250925092565b600060ff82169050919050565b611adc81611ac6565b82525050565b6000602082019050611af76000830184611ad3565b92915050565b600063ffffffff82169050919050565b611b1681611afd565b8114611b2157600080fd5b50565b600081359050611b3381611b0d565b92915050565b600060208284031215611b4f57611b4e61193a565b5b6000611b5d84828501611b24565b91505092915050565b600060208284031215611b7c57611b7b61193a565b5b6000611b8a848285016119be565b91505092915050565b611b9c8161195f565b82525050565b6000602082019050611bb76000830184611b93565b92915050565b600060208284031215611bd357611bd261193a565b5b6000611be184828501611988565b91505092915050565b611bf381611afd565b82525050565b6000602082019050611c0e6000830184611bea565b92915050565b611c1d81611a13565b8114611c2857600080fd5b50565b600081359050611c3a81611c14565b92915050565b600060208284031215611c5657611c5561193a565b5b6000611c6484828501611c2b565b91505092915050565b60008060408385031215611c8457611c8361193a565b5b6000611c9285828601611988565b9250506020611ca385828601611988565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611cf457607f821691505b60208210811415611d0857611d07611cad565b5b50919050565b7f4d6178696d756d2074617820616c6c6f77656420697320352500000000000000600082015250565b6000611d4460198361188a565b9150611d4f82611d0e565b602082019050919050565b60006020820190508181036000830152611d7381611d37565b9050919050565b6000819050919050565b6000611d9f611d9a611d9584611afd565b611d7a565b61199d565b9050919050565b611daf81611d84565b82525050565b6000602082019050611dca6000830184611da6565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e0a8261199d565b9150611e158361199d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e4a57611e49611dd0565b5b828201905092915050565b7f5a65726f20616464726573732063616e6e6f742062652073657420617320547260008201527f6561737572790000000000000000000000000000000000000000000000000000602082015250565b6000611eb160268361188a565b9150611ebc82611e55565b604082019050919050565b60006020820190508181036000830152611ee081611ea4565b9050919050565b7f5a65726f20616464726573732063616e6e6f742062652073657420617320556e60008201527f6973776170563250616972000000000000000000000000000000000000000000602082015250565b6000611f43602b8361188a565b9150611f4e82611ee7565b604082019050919050565b60006020820190508181036000830152611f7281611f36565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611fd560258361188a565b9150611fe082611f79565b604082019050919050565b6000602082019050818103600083015261200481611fc8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061206760268361188a565b91506120728261200b565b604082019050919050565b600060208201905081810360008301526120968161205a565b9050919050565b60006120a88261199d565b91506120b38361199d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156120ec576120eb611dd0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006121318261199d565b915061213c8361199d565b92508261214c5761214b6120f7565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121b360248361188a565b91506121be82612157565b604082019050919050565b600060208201905081810360008301526121e2816121a6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061224560228361188a565b9150612250826121e9565b604082019050919050565b6000602082019050818103600083015261227481612238565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006122b1601d8361188a565b91506122bc8261227b565b602082019050919050565b600060208201905081810360008301526122e0816122a4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061231d60208361188a565b9150612328826122e7565b602082019050919050565b6000602082019050818103600083015261234c81612310565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006123af60218361188a565b91506123ba82612353565b604082019050919050565b600060208201905081810360008301526123de816123a2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061244160228361188a565b915061244c826123e5565b604082019050919050565b6000602082019050818103600083015261247081612434565b9050919050565b60006124828261199d565b915061248d8361199d565b9250828210156124a05761249f611dd0565b5b828203905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061250760258361188a565b9150612512826124ab565b604082019050919050565b60006020820190508181036000830152612536816124fa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061259960238361188a565b91506125a48261253d565b604082019050919050565b600060208201905081810360008301526125c88161258c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061262b60268361188a565b9150612636826125cf565b604082019050919050565b6000602082019050818103600083015261265a8161261e565b9050919050565b7f54726164696e6720686173206e6f742073746172746564000000000000000000600082015250565b600061269760178361188a565b91506126a282612661565b602082019050919050565b600060208201905081810360008301526126c68161268a565b9050919050565b7f466f7262696464656e2e2057616c6c6574206d6178696d756d20616d6f756e7460008201527f2065786365656465640000000000000000000000000000000000000000000000602082015250565b600061272960298361188a565b9150612734826126cd565b604082019050919050565b600060208201905081810360008301526127588161271c565b905091905056fea264697066735822122014505d05a3fa2b4206f1210bc6896289810b637b6ce267d3d767c3f0ebeb573764736f6c63430008090033000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000006c2ca89dc067e1edf6514186b59d8ae7f3462d4

Deployed Bytecode

0x60806040526004361061016a5760003560e01c806370a08231116100d1578063a29a60891161008a578063aa4bde2811610064578063aa4bde281461054b578063d0813c3214610576578063dd62ed3e1461059f578063f2fde38b146105dc57610171565b8063a29a6089146104a8578063a457c2d7146104d1578063a9059cbb1461050e57610171565b806370a08231146103aa578063715018a6146103e757806379cc6790146103fe5780638da5cb5b1461042757806395d89b411461045257806399c8d5561461047d57610171565b80633852c326116101235780633852c3261461029c57806339509351146102c557806342966c681461030257806349bd5a5e1461032b57806361d027b3146103565780636605bfda1461038157610171565b806306fdde0314610176578063095ea7b3146101a15780631785de97146101de57806318160ddd1461020957806323b872dd14610234578063313ce5671461027157610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b610605565b6040516101989190611918565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c391906119d3565b610697565b6040516101d59190611a2e565b60405180910390f35b3480156101ea57600080fd5b506101f36106ba565b6040516102009190611a2e565b60405180910390f35b34801561021557600080fd5b5061021e6106cd565b60405161022b9190611a58565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190611a73565b6106d7565b6040516102689190611a2e565b60405180910390f35b34801561027d57600080fd5b50610286610706565b6040516102939190611ae2565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190611b39565b61070f565b005b3480156102d157600080fd5b506102ec60048036038101906102e791906119d3565b6107ce565b6040516102f99190611a2e565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190611b66565b610805565b005b34801561033757600080fd5b50610340610819565b60405161034d9190611ba2565b60405180910390f35b34801561036257600080fd5b5061036b61083f565b6040516103789190611ba2565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190611bbd565b610865565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190611bbd565b610958565b6040516103de9190611a58565b60405180910390f35b3480156103f357600080fd5b506103fc6109a0565b005b34801561040a57600080fd5b50610425600480360381019061042091906119d3565b6109b4565b005b34801561043357600080fd5b5061043c6109d4565b6040516104499190611ba2565b60405180910390f35b34801561045e57600080fd5b506104676109fe565b6040516104749190611918565b60405180910390f35b34801561048957600080fd5b50610492610a90565b60405161049f9190611bf9565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca9190611bbd565b610aa6565b005b3480156104dd57600080fd5b506104f860048036038101906104f391906119d3565b610b99565b6040516105059190611a2e565b60405180910390f35b34801561051a57600080fd5b50610535600480360381019061053091906119d3565b610c10565b6040516105429190611a2e565b60405180910390f35b34801561055757600080fd5b50610560610c33565b60405161056d9190611a58565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190611c40565b610c39565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190611c6d565b610c95565b6040516105d39190611a58565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190611bbd565b610d1c565b005b60606003805461061490611cdc565b80601f016020809104026020016040519081016040528092919081815260200182805461064090611cdc565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b5050505050905090565b6000806106a2610dcc565b90506106af818585610dd4565b600191505092915050565b600860149054906101000a900460ff1681565b6000600254905090565b6000806106e2610dcc565b90506106ef858285610f9f565b6106fa85858561102b565b60019150509392505050565b60006012905090565b6107176110ff565b60328163ffffffff161115610761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075890611d5a565b60405180910390fd5b80600660146101000a81548163ffffffff021916908363ffffffff1602179055507f35ad15e7f5e4a16b548e8916bd02c51847dde8d106f334b4edaaacf140e43c91600660149054906101000a900463ffffffff166040516107c39190611db5565b60405180910390a150565b6000806107d9610dcc565b90506107fa8185856107eb8589610c95565b6107f59190611dff565b610dd4565b600191505092915050565b610816610810610dcc565b8261117d565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61086d6110ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d490611ec7565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb6a5e89655cf506139085f051af608195ed056f8dc550b180a1c38d401e2b6c48160405161094d9190611ba2565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109a86110ff565b6109b2600061134b565b565b6109c6826109c0610dcc565b83610f9f565b6109d0828261117d565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a0d90611cdc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3990611cdc565b8015610a865780601f10610a5b57610100808354040283529160200191610a86565b820191906000526020600020905b815481529060010190602001808311610a6957829003601f168201915b5050505050905090565b600660149054906101000a900463ffffffff1681565b610aae6110ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590611f59565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f7ce2f660d28151927edf092d28b8ad31996fd3c11a637db41ddb1cd1a34bee0e81604051610b8e9190611ba2565b60405180910390a150565b600080610ba4610dcc565b90506000610bb28286610c95565b905083811015610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee90611feb565b60405180910390fd5b610c048286868403610dd4565b60019250505092915050565b600080610c1b610dcc565b9050610c2881858561102b565b600191505092915050565b60075481565b610c416110ff565b80600860146101000a81548160ff0219169083151502179055507f433dd3d6521f7249524607185ecbb04177683225367e85db2ae6542faf37688481604051610c8a9190611a2e565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d246110ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8b9061207d565b60405180910390fd5b610d9d8161134b565b50565b60008183610dae919061209d565b905092915050565b60008183610dc49190612126565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906121c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab9061225b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f929190611a58565b60405180910390a3505050565b6000610fab8484610c95565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110255781811015611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e906122c7565b60405180910390fd5b6110248484848403610dd4565b5b50505050565b600061106c6103e861105e600660149054906101000a900463ffffffff1663ffffffff1685610da090919063ffffffff16565b610db690919063ffffffff16565b90506000611084600283610db690919063ffffffff16565b9050600061109b828461141190919063ffffffff16565b905060006110b2848661141190919063ffffffff16565b90506110bf878783611427565b6110ec87600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611427565b6110f6878461117d565b50505050505050565b611107610dcc565b73ffffffffffffffffffffffffffffffffffffffff166111256109d4565b73ffffffffffffffffffffffffffffffffffffffff161461117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290612333565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e4906123c5565b60405180910390fd5b6111f98260008361169f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561127f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127690612457565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113329190611a58565b60405180910390a36113468360008461187a565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361141f9190612477565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e9061251d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe906125af565b60405180910390fd5b61151283838361169f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f90612641565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116869190611a58565b60405180910390a361169984848461187a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156117ad576116fe6109d4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611769575061173a6109d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f906126ad565b60405180910390fd5b611875565b600860149054906101000a900460ff1680156118165750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611874576007548161182884610958565b6118329190611dff565b1115611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a9061273f565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118b957808201518184015260208101905061189e565b838111156118c8576000848401525b50505050565b6000601f19601f8301169050919050565b60006118ea8261187f565b6118f4818561188a565b935061190481856020860161189b565b61190d816118ce565b840191505092915050565b6000602082019050818103600083015261193281846118df565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061196a8261193f565b9050919050565b61197a8161195f565b811461198557600080fd5b50565b60008135905061199781611971565b92915050565b6000819050919050565b6119b08161199d565b81146119bb57600080fd5b50565b6000813590506119cd816119a7565b92915050565b600080604083850312156119ea576119e961193a565b5b60006119f885828601611988565b9250506020611a09858286016119be565b9150509250929050565b60008115159050919050565b611a2881611a13565b82525050565b6000602082019050611a436000830184611a1f565b92915050565b611a528161199d565b82525050565b6000602082019050611a6d6000830184611a49565b92915050565b600080600060608486031215611a8c57611a8b61193a565b5b6000611a9a86828701611988565b9350506020611aab86828701611988565b9250506040611abc868287016119be565b9150509250925092565b600060ff82169050919050565b611adc81611ac6565b82525050565b6000602082019050611af76000830184611ad3565b92915050565b600063ffffffff82169050919050565b611b1681611afd565b8114611b2157600080fd5b50565b600081359050611b3381611b0d565b92915050565b600060208284031215611b4f57611b4e61193a565b5b6000611b5d84828501611b24565b91505092915050565b600060208284031215611b7c57611b7b61193a565b5b6000611b8a848285016119be565b91505092915050565b611b9c8161195f565b82525050565b6000602082019050611bb76000830184611b93565b92915050565b600060208284031215611bd357611bd261193a565b5b6000611be184828501611988565b91505092915050565b611bf381611afd565b82525050565b6000602082019050611c0e6000830184611bea565b92915050565b611c1d81611a13565b8114611c2857600080fd5b50565b600081359050611c3a81611c14565b92915050565b600060208284031215611c5657611c5561193a565b5b6000611c6484828501611c2b565b91505092915050565b60008060408385031215611c8457611c8361193a565b5b6000611c9285828601611988565b9250506020611ca385828601611988565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611cf457607f821691505b60208210811415611d0857611d07611cad565b5b50919050565b7f4d6178696d756d2074617820616c6c6f77656420697320352500000000000000600082015250565b6000611d4460198361188a565b9150611d4f82611d0e565b602082019050919050565b60006020820190508181036000830152611d7381611d37565b9050919050565b6000819050919050565b6000611d9f611d9a611d9584611afd565b611d7a565b61199d565b9050919050565b611daf81611d84565b82525050565b6000602082019050611dca6000830184611da6565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e0a8261199d565b9150611e158361199d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e4a57611e49611dd0565b5b828201905092915050565b7f5a65726f20616464726573732063616e6e6f742062652073657420617320547260008201527f6561737572790000000000000000000000000000000000000000000000000000602082015250565b6000611eb160268361188a565b9150611ebc82611e55565b604082019050919050565b60006020820190508181036000830152611ee081611ea4565b9050919050565b7f5a65726f20616464726573732063616e6e6f742062652073657420617320556e60008201527f6973776170563250616972000000000000000000000000000000000000000000602082015250565b6000611f43602b8361188a565b9150611f4e82611ee7565b604082019050919050565b60006020820190508181036000830152611f7281611f36565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611fd560258361188a565b9150611fe082611f79565b604082019050919050565b6000602082019050818103600083015261200481611fc8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061206760268361188a565b91506120728261200b565b604082019050919050565b600060208201905081810360008301526120968161205a565b9050919050565b60006120a88261199d565b91506120b38361199d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156120ec576120eb611dd0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006121318261199d565b915061213c8361199d565b92508261214c5761214b6120f7565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121b360248361188a565b91506121be82612157565b604082019050919050565b600060208201905081810360008301526121e2816121a6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061224560228361188a565b9150612250826121e9565b604082019050919050565b6000602082019050818103600083015261227481612238565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006122b1601d8361188a565b91506122bc8261227b565b602082019050919050565b600060208201905081810360008301526122e0816122a4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061231d60208361188a565b9150612328826122e7565b602082019050919050565b6000602082019050818103600083015261234c81612310565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006123af60218361188a565b91506123ba82612353565b604082019050919050565b600060208201905081810360008301526123de816123a2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061244160228361188a565b915061244c826123e5565b604082019050919050565b6000602082019050818103600083015261247081612434565b9050919050565b60006124828261199d565b915061248d8361199d565b9250828210156124a05761249f611dd0565b5b828203905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061250760258361188a565b9150612512826124ab565b604082019050919050565b60006020820190508181036000830152612536816124fa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061259960238361188a565b91506125a48261253d565b604082019050919050565b600060208201905081810360008301526125c88161258c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061262b60268361188a565b9150612636826125cf565b604082019050919050565b6000602082019050818103600083015261265a8161261e565b9050919050565b7f54726164696e6720686173206e6f742073746172746564000000000000000000600082015250565b600061269760178361188a565b91506126a282612661565b602082019050919050565b600060208201905081810360008301526126c68161268a565b9050919050565b7f466f7262696464656e2e2057616c6c6574206d6178696d756d20616d6f756e7460008201527f2065786365656465640000000000000000000000000000000000000000000000602082015250565b600061272960298361188a565b9150612734826126cd565b604082019050919050565b600060208201905081810360008301526127588161271c565b905091905056fea264697066735822122014505d05a3fa2b4206f1210bc6896289810b637b6ce267d3d767c3f0ebeb573764736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000006c2ca89dc067e1edf6514186b59d8ae7f3462d4

-----Decoded View---------------
Arg [0] : supply (uint256): 1000000000
Arg [1] : _treasury (address): 0x06C2CA89DC067E1eDf6514186B59D8ae7f3462D4

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [1] : 00000000000000000000000006c2ca89dc067e1edf6514186b59d8ae7f3462d4


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.