ETH Price: $1,989.21 (-4.03%)

Token

Kijun (KIJUN)
 

Overview

Max Total Supply

100,000,000 KIJUN

Holders

70

Transfers

-
0 (0%)

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
KIJUN

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
/*
$KIJUN - Kijun Research
A decentralized A.I. training network.

Tokenomics: 1/1 tax, 100M supply, 55% provisioned towards liquidity. Long LP lock.

Narrative: Distributed A.I. training network. Stake your GPU, the more $KIJUN you hold the more you earn, pay to train models in a decentralized manner with $KIJUN and support open-source.

Socials:
x.com/kijuneth
t.me/kijuneth
kijunresearch.org
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

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

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);
}

interface IUniswapV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

contract KIJUN is ERC20, Ownable {
    IUniswapV2Router02 private uniswapV2Router;
    address public uniswapV2Pair;
    mapping(address => bool) public _isExcludedWallet;

    address private immutable taxAddress;
    address private immutable initialDistributionAddress;
    uint256 private buyTax = 24; // only for launch protection
    uint256 private sellTax = 35; // only for launch protection

    uint256 public maxTransaction;
    uint256 public maxTxLaunch;
    bool private launch = false;
    bool private launchLimits = true;
    uint256 private blockAtLaunch;
    uint256 private lastSellBlock;
    uint256 private sellCaCount;
    uint256 private minSwap;
    uint256 private maxSwap;
    uint256 private _buysCount = 0;
    bool private inSwap;
    modifier lockSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor(
        address _taxAddress,
        address _initialDistributionAddress
    ) payable ERC20("Kijun", "KIJUN") Ownable() {
        uint256 totalSupply = 100000000 * 10 ** 18; // 100 million tokens with 18 decimals

        taxAddress = _taxAddress;
        initialDistributionAddress = _initialDistributionAddress;

        _isExcludedWallet[msg.sender] = true; // Deployer
        _isExcludedWallet[address(this)] = true; // Contract itself
        _isExcludedWallet[_taxAddress] = true;
        _isExcludedWallet[initialDistributionAddress] = true;

        // Mint 55% of the total supply directly to the contract's address
        _mint(address(this), (totalSupply * 55) / 100);

        // Mint 45% of the total supply directly to the initial distribution address
        _mint(initialDistributionAddress, (totalSupply * 45) / 100);

        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Pair = address(
            IUniswapV2Factory(uniswapV2Router.factory()).createPair(
                address(this),
                uniswapV2Router.WETH()
            )
        );

        maxTransaction = (totalSupply * 2) / 100;
        maxTxLaunch = (totalSupply * 5) / 1000;
        maxSwap = 1000000 * 10 ** 18;
        minSwap = 25000 * 10 ** 18;
    }

    function addLpUniswapV2() external onlyOwner {
        _approve(
            address(this),
            address(uniswapV2Router),
            balanceOf(address(this))
        );
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function getMinCaSwap() public view returns (uint256) {
        return minSwap / 10 ** decimals();
    }

    function getMaxSwap() public view returns (uint256) {
        return maxSwap / 10 ** decimals();
    }

    function setMaxCaSwap(uint256 _maxSwap) external onlyOwner {
        maxSwap = _maxSwap * 10 ** decimals();
    }

    function setMinCaSwap(uint256 _minSwap) external onlyOwner {
        minSwap = _minSwap * 10 ** decimals();
    }

    function turnCaSell() external onlyOwner {
        if (inSwap) {
            inSwap = false;
        } else {
            inSwap = true;
        }
    }

    function removeLaunchLimits() external onlyOwner {
        launchLimits = false;
    }

    function swapTokensEth(uint256 tokenAmount) internal lockSwap {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            taxAddress,
            block.timestamp
        );
    }

    function _transfer(
        address from,
        address to,
        uint256 value
    ) internal virtual override {
        if (!_isExcludedWallet[from] && !_isExcludedWallet[to]) {
            require(launch, "Not launched");
            uint256 tax = 24; // launch protection

            if (launchLimits && blockAtLaunch != block.number) {
                require(value <= maxTxLaunch, "Max Tx Limit");
            } else {
                require(value <= maxTransaction, "Max Tx Limit");
            }

            if (to == uniswapV2Pair) {
                tax = sellTax;
                uint256 tokensSwap = balanceOf(address(this));
                if (tokensSwap > minSwap && !inSwap) {
                    if (block.number > lastSellBlock) {
                        sellCaCount = 0;
                    }
                    if (sellCaCount < 3) {
                        sellCaCount++;
                        lastSellBlock = block.number;
                        swapTokensEth(min(maxSwap, min(value, tokensSwap)));
                    }
                }
            } else if (from == uniswapV2Pair) {
                tax = buyTax;
                if (block.number == blockAtLaunch) {
                    _buysCount++;
                    tax = 24;
                    require(_buysCount <= 19, "Exceeds swaps block_0");
                }
            }

            uint256 taxAmount = (value * tax) / 100;
            uint256 amountAfterTax = value - taxAmount;

            if (taxAmount > 0) {
                super._transfer(from, address(this), taxAmount);
            }
            super._transfer(from, to, amountAfterTax);
            return;
        }
        super._transfer(from, to, value);
    }

    function transferOwnership(address newOwner) public override onlyOwner {
        _isExcludedWallet[owner()] = false;
        super.transferOwnership(newOwner);
        _isExcludedWallet[newOwner] = true;
    }

    function min(uint256 a, uint256 b) private pure returns (uint256) {
        return (a > b) ? b : a;
    }

    function setMaxTx(uint256 newMaxTx) external onlyOwner {
        require(
            newMaxTx * 10 ** decimals() >= totalSupply() / 100,
            "Protect: MaxTx more then 1%"
        );
        maxTransaction = newMaxTx * 10 ** decimals();
    }

    function setExcludedWallet(
        address wAddress,
        bool isExcle
    ) external onlyOwner {
        _isExcludedWallet[wAddress] = isExcle;
    }

    function openTrading() external onlyOwner {
        launch = true;
        blockAtLaunch = block.number;
    }

    function setTax(uint256 newBuyTax, uint256 newSellTax) external onlyOwner {
        require(
            newBuyTax <= 20 && newSellTax <= 20,
            "Protect: Tax less then 20%"
        );
        sellTax = newSellTax;
        buyTax = newBuyTax;
    }

    function removeAllLimits() external onlyOwner {
        launchLimits = false;
        maxTransaction = totalSupply();
    }

    function exportETHtoMW() external {
        payable(taxAddress).transfer(address(this).balance);
    }

    function triggerSellCa(uint256 amount) external onlyOwner {
        amount = min(balanceOf(address(this)), amount * 10 ** decimals());
        swapTokensEth(amount);
    }

    //Send tokens % from ca to dead, call only from owner
    function burnTokensFromCa(uint256 percent) external onlyOwner {
        uint256 amount = min(
            balanceOf(address(this)),
            ((totalSupply() / 100) * percent)
        );
        IERC20(address(this)).transfer(
            0x000000000000000000000000000000000000dEaD,
            amount
        );
    }

    //Send tokens amount from ca to marketingAddress
    function exportTokens(uint256 amount) external onlyOwner {
        amount = min(balanceOf(address(this)), amount * 10 ** decimals());
        IERC20(address(this)).transfer(taxAddress, amount);
    }

    receive() external payable {}
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

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

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_taxAddress","type":"address"},{"internalType":"address","name":"_initialDistributionAddress","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLpUniswapV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"burnTokensFromCa","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exportETHtoMW","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"exportTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinCaSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxLaunch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLaunchLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wAddress","type":"address"},{"internalType":"bool","name":"isExcle","type":"bool"}],"name":"setExcludedWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSwap","type":"uint256"}],"name":"setMaxCaSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minSwap","type":"uint256"}],"name":"setMinCaSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"triggerSellCa","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"turnCaSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405260186009556023600a556000600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055506000601355604051620040063803806200400683398181016040528101906200006e9190620008b7565b6040518060400160405280600581526020017f4b696a756e0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4b494a554e0000000000000000000000000000000000000000000000000000008152508160039081620000eb919062000b78565b508060049081620000fd919062000b78565b50505062000120620001146200060860201b60201c565b6200061060201b60201c565b60006a52b7d2dcc80cd2e400000090508273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016008600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200032830606460378462000310919062000c8e565b6200031c919062000d08565b620006d660201b60201c565b6200035860a0516064602d8462000340919062000c8e565b6200034c919062000d08565b620006d660201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200041b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000441919062000d40565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004cb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004f1919062000d40565b6040518363ffffffff1660e01b81526004016200051092919062000d83565b6020604051808303816000875af115801562000530573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000556919062000d40565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506064600282620005a7919062000c8e565b620005b3919062000d08565b600b819055506103e8600582620005cb919062000c8e565b620005d7919062000d08565b600c8190555069d3c21bcecceda100000060128190555069054b40b1f852bda0000060118190555050505062000e9c565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000748576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200073f9062000e11565b60405180910390fd5b6200075c600083836200084360201b60201c565b806002600082825462000770919062000e33565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000823919062000e7f565b60405180910390a36200083f600083836200084860201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200087f8262000852565b9050919050565b620008918162000872565b81146200089d57600080fd5b50565b600081519050620008b18162000886565b92915050565b60008060408385031215620008d157620008d06200084d565b5b6000620008e185828601620008a0565b9250506020620008f485828601620008a0565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200098057607f821691505b60208210810362000996576200099562000938565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009c1565b62000a0c8683620009c1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a5962000a5362000a4d8462000a24565b62000a2e565b62000a24565b9050919050565b6000819050919050565b62000a758362000a38565b62000a8d62000a848262000a60565b848454620009ce565b825550505050565b600090565b62000aa462000a95565b62000ab181848462000a6a565b505050565b5b8181101562000ad95762000acd60008262000a9a565b60018101905062000ab7565b5050565b601f82111562000b285762000af2816200099c565b62000afd84620009b1565b8101602085101562000b0d578190505b62000b2562000b1c85620009b1565b83018262000ab6565b50505b505050565b600082821c905092915050565b600062000b4d6000198460080262000b2d565b1980831691505092915050565b600062000b68838362000b3a565b9150826002028217905092915050565b62000b8382620008fe565b67ffffffffffffffff81111562000b9f5762000b9e62000909565b5b62000bab825462000967565b62000bb882828562000add565b600060209050601f83116001811462000bf0576000841562000bdb578287015190505b62000be7858262000b5a565b86555062000c57565b601f19841662000c00866200099c565b60005b8281101562000c2a5784890151825560018201915060208501945060208101905062000c03565b8683101562000c4a578489015162000c46601f89168262000b3a565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c9b8262000a24565b915062000ca88362000a24565b925082820262000cb88162000a24565b9150828204841483151762000cd25762000cd162000c5f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d158262000a24565b915062000d228362000a24565b92508262000d355762000d3462000cd9565b5b828204905092915050565b60006020828403121562000d595762000d586200084d565b5b600062000d6984828501620008a0565b91505092915050565b62000d7d8162000872565b82525050565b600060408201905062000d9a600083018562000d72565b62000da9602083018462000d72565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000df9601f8362000db0565b915062000e068262000dc1565b602082019050919050565b6000602082019050818103600083015262000e2c8162000dea565b9050919050565b600062000e408262000a24565b915062000e4d8362000a24565b925082820190508082111562000e685762000e6762000c5f565b5b92915050565b62000e798162000a24565b82525050565b600060208201905062000e96600083018462000e6e565b92915050565b60805160a05161313962000ecd6000396000505060008181610b950152818161112b0152611b4201526131396000f3fe6080604052600436106101fd5760003560e01c8063715018a61161010d578063c01dfd66116100a0578063dd62ed3e1161006f578063dd62ed3e146106e0578063e55cd2be1461071d578063e9d12cc614610734578063f2fde38b1461074b578063f79dcf321461077457610204565b8063c01dfd6614610670578063c3f70b5214610687578063c9567bf9146106b2578063db05e5cb146106c957610204565b8063a9059cbb116100dc578063a9059cbb146105b6578063aca2cd6e146105f3578063acb797661461061c578063bc3371821461064757610204565b8063715018a61461050c5780638da5cb5b1461052357806395d89b411461054e578063a457c2d71461057957610204565b806335d2f6b5116101905780634dd059221161015f5780634dd05922146104295780635197c443146104525780635637bce11461047b578063667f6526146104a657806370a08231146104cf57610204565b806335d2f6b51461038157806339509351146103aa578063424595c8146103e757806349bd5a5e146103fe57610204565b806318160ddd116101cc57806318160ddd146102c557806323b872dd146102f0578063283f51f41461032d578063313ce5671461035657610204565b8063027cc97a1461020957806306fdde0314610232578063084cf6151461025d578063095ea7b31461028857610204565b3661020457005b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190611fd7565b6107b1565b005b34801561023e57600080fd5b506102476107e1565b6040516102549190612094565b60405180910390f35b34801561026957600080fd5b50610272610873565b60405161027f91906120c5565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa919061213e565b610879565b6040516102bc9190612199565b60405180910390f35b3480156102d157600080fd5b506102da61089c565b6040516102e791906120c5565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906121b4565b6108a6565b6040516103249190612199565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190611fd7565b6108d5565b005b34801561036257600080fd5b5061036b61091b565b6040516103789190612223565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190611fd7565b610924565b005b3480156103b657600080fd5b506103d160048036038101906103cc919061213e565b6109e5565b6040516103de9190612199565b60405180910390f35b3480156103f357600080fd5b506103fc610a1c565b005b34801561040a57600080fd5b50610413610b17565b604051610420919061224d565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190611fd7565b610b3d565b005b34801561045e57600080fd5b5061047960048036038101906104749190611fd7565b610c19565b005b34801561048757600080fd5b50610490610c49565b60405161049d91906120c5565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612268565b610c71565b005b3480156104db57600080fd5b506104f660048036038101906104f191906122a8565b610cdc565b60405161050391906120c5565b60405180910390f35b34801561051857600080fd5b50610521610d24565b005b34801561052f57600080fd5b50610538610d38565b604051610545919061224d565b60405180910390f35b34801561055a57600080fd5b50610563610d62565b6040516105709190612094565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b919061213e565b610df4565b6040516105ad9190612199565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d8919061213e565b610e6b565b6040516105ea9190612199565b60405180910390f35b3480156105ff57600080fd5b5061061a60048036038101906106159190612301565b610e8e565b005b34801561062857600080fd5b50610631610ef1565b60405161063e91906120c5565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190611fd7565b610f19565b005b34801561067c57600080fd5b50610685610fbd565b005b34801561069357600080fd5b5061069c610fe2565b6040516106a991906120c5565b60405180910390f35b3480156106be57600080fd5b506106c7610fe8565b005b3480156106d557600080fd5b506106de611014565b005b3480156106ec57600080fd5b5061070760048036038101906107029190612341565b611047565b60405161071491906120c5565b60405180910390f35b34801561072957600080fd5b506107326110ce565b005b34801561074057600080fd5b50610749611129565b005b34801561075757600080fd5b50610772600480360381019061076d91906122a8565b611192565b005b34801561078057600080fd5b5061079b600480360381019061079691906122a8565b61125d565b6040516107a89190612199565b60405180910390f35b6107b961127d565b6107c161091b565b600a6107cd91906124e3565b816107d8919061252e565b60128190555050565b6060600380546107f09061259f565b80601f016020809104026020016040519081016040528092919081815260200182805461081c9061259f565b80156108695780601f1061083e57610100808354040283529160200191610869565b820191906000526020600020905b81548152906001019060200180831161084c57829003601f168201915b5050505050905090565b600c5481565b6000806108846112fb565b9050610891818585611303565b600191505092915050565b6000600254905090565b6000806108b16112fb565b90506108be8582856114cc565b6108c9858585611558565b60019150509392505050565b6108dd61127d565b61090d6108e930610cdc565b6108f161091b565b600a6108fd91906124e3565b83610908919061252e565b611921565b90506109188161193a565b50565b60006012905090565b61092c61127d565b600061095e61093a30610cdc565b83606461094561089c565b61094f91906125ff565b610959919061252e565b611921565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61dead836040518363ffffffff1660e01b815260040161099d929190612630565b6020604051808303816000875af11580156109bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e0919061266e565b505050565b6000806109f06112fb565b9050610a11818585610a028589611047565b610a0c919061269b565b611303565b600191505092915050565b610a2461127d565b610a5930600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610a5430610cdc565b611303565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610aa230610cdc565b600080610aad610d38565b426040518863ffffffff1660e01b8152600401610acf96959493929190612714565b60606040518083038185885af1158015610aed573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b12919061278a565b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b4561127d565b610b75610b5130610cdc565b610b5961091b565b600a610b6591906124e3565b83610b70919061252e565b611921565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb7f0000000000000000000000000000000000000000000000000000000000000000836040518363ffffffff1660e01b8152600401610bd2929190612630565b6020604051808303816000875af1158015610bf1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c15919061266e565b5050565b610c2161127d565b610c2961091b565b600a610c3591906124e3565b81610c40919061252e565b60118190555050565b6000610c5361091b565b600a610c5f91906124e3565b601154610c6c91906125ff565b905090565b610c7961127d565b60148211158015610c8b575060148111155b610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190612829565b60405180910390fd5b80600a81905550816009819055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d2c61127d565b610d366000611bd3565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d719061259f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9d9061259f565b8015610dea5780601f10610dbf57610100808354040283529160200191610dea565b820191906000526020600020905b815481529060010190602001808311610dcd57829003601f168201915b5050505050905090565b600080610dff6112fb565b90506000610e0d8286611047565b905083811015610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e49906128bb565b60405180910390fd5b610e5f8286868403611303565b60019250505092915050565b600080610e766112fb565b9050610e83818585611558565b600191505092915050565b610e9661127d565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000610efb61091b565b600a610f0791906124e3565b601254610f1491906125ff565b905090565b610f2161127d565b6064610f2b61089c565b610f3591906125ff565b610f3d61091b565b600a610f4991906124e3565b82610f54919061252e565b1015610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90612927565b60405180910390fd5b610f9d61091b565b600a610fa991906124e3565b81610fb4919061252e565b600b8190555050565b610fc561127d565b6000600d60016101000a81548160ff021916908315150217905550565b600b5481565b610ff061127d565b6001600d60006101000a81548160ff02191690831515021790555043600e81905550565b61101c61127d565b6000600d60016101000a81548160ff02191690831515021790555061103f61089c565b600b81905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110d661127d565b601460009054906101000a900460ff161561110b576000601460006101000a81548160ff021916908315150217905550611127565b6001601460006101000a81548160ff0219169083151502179055505b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561118f573d6000803e3d6000fd5b50565b61119a61127d565b6000600860006111a8610d38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061120281611c99565b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60086020528060005260406000206000915054906101000a900460ff1681565b6112856112fb565b73ffffffffffffffffffffffffffffffffffffffff166112a3610d38565b73ffffffffffffffffffffffffffffffffffffffff16146112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090612993565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136990612a25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890612ab7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114bf91906120c5565b60405180910390a3505050565b60006114d88484611047565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115525781811015611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90612b23565b60405180910390fd5b6115518484848403611303565b5b50505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115fc5750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561191057600d60009054906101000a900460ff16611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790612b8f565b60405180910390fd5b600060189050600d60019054906101000a900460ff168015611674575043600e5414155b156116c357600c548211156116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590612bfb565b60405180910390fd5b611709565b600b54821115611708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ff90612bfb565b60405180910390fd5b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117f557600a549050600061176e30610cdc565b90506011548111801561178e5750601460009054906101000a900460ff16155b156117ef57600f544311156117a65760006010819055505b600360105410156117ee57601060008154809291906117c490612c1b565b919050555043600f819055506117ed6117e86012546117e38685611921565b611921565b61193a565b5b5b506118bc565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118bb576009549050600e5443036118ba576013600081548092919061186b90612c1b565b9190505550601890506013805411156118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090612caf565b60405180910390fd5b5b5b5b6000606482846118cc919061252e565b6118d691906125ff565b9050600081846118e69190612ccf565b905060008211156118fd576118fc863084611d1c565b5b611908868683611d1c565b50505061191c565b61191b838383611d1c565b5b505050565b60008183116119305782611932565b815b905092915050565b6001601460006101000a81548160ff02191690831515021790555061198230600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611303565b6000600267ffffffffffffffff81111561199f5761199e612d03565b5b6040519080825280602002602001820160405280156119cd5781602001602082028036833780820191505090505b50905030816000815181106119e5576119e4612d32565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab09190612d76565b81600181518110611ac457611ac3612d32565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947836000847f0000000000000000000000000000000000000000000000000000000000000000426040518663ffffffff1660e01b8152600401611b82959493929190612e61565b600060405180830381600087803b158015611b9c57600080fd5b505af1158015611bb0573d6000803e3d6000fd5b50505050506000601460006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ca161127d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0790612f2d565b60405180910390fd5b611d1981611bd3565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290612fbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df190613051565b60405180910390fd5b611e05838383611f92565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e82906130e3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f7991906120c5565b60405180910390a3611f8c848484611f97565b50505050565b505050565b505050565b600080fd5b6000819050919050565b611fb481611fa1565b8114611fbf57600080fd5b50565b600081359050611fd181611fab565b92915050565b600060208284031215611fed57611fec611f9c565b5b6000611ffb84828501611fc2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561203e578082015181840152602081019050612023565b60008484015250505050565b6000601f19601f8301169050919050565b600061206682612004565b612070818561200f565b9350612080818560208601612020565b6120898161204a565b840191505092915050565b600060208201905081810360008301526120ae818461205b565b905092915050565b6120bf81611fa1565b82525050565b60006020820190506120da60008301846120b6565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061210b826120e0565b9050919050565b61211b81612100565b811461212657600080fd5b50565b60008135905061213881612112565b92915050565b6000806040838503121561215557612154611f9c565b5b600061216385828601612129565b925050602061217485828601611fc2565b9150509250929050565b60008115159050919050565b6121938161217e565b82525050565b60006020820190506121ae600083018461218a565b92915050565b6000806000606084860312156121cd576121cc611f9c565b5b60006121db86828701612129565b93505060206121ec86828701612129565b92505060406121fd86828701611fc2565b9150509250925092565b600060ff82169050919050565b61221d81612207565b82525050565b60006020820190506122386000830184612214565b92915050565b61224781612100565b82525050565b6000602082019050612262600083018461223e565b92915050565b6000806040838503121561227f5761227e611f9c565b5b600061228d85828601611fc2565b925050602061229e85828601611fc2565b9150509250929050565b6000602082840312156122be576122bd611f9c565b5b60006122cc84828501612129565b91505092915050565b6122de8161217e565b81146122e957600080fd5b50565b6000813590506122fb816122d5565b92915050565b6000806040838503121561231857612317611f9c565b5b600061232685828601612129565b9250506020612337858286016122ec565b9150509250929050565b6000806040838503121561235857612357611f9c565b5b600061236685828601612129565b925050602061237785828601612129565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115612407578086048111156123e3576123e2612381565b5b60018516156123f25780820291505b8081029050612400856123b0565b94506123c7565b94509492505050565b60008261242057600190506124dc565b8161242e57600090506124dc565b8160018114612444576002811461244e5761247d565b60019150506124dc565b60ff8411156124605761245f612381565b5b8360020a91508482111561247757612476612381565b5b506124dc565b5060208310610133831016604e8410600b84101617156124b25782820a9050838111156124ad576124ac612381565b5b6124dc565b6124bf84848460016123bd565b925090508184048111156124d6576124d5612381565b5b81810290505b9392505050565b60006124ee82611fa1565b91506124f983612207565b92506125267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612410565b905092915050565b600061253982611fa1565b915061254483611fa1565b925082820261255281611fa1565b9150828204841483151761256957612568612381565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125b757607f821691505b6020821081036125ca576125c9612570565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061260a82611fa1565b915061261583611fa1565b925082612625576126246125d0565b5b828204905092915050565b6000604082019050612645600083018561223e565b61265260208301846120b6565b9392505050565b600081519050612668816122d5565b92915050565b60006020828403121561268457612683611f9c565b5b600061269284828501612659565b91505092915050565b60006126a682611fa1565b91506126b183611fa1565b92508282019050808211156126c9576126c8612381565b5b92915050565b6000819050919050565b6000819050919050565b60006126fe6126f96126f4846126cf565b6126d9565b611fa1565b9050919050565b61270e816126e3565b82525050565b600060c082019050612729600083018961223e565b61273660208301886120b6565b6127436040830187612705565b6127506060830186612705565b61275d608083018561223e565b61276a60a08301846120b6565b979650505050505050565b60008151905061278481611fab565b92915050565b6000806000606084860312156127a3576127a2611f9c565b5b60006127b186828701612775565b93505060206127c286828701612775565b92505060406127d386828701612775565b9150509250925092565b7f50726f746563743a20546178206c657373207468656e20323025000000000000600082015250565b6000612813601a8361200f565b915061281e826127dd565b602082019050919050565b6000602082019050818103600083015261284281612806565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006128a560258361200f565b91506128b082612849565b604082019050919050565b600060208201905081810360008301526128d481612898565b9050919050565b7f50726f746563743a204d61785478206d6f7265207468656e2031250000000000600082015250565b6000612911601b8361200f565b915061291c826128db565b602082019050919050565b6000602082019050818103600083015261294081612904565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061297d60208361200f565b915061298882612947565b602082019050919050565b600060208201905081810360008301526129ac81612970565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a0f60248361200f565b9150612a1a826129b3565b604082019050919050565b60006020820190508181036000830152612a3e81612a02565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612aa160228361200f565b9150612aac82612a45565b604082019050919050565b60006020820190508181036000830152612ad081612a94565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b0d601d8361200f565b9150612b1882612ad7565b602082019050919050565b60006020820190508181036000830152612b3c81612b00565b9050919050565b7f4e6f74206c61756e636865640000000000000000000000000000000000000000600082015250565b6000612b79600c8361200f565b9150612b8482612b43565b602082019050919050565b60006020820190508181036000830152612ba881612b6c565b9050919050565b7f4d6178205478204c696d69740000000000000000000000000000000000000000600082015250565b6000612be5600c8361200f565b9150612bf082612baf565b602082019050919050565b60006020820190508181036000830152612c1481612bd8565b9050919050565b6000612c2682611fa1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612c5857612c57612381565b5b600182019050919050565b7f4578636565647320737761707320626c6f636b5f300000000000000000000000600082015250565b6000612c9960158361200f565b9150612ca482612c63565b602082019050919050565b60006020820190508181036000830152612cc881612c8c565b9050919050565b6000612cda82611fa1565b9150612ce583611fa1565b9250828203905081811115612cfd57612cfc612381565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612d7081612112565b92915050565b600060208284031215612d8c57612d8b611f9c565b5b6000612d9a84828501612d61565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612dd881612100565b82525050565b6000612dea8383612dcf565b60208301905092915050565b6000602082019050919050565b6000612e0e82612da3565b612e188185612dae565b9350612e2383612dbf565b8060005b83811015612e54578151612e3b8882612dde565b9750612e4683612df6565b925050600181019050612e27565b5085935050505092915050565b600060a082019050612e7660008301886120b6565b612e836020830187612705565b8181036040830152612e958186612e03565b9050612ea4606083018561223e565b612eb160808301846120b6565b9695505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f1760268361200f565b9150612f2282612ebb565b604082019050919050565b60006020820190508181036000830152612f4681612f0a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612fa960258361200f565b9150612fb482612f4d565b604082019050919050565b60006020820190508181036000830152612fd881612f9c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061303b60238361200f565b915061304682612fdf565b604082019050919050565b6000602082019050818103600083015261306a8161302e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130cd60268361200f565b91506130d882613071565b604082019050919050565b600060208201905081810360008301526130fc816130c0565b905091905056fea2646970667358221220d7a6b8dd39fda806a0d6146764d411b0c2577ac99a77dc974b63c23a8140663964736f6c63430008140033000000000000000000000000a6853b3d9e68119dd968a158cffa8a958496a93e000000000000000000000000f280c5c782dabb894dea167c593b58c58d6af359

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c8063715018a61161010d578063c01dfd66116100a0578063dd62ed3e1161006f578063dd62ed3e146106e0578063e55cd2be1461071d578063e9d12cc614610734578063f2fde38b1461074b578063f79dcf321461077457610204565b8063c01dfd6614610670578063c3f70b5214610687578063c9567bf9146106b2578063db05e5cb146106c957610204565b8063a9059cbb116100dc578063a9059cbb146105b6578063aca2cd6e146105f3578063acb797661461061c578063bc3371821461064757610204565b8063715018a61461050c5780638da5cb5b1461052357806395d89b411461054e578063a457c2d71461057957610204565b806335d2f6b5116101905780634dd059221161015f5780634dd05922146104295780635197c443146104525780635637bce11461047b578063667f6526146104a657806370a08231146104cf57610204565b806335d2f6b51461038157806339509351146103aa578063424595c8146103e757806349bd5a5e146103fe57610204565b806318160ddd116101cc57806318160ddd146102c557806323b872dd146102f0578063283f51f41461032d578063313ce5671461035657610204565b8063027cc97a1461020957806306fdde0314610232578063084cf6151461025d578063095ea7b31461028857610204565b3661020457005b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190611fd7565b6107b1565b005b34801561023e57600080fd5b506102476107e1565b6040516102549190612094565b60405180910390f35b34801561026957600080fd5b50610272610873565b60405161027f91906120c5565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa919061213e565b610879565b6040516102bc9190612199565b60405180910390f35b3480156102d157600080fd5b506102da61089c565b6040516102e791906120c5565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906121b4565b6108a6565b6040516103249190612199565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190611fd7565b6108d5565b005b34801561036257600080fd5b5061036b61091b565b6040516103789190612223565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190611fd7565b610924565b005b3480156103b657600080fd5b506103d160048036038101906103cc919061213e565b6109e5565b6040516103de9190612199565b60405180910390f35b3480156103f357600080fd5b506103fc610a1c565b005b34801561040a57600080fd5b50610413610b17565b604051610420919061224d565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190611fd7565b610b3d565b005b34801561045e57600080fd5b5061047960048036038101906104749190611fd7565b610c19565b005b34801561048757600080fd5b50610490610c49565b60405161049d91906120c5565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612268565b610c71565b005b3480156104db57600080fd5b506104f660048036038101906104f191906122a8565b610cdc565b60405161050391906120c5565b60405180910390f35b34801561051857600080fd5b50610521610d24565b005b34801561052f57600080fd5b50610538610d38565b604051610545919061224d565b60405180910390f35b34801561055a57600080fd5b50610563610d62565b6040516105709190612094565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b919061213e565b610df4565b6040516105ad9190612199565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d8919061213e565b610e6b565b6040516105ea9190612199565b60405180910390f35b3480156105ff57600080fd5b5061061a60048036038101906106159190612301565b610e8e565b005b34801561062857600080fd5b50610631610ef1565b60405161063e91906120c5565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190611fd7565b610f19565b005b34801561067c57600080fd5b50610685610fbd565b005b34801561069357600080fd5b5061069c610fe2565b6040516106a991906120c5565b60405180910390f35b3480156106be57600080fd5b506106c7610fe8565b005b3480156106d557600080fd5b506106de611014565b005b3480156106ec57600080fd5b5061070760048036038101906107029190612341565b611047565b60405161071491906120c5565b60405180910390f35b34801561072957600080fd5b506107326110ce565b005b34801561074057600080fd5b50610749611129565b005b34801561075757600080fd5b50610772600480360381019061076d91906122a8565b611192565b005b34801561078057600080fd5b5061079b600480360381019061079691906122a8565b61125d565b6040516107a89190612199565b60405180910390f35b6107b961127d565b6107c161091b565b600a6107cd91906124e3565b816107d8919061252e565b60128190555050565b6060600380546107f09061259f565b80601f016020809104026020016040519081016040528092919081815260200182805461081c9061259f565b80156108695780601f1061083e57610100808354040283529160200191610869565b820191906000526020600020905b81548152906001019060200180831161084c57829003601f168201915b5050505050905090565b600c5481565b6000806108846112fb565b9050610891818585611303565b600191505092915050565b6000600254905090565b6000806108b16112fb565b90506108be8582856114cc565b6108c9858585611558565b60019150509392505050565b6108dd61127d565b61090d6108e930610cdc565b6108f161091b565b600a6108fd91906124e3565b83610908919061252e565b611921565b90506109188161193a565b50565b60006012905090565b61092c61127d565b600061095e61093a30610cdc565b83606461094561089c565b61094f91906125ff565b610959919061252e565b611921565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61dead836040518363ffffffff1660e01b815260040161099d929190612630565b6020604051808303816000875af11580156109bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e0919061266e565b505050565b6000806109f06112fb565b9050610a11818585610a028589611047565b610a0c919061269b565b611303565b600191505092915050565b610a2461127d565b610a5930600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610a5430610cdc565b611303565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610aa230610cdc565b600080610aad610d38565b426040518863ffffffff1660e01b8152600401610acf96959493929190612714565b60606040518083038185885af1158015610aed573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b12919061278a565b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b4561127d565b610b75610b5130610cdc565b610b5961091b565b600a610b6591906124e3565b83610b70919061252e565b611921565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb7f000000000000000000000000a6853b3d9e68119dd968a158cffa8a958496a93e836040518363ffffffff1660e01b8152600401610bd2929190612630565b6020604051808303816000875af1158015610bf1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c15919061266e565b5050565b610c2161127d565b610c2961091b565b600a610c3591906124e3565b81610c40919061252e565b60118190555050565b6000610c5361091b565b600a610c5f91906124e3565b601154610c6c91906125ff565b905090565b610c7961127d565b60148211158015610c8b575060148111155b610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190612829565b60405180910390fd5b80600a81905550816009819055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d2c61127d565b610d366000611bd3565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d719061259f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9d9061259f565b8015610dea5780601f10610dbf57610100808354040283529160200191610dea565b820191906000526020600020905b815481529060010190602001808311610dcd57829003601f168201915b5050505050905090565b600080610dff6112fb565b90506000610e0d8286611047565b905083811015610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e49906128bb565b60405180910390fd5b610e5f8286868403611303565b60019250505092915050565b600080610e766112fb565b9050610e83818585611558565b600191505092915050565b610e9661127d565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000610efb61091b565b600a610f0791906124e3565b601254610f1491906125ff565b905090565b610f2161127d565b6064610f2b61089c565b610f3591906125ff565b610f3d61091b565b600a610f4991906124e3565b82610f54919061252e565b1015610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90612927565b60405180910390fd5b610f9d61091b565b600a610fa991906124e3565b81610fb4919061252e565b600b8190555050565b610fc561127d565b6000600d60016101000a81548160ff021916908315150217905550565b600b5481565b610ff061127d565b6001600d60006101000a81548160ff02191690831515021790555043600e81905550565b61101c61127d565b6000600d60016101000a81548160ff02191690831515021790555061103f61089c565b600b81905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110d661127d565b601460009054906101000a900460ff161561110b576000601460006101000a81548160ff021916908315150217905550611127565b6001601460006101000a81548160ff0219169083151502179055505b565b7f000000000000000000000000a6853b3d9e68119dd968a158cffa8a958496a93e73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561118f573d6000803e3d6000fd5b50565b61119a61127d565b6000600860006111a8610d38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061120281611c99565b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60086020528060005260406000206000915054906101000a900460ff1681565b6112856112fb565b73ffffffffffffffffffffffffffffffffffffffff166112a3610d38565b73ffffffffffffffffffffffffffffffffffffffff16146112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090612993565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136990612a25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890612ab7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114bf91906120c5565b60405180910390a3505050565b60006114d88484611047565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115525781811015611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90612b23565b60405180910390fd5b6115518484848403611303565b5b50505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115fc5750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561191057600d60009054906101000a900460ff16611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790612b8f565b60405180910390fd5b600060189050600d60019054906101000a900460ff168015611674575043600e5414155b156116c357600c548211156116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590612bfb565b60405180910390fd5b611709565b600b54821115611708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ff90612bfb565b60405180910390fd5b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117f557600a549050600061176e30610cdc565b90506011548111801561178e5750601460009054906101000a900460ff16155b156117ef57600f544311156117a65760006010819055505b600360105410156117ee57601060008154809291906117c490612c1b565b919050555043600f819055506117ed6117e86012546117e38685611921565b611921565b61193a565b5b5b506118bc565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118bb576009549050600e5443036118ba576013600081548092919061186b90612c1b565b9190505550601890506013805411156118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090612caf565b60405180910390fd5b5b5b5b6000606482846118cc919061252e565b6118d691906125ff565b9050600081846118e69190612ccf565b905060008211156118fd576118fc863084611d1c565b5b611908868683611d1c565b50505061191c565b61191b838383611d1c565b5b505050565b60008183116119305782611932565b815b905092915050565b6001601460006101000a81548160ff02191690831515021790555061198230600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611303565b6000600267ffffffffffffffff81111561199f5761199e612d03565b5b6040519080825280602002602001820160405280156119cd5781602001602082028036833780820191505090505b50905030816000815181106119e5576119e4612d32565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab09190612d76565b81600181518110611ac457611ac3612d32565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947836000847f000000000000000000000000a6853b3d9e68119dd968a158cffa8a958496a93e426040518663ffffffff1660e01b8152600401611b82959493929190612e61565b600060405180830381600087803b158015611b9c57600080fd5b505af1158015611bb0573d6000803e3d6000fd5b50505050506000601460006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ca161127d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0790612f2d565b60405180910390fd5b611d1981611bd3565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290612fbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df190613051565b60405180910390fd5b611e05838383611f92565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e82906130e3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f7991906120c5565b60405180910390a3611f8c848484611f97565b50505050565b505050565b505050565b600080fd5b6000819050919050565b611fb481611fa1565b8114611fbf57600080fd5b50565b600081359050611fd181611fab565b92915050565b600060208284031215611fed57611fec611f9c565b5b6000611ffb84828501611fc2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561203e578082015181840152602081019050612023565b60008484015250505050565b6000601f19601f8301169050919050565b600061206682612004565b612070818561200f565b9350612080818560208601612020565b6120898161204a565b840191505092915050565b600060208201905081810360008301526120ae818461205b565b905092915050565b6120bf81611fa1565b82525050565b60006020820190506120da60008301846120b6565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061210b826120e0565b9050919050565b61211b81612100565b811461212657600080fd5b50565b60008135905061213881612112565b92915050565b6000806040838503121561215557612154611f9c565b5b600061216385828601612129565b925050602061217485828601611fc2565b9150509250929050565b60008115159050919050565b6121938161217e565b82525050565b60006020820190506121ae600083018461218a565b92915050565b6000806000606084860312156121cd576121cc611f9c565b5b60006121db86828701612129565b93505060206121ec86828701612129565b92505060406121fd86828701611fc2565b9150509250925092565b600060ff82169050919050565b61221d81612207565b82525050565b60006020820190506122386000830184612214565b92915050565b61224781612100565b82525050565b6000602082019050612262600083018461223e565b92915050565b6000806040838503121561227f5761227e611f9c565b5b600061228d85828601611fc2565b925050602061229e85828601611fc2565b9150509250929050565b6000602082840312156122be576122bd611f9c565b5b60006122cc84828501612129565b91505092915050565b6122de8161217e565b81146122e957600080fd5b50565b6000813590506122fb816122d5565b92915050565b6000806040838503121561231857612317611f9c565b5b600061232685828601612129565b9250506020612337858286016122ec565b9150509250929050565b6000806040838503121561235857612357611f9c565b5b600061236685828601612129565b925050602061237785828601612129565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115612407578086048111156123e3576123e2612381565b5b60018516156123f25780820291505b8081029050612400856123b0565b94506123c7565b94509492505050565b60008261242057600190506124dc565b8161242e57600090506124dc565b8160018114612444576002811461244e5761247d565b60019150506124dc565b60ff8411156124605761245f612381565b5b8360020a91508482111561247757612476612381565b5b506124dc565b5060208310610133831016604e8410600b84101617156124b25782820a9050838111156124ad576124ac612381565b5b6124dc565b6124bf84848460016123bd565b925090508184048111156124d6576124d5612381565b5b81810290505b9392505050565b60006124ee82611fa1565b91506124f983612207565b92506125267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612410565b905092915050565b600061253982611fa1565b915061254483611fa1565b925082820261255281611fa1565b9150828204841483151761256957612568612381565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125b757607f821691505b6020821081036125ca576125c9612570565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061260a82611fa1565b915061261583611fa1565b925082612625576126246125d0565b5b828204905092915050565b6000604082019050612645600083018561223e565b61265260208301846120b6565b9392505050565b600081519050612668816122d5565b92915050565b60006020828403121561268457612683611f9c565b5b600061269284828501612659565b91505092915050565b60006126a682611fa1565b91506126b183611fa1565b92508282019050808211156126c9576126c8612381565b5b92915050565b6000819050919050565b6000819050919050565b60006126fe6126f96126f4846126cf565b6126d9565b611fa1565b9050919050565b61270e816126e3565b82525050565b600060c082019050612729600083018961223e565b61273660208301886120b6565b6127436040830187612705565b6127506060830186612705565b61275d608083018561223e565b61276a60a08301846120b6565b979650505050505050565b60008151905061278481611fab565b92915050565b6000806000606084860312156127a3576127a2611f9c565b5b60006127b186828701612775565b93505060206127c286828701612775565b92505060406127d386828701612775565b9150509250925092565b7f50726f746563743a20546178206c657373207468656e20323025000000000000600082015250565b6000612813601a8361200f565b915061281e826127dd565b602082019050919050565b6000602082019050818103600083015261284281612806565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006128a560258361200f565b91506128b082612849565b604082019050919050565b600060208201905081810360008301526128d481612898565b9050919050565b7f50726f746563743a204d61785478206d6f7265207468656e2031250000000000600082015250565b6000612911601b8361200f565b915061291c826128db565b602082019050919050565b6000602082019050818103600083015261294081612904565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061297d60208361200f565b915061298882612947565b602082019050919050565b600060208201905081810360008301526129ac81612970565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a0f60248361200f565b9150612a1a826129b3565b604082019050919050565b60006020820190508181036000830152612a3e81612a02565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612aa160228361200f565b9150612aac82612a45565b604082019050919050565b60006020820190508181036000830152612ad081612a94565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b0d601d8361200f565b9150612b1882612ad7565b602082019050919050565b60006020820190508181036000830152612b3c81612b00565b9050919050565b7f4e6f74206c61756e636865640000000000000000000000000000000000000000600082015250565b6000612b79600c8361200f565b9150612b8482612b43565b602082019050919050565b60006020820190508181036000830152612ba881612b6c565b9050919050565b7f4d6178205478204c696d69740000000000000000000000000000000000000000600082015250565b6000612be5600c8361200f565b9150612bf082612baf565b602082019050919050565b60006020820190508181036000830152612c1481612bd8565b9050919050565b6000612c2682611fa1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612c5857612c57612381565b5b600182019050919050565b7f4578636565647320737761707320626c6f636b5f300000000000000000000000600082015250565b6000612c9960158361200f565b9150612ca482612c63565b602082019050919050565b60006020820190508181036000830152612cc881612c8c565b9050919050565b6000612cda82611fa1565b9150612ce583611fa1565b9250828203905081811115612cfd57612cfc612381565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612d7081612112565b92915050565b600060208284031215612d8c57612d8b611f9c565b5b6000612d9a84828501612d61565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612dd881612100565b82525050565b6000612dea8383612dcf565b60208301905092915050565b6000602082019050919050565b6000612e0e82612da3565b612e188185612dae565b9350612e2383612dbf565b8060005b83811015612e54578151612e3b8882612dde565b9750612e4683612df6565b925050600181019050612e27565b5085935050505092915050565b600060a082019050612e7660008301886120b6565b612e836020830187612705565b8181036040830152612e958186612e03565b9050612ea4606083018561223e565b612eb160808301846120b6565b9695505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f1760268361200f565b9150612f2282612ebb565b604082019050919050565b60006020820190508181036000830152612f4681612f0a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612fa960258361200f565b9150612fb482612f4d565b604082019050919050565b60006020820190508181036000830152612fd881612f9c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061303b60238361200f565b915061304682612fdf565b604082019050919050565b6000602082019050818103600083015261306a8161302e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130cd60268361200f565b91506130d882613071565b604082019050919050565b600060208201905081810360008301526130fc816130c0565b905091905056fea2646970667358221220d7a6b8dd39fda806a0d6146764d411b0c2577ac99a77dc974b63c23a8140663964736f6c63430008140033

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

000000000000000000000000a6853b3d9e68119dd968a158cffa8a958496a93e000000000000000000000000f280c5c782dabb894dea167c593b58c58d6af359

-----Decoded View---------------
Arg [0] : _taxAddress (address): 0xa6853B3d9e68119DD968A158cfFA8a958496A93e
Arg [1] : _initialDistributionAddress (address): 0xf280c5C782daBb894dea167c593b58c58d6Af359

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000a6853b3d9e68119dd968a158cffa8a958496a93e
Arg [1] : 000000000000000000000000f280c5c782dabb894dea167c593b58c58d6af359


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.