ETH Price: $3,293.18 (+2.40%)
 

Overview

Max Total Supply

100,000,000 CRATE

Holders

106

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 CRATE

Value
$0.00
0x7ab690011cdc6e6a7dabd2ee3d9765cbd8c82f49
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:
Crate

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 11 : Crate.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.20;

import {ERC20, IERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import {IUniswapV2Pair} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";

contract Crate is IERC20Metadata, ERC20, Ownable {
    uint public maxTxAmount = 20; // 2%
    uint public maxWalletAmount = 20; // 2%
    // 5% for buy and sell
    uint public TaxBuy = 50; // 5%
    uint public TaxSell = 400; // 40%
    uint public GreedTax = 400; // 40%

    address public admin;
    mapping(address => bool) public noFeeFor;
    mapping(address => bool) public noTax;
    IUniswapV2Router02 public router;
    address public uniswapV2Pair;
    bool private _progressSwap = false;

    enum Phase {
        NoGreedAllowed,
        NormalTrade
    }
    Phase public currentPhase = Phase.NoGreedAllowed;
    mapping(address => bool) public isGreedWallet;

    error TransferExceedsMaxTx();
    error TransferExceedsMaxWallet();
    error NotOwnerOrOperations();
    error ExceedsMaxTxAmount(uint amount, uint maxTxAmount);
    error InvalidAddress(address addr);
    error CannotSetMaxTxAmountToMoreThan10Percent();
    error CannotSetMaxTxAmountToLessThanHalfPercent();
    error CallFailed();
    error InvalidReceiver(address);

    event SetOperationsWallet(address _newWallet, bool _status);
    event WhitelistAddress(address indexed addy, bool changer);
    event WithdrawETH(uint amount);
    event WithdrawTokens(address token, uint amount);
    event MaxWalletSet(uint from, uint to);
    event MaxTxAmountChange(uint from, uint to);
    event SwapAndLiquify(uint tokensSwapped, uint ethReceived);
    event PhaseChange(Phase from, Phase to);
    modifier onlyAdmin() {
        if (owner() != _msgSender() && admin != _msgSender()) {
            revert NotOwnerOrOperations();
        }
        _;
    }

    constructor(
        string memory _symbol,
        string memory _name,
        uint _totalSupply,
        address _admin,
        address _router
    ) ERC20(_name, _symbol) Ownable(_admin) {
        router = IUniswapV2Router02(_router);
        admin = _admin;

        noTax[_admin] = true;
        noTax[address(this)] = true;

        noFeeFor[_admin] = true;
        noFeeFor[address(router)] = true;
        noFeeFor[address(this)] = true;

        _mint(_admin, _totalSupply * 10 ** decimals());
        uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            router.WETH()
        );
    }

    function _update(address from, address to, uint amount) internal override {
        if (to == address(0)) {
            revert InvalidReceiver(address(0));
        }

        if (!noTax[from] && !noTax[to]) {
            if (to != uniswapV2Pair) {
                if (amount > getMaxTxAmount()) {
                    revert TransferExceedsMaxTx();
                }

                if ((amount + balanceOf(to)) > getMaxWalletAmount()) {
                    revert TransferExceedsMaxWallet();
                }
            }
        }

        uint transferAmount = amount;
        if (!noFeeFor[from] && !noFeeFor[to]) {
            if ((from == uniswapV2Pair || to == uniswapV2Pair)) {
                if (amount > getMaxTxAmount()) {
                    revert ExceedsMaxTxAmount(amount, getMaxTxAmount());
                }
                // Buy

                if (
                    TaxBuy > 0 &&
                    uniswapV2Pair == from &&
                    !noTax[to] &&
                    from != address(this)
                ) {
                    if (currentPhase == Phase.NoGreedAllowed)
                        isGreedWallet[to] = true;
                    uint feeTokens = (amount * TaxBuy) / 1_000;
                    super._update(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }

                // Sell
                if (
                    uniswapV2Pair == to &&
                    !noTax[from] &&
                    to != address(this) &&
                    !_progressSwap
                ) {
                    uint taxSell = TaxSell;
                    _progressSwap = true;
                    liquify();
                    _progressSwap = false;
                    if (isGreedWallet[from] == true) taxSell = GreedTax;
                    uint feeTokens = (amount * taxSell) / 1_000;
                    super._update(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }
            } else {
                if (isGreedWallet[from] == true && uniswapV2Pair != to) {
                    uint256 feeTokens = (amount * GreedTax) / 1_000;
                    super._update(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }
            }
        }
        super._update(from, to, transferAmount);
    }

    function liquify() internal {
        uint balance = balanceOf(address(this));
        if (balance == 0) return;
        _swap(balance, 0);
    }

    function _swap(uint amountIn, uint amountOut) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        IERC20(address(this)).approve(address(router), type(uint).max);
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amountIn,
            amountOut,
            path,
            address(this),
            block.timestamp + 10
        );
        emit SwapAndLiquify(amountIn, address(this).balance);
    }

    function setNoFeeTo(address _newWallet, bool _status) external onlyAdmin {
        noTax[_newWallet] = _status;
        noFeeFor[_newWallet] = _status;
        emit SetOperationsWallet(_newWallet, _status);
    }

    function recoverAssets(address token) external onlyAdmin {
        uint amount = IERC20(token).balanceOf(address(this));
        IERC20(token).transfer(admin, amount);
        emit WithdrawTokens(token, amount);
    }

    function recoverETH() external onlyAdmin {
        uint amount = address(this).balance;
        (bool success, ) = address(admin).call{value: amount}("");
        if (!success) revert CallFailed();
        emit WithdrawETH(amount);
    }

    function setNoTax(address addy, bool changer) external onlyAdmin {
        noTax[addy] = changer;
        emit WhitelistAddress(addy, changer);
    }

    function setTaxBuy(uint _taxBuy) external onlyAdmin {
        if (_taxBuy > 100) revert("Tax cannot exceed 10%");
        TaxBuy = _taxBuy;
    }

    function setTaxSell(uint _taxSell) external onlyAdmin {
        if (_taxSell > 100) revert("Tax cannot exceed 10%");
        TaxSell = _taxSell;
    }

    function setAdmin(address _newWallet) external onlyAdmin {
        admin = _newWallet;
    }

    function itVexesMe() external onlyAdmin {
        currentPhase = Phase.NormalTrade;
        TaxSell = 50; // 5%
        emit PhaseChange(Phase.NoGreedAllowed, Phase.NormalTrade);
    }

    receive() external payable {}

    function getMaxTxAmount() public view returns (uint256) {
        return (totalSupply() * maxTxAmount) / 100;
    }

    function getMaxWalletAmount() public view returns (uint256) {
        return (totalSupply() * maxWalletAmount) / 100;
    }
}

File 2 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

File 3 of 11 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 4 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 5 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

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

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

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

File 6 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

File 7 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

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

File 8 of 11 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

File 9 of 11 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 10 of 11 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

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

import './IUniswapV2Router01.sol';

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_admin","type":"address"},{"internalType":"address","name":"_router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CallFailed","type":"error"},{"inputs":[],"name":"CannotSetMaxTxAmountToLessThanHalfPercent","type":"error"},{"inputs":[],"name":"CannotSetMaxTxAmountToMoreThan10Percent","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"ExceedsMaxTxAmount","type":"error"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"InvalidAddress","type":"error"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"InvalidReceiver","type":"error"},{"inputs":[],"name":"NotOwnerOrOperations","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TransferExceedsMaxTx","type":"error"},{"inputs":[],"name":"TransferExceedsMaxWallet","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"from","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"to","type":"uint256"}],"name":"MaxTxAmountChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"from","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"to","type":"uint256"}],"name":"MaxWalletSet","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":"enum Crate.Phase","name":"from","type":"uint8"},{"indexed":false,"internalType":"enum Crate.Phase","name":"to","type":"uint8"}],"name":"PhaseChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_newWallet","type":"address"},{"indexed":false,"internalType":"bool","name":"_status","type":"bool"}],"name":"SetOperationsWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addy","type":"address"},{"indexed":false,"internalType":"bool","name":"changer","type":"bool"}],"name":"WhitelistAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawTokens","type":"event"},{"inputs":[],"name":"GreedTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TaxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TaxSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPhase","outputs":[{"internalType":"enum Crate.Phase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isGreedWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"itVexesMe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"noFeeFor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"noTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"recoverAssets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"recoverETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setNoFeeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"bool","name":"changer","type":"bool"}],"name":"setNoTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxBuy","type":"uint256"}],"name":"setTaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxSell","type":"uint256"}],"name":"setTaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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"},{"stateMutability":"payable","type":"receive"}]

