ETH Price: $2,630.36 (+8.05%)
 

Overview

Max Total Supply

3,852,334,202.298618723700663139 JERRY

Holders

51 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
101,997,984.940132719276638137 JERRY

Value
$0.00
0xf9bfaa6c15dbec036db58574ac60de13f2930c04
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

JERRY Coin is a meme coin with a deflationary mechanism that is fun for everyone who likes JERRY.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
JERRY

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : Jerry.sol
// SPDX-License-Identifier: MIT
// Specifying the license under which the code is available.
pragma solidity ^0.8.20;
pragma abicoder v2;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract JERRY is ERC20, ERC20Burnable, Ownable, ReentrancyGuard  {

    // State variables for weth and Uniswap router addresses, and developer wallet
    address private immutable weth = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; //WETH-Address
    address private constant UNISWAP_V2_ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; //UNISWAP_V2_ROUTER-Address
    address private pairAddressUniswap;

    // Declare the Uniswap router.
    IUniswapV2Router02 private immutable uniswapRouter;

    //Wallets for tokenallocation
    address private immutable developerWallet = 0x41fC21B79f3fDe918d9F5CF364061F1c106c0Ca2;
    address private immutable cexWallet = 0x9F00c648E1Bb9488979D8D97A4D4dfc6Bc7fc084;
    address private immutable marketingWallet = 0xbBAb880C4028aF3187Fe507923ce92449A48307f;

    // Initial token supply.
    uint256 private immutable initialSupply = 3924917000 ether;
    uint256 public immutable maxWalletSize;
    uint256 public immutable maxWalletSizePercentage = 30;

    // Constants for burn and developer fees.
    uint8 private constant BURN_FEE = 10;    // 1% Burn-Fee
    uint8 private constant DEV_FEE = 19;    // 1.9% Dev-Fee
    uint16 private constant DIVIDE_BY_THOUSAND = 1000; //For calculation

    // Modifier to check the deadline for transactions.
    modifier ensure(uint deadline) {
        require(deadline >= block.timestamp, "UniswapV2Router: EXPIRED");
        _;
    }

    // Constructor function for contract initialization.
    constructor(address initialOwner) public ERC20("Jerry", "JERRY") Ownable(initialOwner) {
        _mint(msg.sender, initialSupply);
        uniswapRouter = IUniswapV2Router02(UNISWAP_V2_ROUTER);
        maxWalletSize = (totalSupply() * maxWalletSizePercentage) / DIVIDE_BY_THOUSAND;
    }

    function pairAddress(address newPairAddress) external onlyOwner nonReentrant{
        require(newPairAddress != address(0), "Invalid pair address");
        pairAddressUniswap = newPairAddress;
    }

    //Fee Calculation
    // Internal function to calculate burning fee.
    function _calcBurningFee(uint256 amount) internal pure returns (uint256) {
        return amount * BURN_FEE / DIVIDE_BY_THOUSAND;
    }

    // Internal function to calculate developer fee.
    function _calcDevFee(uint256 amount) internal pure returns (uint256) {
        return amount * DEV_FEE / DIVIDE_BY_THOUSAND;
    }

    // Internal function to calculate transfer amount after fees.
    function _calcTransfer(uint256 amount, uint256 fee) internal pure returns (uint256) {
        require(amount >= fee, "Fee exceeds the transfer amount");
        return amount - fee;
    }

     // Internal function to handle fee calculation and return amount to be transferred.
    function _handleFeesAndCalculateAmount(uint256 amountIn) internal returns (uint256) {
        uint256 localBurnFeeAmount = _calcBurningFee(amountIn);
        uint256 localDevFeeAmount = _calcDevFee(amountIn);
        
        // Transfer burn fee to developer wallet and burn it.
        _transfer(msg.sender, developerWallet, localBurnFeeAmount);
        _burn(msg.sender, localBurnFeeAmount);
        
        return amountIn - localBurnFeeAmount - localDevFeeAmount;
    }

   // Overriding ERC20 transfer to include custom fees and check for max wallet size
    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(sender != address(0), "Transfer from the zero address");
        require(recipient != address(0), "Transfer to the zero address");

        // Check if transfer would bypass the maximum WalletSize of the receiver
        if (recipient != pairAddressUniswap && recipient != UNISWAP_V2_ROUTER && recipient != developerWallet && sender != developerWallet && recipient != cexWallet && sender != cexWallet && recipient != marketingWallet && sender != marketingWallet) {
            require(balanceOf(recipient) + amount <= maxWalletSize, "Transfer would exceed maximum wallet balance");
        }

        if (sender != developerWallet && recipient != developerWallet && recipient != cexWallet && recipient != marketingWallet) {
            // Calaculate Fees
            uint256 burnFeeAmount = _calcBurningFee(amount);
            uint256 devFeeAmount = _calcDevFee(amount);
            uint256 transferAmount = _calcTransfer(amount, burnFeeAmount + devFeeAmount);

            super._transfer(sender, recipient, transferAmount);
            if (burnFeeAmount > 0) {
                _burn(sender, burnFeeAmount);
            }
            if (devFeeAmount > 0) {
                super._transfer(sender, developerWallet, devFeeAmount);
            }
        } 
        else {
            super._transfer(sender, recipient, amount);
        }
    }
    
   // Overriding ERC20 transferFrom to include custom fees and check for max wallet size
    function transferFrom(address sender, address recipient, uint256 value) public virtual override returns (bool) {
        address spender = _msgSender();
         _spendAllowance(sender, spender, value);
        if (recipient == developerWallet || sender == developerWallet) {
        super._transfer(sender, recipient, value);
        }
        else {
            _transfer(sender, recipient, value);
        }
        return true;
    }

    // Swap Jerry tokens for another ERC20 token using Uniswap
    function swapTokensForToken(
        address tokenOut,
        uint256 amountIn,
        uint256 amountOutMin,
        address to,
        uint256 deadline
    ) external ensure(deadline) nonReentrant {
        require(tokenOut != address(0), "Invalid token address");
        require(tokenOut != address(this), "Cannot swap to the same token");
        require(amountIn > 0, "Amount must be greater than 0");
    
        // Calculate the amount to swap after deducting fees
        uint256 amountToSwap = _handleFeesAndCalculateAmount(amountIn);

        // Transfer Jerry tokens from the sender to this contract
        _transfer(msg.sender, address(this), amountIn);

        // Approve the Uniswap router to spend JERRY tokens
        _approve(address(this), UNISWAP_V2_ROUTER, amountToSwap);

        // Prepare the token path for the swap
        address[] memory path;
        if (tokenOut == weth) {
            path = new address[](2);
            path[0] = address(this);
            path[1] = weth; 
        } else {
            path = new address[](3);
            path[0] = address(this);
            path[1] = weth; 
            path[2] = tokenOut;
        }

        // Perform the swap on Uniswap
        uniswapRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            amountToSwap,
            amountOutMin,
            path,
            to,
            block.timestamp
        );
    }

    // Swap Jerry tokens for ETH using Uniswap
    function swapJerryForETH(
        uint256 amountIn, 
        uint256 amountOutMin, 
        address to, 
        uint256 deadline
        ) external ensure(deadline) nonReentrant {
    require(amountIn > 0, "Amount must be greater than 0");

        // Approve the Uniswap router to spend JERRY tokens
        _approve(address(this), UNISWAP_V2_ROUTER, amountIn);

        uint256 amountToSwap = _handleFeesAndCalculateAmount(amountIn);

        // Transfer Jerry tokens from the sender to this contract
        _transfer(msg.sender, address(this), amountIn);

        // Prepare the token path for the swap (Jerry -> weth -> ETH)
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = weth; 

        // Perform the swap on Uniswap
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amountToSwap,
            amountOutMin,
            path,
            to,
            block.timestamp
        );
    }

    // Swap ETH for Jerry tokens using Uniswap
    function swapETHForJerry(
        uint256 amountOutMin, 
        address to, 
        uint256 deadline
        ) external payable ensure(deadline) nonReentrant {
        require(msg.value > 0, "Amount must be greater than 0");

        // Calculate the fees
        uint256 burnFeeAmount = _calcBurningFee(msg.value);
        uint256 devFeeAmount = _calcDevFee(msg.value);

        // Calculate the amount to swap after deducting fees
        uint amountToSwap = msg.value - burnFeeAmount - devFeeAmount;
        // Prepare the token path for the swap (ETH -> weth -> Jerry)
        address[] memory path = new address[](2);
        path[0] = weth; 
        path[1] = address(this);

        // Perform the swap on Uniswap
        uniswapRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amountToSwap}(
            amountOutMin,
            path,
            to,
            block.timestamp
        );

        // Transfer Jerry Dev_Fees to developerWallet
        payable(developerWallet).transfer(devFeeAmount);

        // Burn the burn fee
        _burn(address(this), burnFeeAmount);
    }
}

