ETH Price: $2,705.28 (-6.17%)
 

Overview

Max Total Supply

1,900,000,000 DXGY

Holders

6

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 3 Decimals)

Filtered by Token Holder
crispychainz.eth
Balance
114,656,238.908 DXGY

Value
$0.00
0xdc6784896b6dce26a8cfce64efa5bee202ac1139
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:
DOGEGALAXY

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-13
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(
        address recipient,
        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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @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;
    }
}

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}

/**
 * @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.zeppelin.solutions/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) internal _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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}
}

// pragma solidity >=0.5.0;

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function burn(
        address to
    ) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

// 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,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(
        uint256 amountIn,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);

    function getAmountsIn(
        uint256 amountOut,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

contract DOGEGALAXY is ERC20, Ownable {
    using Address for address;

    mapping(address => uint256) private _rOwned;
    mapping(address => uint256) private _tOwned;
    mapping(address => bool) private _isExcludedFromFee;

    mapping(address => bool) private _isExcluded;
    address[] private _excluded;

    uint8 private _decimals;

    address public marketingAddress;
    address public developerAddress;
    address public charityAddress;
    address public immutable deadAddress =
        0x000000000000000000000000000000000000dEaD;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal;
    uint256 private _rTotal;
    uint256 private _tFeeTotal = 0;

    uint256 public _reflectionFee;
    uint256 private _previousReflectionFee;

    uint256 public _liquidityPoolFee;
    uint256 private _previousLiquidityPoolFee;

    uint256 public _burnFee;
    uint256 private _previousBurnFee;

    uint256 public _marketingFee;
    uint256 private _previousMarketingFee;

    uint256 public _developerFee;
    uint256 private _previousDeveloperFee;

    uint256 public _charityFee;
    uint256 private _previousCharityFee;

    uint256 public _maxTxAmount;
    uint256 private _previousMaxTxAmount;
    uint256 private minimumTokensBeforeSwap;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    event RewardLiquidityProviders(uint256 tokenAmount);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    event SwapETHForTokens(uint256 amountIn, address[] path);

    event SwapTokensForETH(uint256 amountIn, address[] path);

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 totalSupply_,
        uint8 decimals_,
        address[6] memory addr_,
        uint256[6] memory value_
    ) payable ERC20(name_, symbol_) {
        _decimals = decimals_;
        _tTotal = totalSupply_ * 10 ** decimals_;
        _rTotal = (MAX - (MAX % _tTotal));

        _reflectionFee = value_[4];
        _previousReflectionFee = _reflectionFee;

        _liquidityPoolFee = value_[3];
        _previousLiquidityPoolFee = _liquidityPoolFee;

        _burnFee = value_[5];
        _previousBurnFee = _burnFee;
        _marketingFee = value_[0];
        _previousMarketingFee = _marketingFee;
        _developerFee = value_[1];
        _previousDeveloperFee = _developerFee;
        _charityFee = value_[2];
        _previousCharityFee = _charityFee;

        marketingAddress = addr_[0];
        developerAddress = addr_[1];
        charityAddress = addr_[2];

        _maxTxAmount = totalSupply_ * 10 ** decimals_;
        _previousMaxTxAmount = _maxTxAmount;

        minimumTokensBeforeSwap =
            ((totalSupply_ * 10 ** decimals_) / 10000) *
            2;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(addr_[3]);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[marketingAddress] = true;
        _isExcludedFromFee[developerAddress] = true;
        _isExcludedFromFee[charityAddress] = true;
        _isExcludedFromFee[address(this)] = true;

        _mintStart(_msgSender(), _rTotal, _tTotal);
        if (addr_[5] == 0x0000000000000000000000000000000000000000) {
            payable(addr_[4]).transfer(getBalance());
        } else {
            payable(addr_[5]).transfer((getBalance() * 10) / 119);
            payable(addr_[4]).transfer(getBalance());
        }
    }

    receive() external payable {}

    function getBalance() private view returns (uint256) {
        return address(this).balance;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(
        address sender
    ) public view virtual override returns (uint256) {
        if (_isExcluded[sender]) {
            return _tOwned[sender];
        }
        return tokenFromReflection(_rOwned[sender]);
    }

    function minimumTokensBeforeSwapAmount() public view returns (uint256) {
        return minimumTokensBeforeSwap;
    }

    function setLiquidityPoolFee(uint256 liquidityPoolFee_) external onlyOwner {
        _liquidityPoolFee = liquidityPoolFee_;
    }

    function setBurnFee(uint256 burnFee_) external onlyOwner {
        _burnFee = burnFee_;
    }

    function setMarketingFee(uint256 marketingFee_) external onlyOwner {
        _marketingFee = marketingFee_;
    }

    function setDeveloperFee(uint256 developerFee_) external onlyOwner {
        _developerFee = developerFee_;
    }

    function setCharityFee(uint256 charityFee_) external onlyOwner {
        _charityFee = charityFee_;
    }

    function setMarketingAddress(address _marketingAddress) external onlyOwner {
        marketingAddress = _marketingAddress;
    }

    function setDeveloperAddress(address _developerAddress) external onlyOwner {
        developerAddress = _developerAddress;
    }

    function setCharityAddress(address _charityAddress) external onlyOwner {
        charityAddress = _charityAddress;
    }

    function setNumTokensSellToAddToLiquidity(
        uint256 _minimumTokensBeforeSwap
    ) external onlyOwner {
        minimumTokensBeforeSwap = _minimumTokensBeforeSwap;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    function setMaxTxAmount(uint256 maxTxAmount) external onlyOwner {
        _maxTxAmount = maxTxAmount;
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFeesRedistributed() public view returns (uint256) {
        return _tFeeTotal;
    }

    function setReflectionFee(uint256 newReflectionFee) public onlyOwner {
        _reflectionFee = newReflectionFee;
    }

    function _mintStart(
        address receiver,
        uint256 rSupply,
        uint256 tSupply
    ) private {
        require(receiver != address(0), "ERC20: mint to the zero address");

        _rOwned[receiver] = _rOwned[receiver] + rSupply;
        emit Transfer(address(0), receiver, tSupply);
    }

    function reflect(uint256 tAmount) public {
        address sender = _msgSender();
        require(
            !_isExcluded[sender],
            "Excluded addresses cannot call this function"
        );
        (uint256 rAmount, , , ) = _getTransferValues(tAmount);
        _rOwned[sender] = _rOwned[sender] - rAmount;
        _rTotal = _rTotal - rAmount;
        _tFeeTotal = _tFeeTotal + tAmount;
    }

    function reflectionFromToken(
        uint256 tAmount,
        bool deductTransferFee
    ) public view returns (uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount, , , ) = _getTransferValues(tAmount);
            return rAmount;
        } else {
            (, uint256 rTransferAmount, , ) = _getTransferValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(
        uint256 rAmount
    ) private view returns (uint256) {
        require(
            rAmount <= _rTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getRate();
        return rAmount / currentRate;
    }

    function excludeAccountFromReward(address account) public onlyOwner {
        require(!_isExcluded[account], "Account is already excluded");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccountinReward(address account) public onlyOwner {
        require(_isExcluded[account], "Account is already included");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual override {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        uint256 senderBalance = balanceOf(sender);
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        if (sender != owner() && recipient != owner()) {
            require(
                amount <= _maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );
        }

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinimumTokenBalance = contractTokenBalance >=
            minimumTokensBeforeSwap;

        if (
            !inSwapAndLiquify &&
            swapAndLiquifyEnabled &&
            recipient == uniswapV2Pair
        ) {
            if (overMinimumTokenBalance) {
                contractTokenBalance = minimumTokensBeforeSwap;
                swapTokens(contractTokenBalance);
            }
        }

        bool takeFee = true;

        if (_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]) {
            takeFee = false;
        }

        _tokenTransfer(sender, recipient, amount, takeFee);
    }

    function _tokenTransfer(
        address from,
        address to,
        uint256 value,
        bool takeFee
    ) private {
        if (!takeFee) {
            removeAllFee();
        }

        _transferStandard(from, to, value);

        if (!takeFee) {
            restoreAllFee();
        }
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 tTransferAmount,
            uint256 currentRate
        ) = _getTransferValues(tAmount);

        _rOwned[sender] = _rOwned[sender] - rAmount;
        _rOwned[recipient] = _rOwned[recipient] + rTransferAmount;

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _tOwned[sender] = _tOwned[sender] - tAmount;
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _tOwned[recipient] = _tOwned[recipient] + tTransferAmount;
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _tOwned[sender] = _tOwned[sender] - tAmount;
            _tOwned[recipient] = _tOwned[recipient] + tTransferAmount;
        }

        feeTransfer(
            sender,
            tAmount,
            currentRate,
            _liquidityPoolFee,
            address(this)
        );
        _reflectFee(tAmount, currentRate);
        burnFeeTransfer(sender, tAmount, currentRate);
        feeTransfer(
            sender,
            tAmount,
            currentRate,
            _marketingFee,
            marketingAddress
        );
        feeTransfer(
            sender,
            tAmount,
            currentRate,
            _developerFee,
            developerAddress
        );
        feeTransfer(sender, tAmount, currentRate, _charityFee, charityAddress);

        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _getTransferValues(
        uint256 tAmount
    ) private view returns (uint256, uint256, uint256, uint256) {
        uint256 taxValue = _getCompleteTaxValue(tAmount);
        uint256 tTransferAmount = tAmount - taxValue;
        uint256 currentRate = _getRate();
        uint256 rTransferAmount = tTransferAmount * currentRate;
        uint256 rAmount = tAmount * currentRate;
        return (rAmount, rTransferAmount, tTransferAmount, currentRate);
    }

    function _getCompleteTaxValue(
        uint256 amount
    ) private view returns (uint256) {
        uint256 allTaxes = _liquidityPoolFee +
            _reflectionFee +
            _burnFee +
            _marketingFee +
            _developerFee +
            _charityFee;
        uint256 taxValue = (amount * allTaxes) / 100;
        return taxValue;
    }

    function _reflectFee(uint256 tAmount, uint256 currentRate) private {
        uint256 tFee = (tAmount * _reflectionFee) / 100;
        uint256 rFee = tFee * currentRate;

        _rTotal = _rTotal - rFee;
        _tFeeTotal = _tFeeTotal + tFee;
    }

    function burnFeeTransfer(
        address sender,
        uint256 tAmount,
        uint256 currentRate
    ) private {
        uint256 tBurnFee = (tAmount * _burnFee) / 100;
        if (tBurnFee > 0) {
            uint256 rBurnFee = tBurnFee * currentRate;
            _tTotal = _tTotal - tBurnFee;
            _rTotal = _rTotal - rBurnFee;
            emit Transfer(sender, address(0), tBurnFee);
        }
    }

    function feeTransfer(
        address sender,
        uint256 tAmount,
        uint256 currentRate,
        uint256 fee,
        address receiver
    ) private {
        uint256 tFee = (tAmount * fee) / 100;
        if (tFee > 0) {
            uint256 rFee = tFee * currentRate;
            _rOwned[receiver] = _rOwned[receiver] + rFee;
            emit Transfer(sender, receiver, tFee);
        }
    }

    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply / tSupply;
    }

    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;

        for (uint256 i = 0; i < _excluded.length; i++) {
            if (
                _rOwned[_excluded[i]] > rSupply ||
                _tOwned[_excluded[i]] > tSupply
            ) {
                return (_rTotal, _tTotal);
            }
            rSupply = rSupply - _rOwned[_excluded[i]];
            tSupply = tSupply - _tOwned[_excluded[i]];
        }

        if (rSupply < _rTotal / _tTotal) {
            return (_rTotal, _tTotal);
        }

        return (rSupply, tSupply);
    }

    function swapTokens(uint256 contractTokenBalance) private lockTheSwap {
        uint256 initialBalance = address(this).balance;

        uint256 liquidityHalf = contractTokenBalance / 2;
        uint256 otherLiquidityHalf = contractTokenBalance - liquidityHalf;
        swapTokensForEth(contractTokenBalance - otherLiquidityHalf);

        uint256 transferredBalance = address(this).balance - initialBalance;

        addLiquidity(otherLiquidityHalf, transferredBalance);

        emit SwapAndLiquify(
            liquidityHalf,
            transferredBalance,
            otherLiquidityHalf
        );
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this), // The contract
            block.timestamp
        );

        emit SwapTokensForETH(tokenAmount, path);
    }

    function swapETHForTokens(uint256 amount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(this);

        // make the swap
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{
            value: amount
        }(
            0, // accept any amount of Tokens
            path,
            deadAddress, // Burn address
            block.timestamp + 300
        );

        emit SwapETHForTokens(amount, path);
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    function removeAllFee() private {
        if (
            _liquidityPoolFee == 0 &&
            _reflectionFee == 0 &&
            _burnFee == 0 &&
            _marketingFee == 0 &&
            _developerFee == 0 &&
            _charityFee == 0
        ) return;
        _previousLiquidityPoolFee = _liquidityPoolFee;
        _previousReflectionFee = _reflectionFee;
        _previousBurnFee = _burnFee;
        _previousMarketingFee = _marketingFee;
        _previousDeveloperFee = _developerFee;
        _previousCharityFee = _charityFee;

        _liquidityPoolFee = 0;
        _reflectionFee = 0;
        _burnFee = 0;
        _marketingFee = 0;
        _developerFee = 0;
        _charityFee = 0;
    }

    function restoreAllFee() private {
        _liquidityPoolFee = _previousLiquidityPoolFee;
        _reflectionFee = _previousReflectionFee;
        _burnFee = _previousBurnFee;
        _marketingFee = _previousMarketingFee;
        _developerFee = _previousDeveloperFee;
        _charityFee = _previousCharityFee;
    }

    function presale(bool _presale) external onlyOwner {
        if (_presale) {
            setSwapAndLiquifyEnabled(false);
            removeAllFee();
            _previousMaxTxAmount = _maxTxAmount;
            _maxTxAmount = totalSupply();
        } else {
            setSwapAndLiquifyEnabled(true);
            restoreAllFee();
            _maxTxAmount = _previousMaxTxAmount;
        }
    }

    function transferToAddressETH(
        address payable recipient,
        uint256 amount
    ) private {
        recipient.transfer(amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address[6]","name":"addr_","type":"address[6]"},{"internalType":"uint256[6]","name":"value_","type":"uint256[6]"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"RewardLiquidityProviders","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapETHForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","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":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_charityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_developerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityPoolFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","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":"_reflectionFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"developerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccountFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccountinReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumTokensBeforeSwapAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_presale","type":"bool"}],"name":"presale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnFee_","type":"uint256"}],"name":"setBurnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_charityAddress","type":"address"}],"name":"setCharityAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"charityFee_","type":"uint256"}],"name":"setCharityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developerAddress","type":"address"}],"name":"setDeveloperAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"developerFee_","type":"uint256"}],"name":"setDeveloperFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityPoolFee_","type":"uint256"}],"name":"setLiquidityPoolFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingAddress","type":"address"}],"name":"setMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee_","type":"uint256"}],"name":"setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minimumTokensBeforeSwap","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newReflectionFee","type":"uint256"}],"name":"setReflectionFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeesRedistributed","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e060405261dead73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1681525060006010556001602060016101000a81548160ff021916908315150217905550604051616870380380616870833981810160405281019061007a9190610f65565b8585816003908161008b9190611243565b50806004908161009b9190611243565b5050506100ba6100af61095460201b60201c565b61095c60201b60201c565b82600b60006101000a81548160ff021916908360ff16021790555082600a6100e29190611477565b846100ed91906114c2565b600e81905550600e546000196101039190611533565b6000196101109190611564565b600f819055508060046006811061012a57610129611598565b5b60200201516011819055506011546012819055508060036006811061015257610151611598565b5b60200201516013819055506013546014819055508060056006811061017a57610179611598565b5b6020020151601581905550601554601681905550806000600681106101a2576101a1611598565b5b6020020151601781905550601754601881905550806001600681106101ca576101c9611598565b5b6020020151601981905550601954601a81905550806002600681106101f2576101f1611598565b5b6020020151601b81905550601b54601c819055508160006006811061021a57610219611598565b5b6020020151600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016006811061027357610272611598565b5b6020020151600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816002600681106102cc576102cb611598565b5b6020020151600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600a61031e9190611477565b8461032991906114c2565b601d81905550601d54601e81905550600261271084600a61034a9190611477565b8661035591906114c2565b61035f91906115c7565b61036991906114c2565b601f8190555060008260036006811061038557610384611598565b5b602002015190508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103fb91906115f8565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610462573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061048691906115f8565b6040518363ffffffff1660e01b81526004016104a3929190611634565b6020604051808303816000875af11580156104c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104e691906115f8565b73ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050600160086000610561610a2260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061079a61078961095460201b60201c565b600f54600e54610a4c60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff16836005600681106107c6576107c5611598565b5b602002015173ffffffffffffffffffffffffffffffffffffffff160361085757826004600681106107fa576107f9611598565b5b602002015173ffffffffffffffffffffffffffffffffffffffff166108fc610826610bb460201b60201c565b9081150290604051600060405180830381858888f19350505050158015610851573d6000803e3d6000fd5b50610948565b8260056006811061086b5761086a611598565b5b602002015173ffffffffffffffffffffffffffffffffffffffff166108fc6077600a61089b610bb460201b60201c565b6108a591906114c2565b6108af91906115c7565b9081150290604051600060405180830381858888f193505050501580156108da573d6000803e3d6000fd5b50826004600681106108ef576108ee611598565b5b602002015173ffffffffffffffffffffffffffffffffffffffff166108fc61091b610bb460201b60201c565b9081150290604051600060405180830381858888f19350505050158015610946573d6000803e3d6000fd5b505b50505050505050611738565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab2906116ba565b60405180910390fd5b81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b0691906116da565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ba7919061171d565b60405180910390a3505050565b600047905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610c2382610bda565b810181811067ffffffffffffffff82111715610c4257610c41610beb565b5b80604052505050565b6000610c55610bbc565b9050610c618282610c1a565b919050565b600067ffffffffffffffff821115610c8157610c80610beb565b5b610c8a82610bda565b9050602081019050919050565b60005b83811015610cb5578082015181840152602081019050610c9a565b60008484015250505050565b6000610cd4610ccf84610c66565b610c4b565b905082815260208101848484011115610cf057610cef610bd5565b5b610cfb848285610c97565b509392505050565b600082601f830112610d1857610d17610bd0565b5b8151610d28848260208601610cc1565b91505092915050565b6000819050919050565b610d4481610d31565b8114610d4f57600080fd5b50565b600081519050610d6181610d3b565b92915050565b600060ff82169050919050565b610d7d81610d67565b8114610d8857600080fd5b50565b600081519050610d9a81610d74565b92915050565b600067ffffffffffffffff821115610dbb57610dba610beb565b5b602082029050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610df682610dcb565b9050919050565b610e0681610deb565b8114610e1157600080fd5b50565b600081519050610e2381610dfd565b92915050565b6000610e3c610e3784610da0565b610c4b565b90508060208402830185811115610e5657610e55610dc6565b5b835b81811015610e7f5780610e6b8882610e14565b845260208401935050602081019050610e58565b5050509392505050565b600082601f830112610e9e57610e9d610bd0565b5b6006610eab848285610e29565b91505092915050565b600067ffffffffffffffff821115610ecf57610ece610beb565b5b602082029050919050565b6000610eed610ee884610eb4565b610c4b565b90508060208402830185811115610f0757610f06610dc6565b5b835b81811015610f305780610f1c8882610d52565b845260208401935050602081019050610f09565b5050509392505050565b600082601f830112610f4f57610f4e610bd0565b5b6006610f5c848285610eda565b91505092915050565b6000806000806000806102008789031215610f8357610f82610bc6565b5b600087015167ffffffffffffffff811115610fa157610fa0610bcb565b5b610fad89828a01610d03565b965050602087015167ffffffffffffffff811115610fce57610fcd610bcb565b5b610fda89828a01610d03565b9550506040610feb89828a01610d52565b9450506060610ffc89828a01610d8b565b935050608061100d89828a01610e89565b92505061014061101f89828a01610f3a565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061107e57607f821691505b60208210810361109157611090611037565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026110f97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826110bc565b61110386836110bc565b95508019841693508086168417925050509392505050565b6000819050919050565b600061114061113b61113684610d31565b61111b565b610d31565b9050919050565b6000819050919050565b61115a83611125565b61116e61116682611147565b8484546110c9565b825550505050565b600090565b611183611176565b61118e818484611151565b505050565b5b818110156111b2576111a760008261117b565b600181019050611194565b5050565b601f8211156111f7576111c881611097565b6111d1846110ac565b810160208510156111e0578190505b6111f46111ec856110ac565b830182611193565b50505b505050565b600082821c905092915050565b600061121a600019846008026111fc565b1980831691505092915050565b60006112338383611209565b9150826002028217905092915050565b61124c8261102c565b67ffffffffffffffff81111561126557611264610beb565b5b61126f8254611066565b61127a8282856111b6565b600060209050601f8311600181146112ad576000841561129b578287015190505b6112a58582611227565b86555061130d565b601f1984166112bb86611097565b60005b828110156112e3578489015182556001820191506020850194506020810190506112be565b8683101561130057848901516112fc601f891682611209565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561139b5780860481111561137757611376611315565b5b60018516156113865780820291505b808102905061139485611344565b945061135b565b94509492505050565b6000826113b45760019050611470565b816113c25760009050611470565b81600181146113d857600281146113e257611411565b6001915050611470565b60ff8411156113f4576113f3611315565b5b8360020a91508482111561140b5761140a611315565b5b50611470565b5060208310610133831016604e8410600b84101617156114465782820a90508381111561144157611440611315565b5b611470565b6114538484846001611351565b9250905081840481111561146a57611469611315565b5b81810290505b9392505050565b600061148282610d31565b915061148d83610d67565b92506114ba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846113a4565b905092915050565b60006114cd82610d31565b91506114d883610d31565b92508282026114e681610d31565b915082820484148315176114fd576114fc611315565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061153e82610d31565b915061154983610d31565b92508261155957611558611504565b5b828206905092915050565b600061156f82610d31565b915061157a83610d31565b925082820390508181111561159257611591611315565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006115d282610d31565b91506115dd83610d31565b9250826115ed576115ec611504565b5b828204905092915050565b60006020828403121561160e5761160d610bc6565b5b600061161c84828501610e14565b91505092915050565b61162e81610deb565b82525050565b60006040820190506116496000830185611625565b6116566020830184611625565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006116a4601f8361165d565b91506116af8261166e565b602082019050919050565b600060208201905081810360008301526116d381611697565b9050919050565b60006116e582610d31565b91506116f083610d31565b925082820190508082111561170857611707611315565b5b92915050565b61171781610d31565b82525050565b6000602082019050611732600083018461170e565b92915050565b60805160a05160c0516150df611791600039600081816112e10152612b2e015260008181610ed501528181613343015281816134240152818161344b0152818161352001526135470152600061108701526150df6000f3fe6080604052600436106102e85760003560e01c806370a0823111610190578063c0b0fda2116100dc578063e547be6911610095578063edc2fcfb1161006f578063edc2fcfb14610b5b578063f0f165af14610b84578063f2fde38b14610bad578063fdeb889f14610bd6576102ef565b8063e547be6914610ae0578063ea2f0b3714610b09578063ec28438a14610b32576102ef565b8063c0b0fda2146109be578063c49b9a80146109e9578063caccd7f714610a12578063cba0e99614610a3d578063dcc345f214610a7a578063dd62ed3e14610aa3576102ef565b806395d89b4111610149578063a5ece94111610123578063a5ece94114610902578063a9059cbb1461092d578063a94c8dd21461096a578063afcf2fc414610993576102ef565b806395d89b411461086f578063a073d37f1461089a578063a457c2d7146108c5576102ef565b806370a0823114610771578063715018a6146107ae5780637d1db4a5146107c55780638a0623b4146107f05780638da5cb5b1461081b578063906e9dd014610846576102ef565b80633206b4aa1161024f57806349bd5a5e116102085780635342acb4116101e25780635342acb4146106b95780636049876e146106f6578063625e764c1461071f5780636c31723214610748576102ef565b806349bd5a5e1461063a5780634a74bb02146106655780634bf2c7c914610690576102ef565b80633206b4aa14610516578063395093511461054157806340f8007a1461057e578063437823ec146105a95780634549b039146105d257806348de478e1461060f576102ef565b806320c7c596116102a157806320c7c5961461040457806322976e0d1461042d57806323b872dd1461045857806327c8f83514610495578063313ce567146104c057806332035504146104eb576102ef565b8063053ab182146102f457806306fdde031461031d578063095ea7b3146103485780630c9be46d146103855780631694505e146103ae57806318160ddd146103d9576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b60048036038101906103169190613f25565b610bff565b005b34801561032957600080fd5b50610332610d63565b60405161033f9190613fe2565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190614062565b610df5565b60405161037c91906140bd565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a791906140d8565b610e13565b005b3480156103ba57600080fd5b506103c3610ed3565b6040516103d09190614164565b60405180910390f35b3480156103e557600080fd5b506103ee610ef7565b6040516103fb919061418e565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190613f25565b610f01565b005b34801561043957600080fd5b50610442610f87565b60405161044f919061418e565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a91906141a9565b610f8d565b60405161048c91906140bd565b60405180910390f35b3480156104a157600080fd5b506104aa611085565b6040516104b7919061420b565b60405180910390f35b3480156104cc57600080fd5b506104d56110a9565b6040516104e29190614242565b60405180910390f35b3480156104f757600080fd5b506105006110c0565b60405161050d919061418e565b60405180910390f35b34801561052257600080fd5b5061052b6110ca565b604051610538919061418e565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190614062565b6110d0565b60405161057591906140bd565b60405180910390f35b34801561058a57600080fd5b5061059361117c565b6040516105a0919061418e565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb91906140d8565b611182565b005b3480156105de57600080fd5b506105f960048036038101906105f49190614289565b611259565b604051610606919061418e565b60405180910390f35b34801561061b57600080fd5b506106246112d9565b604051610631919061418e565b60405180910390f35b34801561064657600080fd5b5061064f6112df565b60405161065c919061420b565b60405180910390f35b34801561067157600080fd5b5061067a611303565b60405161068791906140bd565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190613f25565b611316565b005b3480156106c557600080fd5b506106e060048036038101906106db91906140d8565b61139c565b6040516106ed91906140bd565b60405180910390f35b34801561070257600080fd5b5061071d600480360381019061071891906140d8565b6113f2565b005b34801561072b57600080fd5b5061074660048036038101906107419190613f25565b61168d565b005b34801561075457600080fd5b5061076f600480360381019061076a9190613f25565b611713565b005b34801561077d57600080fd5b50610798600480360381019061079391906140d8565b611799565b6040516107a5919061418e565b60405180910390f35b3480156107ba57600080fd5b506107c3611884565b005b3480156107d157600080fd5b506107da61190c565b6040516107e7919061418e565b60405180910390f35b3480156107fc57600080fd5b50610805611912565b604051610812919061418e565b60405180910390f35b34801561082757600080fd5b50610830611918565b60405161083d919061420b565b60405180910390f35b34801561085257600080fd5b5061086d600480360381019061086891906140d8565b611942565b005b34801561087b57600080fd5b50610884611a02565b6040516108919190613fe2565b60405180910390f35b3480156108a657600080fd5b506108af611a94565b6040516108bc919061418e565b60405180910390f35b3480156108d157600080fd5b506108ec60048036038101906108e79190614062565b611a9e565b6040516108f991906140bd565b60405180910390f35b34801561090e57600080fd5b50610917611b89565b604051610924919061420b565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f9190614062565b611baf565b60405161096191906140bd565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c9190613f25565b611bcd565b005b34801561099f57600080fd5b506109a8611c53565b6040516109b5919061420b565b60405180910390f35b3480156109ca57600080fd5b506109d3611c79565b6040516109e0919061418e565b60405180910390f35b3480156109f557600080fd5b50610a106004803603810190610a0b91906142c9565b611c7f565b005b348015610a1e57600080fd5b50610a27611d4f565b604051610a34919061420b565b60405180910390f35b348015610a4957600080fd5b50610a646004803603810190610a5f91906140d8565b611d75565b604051610a7191906140bd565b60405180910390f35b348015610a8657600080fd5b50610aa16004803603810190610a9c91906140d8565b611dcb565b005b348015610aaf57600080fd5b50610aca6004803603810190610ac591906142f6565b611e8b565b604051610ad7919061418e565b60405180910390f35b348015610aec57600080fd5b50610b076004803603810190610b029190613f25565b611f12565b005b348015610b1557600080fd5b50610b306004803603810190610b2b91906140d8565b611f98565b005b348015610b3e57600080fd5b50610b596004803603810190610b549190613f25565b61206f565b005b348015610b6757600080fd5b50610b826004803603810190610b7d91906142c9565b6120f5565b005b348015610b9057600080fd5b50610bab6004803603810190610ba69190613f25565b6121c4565b005b348015610bb957600080fd5b50610bd46004803603810190610bcf91906140d8565b61224a565b005b348015610be257600080fd5b50610bfd6004803603810190610bf891906140d8565b612341565b005b6000610c09612670565b9050600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f906143a8565b60405180910390fd5b6000610ca383612678565b505050905080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cf391906143f7565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600f54610d4491906143f7565b600f8190555082601054610d58919061442b565b601081905550505050565b606060038054610d729061448e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9e9061448e565b8015610deb5780601f10610dc057610100808354040283529160200191610deb565b820191906000526020600020905b815481529060010190602001808311610dce57829003601f168201915b5050505050905090565b6000610e09610e02612670565b84846126df565b6001905092915050565b610e1b612670565b73ffffffffffffffffffffffffffffffffffffffff16610e39611918565b73ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e869061450b565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600e54905090565b610f09612670565b73ffffffffffffffffffffffffffffffffffffffff16610f27611918565b73ffffffffffffffffffffffffffffffffffffffff1614610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f749061450b565b60405180910390fd5b80601b8190555050565b60175481565b6000610f9a8484846128a8565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe5612670565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c9061459d565b60405180910390fd5b61107985611071612670565b8584036126df565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600b60009054906101000a900460ff16905090565b6000601054905090565b60115481565b60006111726110dd612670565b8484600160006110eb612670565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116d919061442b565b6126df565b6001905092915050565b601b5481565b61118a612670565b73ffffffffffffffffffffffffffffffffffffffff166111a8611918565b73ffffffffffffffffffffffffffffffffffffffff16146111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f59061450b565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600e548311156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790614609565b60405180910390fd5b816112be5760006112b084612678565b5050509050809150506112d3565b60006112c984612678565b5050915050809150505b92915050565b60195481565b7f000000000000000000000000000000000000000000000000000000000000000081565b602060019054906101000a900460ff1681565b61131e612670565b73ffffffffffffffffffffffffffffffffffffffff1661133c611918565b73ffffffffffffffffffffffffffffffffffffffff1614611392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113899061450b565b60405180910390fd5b8060158190555050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6113fa612670565b73ffffffffffffffffffffffffffffffffffffffff16611418611918565b73ffffffffffffffffffffffffffffffffffffffff161461146e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114659061450b565b60405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f290614675565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156115cf5761158b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c5d565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611695612670565b73ffffffffffffffffffffffffffffffffffffffff166116b3611918565b73ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117009061450b565b60405180910390fd5b8060178190555050565b61171b612670565b73ffffffffffffffffffffffffffffffffffffffff16611739611918565b73ffffffffffffffffffffffffffffffffffffffff161461178f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117869061450b565b60405180910390fd5b8060198190555050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561183457600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061187f565b61187c600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c5d565b90505b919050565b61188c612670565b73ffffffffffffffffffffffffffffffffffffffff166118aa611918565b73ffffffffffffffffffffffffffffffffffffffff1614611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f79061450b565b60405180910390fd5b61190a6000612cc4565b565b601d5481565b60135481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61194a612670565b73ffffffffffffffffffffffffffffffffffffffff16611968611918565b73ffffffffffffffffffffffffffffffffffffffff16146119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b59061450b565b60405180910390fd5b80600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060048054611a119061448e565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3d9061448e565b8015611a8a5780601f10611a5f57610100808354040283529160200191611a8a565b820191906000526020600020905b815481529060010190602001808311611a6d57829003601f168201915b5050505050905090565b6000601f54905090565b60008060016000611aad612670565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190614707565b60405180910390fd5b611b7e611b75612670565b858584036126df565b600191505092915050565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611bc3611bbc612670565b84846128a8565b6001905092915050565b611bd5612670565b73ffffffffffffffffffffffffffffffffffffffff16611bf3611918565b73ffffffffffffffffffffffffffffffffffffffff1614611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c409061450b565b60405180910390fd5b8060138190555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b611c87612670565b73ffffffffffffffffffffffffffffffffffffffff16611ca5611918565b73ffffffffffffffffffffffffffffffffffffffff1614611cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf29061450b565b60405180910390fd5b80602060016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15981604051611d4491906140bd565b60405180910390a150565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611dd3612670565b73ffffffffffffffffffffffffffffffffffffffff16611df1611918565b73ffffffffffffffffffffffffffffffffffffffff1614611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e9061450b565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611f1a612670565b73ffffffffffffffffffffffffffffffffffffffff16611f38611918565b73ffffffffffffffffffffffffffffffffffffffff1614611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f859061450b565b60405180910390fd5b8060118190555050565b611fa0612670565b73ffffffffffffffffffffffffffffffffffffffff16611fbe611918565b73ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b9061450b565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612077612670565b73ffffffffffffffffffffffffffffffffffffffff16612095611918565b73ffffffffffffffffffffffffffffffffffffffff16146120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e29061450b565b60405180910390fd5b80601d8190555050565b6120fd612670565b73ffffffffffffffffffffffffffffffffffffffff1661211b611918565b73ffffffffffffffffffffffffffffffffffffffff1614612171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121689061450b565b60405180910390fd5b80156121a5576121816000611c7f565b612189612d8a565b601d54601e8190555061219a610ef7565b601d819055506121c1565b6121af6001611c7f565b6121b7612e43565b601e54601d819055505b50565b6121cc612670565b73ffffffffffffffffffffffffffffffffffffffff166121ea611918565b73ffffffffffffffffffffffffffffffffffffffff1614612240576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122379061450b565b60405180910390fd5b80601f8190555050565b612252612670565b73ffffffffffffffffffffffffffffffffffffffff16612270611918565b73ffffffffffffffffffffffffffffffffffffffff16146122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bd9061450b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232c90614799565b60405180910390fd5b61233e81612cc4565b50565b612349612670565b73ffffffffffffffffffffffffffffffffffffffff16612367611918565b73ffffffffffffffffffffffffffffffffffffffff16146123bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b49061450b565b60405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244090614805565b60405180910390fd5b60005b600a8054905081101561266c578173ffffffffffffffffffffffffffffffffffffffff16600a828154811061248457612483614825565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361265f57600a6001600a805490506124de91906143f7565b815481106124ef576124ee614825565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061252e5761252d614825565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061262557612624614854565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561266c565b808060010191505061244c565b5050565b600033905090565b600080600080600061268986612e7b565b90506000818761269991906143f7565b905060006126a5612eea565b9050600081836126b59190614883565b90506000828a6126c59190614883565b905080828585985098509850985050505050509193509193565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361274e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274590614937565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b4906149c9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161289b919061418e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290e90614a5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297d90614aed565b60405180910390fd5b600081116129c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c090614b7f565b60405180910390fd5b60006129d484611799565b905081811015612a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1090614c11565b60405180910390fd5b612a21611918565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015612a8f5750612a5f611918565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15612ada57601d54821115612ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad090614ca3565b60405180910390fd5b5b612ae5848484612f0e565b6000612af030611799565b90506000601f548210159050602060009054906101000a900460ff16158015612b255750602060019054906101000a900460ff165b8015612b7c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612b97578015612b9657601f549150612b9582612f13565b5b5b600060019050600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c3e5750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c4857600090505b612c5487878784612fdf565b50505050505050565b6000600f54821115612ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9b90614d35565b60405180910390fd5b6000612cae612eea565b90508083612cbc9190614d84565b915050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000601354148015612d9e57506000601154145b8015612dac57506000601554145b8015612dba57506000601754145b8015612dc857506000601954145b8015612dd657506000601b54145b612e4157601354601481905550601154601281905550601554601681905550601754601881905550601954601a81905550601b54601c81905550600060138190555060006011819055506000601581905550600060178190555060006019819055506000601b819055505b565b601454601381905550601254601181905550601654601581905550601854601781905550601a54601981905550601c54601b81905550565b600080601b54601954601754601554601154601354612e9a919061442b565b612ea4919061442b565b612eae919061442b565b612eb8919061442b565b612ec2919061442b565b9050600060648285612ed49190614883565b612ede9190614d84565b90508092505050919050565b6000806000612ef761300c565b915091508082612f079190614d84565b9250505090565b505050565b6001602060006101000a81548160ff02191690831515021790555060004790506000600283612f429190614d84565b905060008184612f5291906143f7565b9050612f688185612f6391906143f7565b6132a4565b60008347612f7691906143f7565b9050612f82828261351a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561838284604051612fb593929190614db5565b60405180910390a1505050506000602060006101000a81548160ff02191690831515021790555050565b80612fed57612fec612d8a565b5b612ff88484846135fb565b8061300657613005612e43565b5b50505050565b6000806000600f5490506000600e54905060005b600a8054905081101561326e578260066000600a848154811061304657613045614825565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061313457508160076000600a84815481106130cc576130cb614825565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561314b57600f54600e54945094505050506132a0565b60066000600a838154811061316357613162614825565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836131d491906143f7565b925060076000600a83815481106131ee576131ed614825565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548261325f91906143f7565b91508080600101915050613020565b50600e54600f5461327f9190614d84565b82101561329757600f54600e549350935050506132a0565b81819350935050505b9091565b6000600267ffffffffffffffff8111156132c1576132c0614dec565b5b6040519080825280602002602001820160405280156132ef5781602001602082028036833780820191505090505b509050308160008151811061330757613306614825565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133d09190614e30565b816001815181106133e4576133e3614825565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613449307f0000000000000000000000000000000000000000000000000000000000000000846126df565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016134ab959493929190614f56565b600060405180830381600087803b1580156134c557600080fd5b505af11580156134d9573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a7828260405161350e929190614fb0565b60405180910390a15050565b613545307f0000000000000000000000000000000000000000000000000000000000000000846126df565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061358f611918565b426040518863ffffffff1660e01b81526004016135b196959493929190614fe0565b60606040518083038185885af11580156135cf573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906135f49190615056565b5050505050565b60008060008061360a85612678565b935093509350935083600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461365d91906143f7565b600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136eb919061442b565b600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137d15750600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138695784600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461382191906143f7565b600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b6a565b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561390c5750600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139a45781600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461395c919061442b565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b69565b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a465750600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613b685784600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a9691906143f7565b600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b24919061442b565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b613b7987868360135430613c8f565b613b838582613dc1565b613b8e878683613e1d565b613bbf878683601754600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16613c8f565b613bf0878683601954600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16613c8f565b613c21878683601b54600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16613c8f565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c7e919061418e565b60405180910390a350505050505050565b600060648386613c9f9190614883565b613ca99190614d84565b90506000811115613db95760008482613cc29190614883565b905080600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d0f919061442b565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613daf919061418e565b60405180910390a3505b505050505050565b6000606460115484613dd39190614883565b613ddd9190614d84565b905060008282613ded9190614883565b905080600f54613dfd91906143f7565b600f8190555081601054613e11919061442b565b60108190555050505050565b6000606460155484613e2f9190614883565b613e399190614d84565b90506000811115613ee45760008282613e529190614883565b905081600e54613e6291906143f7565b600e8190555080600f54613e7691906143f7565b600f81905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613eda919061418e565b60405180910390a3505b50505050565b600080fd5b6000819050919050565b613f0281613eef565b8114613f0d57600080fd5b50565b600081359050613f1f81613ef9565b92915050565b600060208284031215613f3b57613f3a613eea565b5b6000613f4984828501613f10565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f8c578082015181840152602081019050613f71565b60008484015250505050565b6000601f19601f8301169050919050565b6000613fb482613f52565b613fbe8185613f5d565b9350613fce818560208601613f6e565b613fd781613f98565b840191505092915050565b60006020820190508181036000830152613ffc8184613fa9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061402f82614004565b9050919050565b61403f81614024565b811461404a57600080fd5b50565b60008135905061405c81614036565b92915050565b6000806040838503121561407957614078613eea565b5b60006140878582860161404d565b925050602061409885828601613f10565b9150509250929050565b60008115159050919050565b6140b7816140a2565b82525050565b60006020820190506140d260008301846140ae565b92915050565b6000602082840312156140ee576140ed613eea565b5b60006140fc8482850161404d565b91505092915050565b6000819050919050565b600061412a61412561412084614004565b614105565b614004565b9050919050565b600061413c8261410f565b9050919050565b600061414e82614131565b9050919050565b61415e81614143565b82525050565b60006020820190506141796000830184614155565b92915050565b61418881613eef565b82525050565b60006020820190506141a3600083018461417f565b92915050565b6000806000606084860312156141c2576141c1613eea565b5b60006141d08682870161404d565b93505060206141e18682870161404d565b92505060406141f286828701613f10565b9150509250925092565b61420581614024565b82525050565b600060208201905061422060008301846141fc565b92915050565b600060ff82169050919050565b61423c81614226565b82525050565b60006020820190506142576000830184614233565b92915050565b614266816140a2565b811461427157600080fd5b50565b6000813590506142838161425d565b92915050565b600080604083850312156142a05761429f613eea565b5b60006142ae85828601613f10565b92505060206142bf85828601614274565b9150509250929050565b6000602082840312156142df576142de613eea565b5b60006142ed84828501614274565b91505092915050565b6000806040838503121561430d5761430c613eea565b5b600061431b8582860161404d565b925050602061432c8582860161404d565b9150509250929050565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b6000614392602c83613f5d565b915061439d82614336565b604082019050919050565b600060208201905081810360008301526143c181614385565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061440282613eef565b915061440d83613eef565b9250828203905081811115614425576144246143c8565b5b92915050565b600061443682613eef565b915061444183613eef565b9250828201905080821115614459576144586143c8565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144a657607f821691505b6020821081036144b9576144b861445f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144f5602083613f5d565b9150614500826144bf565b602082019050919050565b60006020820190508181036000830152614524816144e8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614587602883613f5d565b91506145928261452b565b604082019050919050565b600060208201905081810360008301526145b68161457a565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b60006145f3601f83613f5d565b91506145fe826145bd565b602082019050919050565b60006020820190508181036000830152614622816145e6565b9050919050565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b600061465f601b83613f5d565b915061466a82614629565b602082019050919050565b6000602082019050818103600083015261468e81614652565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146f1602583613f5d565b91506146fc82614695565b604082019050919050565b60006020820190508181036000830152614720816146e4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614783602683613f5d565b915061478e82614727565b604082019050919050565b600060208201905081810360008301526147b281614776565b9050919050565b7f4163636f756e7420697320616c726561647920696e636c756465640000000000600082015250565b60006147ef601b83613f5d565b91506147fa826147b9565b602082019050919050565b6000602082019050818103600083015261481e816147e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600061488e82613eef565b915061489983613eef565b92508282026148a781613eef565b915082820484148315176148be576148bd6143c8565b5b5092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614921602483613f5d565b915061492c826148c5565b604082019050919050565b6000602082019050818103600083015261495081614914565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149b3602283613f5d565b91506149be82614957565b604082019050919050565b600060208201905081810360008301526149e2816149a6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a45602583613f5d565b9150614a50826149e9565b604082019050919050565b60006020820190508181036000830152614a7481614a38565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ad7602383613f5d565b9150614ae282614a7b565b604082019050919050565b60006020820190508181036000830152614b0681614aca565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000614b69602983613f5d565b9150614b7482614b0d565b604082019050919050565b60006020820190508181036000830152614b9881614b5c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614bfb602683613f5d565b9150614c0682614b9f565b604082019050919050565b60006020820190508181036000830152614c2a81614bee565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000614c8d602883613f5d565b9150614c9882614c31565b604082019050919050565b60006020820190508181036000830152614cbc81614c80565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b6000614d1f602a83613f5d565b9150614d2a82614cc3565b604082019050919050565b60006020820190508181036000830152614d4e81614d12565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d8f82613eef565b9150614d9a83613eef565b925082614daa57614da9614d55565b5b828204905092915050565b6000606082019050614dca600083018661417f565b614dd7602083018561417f565b614de4604083018461417f565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050614e2a81614036565b92915050565b600060208284031215614e4657614e45613eea565b5b6000614e5484828501614e1b565b91505092915050565b6000819050919050565b6000614e82614e7d614e7884614e5d565b614105565b613eef565b9050919050565b614e9281614e67565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ecd81614024565b82525050565b6000614edf8383614ec4565b60208301905092915050565b6000602082019050919050565b6000614f0382614e98565b614f0d8185614ea3565b9350614f1883614eb4565b8060005b83811015614f49578151614f308882614ed3565b9750614f3b83614eeb565b925050600181019050614f1c565b5085935050505092915050565b600060a082019050614f6b600083018861417f565b614f786020830187614e89565b8181036040830152614f8a8186614ef8565b9050614f9960608301856141fc565b614fa6608083018461417f565b9695505050505050565b6000604082019050614fc5600083018561417f565b8181036020830152614fd78184614ef8565b90509392505050565b600060c082019050614ff560008301896141fc565b615002602083018861417f565b61500f6040830187614e89565b61501c6060830186614e89565b61502960808301856141fc565b61503660a083018461417f565b979650505050505050565b60008151905061505081613ef9565b92915050565b60008060006060848603121561506f5761506e613eea565b5b600061507d86828701615041565b935050602061508e86828701615041565b925050604061509f86828701615041565b915050925092509256fea2646970667358221220924e0e8020c047a9cd447fb82dd3fc0d0a0a8f637868ee0921d56c6143e316e564736f6c634300081900330000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000713fb300000000000000000000000000000000000000000000000000000000000000000300000000000000000000000072f0f38021fafcaa61f130eeefb720bf3bcfb2a2000000000000000000000000000000000000000000000000000000000000dead000000000000000000000000000000000000000000000000000000000000dead0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000008a6b88978e1aba2b009baa8d270c2dc0d8f7990d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b444f47452047414c41585900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044458475900000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e85760003560e01c806370a0823111610190578063c0b0fda2116100dc578063e547be6911610095578063edc2fcfb1161006f578063edc2fcfb14610b5b578063f0f165af14610b84578063f2fde38b14610bad578063fdeb889f14610bd6576102ef565b8063e547be6914610ae0578063ea2f0b3714610b09578063ec28438a14610b32576102ef565b8063c0b0fda2146109be578063c49b9a80146109e9578063caccd7f714610a12578063cba0e99614610a3d578063dcc345f214610a7a578063dd62ed3e14610aa3576102ef565b806395d89b4111610149578063a5ece94111610123578063a5ece94114610902578063a9059cbb1461092d578063a94c8dd21461096a578063afcf2fc414610993576102ef565b806395d89b411461086f578063a073d37f1461089a578063a457c2d7146108c5576102ef565b806370a0823114610771578063715018a6146107ae5780637d1db4a5146107c55780638a0623b4146107f05780638da5cb5b1461081b578063906e9dd014610846576102ef565b80633206b4aa1161024f57806349bd5a5e116102085780635342acb4116101e25780635342acb4146106b95780636049876e146106f6578063625e764c1461071f5780636c31723214610748576102ef565b806349bd5a5e1461063a5780634a74bb02146106655780634bf2c7c914610690576102ef565b80633206b4aa14610516578063395093511461054157806340f8007a1461057e578063437823ec146105a95780634549b039146105d257806348de478e1461060f576102ef565b806320c7c596116102a157806320c7c5961461040457806322976e0d1461042d57806323b872dd1461045857806327c8f83514610495578063313ce567146104c057806332035504146104eb576102ef565b8063053ab182146102f457806306fdde031461031d578063095ea7b3146103485780630c9be46d146103855780631694505e146103ae57806318160ddd146103d9576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b60048036038101906103169190613f25565b610bff565b005b34801561032957600080fd5b50610332610d63565b60405161033f9190613fe2565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190614062565b610df5565b60405161037c91906140bd565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a791906140d8565b610e13565b005b3480156103ba57600080fd5b506103c3610ed3565b6040516103d09190614164565b60405180910390f35b3480156103e557600080fd5b506103ee610ef7565b6040516103fb919061418e565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190613f25565b610f01565b005b34801561043957600080fd5b50610442610f87565b60405161044f919061418e565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a91906141a9565b610f8d565b60405161048c91906140bd565b60405180910390f35b3480156104a157600080fd5b506104aa611085565b6040516104b7919061420b565b60405180910390f35b3480156104cc57600080fd5b506104d56110a9565b6040516104e29190614242565b60405180910390f35b3480156104f757600080fd5b506105006110c0565b60405161050d919061418e565b60405180910390f35b34801561052257600080fd5b5061052b6110ca565b604051610538919061418e565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190614062565b6110d0565b60405161057591906140bd565b60405180910390f35b34801561058a57600080fd5b5061059361117c565b6040516105a0919061418e565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb91906140d8565b611182565b005b3480156105de57600080fd5b506105f960048036038101906105f49190614289565b611259565b604051610606919061418e565b60405180910390f35b34801561061b57600080fd5b506106246112d9565b604051610631919061418e565b60405180910390f35b34801561064657600080fd5b5061064f6112df565b60405161065c919061420b565b60405180910390f35b34801561067157600080fd5b5061067a611303565b60405161068791906140bd565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190613f25565b611316565b005b3480156106c557600080fd5b506106e060048036038101906106db91906140d8565b61139c565b6040516106ed91906140bd565b60405180910390f35b34801561070257600080fd5b5061071d600480360381019061071891906140d8565b6113f2565b005b34801561072b57600080fd5b5061074660048036038101906107419190613f25565b61168d565b005b34801561075457600080fd5b5061076f600480360381019061076a9190613f25565b611713565b005b34801561077d57600080fd5b50610798600480360381019061079391906140d8565b611799565b6040516107a5919061418e565b60405180910390f35b3480156107ba57600080fd5b506107c3611884565b005b3480156107d157600080fd5b506107da61190c565b6040516107e7919061418e565b60405180910390f35b3480156107fc57600080fd5b50610805611912565b604051610812919061418e565b60405180910390f35b34801561082757600080fd5b50610830611918565b60405161083d919061420b565b60405180910390f35b34801561085257600080fd5b5061086d600480360381019061086891906140d8565b611942565b005b34801561087b57600080fd5b50610884611a02565b6040516108919190613fe2565b60405180910390f35b3480156108a657600080fd5b506108af611a94565b6040516108bc919061418e565b60405180910390f35b3480156108d157600080fd5b506108ec60048036038101906108e79190614062565b611a9e565b6040516108f991906140bd565b60405180910390f35b34801561090e57600080fd5b50610917611b89565b604051610924919061420b565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f9190614062565b611baf565b60405161096191906140bd565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c9190613f25565b611bcd565b005b34801561099f57600080fd5b506109a8611c53565b6040516109b5919061420b565b60405180910390f35b3480156109ca57600080fd5b506109d3611c79565b6040516109e0919061418e565b60405180910390f35b3480156109f557600080fd5b50610a106004803603810190610a0b91906142c9565b611c7f565b005b348015610a1e57600080fd5b50610a27611d4f565b604051610a34919061420b565b60405180910390f35b348015610a4957600080fd5b50610a646004803603810190610a5f91906140d8565b611d75565b604051610a7191906140bd565b60405180910390f35b348015610a8657600080fd5b50610aa16004803603810190610a9c91906140d8565b611dcb565b005b348015610aaf57600080fd5b50610aca6004803603810190610ac591906142f6565b611e8b565b604051610ad7919061418e565b60405180910390f35b348015610aec57600080fd5b50610b076004803603810190610b029190613f25565b611f12565b005b348015610b1557600080fd5b50610b306004803603810190610b2b91906140d8565b611f98565b005b348015610b3e57600080fd5b50610b596004803603810190610b549190613f25565b61206f565b005b348015610b6757600080fd5b50610b826004803603810190610b7d91906142c9565b6120f5565b005b348015610b9057600080fd5b50610bab6004803603810190610ba69190613f25565b6121c4565b005b348015610bb957600080fd5b50610bd46004803603810190610bcf91906140d8565b61224a565b005b348015610be257600080fd5b50610bfd6004803603810190610bf891906140d8565b612341565b005b6000610c09612670565b9050600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f906143a8565b60405180910390fd5b6000610ca383612678565b505050905080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cf391906143f7565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600f54610d4491906143f7565b600f8190555082601054610d58919061442b565b601081905550505050565b606060038054610d729061448e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9e9061448e565b8015610deb5780601f10610dc057610100808354040283529160200191610deb565b820191906000526020600020905b815481529060010190602001808311610dce57829003601f168201915b5050505050905090565b6000610e09610e02612670565b84846126df565b6001905092915050565b610e1b612670565b73ffffffffffffffffffffffffffffffffffffffff16610e39611918565b73ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e869061450b565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600e54905090565b610f09612670565b73ffffffffffffffffffffffffffffffffffffffff16610f27611918565b73ffffffffffffffffffffffffffffffffffffffff1614610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f749061450b565b60405180910390fd5b80601b8190555050565b60175481565b6000610f9a8484846128a8565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe5612670565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c9061459d565b60405180910390fd5b61107985611071612670565b8584036126df565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000dead81565b6000600b60009054906101000a900460ff16905090565b6000601054905090565b60115481565b60006111726110dd612670565b8484600160006110eb612670565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461116d919061442b565b6126df565b6001905092915050565b601b5481565b61118a612670565b73ffffffffffffffffffffffffffffffffffffffff166111a8611918565b73ffffffffffffffffffffffffffffffffffffffff16146111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f59061450b565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600e548311156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790614609565b60405180910390fd5b816112be5760006112b084612678565b5050509050809150506112d3565b60006112c984612678565b5050915050809150505b92915050565b60195481565b7f00000000000000000000000077ea6c9e03f4ffe6cd902226df20c9c547b70c8481565b602060019054906101000a900460ff1681565b61131e612670565b73ffffffffffffffffffffffffffffffffffffffff1661133c611918565b73ffffffffffffffffffffffffffffffffffffffff1614611392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113899061450b565b60405180910390fd5b8060158190555050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6113fa612670565b73ffffffffffffffffffffffffffffffffffffffff16611418611918565b73ffffffffffffffffffffffffffffffffffffffff161461146e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114659061450b565b60405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f290614675565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156115cf5761158b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c5d565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611695612670565b73ffffffffffffffffffffffffffffffffffffffff166116b3611918565b73ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117009061450b565b60405180910390fd5b8060178190555050565b61171b612670565b73ffffffffffffffffffffffffffffffffffffffff16611739611918565b73ffffffffffffffffffffffffffffffffffffffff161461178f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117869061450b565b60405180910390fd5b8060198190555050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561183457600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061187f565b61187c600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c5d565b90505b919050565b61188c612670565b73ffffffffffffffffffffffffffffffffffffffff166118aa611918565b73ffffffffffffffffffffffffffffffffffffffff1614611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f79061450b565b60405180910390fd5b61190a6000612cc4565b565b601d5481565b60135481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61194a612670565b73ffffffffffffffffffffffffffffffffffffffff16611968611918565b73ffffffffffffffffffffffffffffffffffffffff16146119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b59061450b565b60405180910390fd5b80600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060048054611a119061448e565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3d9061448e565b8015611a8a5780601f10611a5f57610100808354040283529160200191611a8a565b820191906000526020600020905b815481529060010190602001808311611a6d57829003601f168201915b5050505050905090565b6000601f54905090565b60008060016000611aad612670565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190614707565b60405180910390fd5b611b7e611b75612670565b858584036126df565b600191505092915050565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611bc3611bbc612670565b84846128a8565b6001905092915050565b611bd5612670565b73ffffffffffffffffffffffffffffffffffffffff16611bf3611918565b73ffffffffffffffffffffffffffffffffffffffff1614611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c409061450b565b60405180910390fd5b8060138190555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b611c87612670565b73ffffffffffffffffffffffffffffffffffffffff16611ca5611918565b73ffffffffffffffffffffffffffffffffffffffff1614611cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf29061450b565b60405180910390fd5b80602060016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15981604051611d4491906140bd565b60405180910390a150565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611dd3612670565b73ffffffffffffffffffffffffffffffffffffffff16611df1611918565b73ffffffffffffffffffffffffffffffffffffffff1614611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e9061450b565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611f1a612670565b73ffffffffffffffffffffffffffffffffffffffff16611f38611918565b73ffffffffffffffffffffffffffffffffffffffff1614611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f859061450b565b60405180910390fd5b8060118190555050565b611fa0612670565b73ffffffffffffffffffffffffffffffffffffffff16611fbe611918565b73ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b9061450b565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612077612670565b73ffffffffffffffffffffffffffffffffffffffff16612095611918565b73ffffffffffffffffffffffffffffffffffffffff16146120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e29061450b565b60405180910390fd5b80601d8190555050565b6120fd612670565b73ffffffffffffffffffffffffffffffffffffffff1661211b611918565b73ffffffffffffffffffffffffffffffffffffffff1614612171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121689061450b565b60405180910390fd5b80156121a5576121816000611c7f565b612189612d8a565b601d54601e8190555061219a610ef7565b601d819055506121c1565b6121af6001611c7f565b6121b7612e43565b601e54601d819055505b50565b6121cc612670565b73ffffffffffffffffffffffffffffffffffffffff166121ea611918565b73ffffffffffffffffffffffffffffffffffffffff1614612240576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122379061450b565b60405180910390fd5b80601f8190555050565b612252612670565b73ffffffffffffffffffffffffffffffffffffffff16612270611918565b73ffffffffffffffffffffffffffffffffffffffff16146122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bd9061450b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232c90614799565b60405180910390fd5b61233e81612cc4565b50565b612349612670565b73ffffffffffffffffffffffffffffffffffffffff16612367611918565b73ffffffffffffffffffffffffffffffffffffffff16146123bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b49061450b565b60405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244090614805565b60405180910390fd5b60005b600a8054905081101561266c578173ffffffffffffffffffffffffffffffffffffffff16600a828154811061248457612483614825565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361265f57600a6001600a805490506124de91906143f7565b815481106124ef576124ee614825565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061252e5761252d614825565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061262557612624614854565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561266c565b808060010191505061244c565b5050565b600033905090565b600080600080600061268986612e7b565b90506000818761269991906143f7565b905060006126a5612eea565b9050600081836126b59190614883565b90506000828a6126c59190614883565b905080828585985098509850985050505050509193509193565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361274e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274590614937565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b4906149c9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161289b919061418e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290e90614a5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297d90614aed565b60405180910390fd5b600081116129c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c090614b7f565b60405180910390fd5b60006129d484611799565b905081811015612a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1090614c11565b60405180910390fd5b612a21611918565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015612a8f5750612a5f611918565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15612ada57601d54821115612ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad090614ca3565b60405180910390fd5b5b612ae5848484612f0e565b6000612af030611799565b90506000601f548210159050602060009054906101000a900460ff16158015612b255750602060019054906101000a900460ff165b8015612b7c57507f00000000000000000000000077ea6c9e03f4ffe6cd902226df20c9c547b70c8473ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612b97578015612b9657601f549150612b9582612f13565b5b5b600060019050600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c3e5750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c4857600090505b612c5487878784612fdf565b50505050505050565b6000600f54821115612ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9b90614d35565b60405180910390fd5b6000612cae612eea565b90508083612cbc9190614d84565b915050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000601354148015612d9e57506000601154145b8015612dac57506000601554145b8015612dba57506000601754145b8015612dc857506000601954145b8015612dd657506000601b54145b612e4157601354601481905550601154601281905550601554601681905550601754601881905550601954601a81905550601b54601c81905550600060138190555060006011819055506000601581905550600060178190555060006019819055506000601b819055505b565b601454601381905550601254601181905550601654601581905550601854601781905550601a54601981905550601c54601b81905550565b600080601b54601954601754601554601154601354612e9a919061442b565b612ea4919061442b565b612eae919061442b565b612eb8919061442b565b612ec2919061442b565b9050600060648285612ed49190614883565b612ede9190614d84565b90508092505050919050565b6000806000612ef761300c565b915091508082612f079190614d84565b9250505090565b505050565b6001602060006101000a81548160ff02191690831515021790555060004790506000600283612f429190614d84565b905060008184612f5291906143f7565b9050612f688185612f6391906143f7565b6132a4565b60008347612f7691906143f7565b9050612f82828261351a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561838284604051612fb593929190614db5565b60405180910390a1505050506000602060006101000a81548160ff02191690831515021790555050565b80612fed57612fec612d8a565b5b612ff88484846135fb565b8061300657613005612e43565b5b50505050565b6000806000600f5490506000600e54905060005b600a8054905081101561326e578260066000600a848154811061304657613045614825565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061313457508160076000600a84815481106130cc576130cb614825565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561314b57600f54600e54945094505050506132a0565b60066000600a838154811061316357613162614825565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836131d491906143f7565b925060076000600a83815481106131ee576131ed614825565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548261325f91906143f7565b91508080600101915050613020565b50600e54600f5461327f9190614d84565b82101561329757600f54600e549350935050506132a0565b81819350935050505b9091565b6000600267ffffffffffffffff8111156132c1576132c0614dec565b5b6040519080825280602002602001820160405280156132ef5781602001602082028036833780820191505090505b509050308160008151811061330757613306614825565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133d09190614e30565b816001815181106133e4576133e3614825565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613449307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846126df565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016134ab959493929190614f56565b600060405180830381600087803b1580156134c557600080fd5b505af11580156134d9573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a7828260405161350e929190614fb0565b60405180910390a15050565b613545307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846126df565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061358f611918565b426040518863ffffffff1660e01b81526004016135b196959493929190614fe0565b60606040518083038185885af11580156135cf573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906135f49190615056565b5050505050565b60008060008061360a85612678565b935093509350935083600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461365d91906143f7565b600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555082600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136eb919061442b565b600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137d15750600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138695784600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461382191906143f7565b600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b6a565b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561390c5750600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139a45781600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461395c919061442b565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b69565b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a465750600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613b685784600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a9691906143f7565b600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b24919061442b565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b613b7987868360135430613c8f565b613b838582613dc1565b613b8e878683613e1d565b613bbf878683601754600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16613c8f565b613bf0878683601954600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16613c8f565b613c21878683601b54600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16613c8f565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c7e919061418e565b60405180910390a350505050505050565b600060648386613c9f9190614883565b613ca99190614d84565b90506000811115613db95760008482613cc29190614883565b905080600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d0f919061442b565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613daf919061418e565b60405180910390a3505b505050505050565b6000606460115484613dd39190614883565b613ddd9190614d84565b905060008282613ded9190614883565b905080600f54613dfd91906143f7565b600f8190555081601054613e11919061442b565b60108190555050505050565b6000606460155484613e2f9190614883565b613e399190614d84565b90506000811115613ee45760008282613e529190614883565b905081600e54613e6291906143f7565b600e8190555080600f54613e7691906143f7565b600f81905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613eda919061418e565b60405180910390a3505b50505050565b600080fd5b6000819050919050565b613f0281613eef565b8114613f0d57600080fd5b50565b600081359050613f1f81613ef9565b92915050565b600060208284031215613f3b57613f3a613eea565b5b6000613f4984828501613f10565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f8c578082015181840152602081019050613f71565b60008484015250505050565b6000601f19601f8301169050919050565b6000613fb482613f52565b613fbe8185613f5d565b9350613fce818560208601613f6e565b613fd781613f98565b840191505092915050565b60006020820190508181036000830152613ffc8184613fa9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061402f82614004565b9050919050565b61403f81614024565b811461404a57600080fd5b50565b60008135905061405c81614036565b92915050565b6000806040838503121561407957614078613eea565b5b60006140878582860161404d565b925050602061409885828601613f10565b9150509250929050565b60008115159050919050565b6140b7816140a2565b82525050565b60006020820190506140d260008301846140ae565b92915050565b6000602082840312156140ee576140ed613eea565b5b60006140fc8482850161404d565b91505092915050565b6000819050919050565b600061412a61412561412084614004565b614105565b614004565b9050919050565b600061413c8261410f565b9050919050565b600061414e82614131565b9050919050565b61415e81614143565b82525050565b60006020820190506141796000830184614155565b92915050565b61418881613eef565b82525050565b60006020820190506141a3600083018461417f565b92915050565b6000806000606084860312156141c2576141c1613eea565b5b60006141d08682870161404d565b93505060206141e18682870161404d565b92505060406141f286828701613f10565b9150509250925092565b61420581614024565b82525050565b600060208201905061422060008301846141fc565b92915050565b600060ff82169050919050565b61423c81614226565b82525050565b60006020820190506142576000830184614233565b92915050565b614266816140a2565b811461427157600080fd5b50565b6000813590506142838161425d565b92915050565b600080604083850312156142a05761429f613eea565b5b60006142ae85828601613f10565b92505060206142bf85828601614274565b9150509250929050565b6000602082840312156142df576142de613eea565b5b60006142ed84828501614274565b91505092915050565b6000806040838503121561430d5761430c613eea565b5b600061431b8582860161404d565b925050602061432c8582860161404d565b9150509250929050565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b6000614392602c83613f5d565b915061439d82614336565b604082019050919050565b600060208201905081810360008301526143c181614385565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061440282613eef565b915061440d83613eef565b9250828203905081811115614425576144246143c8565b5b92915050565b600061443682613eef565b915061444183613eef565b9250828201905080821115614459576144586143c8565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144a657607f821691505b6020821081036144b9576144b861445f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144f5602083613f5d565b9150614500826144bf565b602082019050919050565b60006020820190508181036000830152614524816144e8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614587602883613f5d565b91506145928261452b565b604082019050919050565b600060208201905081810360008301526145b68161457a565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b60006145f3601f83613f5d565b91506145fe826145bd565b602082019050919050565b60006020820190508181036000830152614622816145e6565b9050919050565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b600061465f601b83613f5d565b915061466a82614629565b602082019050919050565b6000602082019050818103600083015261468e81614652565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146f1602583613f5d565b91506146fc82614695565b604082019050919050565b60006020820190508181036000830152614720816146e4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614783602683613f5d565b915061478e82614727565b604082019050919050565b600060208201905081810360008301526147b281614776565b9050919050565b7f4163636f756e7420697320616c726561647920696e636c756465640000000000600082015250565b60006147ef601b83613f5d565b91506147fa826147b9565b602082019050919050565b6000602082019050818103600083015261481e816147e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600061488e82613eef565b915061489983613eef565b92508282026148a781613eef565b915082820484148315176148be576148bd6143c8565b5b5092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614921602483613f5d565b915061492c826148c5565b604082019050919050565b6000602082019050818103600083015261495081614914565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149b3602283613f5d565b91506149be82614957565b604082019050919050565b600060208201905081810360008301526149e2816149a6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a45602583613f5d565b9150614a50826149e9565b604082019050919050565b60006020820190508181036000830152614a7481614a38565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ad7602383613f5d565b9150614ae282614a7b565b604082019050919050565b60006020820190508181036000830152614b0681614aca565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000614b69602983613f5d565b9150614b7482614b0d565b604082019050919050565b60006020820190508181036000830152614b9881614b5c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614bfb602683613f5d565b9150614c0682614b9f565b604082019050919050565b60006020820190508181036000830152614c2a81614bee565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000614c8d602883613f5d565b9150614c9882614c31565b604082019050919050565b60006020820190508181036000830152614cbc81614c80565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b6000614d1f602a83613f5d565b9150614d2a82614cc3565b604082019050919050565b60006020820190508181036000830152614d4e81614d12565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d8f82613eef565b9150614d9a83613eef565b925082614daa57614da9614d55565b5b828204905092915050565b6000606082019050614dca600083018661417f565b614dd7602083018561417f565b614de4604083018461417f565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050614e2a81614036565b92915050565b600060208284031215614e4657614e45613eea565b5b6000614e5484828501614e1b565b91505092915050565b6000819050919050565b6000614e82614e7d614e7884614e5d565b614105565b613eef565b9050919050565b614e9281614e67565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ecd81614024565b82525050565b6000614edf8383614ec4565b60208301905092915050565b6000602082019050919050565b6000614f0382614e98565b614f0d8185614ea3565b9350614f1883614eb4565b8060005b83811015614f49578151614f308882614ed3565b9750614f3b83614eeb565b925050600181019050614f1c565b5085935050505092915050565b600060a082019050614f6b600083018861417f565b614f786020830187614e89565b8181036040830152614f8a8186614ef8565b9050614f9960608301856141fc565b614fa6608083018461417f565b9695505050505050565b6000604082019050614fc5600083018561417f565b8181036020830152614fd78184614ef8565b90509392505050565b600060c082019050614ff560008301896141fc565b615002602083018861417f565b61500f6040830187614e89565b61501c6060830186614e89565b61502960808301856141fc565b61503660a083018461417f565b979650505050505050565b60008151905061505081613ef9565b92915050565b60008060006060848603121561506f5761506e613eea565b5b600061507d86828701615041565b935050602061508e86828701615041565b925050604061509f86828701615041565b915050925092509256fea2646970667358221220924e0e8020c047a9cd447fb82dd3fc0d0a0a8f637868ee0921d56c6143e316e564736f6c63430008190033

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

0000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000713fb300000000000000000000000000000000000000000000000000000000000000000300000000000000000000000072f0f38021fafcaa61f130eeefb720bf3bcfb2a2000000000000000000000000000000000000000000000000000000000000dead000000000000000000000000000000000000000000000000000000000000dead0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000008a6b88978e1aba2b009baa8d270c2dc0d8f7990d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b444f47452047414c41585900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044458475900000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): DOGE GALAXY
Arg [1] : symbol_ (string): DXGY
Arg [2] : totalSupply_ (uint256): 1900000000
Arg [3] : decimals_ (uint8): 3
Arg [4] : addr_ (address[6]): 0x72f0f38021FAfCaa61f130EEEfB720BF3bCFb2a2,0x000000000000000000000000000000000000dEaD,0x000000000000000000000000000000000000dEaD,0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D,0x8A6B88978e1ABA2B009Baa8D270C2DC0D8f7990d,0x0000000000000000000000000000000000000000
Arg [5] : value_ (uint256[6]): 1,0,0,3,2,0

-----Encoded View---------------
20 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [2] : 00000000000000000000000000000000000000000000000000000000713fb300
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 00000000000000000000000072f0f38021fafcaa61f130eeefb720bf3bcfb2a2
Arg [5] : 000000000000000000000000000000000000000000000000000000000000dead
Arg [6] : 000000000000000000000000000000000000000000000000000000000000dead
Arg [7] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [8] : 0000000000000000000000008a6b88978e1aba2b009baa8d270c2dc0d8f7990d
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [16] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [17] : 444f47452047414c415859000000000000000000000000000000000000000000
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [19] : 4458475900000000000000000000000000000000000000000000000000000000


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.