ETH Price: $2,974.09 (-4.18%)
Gas: 1 Gwei

Token

GOCHAN COIN (GOCHAN)
 

Overview

Max Total Supply

420,000,000,000 GOCHAN

Holders

139

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: GOCHAN
Balance
367,263,787,526.376932467411257102 GOCHAN

Value
$0.00
0x6ea4505a5a3c83c32b2d2659d28bc6351e4336b7
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:
Gochan

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 2 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 6 of 9 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 7 of 9 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 8 of 9 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 9 of 9 : Gochan.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "openzeppelin-contracts/contracts/token/ERC20/ERC20.sol";
import "openzeppelin-contracts/contracts/access/Ownable.sol";
import "v2-core/interfaces/IUniswapV2Factory.sol";
import "v2-periphery/interfaces/IUniswapV2Router02.sol";

contract Gochan is ERC20, Ownable {
    uint256 public immutable initialSupply;
    uint256 public immutable percentageBase;

    uint256 public disabledBlocks;
    uint256 public blockStart;
    uint256 public timeStart;

    address public routerAddress;
    uint256 public tax;
    address public recipient;
    uint256 public taxCollected;

    uint256 public maxWallet;
    uint256 public maxTx;
    uint256 public txCooldown;
    uint256 public fxEnd;

    mapping(address => uint256) public lastTxTimestamp;

    uint256 public taxThreshold;
    uint256 public lastTaxBlock;

    mapping(address => bool) public exempt;
    mapping(address => bool) public dex;

    constructor(
        address _router,
        address _taxReceiver,
        address[] memory wallets,
        uint256[] memory tokenAmounts,
        uint256 initialLiquidity
    ) payable ERC20("GOCHAN COIN", "GOCHAN") Ownable() {
        initialSupply = 420_000_000_000 ether;
        percentageBase = 100_000;

        disabledBlocks = 4;
        routerAddress = _router;
        tax = 2_000; // 2%
        recipient = _taxReceiver;

        maxWallet = 2_000; // 2%
        maxTx = 200; // 0.2%
        txCooldown = 15 seconds;
        fxEnd = 4 hours;
        taxThreshold = 5 minutes;

        exempt[address(this)] = true;

        require(wallets.length == tokenAmounts.length, "Invalid input");
        for (uint256 i = 0; i < wallets.length; i++) {
            _mint(wallets[i], tokenAmounts[i]);
            require(tokenAmounts[i] <= initialSupply * maxWallet / percentageBase, "Invalid token amount");
        }
        _mint(address(this), initialLiquidity);
        require(totalSupply() == initialSupply, "Initial supply does not match");
    }

    function addInitialLiquidity(
        uint256 liquidityAmount,
        uint256 ethAmount
    ) external payable onlyOwner {
        require(blockStart == 0, "Liquidity already added");
        require(timeStart == 0, "Liquidity already added");

        IUniswapV2Router02 router = IUniswapV2Router02(routerAddress);
        _approve(address(this), routerAddress, ~uint256(0));

        address pair = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            router.WETH()
        );
        dex[pair] = true;

        router.addLiquidityETH{value: ethAmount}(
            address(this),
            liquidityAmount,
            0,
            0,
            msg.sender,
            block.timestamp + 15 minutes
        );

        blockStart = block.number;
        timeStart = block.timestamp;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        uint256 toRecip = amount;

        if (
            blockStart == 0 ||
            timeStart == 0
        ) {
            require(
                from == address(this) ||
                to == address(this),
                "Liquidity not added"
            );
        }

        bool isBeforeFx = block.number <= blockStart + disabledBlocks;
        if (dex[from] || dex[to]) {
            uint256 taxRate;
            bool isDuringFx = block.timestamp <= timeStart + fxEnd;

            if (exempt[from] || exempt[to]) {
                taxRate = 0;
            } else if (
                isBeforeFx &&
                dex[from] &&
                !exempt[to]
            ) {
                taxRate = 95_000; // 95% 
            } else {
                taxRate = tax;
            }

            uint256 toTax = (amount * taxRate) / percentageBase;
            toRecip = amount - toTax;
            if (toTax > 0) {
                super._transfer(from, address(this), toTax);
                taxCollected += toTax;
            }

            if (!isBeforeFx && isDuringFx) {
                require(
                    amount <= maxTx * initialSupply / percentageBase,
                    "Transfer amount exceeds maxTx."
                );

                if (!dex[from]) {
                    require(
                        block.timestamp - lastTxTimestamp[from] >= txCooldown,
                        "Transfer cooldown not expired."
                    );
                    lastTxTimestamp[from] = block.timestamp;
                }
            }
        }

        if (!isBeforeFx && !dex[to]) {
            require(
                balanceOf(to) + toRecip <= maxWallet * initialSupply / percentageBase,
                "Recipient wallet balance exceeds maxWallet."
            ); 
        }

        if (
            !dex[from] && 
            taxCollected > 0 &&
            block.timestamp - lastTaxBlock > taxThreshold
        ) {
            lastTaxBlock = block.timestamp;
            uint256 toSwap = taxCollected;
            taxCollected = 0;
            _swapTokensToEth(toSwap, recipient);
        }
        
        super._transfer(from, to, toRecip);
    }

    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal override {
        if (allowance(owner, spender) == ~uint256(0)) {
            return;
        }
        return super._spendAllowance(owner, spender, amount);
    }

    function _swapTokensToEth(
        uint256 tokenAmount,
        address recip
    ) private {
        if (tokenAmount > balanceOf(address(this))) {
            tokenAmount = balanceOf(address(this));
        }
        IUniswapV2Router02 router = IUniswapV2Router02(routerAddress);
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        router.swapExactTokensForETH(
            tokenAmount,
            0,
            path,
            recip,
            block.timestamp + 15 minutes
        );
    }

    receive() external payable {}
}