File 2 of 11 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 3 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;
}

File 4 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 5 of 11 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys a `value` amount of tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, deducting from
     * the caller's allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}

File 6 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 virtual {
        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 7 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 8 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 9 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 10 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 11 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSizePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPairAddress","type":"address"}],"name":"pairAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapETHForJerry","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapJerryForETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenOut","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapTokensForToken","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":"sender","type":"address"},{"internalType":"address","name":"recipient","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"}]

61018060405273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152507341fc21b79f3fde918d9f5cf364061f1c106c0ca273ffffffffffffffffffffffffffffffffffffffff1660c09073ffffffffffffffffffffffffffffffffffffffff16815250739f00c648e1bb9488979d8d97a4d4dfc6bc7fc08473ffffffffffffffffffffffffffffffffffffffff1660e09073ffffffffffffffffffffffffffffffffffffffff1681525073bbab880c4028af3187fe507923ce92449a48307f73ffffffffffffffffffffffffffffffffffffffff166101009073ffffffffffffffffffffffffffffffffffffffff168152506b0cae9d80e948a02e4720000061012090815250601e610160908152503480156200014b575f80fd5b5060405162003be838038062003be883398181016040528101906200017191906200070f565b806040518060400160405280600581526020017f4a657272790000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4a455252590000000000000000000000000000000000000000000000000000008152508160039081620001ef9190620009a3565b508060049081620002019190620009a3565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000277575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200026e919062000a98565b60405180910390fd5b62000288816200033060201b60201c565b506001600681905550620002a63361012051620003f360201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506103e861ffff1661016051620003096200047d60201b60201c565b62000315919062000ae0565b62000321919062000b57565b61014081815250505062000c2f565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000466575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200045d919062000a98565b60405180910390fd5b620004795f83836200048660201b60201c565b5050565b5f600254905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620004da578060025f828254620004cd919062000b8e565b92505081905550620005ab565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000566578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200055d9392919062000bd9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005f4578060025f82825403925050819055506200063e565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200069d919062000c14565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620006d982620006ae565b9050919050565b620006eb81620006cd565b8114620006f6575f80fd5b50565b5f815190506200070981620006e0565b92915050565b5f60208284031215620007275762000726620006aa565b5b5f6200073684828501620006f9565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620007bb57607f821691505b602082108103620007d157620007d062000776565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620008357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007f8565b620008418683620007f8565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200088b620008856200087f8462000859565b62000862565b62000859565b9050919050565b5f819050919050565b620008a6836200086b565b620008be620008b58262000892565b84845462000804565b825550505050565b5f90565b620008d4620008c6565b620008e18184846200089b565b505050565b5b818110156200090857620008fc5f82620008ca565b600181019050620008e7565b5050565b601f82111562000957576200092181620007d7565b6200092c84620007e9565b810160208510156200093c578190505b620009546200094b85620007e9565b830182620008e6565b50505b505050565b5f82821c905092915050565b5f620009795f19846008026200095c565b1980831691505092915050565b5f62000993838362000968565b9150826002028217905092915050565b620009ae826200073f565b67ffffffffffffffff811115620009ca57620009c962000749565b5b620009d68254620007a3565b620009e38282856200090c565b5f60209050601f83116001811462000a19575f841562000a04578287015190505b62000a10858262000986565b86555062000a7f565b601f19841662000a2986620007d7565b5f5b8281101562000a525784890151825560018201915060208501945060208101905062000a2b565b8683101562000a72578489015162000a6e601f89168262000968565b8355505b6001600288020188555050505b505050505050565b62000a9281620006cd565b82525050565b5f60208201905062000aad5f83018462000a87565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000aec8262000859565b915062000af98362000859565b925082820262000b098162000859565b9150828204841483151762000b235762000b2262000ab3565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000b638262000859565b915062000b708362000859565b92508262000b835762000b8262000b2a565b5b828204905092915050565b5f62000b9a8262000859565b915062000ba78362000859565b925082820190508082111562000bc25762000bc162000ab3565b5b92915050565b62000bd38162000859565b82525050565b5f60608201905062000bee5f83018662000a87565b62000bfd602083018562000bc8565b62000c0c604083018462000bc8565b949350505050565b5f60208201905062000c295f83018462000bc8565b92915050565b60805160a05160c05160e05161010051610120516101405161016051612edb62000d0d5f395f61120f01525f81816109d0015261192b01525f50505f818161187d015281816118d50152611aa901525f81816117cd015281816118250152611a5101525f818161056a015281816105bf015281816108b00152818161171d01528181611775015281816119a2015281816119f901528181611b590152611e2b01525f818161082201528181610ee0015261114e01525f818161076501528181610c2601528181610d1301528181610e2101526110df0152612edb5ff3fe60806040526004361061011e575f3560e01c80638da5cb5b1161009f578063a9059cbb11610063578063a9059cbb146103a4578063aa8351ab146103e0578063adc5a9721461040a578063dd62ed3e14610432578063f2fde38b1461046e5761011e565b80638da5cb5b146102d65780638f3fa8601461030057806395d89b411461032a578063a14b647814610354578063a1e7a5a41461037c5761011e565b806342966c68116100e657806342966c6814610218578063556191161461024057806370a082311461025c578063715018a61461029857806379cc6790146102ae5761011e565b806306fdde0314610122578063095ea7b31461014c57806318160ddd1461018857806323b872dd146101b2578063313ce567146101ee575b5f80fd5b34801561012d575f80fd5b50610136610496565b6040516101439190612344565b60405180910390f35b348015610157575f80fd5b50610172600480360381019061016d91906123f5565b610526565b60405161017f919061244d565b60405180910390f35b348015610193575f80fd5b5061019c610548565b6040516101a99190612475565b60405180910390f35b3480156101bd575f80fd5b506101d860048036038101906101d3919061248e565b610551565b6040516101e5919061244d565b60405180910390f35b3480156101f9575f80fd5b5061020261063a565b60405161020f91906124f9565b60405180910390f35b348015610223575f80fd5b5061023e60048036038101906102399190612512565b610642565b005b61025a6004803603810190610255919061253d565b610656565b005b348015610267575f80fd5b50610282600480360381019061027d919061258d565b61092e565b60405161028f9190612475565b60405180910390f35b3480156102a3575f80fd5b506102ac610973565b005b3480156102b9575f80fd5b506102d460048036038101906102cf91906123f5565b610986565b005b3480156102e1575f80fd5b506102ea6109a6565b6040516102f791906125c7565b60405180910390f35b34801561030b575f80fd5b506103146109ce565b6040516103219190612475565b60405180910390f35b348015610335575f80fd5b5061033e6109f2565b60405161034b9190612344565b60405180910390f35b34801561035f575f80fd5b5061037a600480360381019061037591906125e0565b610a82565b005b348015610387575f80fd5b506103a2600480360381019061039d9190612657565b610f7e565b005b3480156103af575f80fd5b506103ca60048036038101906103c591906123f5565b6111eb565b6040516103d7919061244d565b60405180910390f35b3480156103eb575f80fd5b506103f461120d565b6040516104019190612475565b60405180910390f35b348015610415575f80fd5b50610430600480360381019061042b919061258d565b611231565b005b34801561043d575f80fd5b50610458600480360381019061045391906126bb565b6112fa565b6040516104659190612475565b60405180910390f35b348015610479575f80fd5b50610494600480360381019061048f919061258d565b61137c565b005b6060600380546104a590612726565b80601f01602080910402602001604051908101604052809291908181526020018280546104d190612726565b801561051c5780601f106104f35761010080835404028352916020019161051c565b820191905f5260205f20905b8154815290600101906020018083116104ff57829003601f168201915b5050505050905090565b5f80610530611400565b905061053d818585611407565b600191505092915050565b5f600254905090565b5f8061055b611400565b9050610568858285611419565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061060d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b156106225761061d8585856114ab565b61062e565b61062d85858561159b565b5b60019150509392505050565b5f6012905090565b61065361064d611400565b82611b98565b50565b804281101561069a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610691906127a0565b60405180910390fd5b6106a2611c17565b5f34116106e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106db90612808565b60405180910390fd5b5f6106ee34611c66565b90505f6106fa34611c8f565b90505f81833461070a9190612853565b6107149190612853565b90505f600267ffffffffffffffff81111561073257610731612886565b5b6040519080825280602002602001820160405280156107605781602001602082028036833780820191505090505b5090507f0000000000000000000000000000000000000000000000000000000000000000815f81518110610797576107966128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106107e6576107e56128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663b6f9de95838a848b426040518663ffffffff1660e01b81526004016108809493929190612997565b5f604051808303818588803b158015610897575f80fd5b505af11580156108a9573d5f803e3d5ffd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc8490811502906040515f60405180830381858888f19350505050158015610911573d5f803e3d5ffd5b5061091c3085611b98565b50505050610928611cb8565b50505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61097b611cc2565b6109845f611d49565b565b61099882610992611400565b83611419565b6109a28282611b98565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b606060048054610a0190612726565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2d90612726565b8015610a785780601f10610a4f57610100808354040283529160200191610a78565b820191905f5260205f20905b815481529060010190602001808311610a5b57829003601f168201915b5050505050905090565b8042811015610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd906127a0565b60405180910390fd5b610ace611c17565b5f73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3390612a2b565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba190612a93565b60405180910390fd5b5f8511610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be390612808565b60405180910390fd5b5f610bf686611e0c565b9050610c0333308861159b565b610c2230737a250d5630b4cf539739df2c5dacb4c659f2488d83611407565b60607f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1603610d8557600267ffffffffffffffff811115610c9257610c91612886565b5b604051908082528060200260200182016040528015610cc05781602001602082028036833780820191505090505b50905030815f81518110610cd757610cd66128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110610d4657610d456128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610ede565b600367ffffffffffffffff811115610da057610d9f612886565b5b604051908082528060200260200182016040528015610dce5781602001602082028036833780820191505090505b50905030815f81518110610de557610de46128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110610e5457610e536128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508781600281518110610ea357610ea26128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583888489426040518663ffffffff1660e01b8152600401610f3f959493929190612ab1565b5f604051808303815f87803b158015610f56575f80fd5b505af1158015610f68573d5f803e3d5ffd5b505050505050610f76611cb8565b505050505050565b8042811015610fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb9906127a0565b60405180910390fd5b610fca611c17565b5f851161100c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100390612808565b60405180910390fd5b61102b30737a250d5630b4cf539739df2c5dacb4c659f2488d87611407565b5f61103586611e0c565b905061104233308861159b565b5f600267ffffffffffffffff81111561105e5761105d612886565b5b60405190808252806020026020018201604052801561108c5781602001602082028036833780820191505090505b50905030815f815181106110a3576110a26128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110611112576111116128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac94783888489426040518663ffffffff1660e01b81526004016111ad959493929190612ab1565b5f604051808303815f87803b1580156111c4575f80fd5b505af11580156111d6573d5f803e3d5ffd5b5050505050506111e4611cb8565b5050505050565b5f806111f5611400565b905061120281858561159b565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611239611cc2565b611241611c17565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690612b53565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506112f7611cb8565b50565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611384611cc2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113f4575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016113eb91906125c7565b60405180910390fd5b6113fd81611d49565b50565b5f33905090565b6114148383836001611e7a565b505050565b5f61142484846112fa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114a55781811015611496578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161148d93929190612b71565b60405180910390fd5b6114a484848484035f611e7a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361151b575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161151291906125c7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361158b575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161158291906125c7565b60405180910390fd5b611596838383612049565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160090612bf0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90612c58565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156117145750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561176c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117c457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561181c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561187457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156118cc57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561192457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156119a0577f0000000000000000000000000000000000000000000000000000000000000000816119548461092e565b61195e9190612c76565b111561199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690612d19565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a4857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611aa057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611af857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611b87575f611b0782611c66565b90505f611b1383611c8f565b90505f611b2b848385611b269190612c76565b612262565b9050611b388686836114ab565b5f831115611b4b57611b4a8684611b98565b5b5f821115611b7f57611b7e867f0000000000000000000000000000000000000000000000000000000000000000846114ab565b5b505050611b93565b611b928383836114ab565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c08575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611bff91906125c7565b60405180910390fd5b611c13825f83612049565b5050565b600260065403611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5390612d81565b60405180910390fd5b6002600681905550565b5f6103e861ffff16600a60ff1683611c7e9190612d9f565b611c889190612e0d565b9050919050565b5f6103e861ffff16601360ff1683611ca79190612d9f565b611cb19190612e0d565b9050919050565b6001600681905550565b611cca611400565b73ffffffffffffffffffffffffffffffffffffffff16611ce86109a6565b73ffffffffffffffffffffffffffffffffffffffff1614611d4757611d0b611400565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611d3e91906125c7565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80611e1783611c66565b90505f611e2384611c8f565b9050611e50337f00000000000000000000000000000000000000000000000000000000000000008461159b565b611e5a3383611b98565b808285611e679190612853565b611e719190612853565b92505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611eea575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611ee191906125c7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f5a575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611f5191906125c7565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015612043578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161203a9190612475565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612099578060025f82825461208d9190612c76565b92505081905550612167565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612122578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161211993929190612b71565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121ae578060025f82825403925050819055506121f8565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516122559190612475565b60405180910390a3505050565b5f818310156122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d90612e87565b60405180910390fd5b81836122b29190612853565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156122f15780820151818401526020810190506122d6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612316826122ba565b61232081856122c4565b93506123308185602086016122d4565b612339816122fc565b840191505092915050565b5f6020820190508181035f83015261235c818461230c565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61239182612368565b9050919050565b6123a181612387565b81146123ab575f80fd5b50565b5f813590506123bc81612398565b92915050565b5f819050919050565b6123d4816123c2565b81146123de575f80fd5b50565b5f813590506123ef816123cb565b92915050565b5f806040838503121561240b5761240a612364565b5b5f612418858286016123ae565b9250506020612429858286016123e1565b9150509250929050565b5f8115159050919050565b61244781612433565b82525050565b5f6020820190506124605f83018461243e565b92915050565b61246f816123c2565b82525050565b5f6020820190506124885f830184612466565b92915050565b5f805f606084860312156124a5576124a4612364565b5b5f6124b2868287016123ae565b93505060206124c3868287016123ae565b92505060406124d4868287016123e1565b9150509250925092565b5f60ff82169050919050565b6124f3816124de565b82525050565b5f60208201905061250c5f8301846124ea565b92915050565b5f6020828403121561252757612526612364565b5b5f612534848285016123e1565b91505092915050565b5f805f6060848603121561255457612553612364565b5b5f612561868287016123e1565b9350506020612572868287016123ae565b9250506040612583868287016123e1565b9150509250925092565b5f602082840312156125a2576125a1612364565b5b5f6125af848285016123ae565b91505092915050565b6125c181612387565b82525050565b5f6020820190506125da5f8301846125b8565b92915050565b5f805f805f60a086880312156125f9576125f8612364565b5b5f612606888289016123ae565b9550506020612617888289016123e1565b9450506040612628888289016123e1565b9350506060612639888289016123ae565b925050608061264a888289016123e1565b9150509295509295909350565b5f805f806080858703121561266f5761266e612364565b5b5f61267c878288016123e1565b945050602061268d878288016123e1565b935050604061269e878288016123ae565b92505060606126af878288016123e1565b91505092959194509250565b5f80604083850312156126d1576126d0612364565b5b5f6126de858286016123ae565b92505060206126ef858286016123ae565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061273d57607f821691505b6020821081036127505761274f6126f9565b5b50919050565b7f556e69737761705632526f757465723a204558504952454400000000000000005f82015250565b5f61278a6018836122c4565b915061279582612756565b602082019050919050565b5f6020820190508181035f8301526127b78161277e565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f6127f2601d836122c4565b91506127fd826127be565b602082019050919050565b5f6020820190508181035f83015261281f816127e6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61285d826123c2565b9150612868836123c2565b92508282039050818111156128805761287f612826565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61291281612387565b82525050565b5f6129238383612909565b60208301905092915050565b5f602082019050919050565b5f612945826128e0565b61294f81856128ea565b935061295a836128fa565b805f5b8381101561298a5781516129718882612918565b975061297c8361292f565b92505060018101905061295d565b5085935050505092915050565b5f6080820190506129aa5f830187612466565b81810360208301526129bc818661293b565b90506129cb60408301856125b8565b6129d86060830184612466565b95945050505050565b7f496e76616c696420746f6b656e206164647265737300000000000000000000005f82015250565b5f612a156015836122c4565b9150612a20826129e1565b602082019050919050565b5f6020820190508181035f830152612a4281612a09565b9050919050565b7f43616e6e6f74207377617020746f207468652073616d6520746f6b656e0000005f82015250565b5f612a7d601d836122c4565b9150612a8882612a49565b602082019050919050565b5f6020820190508181035f830152612aaa81612a71565b9050919050565b5f60a082019050612ac45f830188612466565b612ad16020830187612466565b8181036040830152612ae3818661293b565b9050612af260608301856125b8565b612aff6080830184612466565b9695505050505050565b7f496e76616c6964207061697220616464726573730000000000000000000000005f82015250565b5f612b3d6014836122c4565b9150612b4882612b09565b602082019050919050565b5f6020820190508181035f830152612b6a81612b31565b9050919050565b5f606082019050612b845f8301866125b8565b612b916020830185612466565b612b9e6040830184612466565b949350505050565b7f5472616e736665722066726f6d20746865207a65726f206164647265737300005f82015250565b5f612bda601e836122c4565b9150612be582612ba6565b602082019050919050565b5f6020820190508181035f830152612c0781612bce565b9050919050565b7f5472616e7366657220746f20746865207a65726f2061646472657373000000005f82015250565b5f612c42601c836122c4565b9150612c4d82612c0e565b602082019050919050565b5f6020820190508181035f830152612c6f81612c36565b9050919050565b5f612c80826123c2565b9150612c8b836123c2565b9250828201905080821115612ca357612ca2612826565b5b92915050565b7f5472616e7366657220776f756c6420657863656564206d6178696d756d2077615f8201527f6c6c65742062616c616e63650000000000000000000000000000000000000000602082015250565b5f612d03602c836122c4565b9150612d0e82612ca9565b604082019050919050565b5f6020820190508181035f830152612d3081612cf7565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f612d6b601f836122c4565b9150612d7682612d37565b602082019050919050565b5f6020820190508181035f830152612d9881612d5f565b9050919050565b5f612da9826123c2565b9150612db4836123c2565b9250828202612dc2816123c2565b91508282048414831517612dd957612dd8612826565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612e17826123c2565b9150612e22836123c2565b925082612e3257612e31612de0565b5b828204905092915050565b7f466565206578636565647320746865207472616e7366657220616d6f756e74005f82015250565b5f612e71601f836122c4565b9150612e7c82612e3d565b602082019050919050565b5f6020820190508181035f830152612e9e81612e65565b905091905056fea26469706673582212208f7cbf9be634fc96afb8294e212e76144746d162d8357c41b530a120b595b4a464736f6c6343000816003300000000000000000000000041fc21b79f3fde918d9f5cf364061f1c106c0ca2

Deployed Bytecode

0x60806040526004361061011e575f3560e01c80638da5cb5b1161009f578063a9059cbb11610063578063a9059cbb146103a4578063aa8351ab146103e0578063adc5a9721461040a578063dd62ed3e14610432578063f2fde38b1461046e5761011e565b80638da5cb5b146102d65780638f3fa8601461030057806395d89b411461032a578063a14b647814610354578063a1e7a5a41461037c5761011e565b806342966c68116100e657806342966c6814610218578063556191161461024057806370a082311461025c578063715018a61461029857806379cc6790146102ae5761011e565b806306fdde0314610122578063095ea7b31461014c57806318160ddd1461018857806323b872dd146101b2578063313ce567146101ee575b5f80fd5b34801561012d575f80fd5b50610136610496565b6040516101439190612344565b60405180910390f35b348015610157575f80fd5b50610172600480360381019061016d91906123f5565b610526565b60405161017f919061244d565b60405180910390f35b348015610193575f80fd5b5061019c610548565b6040516101a99190612475565b60405180910390f35b3480156101bd575f80fd5b506101d860048036038101906101d3919061248e565b610551565b6040516101e5919061244d565b60405180910390f35b3480156101f9575f80fd5b5061020261063a565b60405161020f91906124f9565b60405180910390f35b348015610223575f80fd5b5061023e60048036038101906102399190612512565b610642565b005b61025a6004803603810190610255919061253d565b610656565b005b348015610267575f80fd5b50610282600480360381019061027d919061258d565b61092e565b60405161028f9190612475565b60405180910390f35b3480156102a3575f80fd5b506102ac610973565b005b3480156102b9575f80fd5b506102d460048036038101906102cf91906123f5565b610986565b005b3480156102e1575f80fd5b506102ea6109a6565b6040516102f791906125c7565b60405180910390f35b34801561030b575f80fd5b506103146109ce565b6040516103219190612475565b60405180910390f35b348015610335575f80fd5b5061033e6109f2565b60405161034b9190612344565b60405180910390f35b34801561035f575f80fd5b5061037a600480360381019061037591906125e0565b610a82565b005b348015610387575f80fd5b506103a2600480360381019061039d9190612657565b610f7e565b005b3480156103af575f80fd5b506103ca60048036038101906103c591906123f5565b6111eb565b6040516103d7919061244d565b60405180910390f35b3480156103eb575f80fd5b506103f461120d565b6040516104019190612475565b60405180910390f35b348015610415575f80fd5b50610430600480360381019061042b919061258d565b611231565b005b34801561043d575f80fd5b50610458600480360381019061045391906126bb565b6112fa565b6040516104659190612475565b60405180910390f35b348015610479575f80fd5b50610494600480360381019061048f919061258d565b61137c565b005b6060600380546104a590612726565b80601f01602080910402602001604051908101604052809291908181526020018280546104d190612726565b801561051c5780601f106104f35761010080835404028352916020019161051c565b820191905f5260205f20905b8154815290600101906020018083116104ff57829003601f168201915b5050505050905090565b5f80610530611400565b905061053d818585611407565b600191505092915050565b5f600254905090565b5f8061055b611400565b9050610568858285611419565b7f00000000000000000000000041fc21b79f3fde918d9f5cf364061f1c106c0ca273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061060d57507f00000000000000000000000041fc21b79f3fde918d9f5cf364061f1c106c0ca273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b156106225761061d8585856114ab565b61062e565b61062d85858561159b565b5b60019150509392505050565b5f6012905090565b61065361064d611400565b82611b98565b50565b804281101561069a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610691906127a0565b60405180910390fd5b6106a2611c17565b5f34116106e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106db90612808565b60405180910390fd5b5f6106ee34611c66565b90505f6106fa34611c8f565b90505f81833461070a9190612853565b6107149190612853565b90505f600267ffffffffffffffff81111561073257610731612886565b5b6040519080825280602002602001820160405280156107605781602001602082028036833780820191505090505b5090507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2815f81518110610797576107966128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106107e6576107e56128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663b6f9de95838a848b426040518663ffffffff1660e01b81526004016108809493929190612997565b5f604051808303818588803b158015610897575f80fd5b505af11580156108a9573d5f803e3d5ffd5b50505050507f00000000000000000000000041fc21b79f3fde918d9f5cf364061f1c106c0ca273ffffffffffffffffffffffffffffffffffffffff166108fc8490811502906040515f60405180830381858888f19350505050158015610911573d5f803e3d5ffd5b5061091c3085611b98565b50505050610928611cb8565b50505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61097b611cc2565b6109845f611d49565b565b61099882610992611400565b83611419565b6109a28282611b98565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f0000000000000000000000000000000000000000006166014eadb2e2ab18000081565b606060048054610a0190612726565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2d90612726565b8015610a785780601f10610a4f57610100808354040283529160200191610a78565b820191905f5260205f20905b815481529060010190602001808311610a5b57829003601f168201915b5050505050905090565b8042811015610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd906127a0565b60405180910390fd5b610ace611c17565b5f73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3390612a2b565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba190612a93565b60405180910390fd5b5f8511610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be390612808565b60405180910390fd5b5f610bf686611e0c565b9050610c0333308861159b565b610c2230737a250d5630b4cf539739df2c5dacb4c659f2488d83611407565b60607f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1603610d8557600267ffffffffffffffff811115610c9257610c91612886565b5b604051908082528060200260200182016040528015610cc05781602001602082028036833780820191505090505b50905030815f81518110610cd757610cd66128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110610d4657610d456128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610ede565b600367ffffffffffffffff811115610da057610d9f612886565b5b604051908082528060200260200182016040528015610dce5781602001602082028036833780820191505090505b50905030815f81518110610de557610de46128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110610e5457610e536128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508781600281518110610ea357610ea26128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583888489426040518663ffffffff1660e01b8152600401610f3f959493929190612ab1565b5f604051808303815f87803b158015610f56575f80fd5b505af1158015610f68573d5f803e3d5ffd5b505050505050610f76611cb8565b505050505050565b8042811015610fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb9906127a0565b60405180910390fd5b610fca611c17565b5f851161100c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100390612808565b60405180910390fd5b61102b30737a250d5630b4cf539739df2c5dacb4c659f2488d87611407565b5f61103586611e0c565b905061104233308861159b565b5f600267ffffffffffffffff81111561105e5761105d612886565b5b60405190808252806020026020018201604052801561108c5781602001602082028036833780820191505090505b50905030815f815181106110a3576110a26128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110611112576111116128b3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94783888489426040518663ffffffff1660e01b81526004016111ad959493929190612ab1565b5f604051808303815f87803b1580156111c4575f80fd5b505af11580156111d6573d5f803e3d5ffd5b5050505050506111e4611cb8565b5050505050565b5f806111f5611400565b905061120281858561159b565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000001e81565b611239611cc2565b611241611c17565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690612b53565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506112f7611cb8565b50565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611384611cc2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113f4575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016113eb91906125c7565b60405180910390fd5b6113fd81611d49565b50565b5f33905090565b6114148383836001611e7a565b505050565b5f61142484846112fa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114a55781811015611496578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161148d93929190612b71565b60405180910390fd5b6114a484848484035f611e7a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361151b575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161151291906125c7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361158b575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161158291906125c7565b60405180910390fd5b611596838383612049565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160090612bf0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90612c58565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156117145750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561176c57507f00000000000000000000000041fc21b79f3fde918d9f5cf364061f1c106c0ca273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117c457507f00000000000000000000000041fc21b79f3fde918d9f5cf364061f1c106c0ca273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561181c57507f0000000000000000000000009f00c648e1bb9488979d8d97a4d4dfc6bc7fc08473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561187457507f0000000000000000000000009f00c648e1bb9488979d8d97a4d4dfc6bc7fc08473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156118cc57507f000000000000000000000000bbab880c4028af3187fe507923ce92449a48307f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561192457507f000000000000000000000000bbab880c4028af3187fe507923ce92449a48307f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156119a0577f0000000000000000000000000000000000000000006166014eadb2e2ab180000816119548461092e565b61195e9190612c76565b111561199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690612d19565b60405180910390fd5b5b7f00000000000000000000000041fc21b79f3fde918d9f5cf364061f1c106c0ca273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a4857507f00000000000000000000000041fc21b79f3fde918d9f5cf364061f1c106c0ca273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611aa057507f0000000000000000000000009f00c648e1bb9488979d8d97a4d4dfc6bc7fc08473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611af857507f000000000000000000000000bbab880c4028af3187fe507923ce92449a48307f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611b87575f611b0782611c66565b90505f611b1383611c8f565b90505f611b2b848385611b269190612c76565b612262565b9050611b388686836114ab565b5f831115611b4b57611b4a8684611b98565b5b5f821115611b7f57611b7e867f00000000000000000000000041fc21b79f3fde918d9f5cf364061f1c106c0ca2846114ab565b5b505050611b93565b611b928383836114ab565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c08575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611bff91906125c7565b60405180910390fd5b611c13825f83612049565b5050565b600260065403611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5390612d81565b60405180910390fd5b6002600681905550565b5f6103e861ffff16600a60ff1683611c7e9190612d9f565b611c889190612e0d565b9050919050565b5f6103e861ffff16601360ff1683611ca79190612d9f565b611cb19190612e0d565b9050919050565b6001600681905550565b611cca611400565b73ffffffffffffffffffffffffffffffffffffffff16611ce86109a6565b73ffffffffffffffffffffffffffffffffffffffff1614611d4757611d0b611400565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611d3e91906125c7565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80611e1783611c66565b90505f611e2384611c8f565b9050611e50337f00000000000000000000000041fc21b79f3fde918d9f5cf364061f1c106c0ca28461159b565b611e5a3383611b98565b808285611e679190612853565b611e719190612853565b92505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611eea575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611ee191906125c7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f5a575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611f5191906125c7565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015612043578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161203a9190612475565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612099578060025f82825461208d9190612c76565b92505081905550612167565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612122578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161211993929190612b71565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121ae578060025f82825403925050819055506121f8565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516122559190612475565b60405180910390a3505050565b5f818310156122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d90612e87565b60405180910390fd5b81836122b29190612853565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156122f15780820151818401526020810190506122d6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612316826122ba565b61232081856122c4565b93506123308185602086016122d4565b612339816122fc565b840191505092915050565b5f6020820190508181035f83015261235c818461230c565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61239182612368565b9050919050565b6123a181612387565b81146123ab575f80fd5b50565b5f813590506123bc81612398565b92915050565b5f819050919050565b6123d4816123c2565b81146123de575f80fd5b50565b5f813590506123ef816123cb565b92915050565b5f806040838503121561240b5761240a612364565b5b5f612418858286016123ae565b9250506020612429858286016123e1565b9150509250929050565b5f8115159050919050565b61244781612433565b82525050565b5f6020820190506124605f83018461243e565b92915050565b61246f816123c2565b82525050565b5f6020820190506124885f830184612466565b92915050565b5f805f606084860312156124a5576124a4612364565b5b5f6124b2868287016123ae565b93505060206124c3868287016123ae565b92505060406124d4868287016123e1565b9150509250925092565b5f60ff82169050919050565b6124f3816124de565b82525050565b5f60208201905061250c5f8301846124ea565b92915050565b5f6020828403121561252757612526612364565b5b5f612534848285016123e1565b91505092915050565b5f805f6060848603121561255457612553612364565b5b5f612561868287016123e1565b9350506020612572868287016123ae565b9250506040612583868287016123e1565b9150509250925092565b5f602082840312156125a2576125a1612364565b5b5f6125af848285016123ae565b91505092915050565b6125c181612387565b82525050565b5f6020820190506125da5f8301846125b8565b92915050565b5f805f805f60a086880312156125f9576125f8612364565b5b5f612606888289016123ae565b9550506020612617888289016123e1565b9450506040612628888289016123e1565b9350506060612639888289016123ae565b925050608061264a888289016123e1565b9150509295509295909350565b5f805f806080858703121561266f5761266e612364565b5b5f61267c878288016123e1565b945050602061268d878288016123e1565b935050604061269e878288016123ae565b92505060606126af878288016123e1565b91505092959194509250565b5f80604083850312156126d1576126d0612364565b5b5f6126de858286016123ae565b92505060206126ef858286016123ae565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061273d57607f821691505b6020821081036127505761274f6126f9565b5b50919050565b7f556e69737761705632526f757465723a204558504952454400000000000000005f82015250565b5f61278a6018836122c4565b915061279582612756565b602082019050919050565b5f6020820190508181035f8301526127b78161277e565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f6127f2601d836122c4565b91506127fd826127be565b602082019050919050565b5f6020820190508181035f83015261281f816127e6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61285d826123c2565b9150612868836123c2565b92508282039050818111156128805761287f612826565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61291281612387565b82525050565b5f6129238383612909565b60208301905092915050565b5f602082019050919050565b5f612945826128e0565b61294f81856128ea565b935061295a836128fa565b805f5b8381101561298a5781516129718882612918565b975061297c8361292f565b92505060018101905061295d565b5085935050505092915050565b5f6080820190506129aa5f830187612466565b81810360208301526129bc818661293b565b90506129cb60408301856125b8565b6129d86060830184612466565b95945050505050565b7f496e76616c696420746f6b656e206164647265737300000000000000000000005f82015250565b5f612a156015836122c4565b9150612a20826129e1565b602082019050919050565b5f6020820190508181035f830152612a4281612a09565b9050919050565b7f43616e6e6f74207377617020746f207468652073616d6520746f6b656e0000005f82015250565b5f612a7d601d836122c4565b9150612a8882612a49565b602082019050919050565b5f6020820190508181035f830152612aaa81612a71565b9050919050565b5f60a082019050612ac45f830188612466565b612ad16020830187612466565b8181036040830152612ae3818661293b565b9050612af260608301856125b8565b612aff6080830184612466565b9695505050505050565b7f496e76616c6964207061697220616464726573730000000000000000000000005f82015250565b5f612b3d6014836122c4565b9150612b4882612b09565b602082019050919050565b5f6020820190508181035f830152612b6a81612b31565b9050919050565b5f606082019050612b845f8301866125b8565b612b916020830185612466565b612b9e6040830184612466565b949350505050565b7f5472616e736665722066726f6d20746865207a65726f206164647265737300005f82015250565b5f612bda601e836122c4565b9150612be582612ba6565b602082019050919050565b5f6020820190508181035f830152612c0781612bce565b9050919050565b7f5472616e7366657220746f20746865207a65726f2061646472657373000000005f82015250565b5f612c42601c836122c4565b9150612c4d82612c0e565b602082019050919050565b5f6020820190508181035f830152612c6f81612c36565b9050919050565b5f612c80826123c2565b9150612c8b836123c2565b9250828201905080821115612ca357612ca2612826565b5b92915050565b7f5472616e7366657220776f756c6420657863656564206d6178696d756d2077615f8201527f6c6c65742062616c616e63650000000000000000000000000000000000000000602082015250565b5f612d03602c836122c4565b9150612d0e82612ca9565b604082019050919050565b5f6020820190508181035f830152612d3081612cf7565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f612d6b601f836122c4565b9150612d7682612d37565b602082019050919050565b5f6020820190508181035f830152612d9881612d5f565b9050919050565b5f612da9826123c2565b9150612db4836123c2565b9250828202612dc2816123c2565b91508282048414831517612dd957612dd8612826565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612e17826123c2565b9150612e22836123c2565b925082612e3257612e31612de0565b5b828204905092915050565b7f466565206578636565647320746865207472616e7366657220616d6f756e74005f82015250565b5f612e71601f836122c4565b9150612e7c82612e3d565b602082019050919050565b5f6020820190508181035f830152612e9e81612e65565b905091905056fea26469706673582212208f7cbf9be634fc96afb8294e212e76144746d162d8357c41b530a120b595b4a464736f6c63430008160033

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

00000000000000000000000041fc21b79f3fde918d9f5cf364061f1c106c0ca2

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x41fC21B79f3fDe918d9F5CF364061F1c106c0Ca2

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000041fc21b79f3fde918d9f5cf364061f1c106c0ca2


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.