6080604052601460065560146007556032600855610190600955610190600a556000600f60146101000a81548160ff0219169083151502179055506000600f60156101000a81548160ff021916908360018111156200006357620000626200166b565b5b02179055503480156200007557600080fd5b50604051620058523803806200585283398181016040528101906200009b9190620018cd565b8184868160039081620000af919062001bd4565b508060049081620000c1919062001bd4565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001395760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000130919062001ccc565b60405180910390fd5b6200014a81620005d760201b60201c565b5080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003e382620003bc6200069d60201b60201c565b600a620003ca919062001e79565b85620003d7919062001eca565b620006a660201b60201c565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000451573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000477919062001f15565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000501573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000527919062001f15565b6040518363ffffffff1660e01b81526004016200054692919062001f47565b6020604051808303816000875af115801562000566573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200058c919062001f15565b600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050620022e6565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200071b5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000712919062001ccc565b60405180910390fd5b6200072f600083836200073360201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007a85760006040517f9cfea5830000000000000000000000000000000000000000000000000000000081526004016200079f919062001ccc565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156200084d5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156200095c57600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200095b57620008b96200100f60201b60201c565b811115620008f3576040517f214d5d2400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620009036200104360201b60201c565b62000914836200107760201b60201c565b8262000921919062001f74565b11156200095a576040517f3d531c1b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6000819050600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801562000a065750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000ff657600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148062000ab65750600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1562000ef75762000acc6200100f60201b60201c565b82111562000b24578162000ae56200100f60201b60201c565b6040517f22a8406a00000000000000000000000000000000000000000000000000000000815260040162000b1b92919062001fc0565b60405180910390fd5b600060085411801562000b8457508373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b801562000bdb5750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801562000c1457503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1562000cfd576000600181111562000c315762000c306200166b565b5b600f60159054906101000a900460ff16600181111562000c565762000c556200166b565b5b0362000cb5576001601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60006103e86008548462000cca919062001eca565b62000cd691906200201c565b905062000ceb853083620010bf60201b60201c565b808362000cf9919062002054565b9150505b8273ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801562000da55750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801562000dde57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801562000df85750600f60149054906101000a900460ff16155b1562000ef157600060095490506001600f60146101000a81548160ff02191690831515021790555062000e30620012ef60201b60201c565b6000600f60146101000a81548160ff02191690831515021790555060011515601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000eaa57600a5490505b60006103e8828562000ebd919062001eca565b62000ec991906200201c565b905062000ede863083620010bf60201b60201c565b808462000eec919062002054565b925050505b62000ff5565b60011515601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801562000fa657508273ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1562000ff45760006103e8600a548462000fc1919062001eca565b62000fcd91906200201c565b905062000fe2853083620010bf60201b60201c565b808362000ff0919062002054565b9150505b5b5b62001009848483620010bf60201b60201c565b50505050565b60006064600654620010266200132b60201b60201c565b62001032919062001eca565b6200103e91906200201c565b905090565b600060646007546200105a6200132b60201b60201c565b62001066919062001eca565b6200107291906200201c565b905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200111557806002600082825462001108919062001f74565b92505081905550620011eb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620011a4578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200119b939291906200208f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001236578060026000828254039250508190555062001283565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620012e29190620020cc565b60405180910390a3505050565b600062001302306200107760201b60201c565b90506000810362001314575062001329565b620013278160006200133560201b60201c565b505b565b6000600254905090565b6000600267ffffffffffffffff811115620013555762001354620016c9565b5b604051908082528060200260200182016040528015620013845781602001602082028036833780820191505090505b50905030816000815181106200139f576200139e620020e9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001447573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200146d919062001f15565b81600181518110620014845762001483620020e9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200153d92919062002118565b6020604051808303816000875af11580156200155d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001583919062002182565b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94784848430600a42620015d5919062001f74565b6040518663ffffffff1660e01b8152600401620015f795949392919062002282565b600060405180830381600087803b1580156200161257600080fd5b505af115801562001627573d6000803e3d6000fd5b505050507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148683476040516200165e92919062001fc0565b60405180910390a1505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200170382620016b8565b810181811067ffffffffffffffff82111715620017255762001724620016c9565b5b80604052505050565b60006200173a6200169a565b9050620017488282620016f8565b919050565b600067ffffffffffffffff8211156200176b576200176a620016c9565b5b6200177682620016b8565b9050602081019050919050565b60005b83811015620017a357808201518184015260208101905062001786565b60008484015250505050565b6000620017c6620017c0846200174d565b6200172e565b905082815260208101848484011115620017e557620017e4620016b3565b5b620017f284828562001783565b509392505050565b600082601f830112620018125762001811620016ae565b5b815162001824848260208601620017af565b91505092915050565b6000819050919050565b62001842816200182d565b81146200184e57600080fd5b50565b600081519050620018628162001837565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620018958262001868565b9050919050565b620018a78162001888565b8114620018b357600080fd5b50565b600081519050620018c7816200189c565b92915050565b600080600080600060a08688031215620018ec57620018eb620016a4565b5b600086015167ffffffffffffffff8111156200190d576200190c620016a9565b5b6200191b88828901620017fa565b955050602086015167ffffffffffffffff8111156200193f576200193e620016a9565b5b6200194d88828901620017fa565b9450506040620019608882890162001851565b93505060606200197388828901620018b6565b92505060806200198688828901620018b6565b9150509295509295909350565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620019e657607f821691505b602082108103620019fc57620019fb6200199e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262001a667fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001a27565b62001a72868362001a27565b95508019841693508086168417925050509392505050565b6000819050919050565b600062001ab562001aaf62001aa9846200182d565b62001a8a565b6200182d565b9050919050565b6000819050919050565b62001ad18362001a94565b62001ae962001ae08262001abc565b84845462001a34565b825550505050565b600090565b62001b0062001af1565b62001b0d81848462001ac6565b505050565b5b8181101562001b355762001b2960008262001af6565b60018101905062001b13565b5050565b601f82111562001b845762001b4e8162001a02565b62001b598462001a17565b8101602085101562001b69578190505b62001b8162001b788562001a17565b83018262001b12565b50505b505050565b600082821c905092915050565b600062001ba96000198460080262001b89565b1980831691505092915050565b600062001bc4838362001b96565b9150826002028217905092915050565b62001bdf8262001993565b67ffffffffffffffff81111562001bfb5762001bfa620016c9565b5b62001c078254620019cd565b62001c1482828562001b39565b600060209050601f83116001811462001c4c576000841562001c37578287015190505b62001c43858262001bb6565b86555062001cb3565b601f19841662001c5c8662001a02565b60005b8281101562001c865784890151825560018201915060208501945060208101905062001c5f565b8683101562001ca6578489015162001ca2601f89168262001b96565b8355505b6001600288020188555050505b505050505050565b62001cc68162001888565b82525050565b600060208201905062001ce3600083018462001cbb565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562001d775780860481111562001d4f5762001d4e62001ce9565b5b600185161562001d5f5780820291505b808102905062001d6f8562001d18565b945062001d2f565b94509492505050565b60008262001d92576001905062001e65565b8162001da2576000905062001e65565b816001811462001dbb576002811462001dc65762001dfc565b600191505062001e65565b60ff84111562001ddb5762001dda62001ce9565b5b8360020a91508482111562001df55762001df462001ce9565b5b5062001e65565b5060208310610133831016604e8410600b841016171562001e365782820a90508381111562001e305762001e2f62001ce9565b5b62001e65565b62001e45848484600162001d25565b9250905081840481111562001e5f5762001e5e62001ce9565b5b81810290505b9392505050565b600060ff82169050919050565b600062001e86826200182d565b915062001e938362001e6c565b925062001ec27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001d80565b905092915050565b600062001ed7826200182d565b915062001ee4836200182d565b925082820262001ef4816200182d565b9150828204841483151762001f0e5762001f0d62001ce9565b5b5092915050565b60006020828403121562001f2e5762001f2d620016a4565b5b600062001f3e84828501620018b6565b91505092915050565b600060408201905062001f5e600083018562001cbb565b62001f6d602083018462001cbb565b9392505050565b600062001f81826200182d565b915062001f8e836200182d565b925082820190508082111562001fa95762001fa862001ce9565b5b92915050565b62001fba816200182d565b82525050565b600060408201905062001fd7600083018562001faf565b62001fe6602083018462001faf565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062002029826200182d565b915062002036836200182d565b92508262002049576200204862001fed565b5b828204905092915050565b600062002061826200182d565b91506200206e836200182d565b925082820390508181111562002089576200208862001ce9565b5b92915050565b6000606082019050620020a6600083018662001cbb565b620020b5602083018562001faf565b620020c4604083018462001faf565b949350505050565b6000602082019050620020e3600083018462001faf565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006040820190506200212f600083018562001cbb565b6200213e602083018462001faf565b9392505050565b60008115159050919050565b6200215c8162002145565b81146200216857600080fd5b50565b6000815190506200217c8162002151565b92915050565b6000602082840312156200219b576200219a620016a4565b5b6000620021ab848285016200216b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b620021eb8162001888565b82525050565b6000620021ff8383620021e0565b60208301905092915050565b6000602082019050919050565b60006200222582620021b4565b620022318185620021bf565b93506200223e83620021d0565b8060005b8381101562002275578151620022598882620021f1565b975062002266836200220b565b92505060018101905062002242565b5085935050505092915050565b600060a08201905062002299600083018862001faf565b620022a8602083018762001faf565b8181036040830152620022bc818662002218565b9050620022cd606083018562001cbb565b620022dc608083018462001faf565b9695505050505050565b61355c80620022f66000396000f3fe6080604052600436106101fd5760003560e01c8063715018a61161010d578063aa4bde28116100a0578063dd62ed3e1161006f578063dd62ed3e1461070c578063f2fde38b14610749578063f851a44014610772578063f887ea401461079d578063fa8ce593146107c857610204565b8063aa4bde2814610664578063b301274b1461068f578063d239fa5d146106cc578063d71958b3146106e357610204565b8063922110e5116100dc578063922110e5146105a857806395d89b41146105d3578063a42fdb0f146105fe578063a9059cbb1461062757610204565b8063715018a61461051257806381720fcc146105295780638c0b5e22146105525780638da5cb5b1461057d57610204565b80632f507df7116101905780634a178f9a1161015f5780634a178f9a1461042d5780634beac072146104585780636d8b052714610481578063704b6c02146104ac57806370a08231146104d557610204565b80632f507df714610383578063313ce567146103ac578063433805ae146103d757806349bd5a5e1461040257610204565b806309c95a1b116101cc57806309c95a1b146102b3578063151ebae6146102de57806318160ddd1461031b57806323b872dd1461034657610204565b8063055ad42e146102095780630614117a1461023457806306fdde031461024b578063095ea7b31461027657610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e610805565b60405161022b9190612b8a565b60405180910390f35b34801561024057600080fd5b50610249610818565b005b34801561025757600080fd5b506102606109f3565b60405161026d9190612c35565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190612cf0565b610a85565b6040516102aa9190612d4b565b60405180910390f35b3480156102bf57600080fd5b506102c8610aa8565b6040516102d59190612d75565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190612d90565b610ad0565b6040516103129190612d4b565b60405180910390f35b34801561032757600080fd5b50610330610af0565b60405161033d9190612d75565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190612dbd565b610afa565b60405161037a9190612d4b565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190612e3c565b610b29565b005b3480156103b857600080fd5b506103c1610ca8565b6040516103ce9190612e98565b60405180910390f35b3480156103e357600080fd5b506103ec610cb1565b6040516103f99190612d75565b60405180910390f35b34801561040e57600080fd5b50610417610cb7565b6040516104249190612ec2565b60405180910390f35b34801561043957600080fd5b50610442610cdd565b60405161044f9190612d75565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612e3c565b610ce3565b005b34801561048d57600080fd5b50610496610ea4565b6040516104a39190612d75565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce9190612d90565b610ecc565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612d90565b610fe6565b6040516105099190612d75565b60405180910390f35b34801561051e57600080fd5b5061052761102e565b005b34801561053557600080fd5b50610550600480360381019061054b9190612d90565b611042565b005b34801561055e57600080fd5b50610567611274565b6040516105749190612d75565b60405180910390f35b34801561058957600080fd5b5061059261127a565b60405161059f9190612ec2565b60405180910390f35b3480156105b457600080fd5b506105bd6112a4565b6040516105ca9190612d75565b60405180910390f35b3480156105df57600080fd5b506105e86112aa565b6040516105f59190612c35565b60405180910390f35b34801561060a57600080fd5b5061062560048036038101906106209190612edd565b61133c565b005b34801561063357600080fd5b5061064e60048036038101906106499190612cf0565b611460565b60405161065b9190612d4b565b60405180910390f35b34801561067057600080fd5b50610679611483565b6040516106869190612d75565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b19190612d90565b611489565b6040516106c39190612d4b565b60405180910390f35b3480156106d857600080fd5b506106e16114a9565b005b3480156106ef57600080fd5b5061070a60048036038101906107059190612edd565b6115ef565b005b34801561071857600080fd5b50610733600480360381019061072e9190612f0a565b611713565b6040516107409190612d75565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190612d90565b61179a565b005b34801561077e57600080fd5b50610787611820565b6040516107949190612ec2565b60405180910390f35b3480156107a957600080fd5b506107b2611846565b6040516107bf9190612fa9565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190612d90565b61186c565b6040516107fc9190612d4b565b60405180910390f35b600f60159054906101000a900460ff1681565b61082061188c565b73ffffffffffffffffffffffffffffffffffffffff1661083e61127a565b73ffffffffffffffffffffffffffffffffffffffff16141580156108b7575061086561188c565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156108ee576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60004790506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161093b90612ff5565b60006040518083038185875af1925050503d8060008114610978576040519150601f19603f3d011682016040523d82523d6000602084013e61097d565b606091505b50509050806109b8576040517f3204506f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f94effa14ea3a1ef396fa2fd829336d1597f1d76b548c26bfa2332869706638af826040516109e79190612d75565b60405180910390a15050565b606060038054610a0290613039565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2e90613039565b8015610a7b5780601f10610a5057610100808354040283529160200191610a7b565b820191906000526020600020905b815481529060010190602001808311610a5e57829003601f168201915b5050505050905090565b600080610a9061188c565b9050610a9d818585611894565b600191505092915050565b60006064600754610ab7610af0565b610ac19190613099565b610acb919061310a565b905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b600080610b0561188c565b9050610b128582856118a6565b610b1d85858561193a565b60019150509392505050565b610b3161188c565b73ffffffffffffffffffffffffffffffffffffffff16610b4f61127a565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bc85750610b7661188c565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610bff576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f33e0bf3ce98fac4118d5a0a8fe49e83b6acdfdef32871c9eca20e1528d7701ba82604051610c9c9190612d4b565b60405180910390a25050565b60006012905090565b60095481565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b610ceb61188c565b73ffffffffffffffffffffffffffffffffffffffff16610d0961127a565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d825750610d3061188c565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610db9576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f88b6cb060cc9fbebf4f751c0775113faa373d0f0a39d623a9596b17e481ea7498282604051610e9892919061313b565b60405180910390a15050565b60006064600654610eb3610af0565b610ebd9190613099565b610ec7919061310a565b905090565b610ed461188c565b73ffffffffffffffffffffffffffffffffffffffff16610ef261127a565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f6b5750610f1961188c565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610fa2576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611036611a2e565b6110406000611ab5565b565b61104a61188c565b73ffffffffffffffffffffffffffffffffffffffff1661106861127a565b73ffffffffffffffffffffffffffffffffffffffff16141580156110e1575061108f61188c565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611118576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111539190612ec2565b602060405180830381865afa158015611170573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111949190613179565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b81526004016111f39291906131a6565b6020604051808303816000875af1158015611212573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123691906131e4565b507f680f2e4f4032ebf1774e8cdbaddcb1b617a5a606411c8ca96257ada338d3833c82826040516112689291906131a6565b60405180910390a15050565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b6060600480546112b990613039565b80601f01602080910402602001604051908101604052809291908181526020018280546112e590613039565b80156113325780601f1061130757610100808354040283529160200191611332565b820191906000526020600020905b81548152906001019060200180831161131557829003601f168201915b5050505050905090565b61134461188c565b73ffffffffffffffffffffffffffffffffffffffff1661136261127a565b73ffffffffffffffffffffffffffffffffffffffff16141580156113db575061138961188c565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611412576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6064811115611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d9061325d565b60405180910390fd5b8060098190555050565b60008061146b61188c565b905061147881858561193a565b600191505092915050565b60075481565b60106020528060005260406000206000915054906101000a900460ff1681565b6114b161188c565b73ffffffffffffffffffffffffffffffffffffffff166114cf61127a565b73ffffffffffffffffffffffffffffffffffffffff161415801561154857506114f661188c565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561157f576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600f60156101000a81548160ff021916908360018111156115a5576115a4612b13565b5b021790555060326009819055507f5e45bf0703fe855c9fa7c44122b9f47ad1075a0cc5dc8ae88903470067cba7e5600060016040516115e592919061327d565b60405180910390a1565b6115f761188c565b73ffffffffffffffffffffffffffffffffffffffff1661161561127a565b73ffffffffffffffffffffffffffffffffffffffff161415801561168e575061163c61188c565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156116c5576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6064811115611709576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117009061325d565b60405180910390fd5b8060088190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6117a2611a2e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118145760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161180b9190612ec2565b60405180910390fd5b61181d81611ab5565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c6020528060005260406000206000915054906101000a900460ff1681565b600033905090565b6118a18383836001611b7b565b505050565b60006118b28484611713565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119345781811015611924578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161191b939291906132a6565b60405180910390fd5b61193384848484036000611b7b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119ac5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016119a39190612ec2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1e5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611a159190612ec2565b60405180910390fd5b611a29838383611d52565b505050565b611a3661188c565b73ffffffffffffffffffffffffffffffffffffffff16611a5461127a565b73ffffffffffffffffffffffffffffffffffffffff1614611ab357611a7761188c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611aaa9190612ec2565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611bed5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611be49190612ec2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c5f5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611c569190612ec2565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611d4c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611d439190612d75565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dc45760006040517f9cfea583000000000000000000000000000000000000000000000000000000008152600401611dbb9190612ec2565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611e685750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f5957600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611f5857611eca610ea4565b811115611f03576040517f214d5d2400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f0b610aa8565b611f1483610fe6565b82611f1f91906132dd565b1115611f57576040517f3d531c1b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6000819050600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120025750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561259757600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120b05750600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156124a8576120bd610ea4565b82111561210a57816120cd610ea4565b6040517f22a8406a000000000000000000000000000000000000000000000000000000008152600401612101929190613311565b60405180910390fd5b600060085411801561216957508373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156121bf5750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121f757503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156122ca57600060018111156122105761220f612b13565b5b600f60159054906101000a900460ff16600181111561223257612231612b13565b5b03612290576001601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60006103e8600854846122a39190613099565b6122ad919061310a565b90506122ba8530836125a8565b80836122c6919061333a565b9150505b8273ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156123715750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123a957503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156123c25750600f60149054906101000a900460ff16155b156124a357600060095490506001600f60146101000a81548160ff0219169083151502179055506123f16127cd565b6000600f60146101000a81548160ff02191690831515021790555060011515601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361246a57600a5490505b60006103e8828561247b9190613099565b612485919061310a565b90506124928630836125a8565b808461249e919061333a565b925050505b612596565b60011515601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561255657508273ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156125955760006103e8600a548461256e9190613099565b612578919061310a565b90506125858530836125a8565b8083612591919061333a565b9150505b5b5b6125a28484836125a8565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125fa5780600260008282546125ee91906132dd565b925050819055506126cd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612686578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161267d939291906132a6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127165780600260008282540392505081905550612763565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127c09190612d75565b60405180910390a3505050565b60006127d830610fe6565b9050600081036127e857506127f5565b6127f38160006127f7565b505b565b6000600267ffffffffffffffff8111156128145761281361336e565b5b6040519080825280602002602001820160405280156128425781602001602082028036833780820191505090505b509050308160008151811061285a5761285961339d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612901573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061292591906133e1565b816001815181106129395761293861339d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016129f09291906131a6565b6020604051808303816000875af1158015612a0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a3391906131e4565b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94784848430600a42612a8391906132dd565b6040518663ffffffff1660e01b8152600401612aa39594939291906134cc565b600060405180830381600087803b158015612abd57600080fd5b505af1158015612ad1573d6000803e3d6000fd5b505050507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f83814868347604051612b06929190613311565b60405180910390a1505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028110612b5357612b52612b13565b5b50565b6000819050612b6482612b42565b919050565b6000612b7482612b56565b9050919050565b612b8481612b69565b82525050565b6000602082019050612b9f6000830184612b7b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bdf578082015181840152602081019050612bc4565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c0782612ba5565b612c118185612bb0565b9350612c21818560208601612bc1565b612c2a81612beb565b840191505092915050565b60006020820190508181036000830152612c4f8184612bfc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c8782612c5c565b9050919050565b612c9781612c7c565b8114612ca257600080fd5b50565b600081359050612cb481612c8e565b92915050565b6000819050919050565b612ccd81612cba565b8114612cd857600080fd5b50565b600081359050612cea81612cc4565b92915050565b60008060408385031215612d0757612d06612c57565b5b6000612d1585828601612ca5565b9250506020612d2685828601612cdb565b9150509250929050565b60008115159050919050565b612d4581612d30565b82525050565b6000602082019050612d606000830184612d3c565b92915050565b612d6f81612cba565b82525050565b6000602082019050612d8a6000830184612d66565b92915050565b600060208284031215612da657612da5612c57565b5b6000612db484828501612ca5565b91505092915050565b600080600060608486031215612dd657612dd5612c57565b5b6000612de486828701612ca5565b9350506020612df586828701612ca5565b9250506040612e0686828701612cdb565b9150509250925092565b612e1981612d30565b8114612e2457600080fd5b50565b600081359050612e3681612e10565b92915050565b60008060408385031215612e5357612e52612c57565b5b6000612e6185828601612ca5565b9250506020612e7285828601612e27565b9150509250929050565b600060ff82169050919050565b612e9281612e7c565b82525050565b6000602082019050612ead6000830184612e89565b92915050565b612ebc81612c7c565b82525050565b6000602082019050612ed76000830184612eb3565b92915050565b600060208284031215612ef357612ef2612c57565b5b6000612f0184828501612cdb565b91505092915050565b60008060408385031215612f2157612f20612c57565b5b6000612f2f85828601612ca5565b9250506020612f4085828601612ca5565b9150509250929050565b6000819050919050565b6000612f6f612f6a612f6584612c5c565b612f4a565b612c5c565b9050919050565b6000612f8182612f54565b9050919050565b6000612f9382612f76565b9050919050565b612fa381612f88565b82525050565b6000602082019050612fbe6000830184612f9a565b92915050565b600081905092915050565b50565b6000612fdf600083612fc4565b9150612fea82612fcf565b600082019050919050565b600061300082612fd2565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305157607f821691505b6020821081036130645761306361300a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130a482612cba565b91506130af83612cba565b92508282026130bd81612cba565b915082820484148315176130d4576130d361306a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061311582612cba565b915061312083612cba565b9250826131305761312f6130db565b5b828204905092915050565b60006040820190506131506000830185612eb3565b61315d6020830184612d3c565b9392505050565b60008151905061317381612cc4565b92915050565b60006020828403121561318f5761318e612c57565b5b600061319d84828501613164565b91505092915050565b60006040820190506131bb6000830185612eb3565b6131c86020830184612d66565b9392505050565b6000815190506131de81612e10565b92915050565b6000602082840312156131fa576131f9612c57565b5b6000613208848285016131cf565b91505092915050565b7f5461782063616e6e6f7420657863656564203130250000000000000000000000600082015250565b6000613247601583612bb0565b915061325282613211565b602082019050919050565b600060208201905081810360008301526132768161323a565b9050919050565b60006040820190506132926000830185612b7b565b61329f6020830184612b7b565b9392505050565b60006060820190506132bb6000830186612eb3565b6132c86020830185612d66565b6132d56040830184612d66565b949350505050565b60006132e882612cba565b91506132f383612cba565b925082820190508082111561330b5761330a61306a565b5b92915050565b60006040820190506133266000830185612d66565b6133336020830184612d66565b9392505050565b600061334582612cba565b915061335083612cba565b92508282039050818111156133685761336761306a565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506133db81612c8e565b92915050565b6000602082840312156133f7576133f6612c57565b5b6000613405848285016133cc565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61344381612c7c565b82525050565b6000613455838361343a565b60208301905092915050565b6000602082019050919050565b60006134798261340e565b6134838185613419565b935061348e8361342a565b8060005b838110156134bf5781516134a68882613449565b97506134b183613461565b925050600181019050613492565b5085935050505092915050565b600060a0820190506134e16000830188612d66565b6134ee6020830187612d66565b8181036040830152613500818661346e565b905061350f6060830185612eb3565b61351c6080830184612d66565b969550505050505056fea2646970667358221220d5327a78c12a08f8ca99abeba51045901a80d533a6924874a74d9075b63d60f264736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000cb10fee85f574e1ce01e03c40d99d243197888ff0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000000005435241544500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054352415445000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c8063715018a61161010d578063aa4bde28116100a0578063dd62ed3e1161006f578063dd62ed3e1461070c578063f2fde38b14610749578063f851a44014610772578063f887ea401461079d578063fa8ce593146107c857610204565b8063aa4bde2814610664578063b301274b1461068f578063d239fa5d146106cc578063d71958b3146106e357610204565b8063922110e5116100dc578063922110e5146105a857806395d89b41146105d3578063a42fdb0f146105fe578063a9059cbb1461062757610204565b8063715018a61461051257806381720fcc146105295780638c0b5e22146105525780638da5cb5b1461057d57610204565b80632f507df7116101905780634a178f9a1161015f5780634a178f9a1461042d5780634beac072146104585780636d8b052714610481578063704b6c02146104ac57806370a08231146104d557610204565b80632f507df714610383578063313ce567146103ac578063433805ae146103d757806349bd5a5e1461040257610204565b806309c95a1b116101cc57806309c95a1b146102b3578063151ebae6146102de57806318160ddd1461031b57806323b872dd1461034657610204565b8063055ad42e146102095780630614117a1461023457806306fdde031461024b578063095ea7b31461027657610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e610805565b60405161022b9190612b8a565b60405180910390f35b34801561024057600080fd5b50610249610818565b005b34801561025757600080fd5b506102606109f3565b60405161026d9190612c35565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190612cf0565b610a85565b6040516102aa9190612d4b565b60405180910390f35b3480156102bf57600080fd5b506102c8610aa8565b6040516102d59190612d75565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190612d90565b610ad0565b6040516103129190612d4b565b60405180910390f35b34801561032757600080fd5b50610330610af0565b60405161033d9190612d75565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190612dbd565b610afa565b60405161037a9190612d4b565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190612e3c565b610b29565b005b3480156103b857600080fd5b506103c1610ca8565b6040516103ce9190612e98565b60405180910390f35b3480156103e357600080fd5b506103ec610cb1565b6040516103f99190612d75565b60405180910390f35b34801561040e57600080fd5b50610417610cb7565b6040516104249190612ec2565b60405180910390f35b34801561043957600080fd5b50610442610cdd565b60405161044f9190612d75565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612e3c565b610ce3565b005b34801561048d57600080fd5b50610496610ea4565b6040516104a39190612d75565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce9190612d90565b610ecc565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612d90565b610fe6565b6040516105099190612d75565b60405180910390f35b34801561051e57600080fd5b5061052761102e565b005b34801561053557600080fd5b50610550600480360381019061054b9190612d90565b611042565b005b34801561055e57600080fd5b50610567611274565b6040516105749190612d75565b60405180910390f35b34801561058957600080fd5b5061059261127a565b60405161059f9190612ec2565b60405180910390f35b3480156105b457600080fd5b506105bd6112a4565b6040516105ca9190612d75565b60405180910390f35b3480156105df57600080fd5b506105e86112aa565b6040516105f59190612c35565b60405180910390f35b34801561060a57600080fd5b5061062560048036038101906106209190612edd565b61133c565b005b34801561063357600080fd5b5061064e60048036038101906106499190612cf0565b611460565b60405161065b9190612d4b565b60405180910390f35b34801561067057600080fd5b50610679611483565b6040516106869190612d75565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b19190612d90565b611489565b6040516106c39190612d4b565b60405180910390f35b3480156106d857600080fd5b506106e16114a9565b005b3480156106ef57600080fd5b5061070a60048036038101906107059190612edd565b6115ef565b005b34801561071857600080fd5b50610733600480360381019061072e9190612f0a565b611713565b6040516107409190612d75565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190612d90565b61179a565b005b34801561077e57600080fd5b50610787611820565b6040516107949190612ec2565b60405180910390f35b3480156107a957600080fd5b506107b2611846565b6040516107bf9190612fa9565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190612d90565b61186c565b6040516107fc9190612d4b565b60405180910390f35b600f60159054906101000a900460ff1681565b61082061188c565b73ffffffffffffffffffffffffffffffffffffffff1661083e61127a565b73ffffffffffffffffffffffffffffffffffffffff16141580156108b7575061086561188c565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156108ee576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60004790506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161093b90612ff5565b60006040518083038185875af1925050503d8060008114610978576040519150601f19603f3d011682016040523d82523d6000602084013e61097d565b606091505b50509050806109b8576040517f3204506f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f94effa14ea3a1ef396fa2fd829336d1597f1d76b548c26bfa2332869706638af826040516109e79190612d75565b60405180910390a15050565b606060038054610a0290613039565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2e90613039565b8015610a7b5780601f10610a5057610100808354040283529160200191610a7b565b820191906000526020600020905b815481529060010190602001808311610a5e57829003601f168201915b5050505050905090565b600080610a9061188c565b9050610a9d818585611894565b600191505092915050565b60006064600754610ab7610af0565b610ac19190613099565b610acb919061310a565b905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b600080610b0561188c565b9050610b128582856118a6565b610b1d85858561193a565b60019150509392505050565b610b3161188c565b73ffffffffffffffffffffffffffffffffffffffff16610b4f61127a565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bc85750610b7661188c565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610bff576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f33e0bf3ce98fac4118d5a0a8fe49e83b6acdfdef32871c9eca20e1528d7701ba82604051610c9c9190612d4b565b60405180910390a25050565b60006012905090565b60095481565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b610ceb61188c565b73ffffffffffffffffffffffffffffffffffffffff16610d0961127a565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d825750610d3061188c565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610db9576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f88b6cb060cc9fbebf4f751c0775113faa373d0f0a39d623a9596b17e481ea7498282604051610e9892919061313b565b60405180910390a15050565b60006064600654610eb3610af0565b610ebd9190613099565b610ec7919061310a565b905090565b610ed461188c565b73ffffffffffffffffffffffffffffffffffffffff16610ef261127a565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f6b5750610f1961188c565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610fa2576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611036611a2e565b6110406000611ab5565b565b61104a61188c565b73ffffffffffffffffffffffffffffffffffffffff1661106861127a565b73ffffffffffffffffffffffffffffffffffffffff16141580156110e1575061108f61188c565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611118576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111539190612ec2565b602060405180830381865afa158015611170573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111949190613179565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b81526004016111f39291906131a6565b6020604051808303816000875af1158015611212573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123691906131e4565b507f680f2e4f4032ebf1774e8cdbaddcb1b617a5a606411c8ca96257ada338d3833c82826040516112689291906131a6565b60405180910390a15050565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b6060600480546112b990613039565b80601f01602080910402602001604051908101604052809291908181526020018280546112e590613039565b80156113325780601f1061130757610100808354040283529160200191611332565b820191906000526020600020905b81548152906001019060200180831161131557829003601f168201915b5050505050905090565b61134461188c565b73ffffffffffffffffffffffffffffffffffffffff1661136261127a565b73ffffffffffffffffffffffffffffffffffffffff16141580156113db575061138961188c565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611412576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6064811115611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d9061325d565b60405180910390fd5b8060098190555050565b60008061146b61188c565b905061147881858561193a565b600191505092915050565b60075481565b60106020528060005260406000206000915054906101000a900460ff1681565b6114b161188c565b73ffffffffffffffffffffffffffffffffffffffff166114cf61127a565b73ffffffffffffffffffffffffffffffffffffffff161415801561154857506114f661188c565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561157f576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600f60156101000a81548160ff021916908360018111156115a5576115a4612b13565b5b021790555060326009819055507f5e45bf0703fe855c9fa7c44122b9f47ad1075a0cc5dc8ae88903470067cba7e5600060016040516115e592919061327d565b60405180910390a1565b6115f761188c565b73ffffffffffffffffffffffffffffffffffffffff1661161561127a565b73ffffffffffffffffffffffffffffffffffffffff161415801561168e575061163c61188c565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156116c5576040517f1045f14200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6064811115611709576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117009061325d565b60405180910390fd5b8060088190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6117a2611a2e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118145760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161180b9190612ec2565b60405180910390fd5b61181d81611ab5565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c6020528060005260406000206000915054906101000a900460ff1681565b600033905090565b6118a18383836001611b7b565b505050565b60006118b28484611713565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119345781811015611924578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161191b939291906132a6565b60405180910390fd5b61193384848484036000611b7b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119ac5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016119a39190612ec2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1e5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611a159190612ec2565b60405180910390fd5b611a29838383611d52565b505050565b611a3661188c565b73ffffffffffffffffffffffffffffffffffffffff16611a5461127a565b73ffffffffffffffffffffffffffffffffffffffff1614611ab357611a7761188c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611aaa9190612ec2565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611bed5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611be49190612ec2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c5f5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611c569190612ec2565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611d4c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611d439190612d75565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dc45760006040517f9cfea583000000000000000000000000000000000000000000000000000000008152600401611dbb9190612ec2565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611e685750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f5957600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611f5857611eca610ea4565b811115611f03576040517f214d5d2400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f0b610aa8565b611f1483610fe6565b82611f1f91906132dd565b1115611f57576040517f3d531c1b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6000819050600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120025750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561259757600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120b05750600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156124a8576120bd610ea4565b82111561210a57816120cd610ea4565b6040517f22a8406a000000000000000000000000000000000000000000000000000000008152600401612101929190613311565b60405180910390fd5b600060085411801561216957508373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156121bf5750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121f757503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156122ca57600060018111156122105761220f612b13565b5b600f60159054906101000a900460ff16600181111561223257612231612b13565b5b03612290576001601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60006103e8600854846122a39190613099565b6122ad919061310a565b90506122ba8530836125a8565b80836122c6919061333a565b9150505b8273ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156123715750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123a957503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156123c25750600f60149054906101000a900460ff16155b156124a357600060095490506001600f60146101000a81548160ff0219169083151502179055506123f16127cd565b6000600f60146101000a81548160ff02191690831515021790555060011515601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361246a57600a5490505b60006103e8828561247b9190613099565b612485919061310a565b90506124928630836125a8565b808461249e919061333a565b925050505b612596565b60011515601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561255657508273ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156125955760006103e8600a548461256e9190613099565b612578919061310a565b90506125858530836125a8565b8083612591919061333a565b9150505b5b5b6125a28484836125a8565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125fa5780600260008282546125ee91906132dd565b925050819055506126cd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612686578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161267d939291906132a6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127165780600260008282540392505081905550612763565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127c09190612d75565b60405180910390a3505050565b60006127d830610fe6565b9050600081036127e857506127f5565b6127f38160006127f7565b505b565b6000600267ffffffffffffffff8111156128145761281361336e565b5b6040519080825280602002602001820160405280156128425781602001602082028036833780820191505090505b509050308160008151811061285a5761285961339d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612901573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061292591906133e1565b816001815181106129395761293861339d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016129f09291906131a6565b6020604051808303816000875af1158015612a0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a3391906131e4565b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94784848430600a42612a8391906132dd565b6040518663ffffffff1660e01b8152600401612aa39594939291906134cc565b600060405180830381600087803b158015612abd57600080fd5b505af1158015612ad1573d6000803e3d6000fd5b505050507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f83814868347604051612b06929190613311565b60405180910390a1505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028110612b5357612b52612b13565b5b50565b6000819050612b6482612b42565b919050565b6000612b7482612b56565b9050919050565b612b8481612b69565b82525050565b6000602082019050612b9f6000830184612b7b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bdf578082015181840152602081019050612bc4565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c0782612ba5565b612c118185612bb0565b9350612c21818560208601612bc1565b612c2a81612beb565b840191505092915050565b60006020820190508181036000830152612c4f8184612bfc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c8782612c5c565b9050919050565b612c9781612c7c565b8114612ca257600080fd5b50565b600081359050612cb481612c8e565b92915050565b6000819050919050565b612ccd81612cba565b8114612cd857600080fd5b50565b600081359050612cea81612cc4565b92915050565b60008060408385031215612d0757612d06612c57565b5b6000612d1585828601612ca5565b9250506020612d2685828601612cdb565b9150509250929050565b60008115159050919050565b612d4581612d30565b82525050565b6000602082019050612d606000830184612d3c565b92915050565b612d6f81612cba565b82525050565b6000602082019050612d8a6000830184612d66565b92915050565b600060208284031215612da657612da5612c57565b5b6000612db484828501612ca5565b91505092915050565b600080600060608486031215612dd657612dd5612c57565b5b6000612de486828701612ca5565b9350506020612df586828701612ca5565b9250506040612e0686828701612cdb565b9150509250925092565b612e1981612d30565b8114612e2457600080fd5b50565b600081359050612e3681612e10565b92915050565b60008060408385031215612e5357612e52612c57565b5b6000612e6185828601612ca5565b9250506020612e7285828601612e27565b9150509250929050565b600060ff82169050919050565b612e9281612e7c565b82525050565b6000602082019050612ead6000830184612e89565b92915050565b612ebc81612c7c565b82525050565b6000602082019050612ed76000830184612eb3565b92915050565b600060208284031215612ef357612ef2612c57565b5b6000612f0184828501612cdb565b91505092915050565b60008060408385031215612f2157612f20612c57565b5b6000612f2f85828601612ca5565b9250506020612f4085828601612ca5565b9150509250929050565b6000819050919050565b6000612f6f612f6a612f6584612c5c565b612f4a565b612c5c565b9050919050565b6000612f8182612f54565b9050919050565b6000612f9382612f76565b9050919050565b612fa381612f88565b82525050565b6000602082019050612fbe6000830184612f9a565b92915050565b600081905092915050565b50565b6000612fdf600083612fc4565b9150612fea82612fcf565b600082019050919050565b600061300082612fd2565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305157607f821691505b6020821081036130645761306361300a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130a482612cba565b91506130af83612cba565b92508282026130bd81612cba565b915082820484148315176130d4576130d361306a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061311582612cba565b915061312083612cba565b9250826131305761312f6130db565b5b828204905092915050565b60006040820190506131506000830185612eb3565b61315d6020830184612d3c565b9392505050565b60008151905061317381612cc4565b92915050565b60006020828403121561318f5761318e612c57565b5b600061319d84828501613164565b91505092915050565b60006040820190506131bb6000830185612eb3565b6131c86020830184612d66565b9392505050565b6000815190506131de81612e10565b92915050565b6000602082840312156131fa576131f9612c57565b5b6000613208848285016131cf565b91505092915050565b7f5461782063616e6e6f7420657863656564203130250000000000000000000000600082015250565b6000613247601583612bb0565b915061325282613211565b602082019050919050565b600060208201905081810360008301526132768161323a565b9050919050565b60006040820190506132926000830185612b7b565b61329f6020830184612b7b565b9392505050565b60006060820190506132bb6000830186612eb3565b6132c86020830185612d66565b6132d56040830184612d66565b949350505050565b60006132e882612cba565b91506132f383612cba565b925082820190508082111561330b5761330a61306a565b5b92915050565b60006040820190506133266000830185612d66565b6133336020830184612d66565b9392505050565b600061334582612cba565b915061335083612cba565b92508282039050818111156133685761336761306a565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506133db81612c8e565b92915050565b6000602082840312156133f7576133f6612c57565b5b6000613405848285016133cc565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61344381612c7c565b82525050565b6000613455838361343a565b60208301905092915050565b6000602082019050919050565b60006134798261340e565b6134838185613419565b935061348e8361342a565b8060005b838110156134bf5781516134a68882613449565b97506134b183613461565b925050600181019050613492565b5085935050505092915050565b600060a0820190506134e16000830188612d66565b6134ee6020830187612d66565b8181036040830152613500818661346e565b905061350f6060830185612eb3565b61351c6080830184612d66565b969550505050505056fea2646970667358221220d5327a78c12a08f8ca99abeba51045901a80d533a6924874a74d9075b63d60f264736f6c63430008140033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000cb10fee85f574e1ce01e03c40d99d243197888ff0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000000005435241544500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054352415445000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _symbol (string): CRATE
Arg [1] : _name (string): CRATE
Arg [2] : _totalSupply (uint256): 100000000
Arg [3] : _admin (address): 0xcB10FeE85F574E1cE01E03c40d99D243197888FF
Arg [4] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [3] : 000000000000000000000000cb10fee85f574e1ce01e03c40d99d243197888ff
Arg [4] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4352415445000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 4352415445000000000000000000000000000000000000000000000000000000


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.