ETH Price: $3,147.47 (+0.90%)
Gas: 3 Gwei

Token

Fuck Aped (FKAPED)
 

Overview

Max Total Supply

1,000,000,000 FKAPED

Holders

216

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,710,934.128278780144377653 FKAPED

Value
$0.00
0xe536eca92b17c3886eb8aee0df348efe9f040de7
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:
Token

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No 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 : 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 4 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 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 : Token.sol
//SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;

import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Context.sol';

import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';

contract Token is Context, ERC20, Ownable {
    address payable public operationsWallet;

    uint256 public marketingSellFee = 400; // 4%
    uint256 public devSellFee = 400; // 4%

    uint256 public liquidityBuyFee = 100; // 1%
    uint256 public marketingBuyFee = 500; // 5%
    uint256 public devBuyFee = 200; // 2%

    uint256 public maxTxAmountPerc = 200; // 2%
    uint256 public maxWalletAmountPerc = 200; // 2%

    uint256 public divisor = 10000;

    uint256 public totalSellFee;
    uint256 public totalBuyFee;

    uint256 public maxTxAmount;
    uint256 public maxWalletAmount;
    uint256 public swapTokensAtAmount;

    uint256 public liquidityTokens = 0;

    bool public enableTxLimit = true;
    bool public enableFee = true;
    bool public enableWalletLimit = true;
    bool public enableSwap = true;

    mapping(address => bool) public isExcludedFromFee;
    mapping(address => bool) public isExcludedFromWalletLimit;
    mapping(address => bool) public isExcludedFromTxLimit;
    mapping(address => bool) public automatedMarketPairs;

    IUniswapV2Router02 public router;

    address public pair;

    bool private swapping;

    constructor(
        uint256 _totalSupply,
        address _operationsWallet,
        address _routerAddress
    ) ERC20('Fuck Aped', 'FKAPED') {
        _mint(_msgSender(), _totalSupply * 10 ** decimals());

        operationsWallet = payable(_operationsWallet);

        router = IUniswapV2Router02(_routerAddress);
        pair = IUniswapV2Factory(router.factory()).createPair(
            router.WETH(),
            address(this)
        );

        _approve(address(this), address(router), type(uint256).max);

        totalSellFee = devSellFee + marketingSellFee;
        totalBuyFee = devBuyFee + marketingBuyFee + liquidityBuyFee;

        maxTxAmount = (totalSupply() * maxTxAmountPerc) / divisor;
        maxWalletAmount = (totalSupply() * maxWalletAmountPerc) / divisor;
        swapTokensAtAmount = (totalSupply() * 5) / divisor; // 0.05 %

        automatedMarketPairs[pair] = true;

        isExcludedFromFee[_msgSender()] = true;
        isExcludedFromFee[address(this)] = true;
        isExcludedFromFee[operationsWallet] = true;
        isExcludedFromFee[address(router)] = true;

        isExcludedFromWalletLimit[_msgSender()] = true;
        isExcludedFromWalletLimit[address(this)] = true;
        isExcludedFromWalletLimit[operationsWallet] = true;
        isExcludedFromWalletLimit[address(router)] = true;
        isExcludedFromWalletLimit[pair] = true;

        isExcludedFromTxLimit[_msgSender()] = true;
        isExcludedFromTxLimit[address(this)] = true;
        isExcludedFromTxLimit[operationsWallet] = true;
        isExcludedFromTxLimit[address(router)] = true;
        isExcludedFromTxLimit[pair] = true;
    }

    receive() external payable {}

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        //when buy
        if (
            enableTxLimit &&
            automatedMarketPairs[from] &&
            !isExcludedFromTxLimit[to]
        ) {
            require(
                amount <= maxTxAmount,
                'Buy transfer exeeds maximum allowed.'
            );
        }
        //when sell
        else if (
            enableTxLimit &&
            automatedMarketPairs[to] &&
            !isExcludedFromTxLimit[from]
        ) {
            require(
                amount <= maxTxAmount,
                'Sell transfer exeeds maximum allowed.'
            );
        }
        // when transfer
        else if (enableTxLimit && !isExcludedFromTxLimit[from]) {
            require(amount <= maxTxAmount, 'Transfer exeeds maximum allowed.');
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool isContractBalanceOverMinimum = contractTokenBalance >=
            swapTokensAtAmount;

        if (
            enableSwap &&
            !swapping &&
            !automatedMarketPairs[from] &&
            isContractBalanceOverMinimum
        ) {
            swapping = true;

            swap(contractTokenBalance);

            swapping = false;
        }

        bool takeFee = !swapping;

        if (isExcludedFromFee[from] || isExcludedFromFee[to]) {
            takeFee = false;
        }

        if (takeFee && enableFee) {
            uint256 fees = 0;

            // on sell
            if (automatedMarketPairs[to]) {
                fees = (amount * totalSellFee) / divisor;
            }
            // on buy
            if (automatedMarketPairs[from]) {
                fees = (amount * totalBuyFee) / divisor;
                liquidityTokens += (amount * liquidityBuyFee) / divisor;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        //when buy
        if (
            enableWalletLimit &&
            automatedMarketPairs[from] &&
            !isExcludedFromWalletLimit[to]
        ) {
            require(
                balanceOf(to) + amount <= maxWalletAmount,
                'Buy transfer exeeds maximum allowed.'
            );
        }
        // when transfer
        else if (enableWalletLimit && !isExcludedFromWalletLimit[to]) {
            require(
                balanceOf(to) + amount <= maxWalletAmount,
                'Transfer exeeds maximum allowed.'
            );
        }

        super._transfer(from, to, amount);
    }

    function swap(uint256 contractTokens) private {
        uint256 swapTokens = contractTokens - liquidityTokens;

        if (swapTokens > swapTokensAtAmount * 5) {
            swapTokens = swapTokensAtAmount * 5;
        }

        swapTokensForEth(swapTokens);

        uint256 currEthBalance = address(this).balance;

        if (currEthBalance > 0) {
            payable(operationsWallet).transfer(currEthBalance);
        }

        if (liquidityTokens > 0) {
            uint256 lpEthTokens = (liquidityTokens * 5000) / divisor;
            liquidityTokens -= lpEthTokens;

            swapTokensForEth(lpEthTokens);

            uint256 lpEthBalance = address(this).balance;

            if (liquidityTokens > 0 && lpEthBalance > 0) {
                addLiquidity(liquidityTokens, lpEthBalance);

                liquidityTokens = 0;
            }
        }
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        super._approve(address(this), address(router), tokenAmount);

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        super._approve(address(this), address(router), tokenAmount);

        router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            operationsWallet,
            block.timestamp
        );
    }

    function setOperationsWallet(address _operationsWallet) external onlyOwner {
        operationsWallet = payable(_operationsWallet);
    }

    function setEnableTxLimit(bool value) external onlyOwner {
        enableTxLimit = value;
    }

    function setEnableFee(bool value) external onlyOwner {
        enableFee = value;
    }

    function setEnableWalletLimit(bool value) external onlyOwner {
        enableWalletLimit = value;
    }

    function setEnableSwap(bool value) external onlyOwner {
        enableSwap = value;
    }

    function setIsExcludedFromFee(address addr, bool value) external onlyOwner {
        isExcludedFromFee[addr] = value;
    }

    function setIsExcludedFromWalletLimit(
        address addr,
        bool value
    ) external onlyOwner {
        isExcludedFromWalletLimit[addr] = value;
    }

    function setIsExcludedFromTxLimit(
        address addr,
        bool value
    ) external onlyOwner {
        isExcludedFromTxLimit[addr] = value;
    }

    function setAutomatedMarketPairs(
        address addr,
        bool value
    ) external onlyOwner {
        automatedMarketPairs[addr] = value;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_operationsWallet","type":"address"},{"internalType":"address","name":"_routerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"","type":"address"}],"name":"automatedMarketPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"divisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTxLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTxLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmountPerc","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmountPerc","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":"operationsWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketPairs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setEnableFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setEnableSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setEnableTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setEnableWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setIsExcludedFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setIsExcludedFromTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setIsExcludedFromWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operationsWallet","type":"address"}],"name":"setOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFee","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"},{"stateMutability":"payable","type":"receive"}]

608060405261019060075561019060085560646009556101f4600a5560c8600b5560c8600c5560c8600d55612710600e5560006014556001601560006101000a81548160ff0219169083151502179055506001601560016101000a81548160ff0219169083151502179055506001601560026101000a81548160ff0219169083151502179055506001601560036101000a81548160ff021916908315150217905550348015620000ae57600080fd5b5060405162004eaf38038062004eaf8339818101604052810190620000d49190620010c9565b6040518060400160405280600981526020017f4675636b204170656400000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f464b415045440000000000000000000000000000000000000000000000000000815250816003908162000151919062001395565b50806004908162000163919062001395565b505050620001866200017a62000bfb60201b60201c565b62000c0360201b60201c565b620001d16200019a62000bfb60201b60201c565b620001aa62000cc960201b60201c565b600a620001b891906200160c565b85620001c591906200165d565b62000cd260201b60201c565b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e79190620016a8565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000370573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003969190620016a8565b306040518363ffffffff1660e01b8152600401620003b6929190620016eb565b6020604051808303816000875af1158015620003d6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003fc9190620016a8565b601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200049130601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000e3f60201b60201c565b600754600854620004a3919062001718565b600f81905550600954600a54600b54620004be919062001718565b620004ca919062001718565b601081905550600e54600c54620004e66200101060201b60201c565b620004f291906200165d565b620004fe919062001782565b601181905550600e54600d546200051a6200101060201b60201c565b6200052691906200165d565b62000532919062001782565b601281905550600e5460056200054d6200101060201b60201c565b6200055991906200165d565b62000565919062001782565b601381905550600160196000601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160166000620005fb62000bfb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160166000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160166000601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160176000620007ae62000bfb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160176000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160176000601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160176000601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160186000620009db62000bfb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160186000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160186000601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160186000601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050506200199b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d3b906200181b565b60405180910390fd5b62000d58600083836200101a60201b60201c565b806002600082825462000d6c919062001718565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000e1f91906200184e565b60405180910390a362000e3b600083836200101f60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000eb1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ea890620018e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000f23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f1a9062001979565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200100391906200184e565b60405180910390a3505050565b6000600254905090565b505050565b505050565b600080fd5b6000819050919050565b6200103e8162001029565b81146200104a57600080fd5b50565b6000815190506200105e8162001033565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010918262001064565b9050919050565b620010a38162001084565b8114620010af57600080fd5b50565b600081519050620010c38162001098565b92915050565b600080600060608486031215620010e557620010e462001024565b5b6000620010f5868287016200104d565b93505060206200110886828701620010b2565b92505060406200111b86828701620010b2565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620011a757607f821691505b602082108103620011bd57620011bc6200115f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620012277fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620011e8565b620012338683620011e8565b95508019841693508086168417925050509392505050565b6000819050919050565b600062001276620012706200126a8462001029565b6200124b565b62001029565b9050919050565b6000819050919050565b620012928362001255565b620012aa620012a1826200127d565b848454620011f5565b825550505050565b600090565b620012c1620012b2565b620012ce81848462001287565b505050565b5b81811015620012f657620012ea600082620012b7565b600181019050620012d4565b5050565b601f82111562001345576200130f81620011c3565b6200131a84620011d8565b810160208510156200132a578190505b620013426200133985620011d8565b830182620012d3565b50505b505050565b600082821c905092915050565b60006200136a600019846008026200134a565b1980831691505092915050565b600062001385838362001357565b9150826002028217905092915050565b620013a08262001125565b67ffffffffffffffff811115620013bc57620013bb62001130565b5b620013c882546200118e565b620013d5828285620012fa565b600060209050601f8311600181146200140d5760008415620013f8578287015190505b62001404858262001377565b86555062001474565b601f1984166200141d86620011c3565b60005b82811015620014475784890151825560018201915060208501945060208101905062001420565b8683101562001467578489015162001463601f89168262001357565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200150a57808604811115620014e257620014e16200147c565b5b6001851615620014f25780820291505b80810290506200150285620014ab565b9450620014c2565b94509492505050565b600082620015255760019050620015f8565b81620015355760009050620015f8565b81600181146200154e576002811462001559576200158f565b6001915050620015f8565b60ff8411156200156e576200156d6200147c565b5b8360020a9150848211156200158857620015876200147c565b5b50620015f8565b5060208310610133831016604e8410600b8410161715620015c95782820a905083811115620015c357620015c26200147c565b5b620015f8565b620015d88484846001620014b8565b92509050818404811115620015f257620015f16200147c565b5b81810290505b9392505050565b600060ff82169050919050565b6000620016198262001029565b91506200162683620015ff565b9250620016557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001513565b905092915050565b60006200166a8262001029565b9150620016778362001029565b9250828202620016878162001029565b91508282048414831517620016a157620016a06200147c565b5b5092915050565b600060208284031215620016c157620016c062001024565b5b6000620016d184828501620010b2565b91505092915050565b620016e58162001084565b82525050565b6000604082019050620017026000830185620016da565b620017116020830184620016da565b9392505050565b6000620017258262001029565b9150620017328362001029565b92508282019050808211156200174d576200174c6200147c565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200178f8262001029565b91506200179c8362001029565b925082620017af57620017ae62001753565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001803601f83620017ba565b91506200181082620017cb565b602082019050919050565b600060208201905081810360008301526200183681620017f4565b9050919050565b620018488162001029565b82525050565b60006020820190506200186560008301846200183d565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000620018c9602483620017ba565b9150620018d6826200186b565b604082019050919050565b60006020820190508181036000830152620018fc81620018ba565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062001961602283620017ba565b91506200196e8262001903565b604082019050919050565b60006020820190508181036000830152620019948162001952565b9050919050565b61350480620019ab6000396000f3fe6080604052600436106102975760003560e01c80639d9241ec1161015a578063ccb61358116100c1578063e7f444b31161007a578063e7f444b314610a55578063ee5ecc8914610a80578063ef422a1814610aa9578063f2fde38b14610ad2578063f887ea4014610afb578063fd72e22a14610b265761029e565b8063ccb6135814610945578063cfb3b36814610970578063d8e0027114610999578063dd62ed3e146109c2578063e2f45605146109ff578063e3157c2614610a2a5761029e565b8063b40f946911610113578063b40f946914610825578063b45e83f814610862578063bae904641461088d578063bf95793d146108b6578063c13b0512146108f3578063c52e9b821461091c5761029e565b80639d9241ec14610701578063a457c2d71461072c578063a60ba16d14610769578063a8aa1b3114610792578063a9059cbb146107bd578063aa4bde28146107fa5761029e565b80634b8ce602116101fe57806370a08231116101b757806370a0823114610603578063715018a6146106405780638c0b5e22146106575780638da5cb5b146106825780638f4bc87e146106ad57806395d89b41146106d65761029e565b80634b8ce602146104ef5780635342acb41461051a57806354f677571461055757806359b107b91461058257806368078952146105ad5780636ad9c4a3146105d85761029e565b806323b872dd1161025057806323b872dd146103b757806324eec788146103f4578063296914481461043157806330d2091d1461045c578063313ce5671461048757806339509351146104b25761029e565b806301143fea146102a357806303da2b23146102ce57806306fdde03146102f9578063095ea7b31461032457806318160ddd146103615780631f2dc5ef1461038c5761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102b8610b51565b6040516102c591906125b0565b60405180910390f35b3480156102da57600080fd5b506102e3610b57565b6040516102f091906125e6565b60405180910390f35b34801561030557600080fd5b5061030e610b6a565b60405161031b9190612691565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190612742565b610bfc565b60405161035891906125e6565b60405180910390f35b34801561036d57600080fd5b50610376610c1f565b60405161038391906125b0565b60405180910390f35b34801561039857600080fd5b506103a1610c29565b6040516103ae91906125b0565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190612782565b610c2f565b6040516103eb91906125e6565b60405180910390f35b34801561040057600080fd5b5061041b600480360381019061041691906127d5565b610c5e565b60405161042891906125e6565b60405180910390f35b34801561043d57600080fd5b50610446610c7e565b60405161045391906125e6565b60405180910390f35b34801561046857600080fd5b50610471610c91565b60405161047e91906125e6565b60405180910390f35b34801561049357600080fd5b5061049c610ca4565b6040516104a9919061281e565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190612742565b610cad565b6040516104e691906125e6565b60405180910390f35b3480156104fb57600080fd5b50610504610ce4565b60405161051191906125b0565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c91906127d5565b610cea565b60405161054e91906125e6565b60405180910390f35b34801561056357600080fd5b5061056c610d0a565b60405161057991906125b0565b60405180910390f35b34801561058e57600080fd5b50610597610d10565b6040516105a491906125b0565b60405180910390f35b3480156105b957600080fd5b506105c2610d16565b6040516105cf91906125b0565b60405180910390f35b3480156105e457600080fd5b506105ed610d1c565b6040516105fa91906125b0565b60405180910390f35b34801561060f57600080fd5b5061062a600480360381019061062591906127d5565b610d22565b60405161063791906125b0565b60405180910390f35b34801561064c57600080fd5b50610655610d6a565b005b34801561066357600080fd5b5061066c610d7e565b60405161067991906125b0565b60405180910390f35b34801561068e57600080fd5b50610697610d84565b6040516106a49190612848565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf919061288f565b610dae565b005b3480156106e257600080fd5b506106eb610e11565b6040516106f89190612691565b60405180910390f35b34801561070d57600080fd5b50610716610ea3565b60405161072391906125b0565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190612742565b610ea9565b60405161076091906125e6565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b91906128cf565b610f20565b005b34801561079e57600080fd5b506107a7610f45565b6040516107b49190612848565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df9190612742565b610f6b565b6040516107f191906125e6565b60405180910390f35b34801561080657600080fd5b5061080f610f8e565b60405161081c91906125b0565b60405180910390f35b34801561083157600080fd5b5061084c600480360381019061084791906127d5565b610f94565b60405161085991906125e6565b60405180910390f35b34801561086e57600080fd5b50610877610fb4565b60405161088491906125b0565b60405180910390f35b34801561089957600080fd5b506108b460048036038101906108af919061288f565b610fba565b005b3480156108c257600080fd5b506108dd60048036038101906108d891906127d5565b61101d565b6040516108ea91906125e6565b60405180910390f35b3480156108ff57600080fd5b5061091a6004803603810190610915919061288f565b61103d565b005b34801561092857600080fd5b50610943600480360381019061093e91906128cf565b6110a0565b005b34801561095157600080fd5b5061095a6110c5565b60405161096791906125b0565b60405180910390f35b34801561097c57600080fd5b50610997600480360381019061099291906128cf565b6110cb565b005b3480156109a557600080fd5b506109c060048036038101906109bb91906128cf565b6110f0565b005b3480156109ce57600080fd5b506109e960048036038101906109e491906128fc565b611115565b6040516109f691906125b0565b60405180910390f35b348015610a0b57600080fd5b50610a1461119c565b604051610a2191906125b0565b60405180910390f35b348015610a3657600080fd5b50610a3f6111a2565b604051610a4c91906125e6565b60405180910390f35b348015610a6157600080fd5b50610a6a6111b5565b604051610a7791906125b0565b60405180910390f35b348015610a8c57600080fd5b50610aa76004803603810190610aa291906127d5565b6111bb565b005b348015610ab557600080fd5b50610ad06004803603810190610acb919061288f565b611207565b005b348015610ade57600080fd5b50610af96004803603810190610af491906127d5565b61126a565b005b348015610b0757600080fd5b50610b106112ed565b604051610b1d919061299b565b60405180910390f35b348015610b3257600080fd5b50610b3b611313565b604051610b4891906129d7565b60405180910390f35b600b5481565b601560029054906101000a900460ff1681565b606060038054610b7990612a21565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba590612a21565b8015610bf25780601f10610bc757610100808354040283529160200191610bf2565b820191906000526020600020905b815481529060010190602001808311610bd557829003601f168201915b5050505050905090565b600080610c07611339565b9050610c14818585611341565b600191505092915050565b6000600254905090565b600e5481565b600080610c3a611339565b9050610c4785828561150a565b610c52858585611596565b60019150509392505050565b60196020528060005260406000206000915054906101000a900460ff1681565b601560039054906101000a900460ff1681565b601560019054906101000a900460ff1681565b60006012905090565b600080610cb8611339565b9050610cd9818585610cca8589611115565b610cd49190612a81565b611341565b600191505092915050565b60145481565b60166020528060005260406000206000915054906101000a900460ff1681565b600d5481565b60105481565b600a5481565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d72611d4e565b610d7c6000611dcc565b565b60115481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610db6611d4e565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b606060048054610e2090612a21565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4c90612a21565b8015610e995780601f10610e6e57610100808354040283529160200191610e99565b820191906000526020600020905b815481529060010190602001808311610e7c57829003601f168201915b5050505050905090565b600f5481565b600080610eb4611339565b90506000610ec28286611115565b905083811015610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90612b27565b60405180910390fd5b610f148286868403611341565b60019250505092915050565b610f28611d4e565b80601560036101000a81548160ff02191690831515021790555050565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610f76611339565b9050610f83818585611596565b600191505092915050565b60125481565b60176020528060005260406000206000915054906101000a900460ff1681565b60085481565b610fc2611d4e565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60186020528060005260406000206000915054906101000a900460ff1681565b611045611d4e565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6110a8611d4e565b80601560026101000a81548160ff02191690831515021790555050565b60095481565b6110d3611d4e565b80601560006101000a81548160ff02191690831515021790555050565b6110f8611d4e565b80601560016101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60135481565b601560009054906101000a900460ff1681565b60075481565b6111c3611d4e565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61120f611d4e565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611272611d4e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d890612bb9565b60405180910390fd5b6112ea81611dcc565b50565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a790612c4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690612cdd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114fd91906125b0565b60405180910390a3505050565b60006115168484611115565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115905781811015611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990612d49565b60405180910390fd5b61158f8484848403611341565b5b50505050565b601560009054906101000a900460ff1680156115fb5750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156116515750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156116a05760115481111561169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290612ddb565b60405180910390fd5b61185d565b601560009054906101000a900460ff1680156117055750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561175b5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117aa576011548111156117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c90612e6d565b60405180910390fd5b61185c565b601560009054906101000a900460ff1680156118105750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561185b5760115481111561185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190612ed9565b60405180910390fd5b5b5b5b600061186830610d22565b905060006013548210159050601560039054906101000a900460ff16801561189d5750601b60149054906101000a900460ff16155b80156118f35750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156118fc5750805b15611941576001601b60146101000a81548160ff02191690831515021790555061192582611e92565b6000601b60146101000a81548160ff0219169083151502179055505b6000601b60149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119f75750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611a0157600090505b808015611a1a5750601560019054906101000a900460ff165b15611b59576000601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a9157600e54600f5486611a849190612ef9565b611a8e9190612f6a565b90505b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b3457600e5460105486611af49190612ef9565b611afe9190612f6a565b9050600e5460095486611b119190612ef9565b611b1b9190612f6a565b60146000828254611b2c9190612a81565b925050819055505b6000811115611b4957611b48873083611fd4565b5b8085611b559190612f9b565b9450505b601560029054906101000a900460ff168015611bbe5750601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015611c145750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611c765760125484611c2687610d22565b611c309190612a81565b1115611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890612ddb565b60405180910390fd5b611d3b565b601560029054906101000a900460ff168015611cdc5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d3a5760125484611cee87610d22565b611cf89190612a81565b1115611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090612ed9565b60405180910390fd5b5b5b611d46868686611fd4565b505050505050565b611d56611339565b73ffffffffffffffffffffffffffffffffffffffff16611d74610d84565b73ffffffffffffffffffffffffffffffffffffffff1614611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc19061301b565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060145482611ea29190612f9b565b90506005601354611eb39190612ef9565b811115611ecc576005601354611ec99190612ef9565b90505b611ed58161224a565b60004790506000811115611f4d57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611f4b573d6000803e3d6000fd5b505b60006014541115611fcf576000600e54611388601454611f6d9190612ef9565b611f779190612f6a565b90508060146000828254611f8b9190612f9b565b92505081905550611f9b8161224a565b60004790506000601454118015611fb25750600081115b15611fcc57611fc36014548261248d565b60006014819055505b50505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a906130ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a99061313f565b60405180910390fd5b6120bd83838361258d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a906131d1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161223191906125b0565b60405180910390a3612244848484612592565b50505050565b6000600267ffffffffffffffff811115612267576122666131f1565b5b6040519080825280602002602001820160405280156122955781602001602082028036833780820191505090505b50905030816000815181106122ad576122ac613220565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612354573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123789190613264565b8160018151811061238c5761238b613220565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506123f330601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611341565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161245795949392919061338a565b600060405180830381600087803b15801561247157600080fd5b505af1158015612485573d6000803e3d6000fd5b505050505050565b6124ba30601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611341565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161254396959493929190613405565b60606040518083038185885af1158015612561573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612586919061347b565b5050505050565b505050565b505050565b6000819050919050565b6125aa81612597565b82525050565b60006020820190506125c560008301846125a1565b92915050565b60008115159050919050565b6125e0816125cb565b82525050565b60006020820190506125fb60008301846125d7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263b578082015181840152602081019050612620565b60008484015250505050565b6000601f19601f8301169050919050565b600061266382612601565b61266d818561260c565b935061267d81856020860161261d565b61268681612647565b840191505092915050565b600060208201905081810360008301526126ab8184612658565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126e3826126b8565b9050919050565b6126f3816126d8565b81146126fe57600080fd5b50565b600081359050612710816126ea565b92915050565b61271f81612597565b811461272a57600080fd5b50565b60008135905061273c81612716565b92915050565b60008060408385031215612759576127586126b3565b5b600061276785828601612701565b92505060206127788582860161272d565b9150509250929050565b60008060006060848603121561279b5761279a6126b3565b5b60006127a986828701612701565b93505060206127ba86828701612701565b92505060406127cb8682870161272d565b9150509250925092565b6000602082840312156127eb576127ea6126b3565b5b60006127f984828501612701565b91505092915050565b600060ff82169050919050565b61281881612802565b82525050565b6000602082019050612833600083018461280f565b92915050565b612842816126d8565b82525050565b600060208201905061285d6000830184612839565b92915050565b61286c816125cb565b811461287757600080fd5b50565b60008135905061288981612863565b92915050565b600080604083850312156128a6576128a56126b3565b5b60006128b485828601612701565b92505060206128c58582860161287a565b9150509250929050565b6000602082840312156128e5576128e46126b3565b5b60006128f38482850161287a565b91505092915050565b60008060408385031215612913576129126126b3565b5b600061292185828601612701565b925050602061293285828601612701565b9150509250929050565b6000819050919050565b600061296161295c612957846126b8565b61293c565b6126b8565b9050919050565b600061297382612946565b9050919050565b600061298582612968565b9050919050565b6129958161297a565b82525050565b60006020820190506129b0600083018461298c565b92915050565b60006129c1826126b8565b9050919050565b6129d1816129b6565b82525050565b60006020820190506129ec60008301846129c8565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a3957607f821691505b602082108103612a4c57612a4b6129f2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a8c82612597565b9150612a9783612597565b9250828201905080821115612aaf57612aae612a52565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612b1160258361260c565b9150612b1c82612ab5565b604082019050919050565b60006020820190508181036000830152612b4081612b04565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ba360268361260c565b9150612bae82612b47565b604082019050919050565b60006020820190508181036000830152612bd281612b96565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612c3560248361260c565b9150612c4082612bd9565b604082019050919050565b60006020820190508181036000830152612c6481612c28565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cc760228361260c565b9150612cd282612c6b565b604082019050919050565b60006020820190508181036000830152612cf681612cba565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612d33601d8361260c565b9150612d3e82612cfd565b602082019050919050565b60006020820190508181036000830152612d6281612d26565b9050919050565b7f427579207472616e7366657220657865656473206d6178696d756d20616c6c6f60008201527f7765642e00000000000000000000000000000000000000000000000000000000602082015250565b6000612dc560248361260c565b9150612dd082612d69565b604082019050919050565b60006020820190508181036000830152612df481612db8565b9050919050565b7f53656c6c207472616e7366657220657865656473206d6178696d756d20616c6c60008201527f6f7765642e000000000000000000000000000000000000000000000000000000602082015250565b6000612e5760258361260c565b9150612e6282612dfb565b604082019050919050565b60006020820190508181036000830152612e8681612e4a565b9050919050565b7f5472616e7366657220657865656473206d6178696d756d20616c6c6f7765642e600082015250565b6000612ec360208361260c565b9150612ece82612e8d565b602082019050919050565b60006020820190508181036000830152612ef281612eb6565b9050919050565b6000612f0482612597565b9150612f0f83612597565b9250828202612f1d81612597565b91508282048414831517612f3457612f33612a52565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f7582612597565b9150612f8083612597565b925082612f9057612f8f612f3b565b5b828204905092915050565b6000612fa682612597565b9150612fb183612597565b9250828203905081811115612fc957612fc8612a52565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061300560208361260c565b915061301082612fcf565b602082019050919050565b6000602082019050818103600083015261303481612ff8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061309760258361260c565b91506130a28261303b565b604082019050919050565b600060208201905081810360008301526130c68161308a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061312960238361260c565b9150613134826130cd565b604082019050919050565b600060208201905081810360008301526131588161311c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006131bb60268361260c565b91506131c68261315f565b604082019050919050565b600060208201905081810360008301526131ea816131ae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061325e816126ea565b92915050565b60006020828403121561327a576132796126b3565b5b60006132888482850161324f565b91505092915050565b6000819050919050565b60006132b66132b16132ac84613291565b61293c565b612597565b9050919050565b6132c68161329b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613301816126d8565b82525050565b600061331383836132f8565b60208301905092915050565b6000602082019050919050565b6000613337826132cc565b61334181856132d7565b935061334c836132e8565b8060005b8381101561337d5781516133648882613307565b975061336f8361331f565b925050600181019050613350565b5085935050505092915050565b600060a08201905061339f60008301886125a1565b6133ac60208301876132bd565b81810360408301526133be818661332c565b90506133cd6060830185612839565b6133da60808301846125a1565b9695505050505050565b60006133ef82612968565b9050919050565b6133ff816133e4565b82525050565b600060c08201905061341a6000830189612839565b61342760208301886125a1565b61343460408301876132bd565b61344160608301866132bd565b61344e60808301856133f6565b61345b60a08301846125a1565b979650505050505050565b60008151905061347581612716565b92915050565b600080600060608486031215613494576134936126b3565b5b60006134a286828701613466565b93505060206134b386828701613466565b92505060406134c486828701613466565b915050925092509256fea2646970667358221220801e2e0b9b1541f018673446ea2c4400268679ad4594a5aef10739333f5bc9f064736f6c63430008120033000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000b405dddc7b6ddc9aa5f6c088130ea2c37f0b93560000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x6080604052600436106102975760003560e01c80639d9241ec1161015a578063ccb61358116100c1578063e7f444b31161007a578063e7f444b314610a55578063ee5ecc8914610a80578063ef422a1814610aa9578063f2fde38b14610ad2578063f887ea4014610afb578063fd72e22a14610b265761029e565b8063ccb6135814610945578063cfb3b36814610970578063d8e0027114610999578063dd62ed3e146109c2578063e2f45605146109ff578063e3157c2614610a2a5761029e565b8063b40f946911610113578063b40f946914610825578063b45e83f814610862578063bae904641461088d578063bf95793d146108b6578063c13b0512146108f3578063c52e9b821461091c5761029e565b80639d9241ec14610701578063a457c2d71461072c578063a60ba16d14610769578063a8aa1b3114610792578063a9059cbb146107bd578063aa4bde28146107fa5761029e565b80634b8ce602116101fe57806370a08231116101b757806370a0823114610603578063715018a6146106405780638c0b5e22146106575780638da5cb5b146106825780638f4bc87e146106ad57806395d89b41146106d65761029e565b80634b8ce602146104ef5780635342acb41461051a57806354f677571461055757806359b107b91461058257806368078952146105ad5780636ad9c4a3146105d85761029e565b806323b872dd1161025057806323b872dd146103b757806324eec788146103f4578063296914481461043157806330d2091d1461045c578063313ce5671461048757806339509351146104b25761029e565b806301143fea146102a357806303da2b23146102ce57806306fdde03146102f9578063095ea7b31461032457806318160ddd146103615780631f2dc5ef1461038c5761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102b8610b51565b6040516102c591906125b0565b60405180910390f35b3480156102da57600080fd5b506102e3610b57565b6040516102f091906125e6565b60405180910390f35b34801561030557600080fd5b5061030e610b6a565b60405161031b9190612691565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190612742565b610bfc565b60405161035891906125e6565b60405180910390f35b34801561036d57600080fd5b50610376610c1f565b60405161038391906125b0565b60405180910390f35b34801561039857600080fd5b506103a1610c29565b6040516103ae91906125b0565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190612782565b610c2f565b6040516103eb91906125e6565b60405180910390f35b34801561040057600080fd5b5061041b600480360381019061041691906127d5565b610c5e565b60405161042891906125e6565b60405180910390f35b34801561043d57600080fd5b50610446610c7e565b60405161045391906125e6565b60405180910390f35b34801561046857600080fd5b50610471610c91565b60405161047e91906125e6565b60405180910390f35b34801561049357600080fd5b5061049c610ca4565b6040516104a9919061281e565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190612742565b610cad565b6040516104e691906125e6565b60405180910390f35b3480156104fb57600080fd5b50610504610ce4565b60405161051191906125b0565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c91906127d5565b610cea565b60405161054e91906125e6565b60405180910390f35b34801561056357600080fd5b5061056c610d0a565b60405161057991906125b0565b60405180910390f35b34801561058e57600080fd5b50610597610d10565b6040516105a491906125b0565b60405180910390f35b3480156105b957600080fd5b506105c2610d16565b6040516105cf91906125b0565b60405180910390f35b3480156105e457600080fd5b506105ed610d1c565b6040516105fa91906125b0565b60405180910390f35b34801561060f57600080fd5b5061062a600480360381019061062591906127d5565b610d22565b60405161063791906125b0565b60405180910390f35b34801561064c57600080fd5b50610655610d6a565b005b34801561066357600080fd5b5061066c610d7e565b60405161067991906125b0565b60405180910390f35b34801561068e57600080fd5b50610697610d84565b6040516106a49190612848565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf919061288f565b610dae565b005b3480156106e257600080fd5b506106eb610e11565b6040516106f89190612691565b60405180910390f35b34801561070d57600080fd5b50610716610ea3565b60405161072391906125b0565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190612742565b610ea9565b60405161076091906125e6565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b91906128cf565b610f20565b005b34801561079e57600080fd5b506107a7610f45565b6040516107b49190612848565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df9190612742565b610f6b565b6040516107f191906125e6565b60405180910390f35b34801561080657600080fd5b5061080f610f8e565b60405161081c91906125b0565b60405180910390f35b34801561083157600080fd5b5061084c600480360381019061084791906127d5565b610f94565b60405161085991906125e6565b60405180910390f35b34801561086e57600080fd5b50610877610fb4565b60405161088491906125b0565b60405180910390f35b34801561089957600080fd5b506108b460048036038101906108af919061288f565b610fba565b005b3480156108c257600080fd5b506108dd60048036038101906108d891906127d5565b61101d565b6040516108ea91906125e6565b60405180910390f35b3480156108ff57600080fd5b5061091a6004803603810190610915919061288f565b61103d565b005b34801561092857600080fd5b50610943600480360381019061093e91906128cf565b6110a0565b005b34801561095157600080fd5b5061095a6110c5565b60405161096791906125b0565b60405180910390f35b34801561097c57600080fd5b50610997600480360381019061099291906128cf565b6110cb565b005b3480156109a557600080fd5b506109c060048036038101906109bb91906128cf565b6110f0565b005b3480156109ce57600080fd5b506109e960048036038101906109e491906128fc565b611115565b6040516109f691906125b0565b60405180910390f35b348015610a0b57600080fd5b50610a1461119c565b604051610a2191906125b0565b60405180910390f35b348015610a3657600080fd5b50610a3f6111a2565b604051610a4c91906125e6565b60405180910390f35b348015610a6157600080fd5b50610a6a6111b5565b604051610a7791906125b0565b60405180910390f35b348015610a8c57600080fd5b50610aa76004803603810190610aa291906127d5565b6111bb565b005b348015610ab557600080fd5b50610ad06004803603810190610acb919061288f565b611207565b005b348015610ade57600080fd5b50610af96004803603810190610af491906127d5565b61126a565b005b348015610b0757600080fd5b50610b106112ed565b604051610b1d919061299b565b60405180910390f35b348015610b3257600080fd5b50610b3b611313565b604051610b4891906129d7565b60405180910390f35b600b5481565b601560029054906101000a900460ff1681565b606060038054610b7990612a21565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba590612a21565b8015610bf25780601f10610bc757610100808354040283529160200191610bf2565b820191906000526020600020905b815481529060010190602001808311610bd557829003601f168201915b5050505050905090565b600080610c07611339565b9050610c14818585611341565b600191505092915050565b6000600254905090565b600e5481565b600080610c3a611339565b9050610c4785828561150a565b610c52858585611596565b60019150509392505050565b60196020528060005260406000206000915054906101000a900460ff1681565b601560039054906101000a900460ff1681565b601560019054906101000a900460ff1681565b60006012905090565b600080610cb8611339565b9050610cd9818585610cca8589611115565b610cd49190612a81565b611341565b600191505092915050565b60145481565b60166020528060005260406000206000915054906101000a900460ff1681565b600d5481565b60105481565b600a5481565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d72611d4e565b610d7c6000611dcc565b565b60115481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610db6611d4e565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b606060048054610e2090612a21565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4c90612a21565b8015610e995780601f10610e6e57610100808354040283529160200191610e99565b820191906000526020600020905b815481529060010190602001808311610e7c57829003601f168201915b5050505050905090565b600f5481565b600080610eb4611339565b90506000610ec28286611115565b905083811015610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90612b27565b60405180910390fd5b610f148286868403611341565b60019250505092915050565b610f28611d4e565b80601560036101000a81548160ff02191690831515021790555050565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610f76611339565b9050610f83818585611596565b600191505092915050565b60125481565b60176020528060005260406000206000915054906101000a900460ff1681565b60085481565b610fc2611d4e565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60186020528060005260406000206000915054906101000a900460ff1681565b611045611d4e565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6110a8611d4e565b80601560026101000a81548160ff02191690831515021790555050565b60095481565b6110d3611d4e565b80601560006101000a81548160ff02191690831515021790555050565b6110f8611d4e565b80601560016101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60135481565b601560009054906101000a900460ff1681565b60075481565b6111c3611d4e565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61120f611d4e565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611272611d4e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d890612bb9565b60405180910390fd5b6112ea81611dcc565b50565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a790612c4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690612cdd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114fd91906125b0565b60405180910390a3505050565b60006115168484611115565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115905781811015611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990612d49565b60405180910390fd5b61158f8484848403611341565b5b50505050565b601560009054906101000a900460ff1680156115fb5750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156116515750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156116a05760115481111561169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290612ddb565b60405180910390fd5b61185d565b601560009054906101000a900460ff1680156117055750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561175b5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117aa576011548111156117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c90612e6d565b60405180910390fd5b61185c565b601560009054906101000a900460ff1680156118105750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561185b5760115481111561185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190612ed9565b60405180910390fd5b5b5b5b600061186830610d22565b905060006013548210159050601560039054906101000a900460ff16801561189d5750601b60149054906101000a900460ff16155b80156118f35750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156118fc5750805b15611941576001601b60146101000a81548160ff02191690831515021790555061192582611e92565b6000601b60146101000a81548160ff0219169083151502179055505b6000601b60149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119f75750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611a0157600090505b808015611a1a5750601560019054906101000a900460ff165b15611b59576000601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a9157600e54600f5486611a849190612ef9565b611a8e9190612f6a565b90505b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b3457600e5460105486611af49190612ef9565b611afe9190612f6a565b9050600e5460095486611b119190612ef9565b611b1b9190612f6a565b60146000828254611b2c9190612a81565b925050819055505b6000811115611b4957611b48873083611fd4565b5b8085611b559190612f9b565b9450505b601560029054906101000a900460ff168015611bbe5750601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015611c145750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611c765760125484611c2687610d22565b611c309190612a81565b1115611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890612ddb565b60405180910390fd5b611d3b565b601560029054906101000a900460ff168015611cdc5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d3a5760125484611cee87610d22565b611cf89190612a81565b1115611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090612ed9565b60405180910390fd5b5b5b611d46868686611fd4565b505050505050565b611d56611339565b73ffffffffffffffffffffffffffffffffffffffff16611d74610d84565b73ffffffffffffffffffffffffffffffffffffffff1614611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc19061301b565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060145482611ea29190612f9b565b90506005601354611eb39190612ef9565b811115611ecc576005601354611ec99190612ef9565b90505b611ed58161224a565b60004790506000811115611f4d57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611f4b573d6000803e3d6000fd5b505b60006014541115611fcf576000600e54611388601454611f6d9190612ef9565b611f779190612f6a565b90508060146000828254611f8b9190612f9b565b92505081905550611f9b8161224a565b60004790506000601454118015611fb25750600081115b15611fcc57611fc36014548261248d565b60006014819055505b50505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a906130ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a99061313f565b60405180910390fd5b6120bd83838361258d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a906131d1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161223191906125b0565b60405180910390a3612244848484612592565b50505050565b6000600267ffffffffffffffff811115612267576122666131f1565b5b6040519080825280602002602001820160405280156122955781602001602082028036833780820191505090505b50905030816000815181106122ad576122ac613220565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612354573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123789190613264565b8160018151811061238c5761238b613220565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506123f330601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611341565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161245795949392919061338a565b600060405180830381600087803b15801561247157600080fd5b505af1158015612485573d6000803e3d6000fd5b505050505050565b6124ba30601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611341565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161254396959493929190613405565b60606040518083038185885af1158015612561573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612586919061347b565b5050505050565b505050565b505050565b6000819050919050565b6125aa81612597565b82525050565b60006020820190506125c560008301846125a1565b92915050565b60008115159050919050565b6125e0816125cb565b82525050565b60006020820190506125fb60008301846125d7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263b578082015181840152602081019050612620565b60008484015250505050565b6000601f19601f8301169050919050565b600061266382612601565b61266d818561260c565b935061267d81856020860161261d565b61268681612647565b840191505092915050565b600060208201905081810360008301526126ab8184612658565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126e3826126b8565b9050919050565b6126f3816126d8565b81146126fe57600080fd5b50565b600081359050612710816126ea565b92915050565b61271f81612597565b811461272a57600080fd5b50565b60008135905061273c81612716565b92915050565b60008060408385031215612759576127586126b3565b5b600061276785828601612701565b92505060206127788582860161272d565b9150509250929050565b60008060006060848603121561279b5761279a6126b3565b5b60006127a986828701612701565b93505060206127ba86828701612701565b92505060406127cb8682870161272d565b9150509250925092565b6000602082840312156127eb576127ea6126b3565b5b60006127f984828501612701565b91505092915050565b600060ff82169050919050565b61281881612802565b82525050565b6000602082019050612833600083018461280f565b92915050565b612842816126d8565b82525050565b600060208201905061285d6000830184612839565b92915050565b61286c816125cb565b811461287757600080fd5b50565b60008135905061288981612863565b92915050565b600080604083850312156128a6576128a56126b3565b5b60006128b485828601612701565b92505060206128c58582860161287a565b9150509250929050565b6000602082840312156128e5576128e46126b3565b5b60006128f38482850161287a565b91505092915050565b60008060408385031215612913576129126126b3565b5b600061292185828601612701565b925050602061293285828601612701565b9150509250929050565b6000819050919050565b600061296161295c612957846126b8565b61293c565b6126b8565b9050919050565b600061297382612946565b9050919050565b600061298582612968565b9050919050565b6129958161297a565b82525050565b60006020820190506129b0600083018461298c565b92915050565b60006129c1826126b8565b9050919050565b6129d1816129b6565b82525050565b60006020820190506129ec60008301846129c8565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a3957607f821691505b602082108103612a4c57612a4b6129f2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a8c82612597565b9150612a9783612597565b9250828201905080821115612aaf57612aae612a52565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612b1160258361260c565b9150612b1c82612ab5565b604082019050919050565b60006020820190508181036000830152612b4081612b04565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ba360268361260c565b9150612bae82612b47565b604082019050919050565b60006020820190508181036000830152612bd281612b96565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612c3560248361260c565b9150612c4082612bd9565b604082019050919050565b60006020820190508181036000830152612c6481612c28565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cc760228361260c565b9150612cd282612c6b565b604082019050919050565b60006020820190508181036000830152612cf681612cba565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612d33601d8361260c565b9150612d3e82612cfd565b602082019050919050565b60006020820190508181036000830152612d6281612d26565b9050919050565b7f427579207472616e7366657220657865656473206d6178696d756d20616c6c6f60008201527f7765642e00000000000000000000000000000000000000000000000000000000602082015250565b6000612dc560248361260c565b9150612dd082612d69565b604082019050919050565b60006020820190508181036000830152612df481612db8565b9050919050565b7f53656c6c207472616e7366657220657865656473206d6178696d756d20616c6c60008201527f6f7765642e000000000000000000000000000000000000000000000000000000602082015250565b6000612e5760258361260c565b9150612e6282612dfb565b604082019050919050565b60006020820190508181036000830152612e8681612e4a565b9050919050565b7f5472616e7366657220657865656473206d6178696d756d20616c6c6f7765642e600082015250565b6000612ec360208361260c565b9150612ece82612e8d565b602082019050919050565b60006020820190508181036000830152612ef281612eb6565b9050919050565b6000612f0482612597565b9150612f0f83612597565b9250828202612f1d81612597565b91508282048414831517612f3457612f33612a52565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f7582612597565b9150612f8083612597565b925082612f9057612f8f612f3b565b5b828204905092915050565b6000612fa682612597565b9150612fb183612597565b9250828203905081811115612fc957612fc8612a52565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061300560208361260c565b915061301082612fcf565b602082019050919050565b6000602082019050818103600083015261303481612ff8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061309760258361260c565b91506130a28261303b565b604082019050919050565b600060208201905081810360008301526130c68161308a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061312960238361260c565b9150613134826130cd565b604082019050919050565b600060208201905081810360008301526131588161311c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006131bb60268361260c565b91506131c68261315f565b604082019050919050565b600060208201905081810360008301526131ea816131ae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061325e816126ea565b92915050565b60006020828403121561327a576132796126b3565b5b60006132888482850161324f565b91505092915050565b6000819050919050565b60006132b66132b16132ac84613291565b61293c565b612597565b9050919050565b6132c68161329b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613301816126d8565b82525050565b600061331383836132f8565b60208301905092915050565b6000602082019050919050565b6000613337826132cc565b61334181856132d7565b935061334c836132e8565b8060005b8381101561337d5781516133648882613307565b975061336f8361331f565b925050600181019050613350565b5085935050505092915050565b600060a08201905061339f60008301886125a1565b6133ac60208301876132bd565b81810360408301526133be818661332c565b90506133cd6060830185612839565b6133da60808301846125a1565b9695505050505050565b60006133ef82612968565b9050919050565b6133ff816133e4565b82525050565b600060c08201905061341a6000830189612839565b61342760208301886125a1565b61343460408301876132bd565b61344160608301866132bd565b61344e60808301856133f6565b61345b60a08301846125a1565b979650505050505050565b60008151905061347581612716565b92915050565b600080600060608486031215613494576134936126b3565b5b60006134a286828701613466565b93505060206134b386828701613466565b92505060406134c486828701613466565b915050925092509256fea2646970667358221220801e2e0b9b1541f018673446ea2c4400268679ad4594a5aef10739333f5bc9f064736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000b405dddc7b6ddc9aa5f6c088130ea2c37f0b93560000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1000000000
Arg [1] : _operationsWallet (address): 0xB405dDDc7b6ddc9aA5f6C088130eA2c37f0b9356
Arg [2] : _routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [1] : 000000000000000000000000b405dddc7b6ddc9aa5f6c088130ea2c37f0b9356
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


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.