Settings
{
  "remappings": [
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "v2-core/=lib/v2-core/contracts/",
    "v2-periphery/=lib/v2-periphery/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "london",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_taxReceiver","type":"address"},{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"uint256[]","name":"tokenAmounts","type":"uint256[]"},{"internalType":"uint256","name":"initialLiquidity","type":"uint256"}],"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":"uint256","name":"liquidityAmount","type":"uint256"},{"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"addInitialLiquidity","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"dex","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disabledBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fxEnd","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":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTaxBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastTxTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentageBase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxCollected","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"txCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526040516200221b3803806200221b8339810160408190526200002691620004f8565b6040518060400160405280600b81526020016a23a7a1a420a71021a7a4a760a91b8152506040518060400160405280600681526020016523a7a1a420a760d11b81525081600390816200007a919062000686565b50600462000089828262000686565b505050620000a6620000a0620002db60201b60201c565b620002df565b6c054d17db76321263eca0000000608052620186a060a0526004600655600980546001600160a01b038088166001600160a01b0319928316179092556107d0600a819055600b805493881693909216929092179055600d5560c8600e55600f805561384060105561012c601255306000908152601460205260409020805460ff191660011790558151835114620001745760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081a5b9c1d5d609a1b60448201526064015b60405180910390fd5b60005b83518110156200026e57620001cb8482815181106200019a576200019a62000752565b6020026020010151848381518110620001b757620001b762000752565b60200260200101516200033160201b60201c565b60a051600d54608051620001e091906200077e565b620001ec91906200079e565b83828151811062000201576200020162000752565b60200260200101511115620002595760405162461bcd60e51b815260206004820152601460248201527f496e76616c696420746f6b656e20616d6f756e7400000000000000000000000060448201526064016200016b565b806200026581620007c1565b91505062000177565b506200027b308262000331565b60805160025414620002d05760405162461bcd60e51b815260206004820152601d60248201527f496e697469616c20737570706c7920646f6573206e6f74206d6174636800000060448201526064016200016b565b5050505050620007f3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003895760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200016b565b80600260008282546200039d9190620007dd565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b80516001600160a01b03811681146200041157600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171562000457576200045762000416565b604052919050565b60006001600160401b038211156200047b576200047b62000416565b5060051b60200190565b600082601f8301126200049757600080fd5b81516020620004b0620004aa836200045f565b6200042c565b82815260059290921b84018101918181019086841115620004d057600080fd5b8286015b84811015620004ed5780518352918301918301620004d4565b509695505050505050565b600080600080600060a086880312156200051157600080fd5b6200051c86620003f9565b945060206200052d818801620003f9565b60408801519095506001600160401b03808211156200054b57600080fd5b818901915089601f8301126200056057600080fd5b815162000571620004aa826200045f565b81815260059190911b8301840190848101908c8311156200059157600080fd5b938501935b82851015620005ba57620005aa85620003f9565b8252938501939085019062000596565b60608c01519098509450505080831115620005d457600080fd5b5050620005e48882890162000485565b925050608086015190509295509295909350565b600181811c908216806200060d57607f821691505b6020821081036200062e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003f457600081815260208120601f850160051c810160208610156200065d5750805b601f850160051c820191505b818110156200067e5782815560010162000669565b505050505050565b81516001600160401b03811115620006a257620006a262000416565b620006ba81620006b38454620005f8565b8462000634565b602080601f831160018114620006f25760008415620006d95750858301515b600019600386901b1c1916600185901b1785556200067e565b600085815260208120601f198616915b82811015620007235788860151825594840194600190910190840162000702565b5085821015620007425787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000798576200079862000768565b92915050565b600082620007bc57634e487b7160e01b600052601260045260246000fd5b500490565b600060018201620007d657620007d662000768565b5060010190565b8082018082111562000798576200079862000768565b60805160a0516119df6200083c6000396000818161028a01528181610e3b01528181610eb7015261103f01526000818161033201528181610ed8015261106001526119df6000f3fe6080604052600436106101f25760003560e01c80637437681e1161010d578063a40f4fa1116100a0578063dd62ed3e1161006f578063dd62ed3e1461058a578063f1320af2146105aa578063f2fde38b146105da578063f8b45b05146105fa578063fd74d2941461061057600080fd5b8063a40f4fa114610521578063a457c2d714610534578063a9059cbb14610554578063dcafac091461057457600080fd5b80638da5cb5b116100dc5780638da5cb5b146104c2578063916a47f7146104e057806395d89b41146104f657806399c8d5561461050b57600080fd5b80637437681e1461046a57806377d1440d146104805780637aceaa33146104965780637b2feaaa146104ac57600080fd5b806339509351116101855780635232157f116101545780635232157f146103e757806366d003ac146103fd57806370a082311461041d578063715018a61461045357600080fd5b806339509351146103545780634551bbe9146103745780634a0da673146103a15780634af90a57146103d157600080fd5b806323b872dd116101c157806323b872dd146102ac578063313ce567146102cc5780633268cc56146102e8578063378dc3dc1461032057600080fd5b806306fdde03146101fe578063095ea7b31461022957806318160ddd1461025957806322ab155e1461027857600080fd5b366101f957005b600080fd5b34801561020a57600080fd5b50610213610626565b6040516102209190611605565b60405180910390f35b34801561023557600080fd5b50610249610244366004611668565b6106b8565b6040519015158152602001610220565b34801561026557600080fd5b506002545b604051908152602001610220565b34801561028457600080fd5b5061026a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156102b857600080fd5b506102496102c7366004611694565b6106d2565b3480156102d857600080fd5b5060405160128152602001610220565b3480156102f457600080fd5b50600954610308906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b34801561032c57600080fd5b5061026a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561036057600080fd5b5061024961036f366004611668565b6106f6565b34801561038057600080fd5b5061026a61038f3660046116d5565b60116020526000908152604090205481565b3480156103ad57600080fd5b506102496103bc3660046116d5565b60156020526000908152604090205460ff1681565b3480156103dd57600080fd5b5061026a60065481565b3480156103f357600080fd5b5061026a60105481565b34801561040957600080fd5b50600b54610308906001600160a01b031681565b34801561042957600080fd5b5061026a6104383660046116d5565b6001600160a01b031660009081526020819052604090205490565b34801561045f57600080fd5b50610468610718565b005b34801561047657600080fd5b5061026a600e5481565b34801561048c57600080fd5b5061026a60125481565b3480156104a257600080fd5b5061026a60135481565b3480156104b857600080fd5b5061026a60075481565b3480156104ce57600080fd5b506005546001600160a01b0316610308565b3480156104ec57600080fd5b5061026a600c5481565b34801561050257600080fd5b5061021361072c565b34801561051757600080fd5b5061026a600a5481565b61046861052f3660046116f9565b61073b565b34801561054057600080fd5b5061024961054f366004611668565b610a22565b34801561056057600080fd5b5061024961056f366004611668565b610a9d565b34801561058057600080fd5b5061026a600f5481565b34801561059657600080fd5b5061026a6105a536600461171b565b610aab565b3480156105b657600080fd5b506102496105c53660046116d5565b60146020526000908152604090205460ff1681565b3480156105e657600080fd5b506104686105f53660046116d5565b610ad6565b34801561060657600080fd5b5061026a600d5481565b34801561061c57600080fd5b5061026a60085481565b60606003805461063590611754565b80601f016020809104026020016040519081016040528092919081815260200182805461066190611754565b80156106ae5780601f10610683576101008083540402835291602001916106ae565b820191906000526020600020905b81548152906001019060200180831161069157829003601f168201915b5050505050905090565b6000336106c6818585610b4f565b60019150505b92915050565b6000336106e0858285610c73565b6106eb858585610c9a565b506001949350505050565b6000336106c68185856107098383610aab565b61071391906117a4565b610b4f565b6107206111a3565b61072a60006111fd565b565b60606004805461063590611754565b6107436111a3565b600754156107925760405162461bcd60e51b8152602060048201526017602482015276131a5c5d5a591a5d1e48185b1c9958591e481859191959604a1b60448201526064015b60405180910390fd5b600854156107dc5760405162461bcd60e51b8152602060048201526017602482015276131a5c5d5a591a5d1e48185b1c9958591e481859191959604a1b6044820152606401610789565b6009546001600160a01b03166107f53082600019610b4f565b6000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610835573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085991906117b7565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ca91906117b7565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610917573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093b91906117b7565b6001600160a01b038082166000908152601560205260408120805460ff1916600117905591925083169063f305d71990859030908890803361097f426103846117a4565b60405160e089901b6001600160e01b03191681526001600160a01b039687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af11580156109ec573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a1191906117d4565b505043600755505042600855505050565b60003381610a308286610aab565b905083811015610a905760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610789565b6106eb8286868403610b4f565b6000336106c6818585610c9a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610ade6111a3565b6001600160a01b038116610b435760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610789565b610b4c816111fd565b50565b6001600160a01b038316610bb15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610789565b6001600160a01b038216610c125760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610789565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600019610c808484610aab565b03610c8a57505050565b610c9583838361124f565b505050565b60075481901580610cab5750600854155b15610d11576001600160a01b038416301480610ccf57506001600160a01b03831630145b610d115760405162461bcd60e51b8152602060048201526013602482015272131a5c5d5a591a5d1e481b9bdd081859191959606a1b6044820152606401610789565b6000600654600754610d2391906117a4565b6001600160a01b038616600090815260156020526040902054439190911115915060ff1680610d6a57506001600160a01b03841660009081526015602052604090205460ff165b1561101157600080601054600854610d8291906117a4565b6001600160a01b038816600090815260146020526040902054429190911115915060ff1680610dc957506001600160a01b03861660009081526014602052604090205460ff165b15610dd75760009150610e37565b828015610dfc57506001600160a01b03871660009081526015602052604090205460ff165b8015610e2157506001600160a01b03861660009081526014602052604090205460ff16155b15610e3157620173189150610e37565b600a5491505b60007f0000000000000000000000000000000000000000000000000000000000000000610e648488611802565b610e6e9190611819565b9050610e7a818761183b565b94508015610ea557610e8d8830836112c9565b80600c6000828254610e9f91906117a4565b90915550505b83158015610eb05750815b1561100d577f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000600e54610f049190611802565b610f0e9190611819565b861115610f5d5760405162461bcd60e51b815260206004820152601e60248201527f5472616e7366657220616d6f756e742065786365656473206d617854782e00006044820152606401610789565b6001600160a01b03881660009081526015602052604090205460ff1661100d57600f546001600160a01b038916600090815260116020526040902054610fa3904261183b565b1015610ff15760405162461bcd60e51b815260206004820152601e60248201527f5472616e7366657220636f6f6c646f776e206e6f7420657870697265642e00006044820152606401610789565b6001600160a01b03881660009081526011602052604090204290555b5050505b8015801561103857506001600160a01b03841660009081526015602052604090205460ff16155b15611122577f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000600d5461108c9190611802565b6110969190611819565b826110b6866001600160a01b031660009081526020819052604090205490565b6110c091906117a4565b11156111225760405162461bcd60e51b815260206004820152602b60248201527f526563697069656e742077616c6c65742062616c616e6365206578636565647360448201526a1036b0bc2bb0b63632ba1760a91b6064820152608401610789565b6001600160a01b03851660009081526015602052604090205460ff1615801561114d57506000600c54115b80156111665750601254601354611164904261183b565b115b156111915742601355600c80546000909155600b5461118f9082906001600160a01b031661146d565b505b61119c8585846112c9565b5050505050565b6005546001600160a01b0316331461072a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061125b8484610aab565b905060001981146112c357818110156112b65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610789565b6112c38484848403610b4f565b50505050565b6001600160a01b03831661132d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610789565b6001600160a01b03821661138f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610789565b6001600160a01b038316600090815260208190526040902054818110156114075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610789565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36112c3565b30600090815260208190526040902054821115611497573060009081526020819052604090205491505b6009546040805160028082526060820183526001600160a01b039093169260009260208301908036833701905050905030816000815181106114db576114db611864565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611539573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155d91906117b7565b8160018151811061157057611570611864565b6001600160a01b03928316602091820292909201015282166318cbafe5856000848761159e426103846117a4565b6040518663ffffffff1660e01b81526004016115be95949392919061187a565b6000604051808303816000875af11580156115dd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261119c91908101906118eb565b600060208083528351808285015260005b8181101561163257858101830151858201604001528201611616565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b4c57600080fd5b6000806040838503121561167b57600080fd5b823561168681611653565b946020939093013593505050565b6000806000606084860312156116a957600080fd5b83356116b481611653565b925060208401356116c481611653565b929592945050506040919091013590565b6000602082840312156116e757600080fd5b81356116f281611653565b9392505050565b6000806040838503121561170c57600080fd5b50508035926020909101359150565b6000806040838503121561172e57600080fd5b823561173981611653565b9150602083013561174981611653565b809150509250929050565b600181811c9082168061176857607f821691505b60208210810361178857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106cc576106cc61178e565b6000602082840312156117c957600080fd5b81516116f281611653565b6000806000606084860312156117e957600080fd5b8351925060208401519150604084015190509250925092565b80820281158282048414176106cc576106cc61178e565b60008261183657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156106cc576106cc61178e565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156118ca5784516001600160a01b0316835293830193918301916001016118a5565b50506001600160a01b03969096166060850152505050608001529392505050565b600060208083850312156118fe57600080fd5b825167ffffffffffffffff8082111561191657600080fd5b818501915085601f83011261192a57600080fd5b81518181111561193c5761193c61184e565b8060051b604051601f19603f830116810181811085821117156119615761196161184e565b60405291825284820192508381018501918883111561197f57600080fd5b938501935b8285101561199d57845184529385019392850192611984565b9897505050505050505056fea264697066735822122099083a4a71e570c3fdcb6e050952948af8b45c456dc63eae3e334542d0fbf51264736f6c634300081200330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000003a504b065a09601e49e44b92d49dd7e3afc63a8f00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000481877a8addc2d4ef880000000000000000000000000000000000000000000000000000000000000000000019000000000000000000000000c35d0beb1c508797484f0f55afe1ea2719be5b2e000000000000000000000000e13fb5fca5129d920e6a30a11e32d76d772263f30000000000000000000000005ac018a9bf565b3ecf94e955733729b51c7975f7000000000000000000000000347d83b35fea5f8fd14c766c395f7b6f473d4f29000000000000000000000000856734d0dddff82e314e5623d4cf51b2ad24e67b0000000000000000000000006ed07da672b169acef3938d768bb041555a94a630000000000000000000000004769ed594b6bbe3e7d5f6eaaaec8f729d752e2ef000000000000000000000000b9a2c47ca789c666a19332b425f696f3b95a2b26000000000000000000000000e7a9f03b2753dfa9fc62e20a128fac3544d78a7d000000000000000000000000cc7d7e241c54c10de164994004b0ca0f6ab3a005000000000000000000000000ddaa0004ad2f892a257f95ed59227f71672de4d400000000000000000000000038dbcb11bc684ed74680e6b8ffa75ab5f67345cb0000000000000000000000007d1eb7c855bf2692b0d4cc1e49193a3845bc9199000000000000000000000000a6e71c21260568a9a270bf921eb64420a2a96bbe0000000000000000000000005204f0db5fe8f788292d8232e2d71d6dd0d0fa710000000000000000000000004412656f1bcf50a22a0b73f3c3a847db2a96c2da000000000000000000000000f1422d0db51d5f1c4f6ab6c1f91335776fa3a750000000000000000000000000aa81f8063914dc783281ef59adf343425d642cfe000000000000000000000000ba3b230f8e3378b31cb5c16d5529bd342b4d9425000000000000000000000000bacdd2b43c99da627bccd864794b18a27c8efa0500000000000000000000000095f14085bc6b4cb56a572e2b3fb6aa3b72946c1c000000000000000000000000347d83b35fea5f8fd14c766c395f7b6f473d4f29000000000000000000000000ddaa0004ad2f892a257f95ed59227f71672de4d40000000000000000000000004769ed594b6bbe3e7d5f6eaaaec8f729d752e2ef0000000000000000000000001d661b3fe5fe846283b97ccc58fc5adc7341d34700000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000048bd7d6d5984e07df0000000000000000000000000000000000000000000000090650c16339cc91890000000000000000000000000000000000000000000000090650c16339cc91890000000000000000000000000000000000000000000000048bd7d6d5984e07df0000000000000000000000000000000000000000000000048bd7d6d5984e07df0000000000000000000000000000000000000000000000090650c16339cc91890000000000000000000000000000000000000000000000023d3c7546d0bf44d50000000000000000000000000000000000000000000000048bd7d6d5984e07df0000000000000000000000000000000000000000000000023d3c7546d0bf44d50000000000000000000000000000000000000000000000023d3c7546d0bf44d50000000000000000000000000000000000000000000000023d3c7546d0bf44d50000000000000000000000000000000000000000000000048bd7d6d5984e07df0000000000000000000000000000000000000000000000048bd7d6d5984e07df0000000000000000000000000000000000000000000000048bd7d6d5984e07df00000000000000000000000000000000000000000000000d92289838d21a996800000000000000000000000000000000000000000000000d92289838d21a996800000000000000000000000000000000000000000000000d92289838d21a996800000000000000000000000000000000000000000000000d92289838d21a9968000000000000000000000000000000000000000000000006c9144c1c690d4cb4000000000000000000000000000000000000000000000006c9144c1c690d4cb400000000000000000000000000000000000000000000001b24513071a43532d000000000000000000000000000000000000000000000001b24513071a43532d0000000000000000000000000000000000000000000000003648a260e3486a65a000000000000000000000000000000000000000000000003648a260e3486a65a000000000000000000000000000000000000000000000006c9144c1c690d4cb4000000

Deployed Bytecode

0x6080604052600436106101f25760003560e01c80637437681e1161010d578063a40f4fa1116100a0578063dd62ed3e1161006f578063dd62ed3e1461058a578063f1320af2146105aa578063f2fde38b146105da578063f8b45b05146105fa578063fd74d2941461061057600080fd5b8063a40f4fa114610521578063a457c2d714610534578063a9059cbb14610554578063dcafac091461057457600080fd5b80638da5cb5b116100dc5780638da5cb5b146104c2578063916a47f7146104e057806395d89b41146104f657806399c8d5561461050b57600080fd5b80637437681e1461046a57806377d1440d146104805780637aceaa33146104965780637b2feaaa146104ac57600080fd5b806339509351116101855780635232157f116101545780635232157f146103e757806366d003ac146103fd57806370a082311461041d578063715018a61461045357600080fd5b806339509351146103545780634551bbe9146103745780634a0da673146103a15780634af90a57146103d157600080fd5b806323b872dd116101c157806323b872dd146102ac578063313ce567146102cc5780633268cc56146102e8578063378dc3dc1461032057600080fd5b806306fdde03146101fe578063095ea7b31461022957806318160ddd1461025957806322ab155e1461027857600080fd5b366101f957005b600080fd5b34801561020a57600080fd5b50610213610626565b6040516102209190611605565b60405180910390f35b34801561023557600080fd5b50610249610244366004611668565b6106b8565b6040519015158152602001610220565b34801561026557600080fd5b506002545b604051908152602001610220565b34801561028457600080fd5b5061026a7f00000000000000000000000000000000000000000000000000000000000186a081565b3480156102b857600080fd5b506102496102c7366004611694565b6106d2565b3480156102d857600080fd5b5060405160128152602001610220565b3480156102f457600080fd5b50600954610308906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b34801561032c57600080fd5b5061026a7f00000000000000000000000000000000000000054d17db76321263eca000000081565b34801561036057600080fd5b5061024961036f366004611668565b6106f6565b34801561038057600080fd5b5061026a61038f3660046116d5565b60116020526000908152604090205481565b3480156103ad57600080fd5b506102496103bc3660046116d5565b60156020526000908152604090205460ff1681565b3480156103dd57600080fd5b5061026a60065481565b3480156103f357600080fd5b5061026a60105481565b34801561040957600080fd5b50600b54610308906001600160a01b031681565b34801561042957600080fd5b5061026a6104383660046116d5565b6001600160a01b031660009081526020819052604090205490565b34801561045f57600080fd5b50610468610718565b005b34801561047657600080fd5b5061026a600e5481565b34801561048c57600080fd5b5061026a60125481565b3480156104a257600080fd5b5061026a60135481565b3480156104b857600080fd5b5061026a60075481565b3480156104ce57600080fd5b506005546001600160a01b0316610308565b3480156104ec57600080fd5b5061026a600c5481565b34801561050257600080fd5b5061021361072c565b34801561051757600080fd5b5061026a600a5481565b61046861052f3660046116f9565b61073b565b34801561054057600080fd5b5061024961054f366004611668565b610a22565b34801561056057600080fd5b5061024961056f366004611668565b610a9d565b34801561058057600080fd5b5061026a600f5481565b34801561059657600080fd5b5061026a6105a536600461171b565b610aab565b3480156105b657600080fd5b506102496105c53660046116d5565b60146020526000908152604090205460ff1681565b3480156105e657600080fd5b506104686105f53660046116d5565b610ad6565b34801561060657600080fd5b5061026a600d5481565b34801561061c57600080fd5b5061026a60085481565b60606003805461063590611754565b80601f016020809104026020016040519081016040528092919081815260200182805461066190611754565b80156106ae5780601f10610683576101008083540402835291602001916106ae565b820191906000526020600020905b81548152906001019060200180831161069157829003601f168201915b5050505050905090565b6000336106c6818585610b4f565b60019150505b92915050565b6000336106e0858285610c73565b6106eb858585610c9a565b506001949350505050565b6000336106c68185856107098383610aab565b61071391906117a4565b610b4f565b6107206111a3565b61072a60006111fd565b565b60606004805461063590611754565b6107436111a3565b600754156107925760405162461bcd60e51b8152602060048201526017602482015276131a5c5d5a591a5d1e48185b1c9958591e481859191959604a1b60448201526064015b60405180910390fd5b600854156107dc5760405162461bcd60e51b8152602060048201526017602482015276131a5c5d5a591a5d1e48185b1c9958591e481859191959604a1b6044820152606401610789565b6009546001600160a01b03166107f53082600019610b4f565b6000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610835573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085991906117b7565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ca91906117b7565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610917573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093b91906117b7565b6001600160a01b038082166000908152601560205260408120805460ff1916600117905591925083169063f305d71990859030908890803361097f426103846117a4565b60405160e089901b6001600160e01b03191681526001600160a01b039687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af11580156109ec573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a1191906117d4565b505043600755505042600855505050565b60003381610a308286610aab565b905083811015610a905760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610789565b6106eb8286868403610b4f565b6000336106c6818585610c9a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610ade6111a3565b6001600160a01b038116610b435760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610789565b610b4c816111fd565b50565b6001600160a01b038316610bb15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610789565b6001600160a01b038216610c125760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610789565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600019610c808484610aab565b03610c8a57505050565b610c9583838361124f565b505050565b60075481901580610cab5750600854155b15610d11576001600160a01b038416301480610ccf57506001600160a01b03831630145b610d115760405162461bcd60e51b8152602060048201526013602482015272131a5c5d5a591a5d1e481b9bdd081859191959606a1b6044820152606401610789565b6000600654600754610d2391906117a4565b6001600160a01b038616600090815260156020526040902054439190911115915060ff1680610d6a57506001600160a01b03841660009081526015602052604090205460ff165b1561101157600080601054600854610d8291906117a4565b6001600160a01b038816600090815260146020526040902054429190911115915060ff1680610dc957506001600160a01b03861660009081526014602052604090205460ff165b15610dd75760009150610e37565b828015610dfc57506001600160a01b03871660009081526015602052604090205460ff165b8015610e2157506001600160a01b03861660009081526014602052604090205460ff16155b15610e3157620173189150610e37565b600a5491505b60007f00000000000000000000000000000000000000000000000000000000000186a0610e648488611802565b610e6e9190611819565b9050610e7a818761183b565b94508015610ea557610e8d8830836112c9565b80600c6000828254610e9f91906117a4565b90915550505b83158015610eb05750815b1561100d577f00000000000000000000000000000000000000000000000000000000000186a07f00000000000000000000000000000000000000054d17db76321263eca0000000600e54610f049190611802565b610f0e9190611819565b861115610f5d5760405162461bcd60e51b815260206004820152601e60248201527f5472616e7366657220616d6f756e742065786365656473206d617854782e00006044820152606401610789565b6001600160a01b03881660009081526015602052604090205460ff1661100d57600f546001600160a01b038916600090815260116020526040902054610fa3904261183b565b1015610ff15760405162461bcd60e51b815260206004820152601e60248201527f5472616e7366657220636f6f6c646f776e206e6f7420657870697265642e00006044820152606401610789565b6001600160a01b03881660009081526011602052604090204290555b5050505b8015801561103857506001600160a01b03841660009081526015602052604090205460ff16155b15611122577f00000000000000000000000000000000000000000000000000000000000186a07f00000000000000000000000000000000000000054d17db76321263eca0000000600d5461108c9190611802565b6110969190611819565b826110b6866001600160a01b031660009081526020819052604090205490565b6110c091906117a4565b11156111225760405162461bcd60e51b815260206004820152602b60248201527f526563697069656e742077616c6c65742062616c616e6365206578636565647360448201526a1036b0bc2bb0b63632ba1760a91b6064820152608401610789565b6001600160a01b03851660009081526015602052604090205460ff1615801561114d57506000600c54115b80156111665750601254601354611164904261183b565b115b156111915742601355600c80546000909155600b5461118f9082906001600160a01b031661146d565b505b61119c8585846112c9565b5050505050565b6005546001600160a01b0316331461072a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061125b8484610aab565b905060001981146112c357818110156112b65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610789565b6112c38484848403610b4f565b50505050565b6001600160a01b03831661132d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610789565b6001600160a01b03821661138f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610789565b6001600160a01b038316600090815260208190526040902054818110156114075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610789565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36112c3565b30600090815260208190526040902054821115611497573060009081526020819052604090205491505b6009546040805160028082526060820183526001600160a01b039093169260009260208301908036833701905050905030816000815181106114db576114db611864565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611539573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155d91906117b7565b8160018151811061157057611570611864565b6001600160a01b03928316602091820292909201015282166318cbafe5856000848761159e426103846117a4565b6040518663ffffffff1660e01b81526004016115be95949392919061187a565b6000604051808303816000875af11580156115dd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261119c91908101906118eb565b600060208083528351808285015260005b8181101561163257858101830151858201604001528201611616565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b4c57600080fd5b6000806040838503121561167b57600080fd5b823561168681611653565b946020939093013593505050565b6000806000606084860312156116a957600080fd5b83356116b481611653565b925060208401356116c481611653565b929592945050506040919091013590565b6000602082840312156116e757600080fd5b81356116f281611653565b9392505050565b6000806040838503121561170c57600080fd5b50508035926020909101359150565b6000806040838503121561172e57600080fd5b823561173981611653565b9150602083013561174981611653565b809150509250929050565b600181811c9082168061176857607f821691505b60208210810361178857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106cc576106cc61178e565b6000602082840312156117c957600080fd5b81516116f281611653565b6000806000606084860312156117e957600080fd5b8351925060208401519150604084015190509250925092565b80820281158282048414176106cc576106cc61178e565b60008261183657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156106cc576106cc61178e565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156118ca5784516001600160a01b0316835293830193918301916001016118a5565b50506001600160a01b03969096166060850152505050608001529392505050565b600060208083850312156118fe57600080fd5b825167ffffffffffffffff8082111561191657600080fd5b818501915085601f83011261192a57600080fd5b81518181111561193c5761193c61184e565b8060051b604051601f19603f830116810181811085821117156119615761196161184e565b60405291825284820192508381018501918883111561197f57600080fd5b938501935b8285101561199d57845184529385019392850192611984565b9897505050505050505056fea264697066735822122099083a4a71e570c3fdcb6e050952948af8b45c456dc63eae3e334542d0fbf51264736f6c63430008120033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000003a504b065a09601e49e44b92d49dd7e3afc63a8f00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000481877a8addc2d4ef880000000000000000000000000000000000000000000000000000000000000000000019000000000000000000000000c35d0beb1c508797484f0f55afe1ea2719be5b2e000000000000000000000000e13fb5fca5129d920e6a30a11e32d76d772263f30000000000000000000000005ac018a9bf565b3ecf94e955733729b51c7975f7000000000000000000000000347d83b35fea5f8fd14c766c395f7b6f473d4f29000000000000000000000000856734d0dddff82e314e5623d4cf51b2ad24e67b0000000000000000000000006ed07da672b169acef3938d768bb041555a94a630000000000000000000000004769ed594b6bbe3e7d5f6eaaaec8f729d752e2ef000000000000000000000000b9a2c47ca789c666a19332b425f696f3b95a2b26000000000000000000000000e7a9f03b2753dfa9fc62e20a128fac3544d78a7d000000000000000000000000cc7d7e241c54c10de164994004b0ca0f6ab3a005000000000000000000000000ddaa0004ad2f892a257f95ed59227f71672de4d400000000000000000000000038dbcb11bc684ed74680e6b8ffa75ab5f67345cb0000000000000000000000007d1eb7c855bf2692b0d4cc1e49193a3845bc9199000000000000000000000000a6e71c21260568a9a270bf921eb64420a2a96bbe0000000000000000000000005204f0db5fe8f788292d8232e2d71d6dd0d0fa710000000000000000000000004412656f1bcf50a22a0b73f3c3a847db2a96c2da000000000000000000000000f1422d0db51d5f1c4f6ab6c1f91335776fa3a750000000000000000000000000aa81f8063914dc783281ef59adf343425d642cfe000000000000000000000000ba3b230f8e3378b31cb5c16d5529bd342b4d9425000000000000000000000000bacdd2b43c99da627bccd864794b18a27c8efa0500000000000000000000000095f14085bc6b4cb56a572e2b3fb6aa3b72946c1c000000000000000000000000347d83b35fea5f8fd14c766c395f7b6f473d4f29000000000000000000000000ddaa0004ad2f892a257f95ed59227f71672de4d40000000000000000000000004769ed594b6bbe3e7d5f6eaaaec8f729d752e2ef0000000000000000000000001d661b3fe5fe846283b97ccc58fc5adc7341d34700000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000048bd7d6d5984e07df0000000000000000000000000000000000000000000000090650c16339cc91890000000000000000000000000000000000000000000000090650c16339cc91890000000000000000000000000000000000000000000000048bd7d6d5984e07df0000000000000000000000000000000000000000000000048bd7d6d5984e07df0000000000000000000000000000000000000000000000090650c16339cc91890000000000000000000000000000000000000000000000023d3c7546d0bf44d50000000000000000000000000000000000000000000000048bd7d6d5984e07df0000000000000000000000000000000000000000000000023d3c7546d0bf44d50000000000000000000000000000000000000000000000023d3c7546d0bf44d50000000000000000000000000000000000000000000000023d3c7546d0bf44d50000000000000000000000000000000000000000000000048bd7d6d5984e07df0000000000000000000000000000000000000000000000048bd7d6d5984e07df0000000000000000000000000000000000000000000000048bd7d6d5984e07df00000000000000000000000000000000000000000000000d92289838d21a996800000000000000000000000000000000000000000000000d92289838d21a996800000000000000000000000000000000000000000000000d92289838d21a996800000000000000000000000000000000000000000000000d92289838d21a9968000000000000000000000000000000000000000000000006c9144c1c690d4cb4000000000000000000000000000000000000000000000006c9144c1c690d4cb400000000000000000000000000000000000000000000001b24513071a43532d000000000000000000000000000000000000000000000001b24513071a43532d0000000000000000000000000000000000000000000000003648a260e3486a65a000000000000000000000000000000000000000000000003648a260e3486a65a000000000000000000000000000000000000000000000006c9144c1c690d4cb4000000

-----Decoded View---------------
Arg [0] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _taxReceiver (address): 0x3A504B065A09601E49e44b92D49Dd7e3AFC63A8F
Arg [2] : wallets (address[]): 0xc35D0bEB1C508797484f0f55aFe1ea2719Be5B2E,0xe13fB5FcA5129d920e6A30a11E32d76d772263F3,0x5Ac018A9bF565B3ECf94E955733729B51c7975F7,0x347d83B35FEA5F8FD14c766c395f7b6F473d4F29,0x856734d0dDDFf82e314e5623d4Cf51B2AD24E67B,0x6ed07dA672b169Acef3938d768BB041555a94a63,0x4769eD594B6BBe3E7d5F6eaAaeC8F729d752E2Ef,0xB9a2c47CA789c666a19332b425f696F3b95a2B26,0xe7a9F03b2753DFa9Fc62e20a128FAC3544D78A7D,0xCC7D7e241C54C10de164994004b0Ca0F6AB3A005,0xddaA0004Ad2f892A257f95ED59227F71672De4d4,0x38dbCB11bC684ed74680e6B8ffA75Ab5F67345CB,0x7D1Eb7C855BF2692B0d4Cc1e49193a3845bc9199,0xa6e71C21260568a9a270bF921EB64420A2a96Bbe,0x5204F0dB5fe8F788292D8232E2d71d6Dd0D0fA71,0x4412656f1Bcf50A22A0B73F3C3A847db2a96c2Da,0xf1422d0DB51d5F1c4F6AB6c1F91335776fA3A750,0xAa81f8063914Dc783281Ef59aDf343425d642cfe,0xba3B230F8e3378B31CB5c16d5529BD342b4D9425,0xbAcDD2B43c99Da627BcCd864794b18a27c8Efa05,0x95F14085BC6B4cB56A572E2b3Fb6aa3b72946c1c,0x347d83B35FEA5F8FD14c766c395f7b6F473d4F29,0xddaA0004Ad2f892A257f95ED59227F71672De4d4,0x4769eD594B6BBe3E7d5F6eaAaeC8F729d752E2Ef,0x1d661B3Fe5fE846283b97CCc58fC5ADc7341d347
Arg [3] : tokenAmounts (uint256[]): 1407000000000000000000000000,2793000000000000000000000000,2793000000000000000000000000,1407000000000000000000000000,1407000000000000000000000000,2793000000000000000000000000,693000000000000000000000000,1407000000000000000000000000,693000000000000000000000000,693000000000000000000000000,693000000000000000000000000,1407000000000000000000000000,1407000000000000000000000000,1407000000000000000000000000,4200000000000000000000000000,4200000000000000000000000000,4200000000000000000000000000,4200000000000000000000000000,2100000000000000000000000000,2100000000000000000000000000,8400000000000000000000000000,8400000000000000000000000000,1050000000000000000000000000,1050000000000000000000000000,2100000000000000000000000000
Arg [4] : initialLiquidity (uint256): 357000000000000000000000000000

-----Encoded View---------------
57 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000003a504b065a09601e49e44b92d49dd7e3afc63a8f
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 00000000000000000000000000000000000000000000000000000000000003e0
Arg [4] : 000000000000000000000000000000000000000481877a8addc2d4ef88000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [6] : 000000000000000000000000c35d0beb1c508797484f0f55afe1ea2719be5b2e
Arg [7] : 000000000000000000000000e13fb5fca5129d920e6a30a11e32d76d772263f3
Arg [8] : 0000000000000000000000005ac018a9bf565b3ecf94e955733729b51c7975f7
Arg [9] : 000000000000000000000000347d83b35fea5f8fd14c766c395f7b6f473d4f29
Arg [10] : 000000000000000000000000856734d0dddff82e314e5623d4cf51b2ad24e67b
Arg [11] : 0000000000000000000000006ed07da672b169acef3938d768bb041555a94a63
Arg [12] : 0000000000000000000000004769ed594b6bbe3e7d5f6eaaaec8f729d752e2ef
Arg [13] : 000000000000000000000000b9a2c47ca789c666a19332b425f696f3b95a2b26
Arg [14] : 000000000000000000000000e7a9f03b2753dfa9fc62e20a128fac3544d78a7d
Arg [15] : 000000000000000000000000cc7d7e241c54c10de164994004b0ca0f6ab3a005
Arg [16] : 000000000000000000000000ddaa0004ad2f892a257f95ed59227f71672de4d4
Arg [17] : 00000000000000000000000038dbcb11bc684ed74680e6b8ffa75ab5f67345cb
Arg [18] : 0000000000000000000000007d1eb7c855bf2692b0d4cc1e49193a3845bc9199
Arg [19] : 000000000000000000000000a6e71c21260568a9a270bf921eb64420a2a96bbe
Arg [20] : 0000000000000000000000005204f0db5fe8f788292d8232e2d71d6dd0d0fa71
Arg [21] : 0000000000000000000000004412656f1bcf50a22a0b73f3c3a847db2a96c2da
Arg [22] : 000000000000000000000000f1422d0db51d5f1c4f6ab6c1f91335776fa3a750
Arg [23] : 000000000000000000000000aa81f8063914dc783281ef59adf343425d642cfe
Arg [24] : 000000000000000000000000ba3b230f8e3378b31cb5c16d5529bd342b4d9425
Arg [25] : 000000000000000000000000bacdd2b43c99da627bccd864794b18a27c8efa05
Arg [26] : 00000000000000000000000095f14085bc6b4cb56a572e2b3fb6aa3b72946c1c
Arg [27] : 000000000000000000000000347d83b35fea5f8fd14c766c395f7b6f473d4f29
Arg [28] : 000000000000000000000000ddaa0004ad2f892a257f95ed59227f71672de4d4
Arg [29] : 0000000000000000000000004769ed594b6bbe3e7d5f6eaaaec8f729d752e2ef
Arg [30] : 0000000000000000000000001d661b3fe5fe846283b97ccc58fc5adc7341d347
Arg [31] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [32] : 0000000000000000000000000000000000000000048bd7d6d5984e07df000000
Arg [33] : 0000000000000000000000000000000000000000090650c16339cc9189000000
Arg [34] : 0000000000000000000000000000000000000000090650c16339cc9189000000
Arg [35] : 0000000000000000000000000000000000000000048bd7d6d5984e07df000000
Arg [36] : 0000000000000000000000000000000000000000048bd7d6d5984e07df000000
Arg [37] : 0000000000000000000000000000000000000000090650c16339cc9189000000
Arg [38] : 0000000000000000000000000000000000000000023d3c7546d0bf44d5000000
Arg [39] : 0000000000000000000000000000000000000000048bd7d6d5984e07df000000
Arg [40] : 0000000000000000000000000000000000000000023d3c7546d0bf44d5000000
Arg [41] : 0000000000000000000000000000000000000000023d3c7546d0bf44d5000000
Arg [42] : 0000000000000000000000000000000000000000023d3c7546d0bf44d5000000
Arg [43] : 0000000000000000000000000000000000000000048bd7d6d5984e07df000000
Arg [44] : 0000000000000000000000000000000000000000048bd7d6d5984e07df000000
Arg [45] : 0000000000000000000000000000000000000000048bd7d6d5984e07df000000
Arg [46] : 00000000000000000000000000000000000000000d92289838d21a9968000000
Arg [47] : 00000000000000000000000000000000000000000d92289838d21a9968000000
Arg [48] : 00000000000000000000000000000000000000000d92289838d21a9968000000
Arg [49] : 00000000000000000000000000000000000000000d92289838d21a9968000000
Arg [50] : 000000000000000000000000000000000000000006c9144c1c690d4cb4000000
Arg [51] : 000000000000000000000000000000000000000006c9144c1c690d4cb4000000
Arg [52] : 00000000000000000000000000000000000000001b24513071a43532d0000000
Arg [53] : 00000000000000000000000000000000000000001b24513071a43532d0000000
Arg [54] : 000000000000000000000000000000000000000003648a260e3486a65a000000
Arg [55] : 000000000000000000000000000000000000000003648a260e3486a65a000000
Arg [56] : 000000000000000000000000000000000000000006c9144c1c690d4cb4000000


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.