ETH Price: $1,940.22 (-2.31%)
 

Overview

Max Total Supply

17,654,629,200,676.597903758398871299 AMATIAS

Holders

86

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
AMATIAS

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : AMATIAS.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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, 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, 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.
     *
     * Requirements:
     *
     * - 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 integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - 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, 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
     * `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 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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

pragma solidity >=0.5.0;

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

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

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

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

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

pragma solidity >=0.6.2;

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

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

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

pragma solidity >=0.6.2;

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

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

contract AMATIAS is Context, IERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 private _uniswapV2Router;

    mapping (address => uint) private _cooldown;

    mapping (address => uint256) private _balances;

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

    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) private _isExcludedMaxTransactionAmount;
    mapping (address => bool) private _isBlacklisted;

    bool public tradingOpen;
    bool public launched;
    bool private _swapping;
    bool public swapEnabled = false;
    bool public cooldownEnabled = false;
    bool public feesEnabled = true;
    bool public burnEnabled = true;

    string private constant _name = "AMATIAS";
    string private constant _symbol = "AMATIAS";

    uint8 private constant _decimals = 18;

    uint256 private _totalSupply = 18_700_000_000_000 * (10**_decimals);

    uint256 public maxBuy = _totalSupply;
    uint256 public maxSell = _totalSupply;
    uint256 public maxWallet = _totalSupply;

    uint256 public buyDigit = 10;
    uint256 public sellDigit = 10;
    uint256 public walletDigit = 20;

    uint256 public launchBlock = 0;
    uint256 private _deadBlocks = 0;
    uint256 private _cooldownBlocks = 1;

    uint256 public constant FEE_DIVISOR = 1000;
    uint256 public constant LIMIT_DIVISOR = 1000;
    uint256 public buyOpsFee = 15;
    uint256 private _previousBuyOpsFee = buyOpsFee;
    uint256 public buyBurnFee = 15;
    uint256 private _previousBuyBurnFee = buyBurnFee;
    uint256 public sellOpsFee = 15;
    uint256 private _previousSellOpsFee = sellOpsFee;
    uint256 public sellBurnFee = 15;
    uint256 private _previousSellBurnFee = sellBurnFee;

    uint256 private _tokensForOps;
    uint256 private _tokensForBurn;
    uint256 private _swapTokensAtAmount = 0;

    address payable private _opsWallet = payable(0xa6f8daE52CA4EC7b142BF2155f11D4E66f394A65);
    address private _uniswapV2Pair;
    address private DEAD = 0x000000000000000000000000000000000000dEaD;
    address private ZERO = 0x0000000000000000000000000000000000000000;
    
    constructor (address addy1, address addy2) {
        _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(_uniswapV2Router), _totalSupply);
        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        IERC20(_uniswapV2Pair).approve(address(_uniswapV2Router), type(uint).max);

        _balances[_msgSender()] = _totalSupply;
        _transferStandard(_msgSender(), addy1, _totalSupply.mul(15).div(1000));
        _transferStandard(_msgSender(), addy2, _totalSupply.mul(15).div(1000));

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[DEAD] = true;
        _isExcludedFromFees[_opsWallet] = true;
        _isExcludedFromFees[addy1] = true;
        _isExcludedFromFees[addy2] = true;

        _isExcludedMaxTransactionAmount[owner()] = true;
        _isExcludedMaxTransactionAmount[address(this)] = true;
        _isExcludedMaxTransactionAmount[DEAD] = true;
        _isExcludedMaxTransactionAmount[_opsWallet] = true;
        _isExcludedMaxTransactionAmount[addy1] = true;
        _isExcludedMaxTransactionAmount[addy2] = true;

        emit Transfer(ZERO, _msgSender(), _totalSupply);
    }

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

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

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

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != ZERO, "ERC20: approve from the zero address");
        require(spender != ZERO, "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(address from, address to, uint256 amount) private {
        require(from != ZERO, "ERC20: transfer from the zero address");
        require(to != ZERO, "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        bool takeFee = true;
        bool shouldSwap = false;
        if (from != owner() && to != owner() && to != ZERO && to != DEAD && !_swapping) {
            require(!_isBlacklisted[from] && !_isBlacklisted[to]);

            if(!tradingOpen) require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not allowed yet.");

            if (cooldownEnabled) {
                if (to != address(_uniswapV2Router) && to != address(_uniswapV2Pair)) {
                    require(_cooldown[tx.origin] < block.number - _cooldownBlocks && _cooldown[to] < block.number - _cooldownBlocks, "Transfer delay enabled. Try again later.");
                    _cooldown[tx.origin] = block.number;
                    _cooldown[to] = block.number;
                }
            }

            if (from == _uniswapV2Pair && to != address(_uniswapV2Router) && !_isExcludedMaxTransactionAmount[to]) {
                require(amount <= maxBuy, "Transfer amount exceeds the maxBuy.");
                require(balanceOf(to) + amount <= maxWallet, "Exceeds maximum wallet token amount.");
            }
            
            if (to == _uniswapV2Pair && from != address(_uniswapV2Router) && !_isExcludedMaxTransactionAmount[from]) {
                require(amount <= maxSell, "Transfer amount exceeds the maxSell.");
                shouldSwap = true;
            }
        }

        if(_isExcludedFromFees[from] || _isExcludedFromFees[to] || !feesEnabled) takeFee = false;

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = (contractTokenBalance > _swapTokensAtAmount) && shouldSwap;

        if (canSwap && swapEnabled && !_swapping && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            _swapping = true;
            swapBack();
            _swapping = false;
        }

        _tokenTransfer(from, to, amount, takeFee, shouldSwap);
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;
        
        if (contractBalance == 0 || _tokensForOps == 0) return;

        if (contractBalance > _swapTokensAtAmount * 5) contractBalance = _swapTokensAtAmount * 5;

        swapTokensForETH(contractBalance); 
        
        _tokensForOps = 0;
        
        (success,) = address(_opsWallet).call{value: address(this).balance}("");
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
    
    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee, bool isSell) private {
        if (!takeFee) removeFees();
        else amount = _takeFees(sender, amount, isSell);

        _transferStandard(sender, recipient, amount);
        
        if (!takeFee) restoreFees();
    }

    function _takeFees(address sender, uint256 amount, bool isSell) private returns (uint256) {
        uint256 _totalFees;
        uint ops;
        uint burn;
        if (launchBlock + _deadBlocks >= block.number) {
            _totalFees = _getBotTotalFees();
            ops = _getBotOpsFees();
            burn = _getBotBurnFees();
        } else {
            _totalFees = _getTotalFees(isSell);
            if (isSell) {
                ops = sellOpsFee;
                burn = sellBurnFee;
            } else {
                ops = buyOpsFee;
                burn = buyBurnFee;
            }
        }
        
        uint256 fees;
        if (_totalFees > 0) {
            fees = amount.mul(_totalFees).div(FEE_DIVISOR);
            _tokensForOps += fees * ops / _totalFees;
            _tokensForBurn += fees * burn / _totalFees;
        }
            
        if (fees > 0) {
            _transferStandard(sender, address(this), fees);
            if (_tokensForBurn > 0 && burnEnabled) {
                _burn(address(this), _tokensForBurn);
                updateLimits();
                _tokensForBurn = 0;
            }
        }
            
        return amount -= fees;
    }

    function updateLimits() private {
        maxBuy = totalSupply() * buyDigit / LIMIT_DIVISOR;
        maxSell = totalSupply() * sellDigit / LIMIT_DIVISOR;
        maxWallet = totalSupply() * walletDigit / LIMIT_DIVISOR;
        _swapTokensAtAmount = totalSupply() * 5 / 10000;
    }

    function removeFees() private {
        if (buyOpsFee == 0 && buyBurnFee == 0 && sellOpsFee == 0 && sellBurnFee == 0) return;

        _previousBuyOpsFee = buyOpsFee;
        _previousBuyBurnFee = buyBurnFee;
        _previousSellOpsFee = sellOpsFee;
        _previousSellBurnFee = sellBurnFee;
        
        buyOpsFee = 0;
        buyBurnFee = 0;
        sellOpsFee = 0;
        sellBurnFee = 0;
    }
    
    function restoreFees() private {
        buyOpsFee = _previousBuyOpsFee;
        buyBurnFee = _previousBuyBurnFee;
        sellOpsFee = _previousSellOpsFee;
        sellBurnFee = _previousSellBurnFee;
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        _balances[sender] = _balances[sender].sub(tAmount);
        _balances[recipient] = _balances[recipient].add(tAmount);
        emit Transfer(sender, recipient, tAmount);
    }

    function _getTotalFees(bool isSell) private view returns(uint256) {
        if (isSell) return sellOpsFee.add(sellBurnFee);
        return buyOpsFee.add(buyBurnFee);
    }

    function _getBotTotalFees() private pure returns(uint256) {
        return 998;
    }

    function _getBotOpsFees() private pure returns(uint256) {
        return 499;
    }

    function _getBotBurnFees() private pure returns(uint256) {
        return 499;
    }

    function isBlacklisted(address wallet) external view returns (bool) {
        return _isBlacklisted[wallet];
    }

    function ACL_setExcludedFromFees(address[] memory accounts, bool isEx) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) _isExcludedFromFees[accounts[i]] = isEx;
    }
    
    function ACL_setExcludeFromMaxTransaction(address[] memory accounts, bool isEx) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) _isExcludedMaxTransactionAmount[accounts[i]] = isEx;
    }
    
    function ACL_setBlacklisted(address[] memory accounts, bool exempt) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) _isBlacklisted[accounts[i]] = exempt;
    }
    
    function SETTINGS_launch() public onlyOwner {
        require(!launched,"Trading is already open");
        _uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
        swapEnabled = true;
        cooldownEnabled = true;
        maxBuy = _totalSupply.mul(1).div(100);
        maxSell = _totalSupply.mul(1).div(100);
        maxWallet = _totalSupply.mul(2).div(100);
        _swapTokensAtAmount = _totalSupply.mul(5).div(10000);
        launched = true;
    }
    
    function SETTINGS_openTrading(uint256 blocks) public onlyOwner() {
        require(!tradingOpen && launched,"Trading is already open");
        tradingOpen = true;
        launchBlock = block.number;
        _deadBlocks = blocks;
    }

    function SETTINGS_setCooldownEnabled(bool onoff) public onlyOwner {
        cooldownEnabled = onoff;
    }

    function SETTINGS_setSwapEnabled(bool onoff) public onlyOwner {
        swapEnabled = onoff;
    }

    function SETTINGS_setFeesEnabled(bool onoff) public onlyOwner {
        feesEnabled = onoff;
    }

    function SETTINGS_setBurnEnabled(bool onoff) public onlyOwner {
        burnEnabled = onoff;
    }

    function SETTINGS_setMaxBuy(uint256 _maxBuy) public onlyOwner {
        require(_maxBuy >= (totalSupply().mul(1).div(10000)), "Max buy amount cannot be lower than 0.01% total supply.");
        maxBuy = _maxBuy;
    }

    function SETTINGS_setMaxSell(uint256 _maxSell) public onlyOwner {
        require(_maxSell >= (totalSupply().mul(1).div(10000)), "Max sell amount cannot be lower than 0.01% total supply.");
        maxSell = _maxSell;
    }
    
    function SETTINGS_setMaxWallet(uint256 _maxWallet) public onlyOwner {
        require(_maxWallet >= (totalSupply().mul(1).div(1000)), "Max wallet amount cannot be lower than 0.1% total supply.");
        maxWallet = _maxWallet;
    }
    
    function SETTINGS_setDigits(uint256 _buyDigit, uint256 _sellDigit, uint256 _walletDigit) public onlyOwner {
        require(_buyDigit >= 1, "Max buy amount cannot be lower than 0.1% total supply.");
        require(_sellDigit >= 1, "Max sell amount cannot be lower than 0.1% total supply.");
        require(_walletDigit >= 1, "Max wallet amount cannot be lower than 0.1% total supply.");
        buyDigit = _buyDigit;
        sellDigit = _sellDigit;
        walletDigit = _walletDigit;
    }
    
    function SETTINGS_setSwapTokensAtAmount(uint256 swapAmount) public onlyOwner {
        require(swapAmount >= (totalSupply().mul(1).div(100000)), "Swap amount cannot be lower than 0.001% total supply.");
        require(swapAmount <= (totalSupply().mul(5).div(1000)), "Swap amount cannot be higher than 0.5% total supply.");
        _swapTokensAtAmount = swapAmount;
    }

    function SETTINGS_setBuyFee(uint256 newBuyOpsFee, uint256 newBuyBurnFee) public onlyOwner {
        require(newBuyOpsFee.add(newBuyBurnFee) <= 100, "Must keep buy taxes below 10%");
        buyOpsFee = newBuyOpsFee;
        buyBurnFee = newBuyBurnFee;
    }

    function SETTINGS_setSellFee(uint256 newSellOpsFee, uint256 newSellBurnFee) public onlyOwner {
        require(newSellOpsFee.add(newSellBurnFee) <= 100, "Must keep sell taxes below 10%");
        sellOpsFee = newSellOpsFee;
        sellBurnFee = newSellBurnFee;
    }

    function SETTINGS_setOpsWallet(address opsWalletAddy) public onlyOwner {
        require(opsWalletAddy != ZERO, "_opsWallet address cannot be 0");
        _isExcludedFromFees[_opsWallet] = false;
        _isExcludedMaxTransactionAmount[_opsWallet] = false;
        _opsWallet = payable(opsWalletAddy);
        _isExcludedFromFees[_opsWallet] = true;
        _isExcludedMaxTransactionAmount[_opsWallet] = true;
    }

    function SETTINGS_setCooldownBlocks(uint256 blocks) public onlyOwner {
        _cooldownBlocks = blocks;
    }

    function SETTINGS_liftLimits() public onlyOwner {
        buyDigit = LIMIT_DIVISOR;
        sellDigit = LIMIT_DIVISOR;
        walletDigit = LIMIT_DIVISOR;
        cooldownEnabled = false;
    }

    function UTILITY_rescueETH() public onlyOwner {
        bool success;
        (success,) = address(msg.sender).call{value: address(this).balance}("");
    }

    function UTILITY_rescueTokens(address tokenAddress) public onlyOwner {
        require(tokenAddress != address(this), "Cannot rescue this token");
        require(IERC20(tokenAddress).balanceOf(address(this)) > 0, "No tokens being holded.");
        uint amount = IERC20(tokenAddress).balanceOf(address(this));
        IERC20(tokenAddress).transfer(msg.sender, amount);
    }

    receive() external payable {}
    fallback() external payable {}

}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"addy1","type":"address"},{"internalType":"address","name":"addy2","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"ACL_setBlacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"ACL_setExcludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"ACL_setExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"FEE_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIMIT_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SETTINGS_launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SETTINGS_liftLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blocks","type":"uint256"}],"name":"SETTINGS_openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"SETTINGS_setBurnEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyOpsFee","type":"uint256"},{"internalType":"uint256","name":"newBuyBurnFee","type":"uint256"}],"name":"SETTINGS_setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blocks","type":"uint256"}],"name":"SETTINGS_setCooldownBlocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"SETTINGS_setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyDigit","type":"uint256"},{"internalType":"uint256","name":"_sellDigit","type":"uint256"},{"internalType":"uint256","name":"_walletDigit","type":"uint256"}],"name":"SETTINGS_setDigits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"SETTINGS_setFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuy","type":"uint256"}],"name":"SETTINGS_setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSell","type":"uint256"}],"name":"SETTINGS_setMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"SETTINGS_setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"opsWalletAddy","type":"address"}],"name":"SETTINGS_setOpsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSellOpsFee","type":"uint256"},{"internalType":"uint256","name":"newSellBurnFee","type":"uint256"}],"name":"SETTINGS_setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"SETTINGS_setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapAmount","type":"uint256"}],"name":"SETTINGS_setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"UTILITY_rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"UTILITY_rescueTokens","outputs":[],"stateMutability":"nonpayable","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":"burnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyOpsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"feesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellOpsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600860036101000a81548160ff0219169083151502179055506000600860046101000a81548160ff0219169083151502179055506001600860056101000a81548160ff0219169083151502179055506001600860066101000a81548160ff0219169083151502179055506012600a62000080919062001296565b651101eedb7800620000939190620012e7565b600955600954600a55600954600b55600954600c55600a600d55600a600e556014600f55600060105560006011556001601255600f601355601354601455600f601555601554601655600f601755601754601855600f601955601954601a556000601d5573a6f8dae52ca4ec7b142bf2155f11d4e66f394a65601e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead602060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000602160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001de57600080fd5b50604051620069203803806200692083398181016040528101906200020491906200139c565b620002246200021862000bf060201b60201c565b62000bf860201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002b030600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660095462000cbc60201b60201c565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200031e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003449190620013e3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003ce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003f49190620013e3565b6040518363ffffffff1660e01b81526004016200041392919062001426565b6020604051808303816000875af115801562000433573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004599190620013e3565b601f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200053a92919062001464565b6020604051808303816000875af11580156200055a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005809190620014ce565b50600954600360006200059862000bf060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200062f620005ea62000bf060201b60201c565b83620006236103e86200060f600f60095462000ecf60201b62001f841790919060201c565b62000ee760201b62001f9a1790919060201c565b62000eff60201b60201c565b620006886200064362000bf060201b60201c565b826200067c6103e862000668600f60095462000ecf60201b62001f841790919060201c565b62000ee760201b62001f9a1790919060201c565b62000eff60201b60201c565b6001600560006200069e620010a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160056000602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160056000601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016006600062000901620010a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000b5e62000bf060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60095460405162000be0919062001500565b60405180910390a350506200173b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000d4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d4690620015a4565b60405180910390fd5b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000de2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000dd9906200163c565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000ec2919062001500565b60405180910390a3505050565b6000818362000edf9190620012e7565b905092915050565b6000818362000ef791906200168d565b905092915050565b62000f5881600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620010cc60201b62001fb01790919060201c565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555062000ff481600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620010e460201b62001fc61790919060201c565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162001096919062001500565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008183620010dc9190620016c5565b905092915050565b60008183620010f4919062001700565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200118a57808604811115620011625762001161620010fc565b5b6001851615620011725780820291505b808102905062001182856200112b565b945062001142565b94509492505050565b600082620011a5576001905062001278565b81620011b5576000905062001278565b8160018114620011ce5760028114620011d9576200120f565b600191505062001278565b60ff841115620011ee57620011ed620010fc565b5b8360020a915084821115620012085762001207620010fc565b5b5062001278565b5060208310610133831016604e8410600b8410161715620012495782820a905083811115620012435762001242620010fc565b5b62001278565b62001258848484600162001138565b92509050818404811115620012725762001271620010fc565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620012a3826200127f565b9150620012b08362001289565b9250620012df7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001193565b905092915050565b6000620012f4826200127f565b915062001301836200127f565b925082820262001311816200127f565b915082820484148315176200132b576200132a620010fc565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620013648262001337565b9050919050565b620013768162001357565b81146200138257600080fd5b50565b60008151905062001396816200136b565b92915050565b60008060408385031215620013b657620013b562001332565b5b6000620013c68582860162001385565b9250506020620013d98582860162001385565b9150509250929050565b600060208284031215620013fc57620013fb62001332565b5b60006200140c8482850162001385565b91505092915050565b620014208162001357565b82525050565b60006040820190506200143d600083018562001415565b6200144c602083018462001415565b9392505050565b6200145e816200127f565b82525050565b60006040820190506200147b600083018562001415565b6200148a602083018462001453565b9392505050565b60008115159050919050565b620014a88162001491565b8114620014b457600080fd5b50565b600081519050620014c8816200149d565b92915050565b600060208284031215620014e757620014e662001332565b5b6000620014f784828501620014b7565b91505092915050565b600060208201905062001517600083018462001453565b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200158c6024836200151d565b915062001599826200152e565b604082019050919050565b60006020820190508181036000830152620015bf816200157d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620016246022836200151d565b91506200163182620015c6565b604082019050919050565b60006020820190508181036000830152620016578162001615565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200169a826200127f565b9150620016a7836200127f565b925082620016ba57620016b96200165e565b5b828204905092915050565b6000620016d2826200127f565b9150620016df836200127f565b9250828203905081811115620016fa57620016f9620010fc565b5b92915050565b60006200170d826200127f565b91506200171a836200127f565b9250828201905080821115620017355762001734620010fc565b5b92915050565b6151d5806200174b6000396000f3fe60806040526004361061031d5760003560e01c80638da5cb5b116101ab578063cdba0f7f116100f7578063f2fde38b11610095578063f90e94c91161006f578063f90e94c914610b5b578063fa6dafab14610b72578063fe575a8714610b9b578063ffb54a9914610bd857610324565b8063f2fde38b14610ade578063f7a7032914610b07578063f8b45b0514610b3057610324565b8063dd62ed3e116100d1578063dd62ed3e14610a24578063e71dc3f514610a61578063e83c97f214610a8c578063e903d85914610ab557610324565b8063cdba0f7f146109b9578063ce774382146109d0578063d00efb2f146109f957610324565b8063a9059cbb11610164578063b202b6541161013e578063b202b65414610911578063b8eb35461461093c578063bf502a7214610967578063c5d30e501461099057610324565b8063a9059cbb1461087e578063a985ceef146108bb578063adb873bd146108e657610324565b80638da5cb5b1461078057806395d89b41146107ab57806397c21571146107d65780639e5437ef146107ff5780639e93ad8e14610828578063a64e4f8a1461085357610324565b806363b74caf1161026a57806370db69d61161022357806378dd7d41116101fd57806378dd7d41146106d65780637ab43983146107015780638091f3bf1461072c57806388b5e8cd1461075757610324565b806370db69d61461066b578063715018a614610696578063783fa1a3146106ad57610324565b806363b74caf1461055b578063659ffb9c146105865780636d35bff8146105b15780636ddd1713146105da5780636f8e10cd1461060557806370a082311461062e57610324565b806323b872dd116102d75780633df2ec08116102b15780633df2ec08146104b5578063452f88cf146104de57806347d17e2f146105075780635dc96d161461053057610324565b806323b872dd146104365780632e5e816f14610473578063313ce5671461048a57610324565b80627e72881461032657806306fdde031461034f578063095ea7b31461037a5780630fb56164146103b757806318160ddd146103e25780632044c7761461040d57610324565b3661032457005b005b34801561033257600080fd5b5061034d60048036038101906103489190613ae6565b610c03565b005b34801561035b57600080fd5b50610364610ca0565b6040516103719190613bc1565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613c19565b610cdd565b6040516103ae9190613c68565b60405180910390f35b3480156103c357600080fd5b506103cc610cfb565b6040516103d99190613c92565b60405180910390f35b3480156103ee57600080fd5b506103f7610d01565b6040516104049190613c92565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f9190613cad565b610d0b565b005b34801561044257600080fd5b5061045d60048036038101906104589190613cda565b610d30565b60405161046a9190613c68565b60405180910390f35b34801561047f57600080fd5b50610488610e09565b005b34801561049657600080fd5b5061049f610e49565b6040516104ac9190613d49565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190613cad565b610e52565b005b3480156104ea57600080fd5b5061050560048036038101906105009190613d64565b610e77565b005b34801561051357600080fd5b5061052e60048036038101906105299190613d91565b610e89565b005b34801561053c57600080fd5b50610545610ef9565b6040516105529190613c68565b60405180910390f35b34801561056757600080fd5b50610570610f0c565b60405161057d9190613c92565b60405180910390f35b34801561059257600080fd5b5061059b610f12565b6040516105a89190613c92565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190613dd1565b610f18565b005b3480156105e657600080fd5b506105ef611006565b6040516105fc9190613c68565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190613d91565b611019565b005b34801561063a57600080fd5b5061065560048036038101906106509190613e24565b611089565b6040516106629190613c92565b60405180910390f35b34801561067757600080fd5b506106806110d2565b60405161068d9190613c92565b60405180910390f35b3480156106a257600080fd5b506106ab6110d8565b005b3480156106b957600080fd5b506106d460048036038101906106cf9190613d64565b6110ec565b005b3480156106e257600080fd5b506106eb6111e1565b6040516106f89190613c92565b60405180910390f35b34801561070d57600080fd5b506107166111e7565b6040516107239190613c92565b60405180910390f35b34801561073857600080fd5b506107416111ed565b60405161074e9190613c68565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190613ae6565b611200565b005b34801561078c57600080fd5b5061079561129d565b6040516107a29190613e60565b60405180910390f35b3480156107b757600080fd5b506107c06112c6565b6040516107cd9190613bc1565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f89190613ae6565b611303565b005b34801561080b57600080fd5b5061082660048036038101906108219190613e24565b6113a0565b005b34801561083457600080fd5b5061083d611664565b60405161084a9190613c92565b60405180910390f35b34801561085f57600080fd5b5061086861166a565b6040516108759190613c68565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a09190613c19565b61167d565b6040516108b29190613c68565b60405180910390f35b3480156108c757600080fd5b506108d061169b565b6040516108dd9190613c68565b60405180910390f35b3480156108f257600080fd5b506108fb6116ae565b6040516109089190613c92565b60405180910390f35b34801561091d57600080fd5b506109266116b4565b6040516109339190613c92565b60405180910390f35b34801561094857600080fd5b506109516116ba565b60405161095e9190613c92565b60405180910390f35b34801561097357600080fd5b5061098e60048036038101906109899190613e24565b6116c0565b005b34801561099c57600080fd5b506109b760048036038101906109b29190613d64565b6118f3565b005b3480156109c557600080fd5b506109ce61198f565b005b3480156109dc57600080fd5b506109f760048036038101906109f29190613d64565b611a08565b005b348015610a0557600080fd5b50610a0e611a8b565b604051610a1b9190613c92565b60405180910390f35b348015610a3057600080fd5b50610a4b6004803603810190610a469190613e7b565b611a91565b604051610a589190613c92565b60405180910390f35b348015610a6d57600080fd5b50610a76611b18565b604051610a839190613c92565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae9190613cad565b611b1e565b005b348015610ac157600080fd5b50610adc6004803603810190610ad79190613cad565b611b43565b005b348015610aea57600080fd5b50610b056004803603810190610b009190613e24565b611b68565b005b348015610b1357600080fd5b50610b2e6004803603810190610b299190613d64565b611beb565b005b348015610b3c57600080fd5b50610b45611c6e565b604051610b529190613c92565b60405180910390f35b348015610b6757600080fd5b50610b70611c74565b005b348015610b7e57600080fd5b50610b996004803603810190610b949190613d64565b611e98565b005b348015610ba757600080fd5b50610bc26004803603810190610bbd9190613e24565b611f1b565b604051610bcf9190613c68565b60405180910390f35b348015610be457600080fd5b50610bed611f71565b604051610bfa9190613c68565b60405180910390f35b610c0b611fdc565b60005b8251811015610c9b578160066000858481518110610c2f57610c2e613ebb565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c9390613f19565b915050610c0e565b505050565b60606040518060400160405280600781526020017f414d415449415300000000000000000000000000000000000000000000000000815250905090565b6000610cf1610cea61205a565b8484612062565b6001905092915050565b6103e881565b6000600954905090565b610d13611fdc565b80600860066101000a81548160ff02191690831515021790555050565b6000610d3d84848461226d565b610dfe84610d4961205a565b610df98560405180606001604052806028815260200161517860289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610daf61205a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e069092919063ffffffff16565b612062565b600190509392505050565b610e11611fdc565b6103e8600d819055506103e8600e819055506103e8600f819055506000600860046101000a81548160ff021916908315150217905550565b60006012905090565b610e5a611fdc565b80600860046101000a81548160ff02191690831515021790555050565b610e7f611fdc565b8060128190555050565b610e91611fdc565b6064610ea68284611fc690919063ffffffff16565b1115610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90613fad565b60405180910390fd5b81601381905550806015819055505050565b600860069054906101000a900460ff1681565b600e5481565b60175481565b610f20611fdc565b6001831015610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b9061403f565b60405180910390fd5b6001821015610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f906140d1565b60405180910390fd5b6001811015610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390614163565b60405180910390fd5b82600d8190555081600e8190555080600f81905550505050565b600860039054906101000a900460ff1681565b611021611fdc565b60646110368284611fc690919063ffffffff16565b1115611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e906141cf565b60405180910390fd5b81601781905550806019819055505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a5481565b6110e0611fdc565b6110ea6000612e5b565b565b6110f4611fdc565b611124620186a06111166001611108610d01565b611f8490919063ffffffff16565b611f9a90919063ffffffff16565b811015611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90614261565b60405180910390fd5b6111956103e86111876005611179610d01565b611f8490919063ffffffff16565b611f9a90919063ffffffff16565b8111156111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce906142f3565b60405180910390fd5b80601d8190555050565b60135481565b600f5481565b600860019054906101000a900460ff1681565b611208611fdc565b60005b825181101561129857816007600085848151811061122c5761122b613ebb565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061129090613f19565b91505061120b565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600781526020017f414d415449415300000000000000000000000000000000000000000000000000815250905090565b61130b611fdc565b60005b825181101561139b57816005600085848151811061132f5761132e613ebb565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061139390613f19565b91505061130e565b505050565b6113a8611fdc565b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f9061435f565b60405180910390fd5b600060056000601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060066000601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080601e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160056000601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6103e881565b600860059054906101000a900460ff1681565b600061169161168a61205a565b848461226d565b6001905092915050565b600860049054906101000a900460ff1681565b60195481565b600d5481565b600b5481565b6116c8611fdc565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d906143cb565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117719190613e60565b602060405180830381865afa15801561178e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b29190614400565b116117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e990614479565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161182d9190613e60565b602060405180830381865afa15801561184a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186e9190614400565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016118ab929190614499565b6020604051808303816000875af11580156118ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ee91906144d7565b505050565b6118fb611fdc565b600860009054906101000a900460ff161580156119245750600860019054906101000a900460ff165b611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195a90614550565b60405180910390fd5b6001600860006101000a81548160ff021916908315150217905550436010819055508060118190555050565b611997611fdc565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516119bd906145a1565b60006040518083038185875af1925050503d80600081146119fa576040519150601f19603f3d011682016040523d82523d6000602084013e6119ff565b606091505b50508091505050565b611a10611fdc565b611a3f612710611a316001611a23610d01565b611f8490919063ffffffff16565b611f9a90919063ffffffff16565b811015611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890614628565b60405180910390fd5b80600b8190555050565b60105481565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60155481565b611b26611fdc565b80600860036101000a81548160ff02191690831515021790555050565b611b4b611fdc565b80600860056101000a81548160ff02191690831515021790555050565b611b70611fdc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd6906146ba565b60405180910390fd5b611be881612e5b565b50565b611bf3611fdc565b611c22612710611c146001611c06610d01565b611f8490919063ffffffff16565b611f9a90919063ffffffff16565b811015611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b9061474c565b60405180910390fd5b80600a8190555050565b600c5481565b611c7c611fdc565b600860019054906101000a900460ff1615611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390614550565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730611d1530611089565b600080611d2061129d565b426040518863ffffffff1660e01b8152600401611d42969594939291906147b1565b60606040518083038185885af1158015611d60573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d859190614812565b5050506001600860036101000a81548160ff0219169083151502179055506001600860046101000a81548160ff021916908315150217905550611de76064611dd96001600954611f8490919063ffffffff16565b611f9a90919063ffffffff16565b600a81905550611e166064611e086001600954611f8490919063ffffffff16565b611f9a90919063ffffffff16565b600b81905550611e456064611e376002600954611f8490919063ffffffff16565b611f9a90919063ffffffff16565b600c81905550611e75612710611e676005600954611f8490919063ffffffff16565b611f9a90919063ffffffff16565b601d819055506001600860016101000a81548160ff021916908315150217905550565b611ea0611fdc565b611ecf6103e8611ec16001611eb3610d01565b611f8490919063ffffffff16565b611f9a90919063ffffffff16565b811015611f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0890614163565b60405180910390fd5b80600c8190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900460ff1681565b60008183611f929190614865565b905092915050565b60008183611fa891906148d6565b905092915050565b60008183611fbe9190614907565b905092915050565b60008183611fd4919061493b565b905092915050565b611fe461205a565b73ffffffffffffffffffffffffffffffffffffffff1661200261129d565b73ffffffffffffffffffffffffffffffffffffffff1614612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f906149bb565b60405180910390fd5b565b600033905090565b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e990614a4d565b60405180910390fd5b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217990614adf565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122609190613c92565b60405180910390a3505050565b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f490614b71565b60405180910390fd5b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361238d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238490614c03565b60405180910390fd5b600081116123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790614c95565b60405180910390fd5b60006001905060006123e061129d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415801561244e575061241e61129d565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156124a85750602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156125025750602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561251b5750600860029054906101000a900460ff16155b15612bec57600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125c45750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6125cd57600080fd5b600860009054906101000a900460ff166126c257600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126825750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b890614d01565b60405180910390fd5b5b600860049054906101000a900460ff16156128f757600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156127835750601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156128f657601254436127969190614907565b600260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410801561282e5750601254436127ec9190614907565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b61286d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286490614d93565b60405180910390fd5b43600260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156129a25750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156129f85750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a9b57600a54831115612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3990614e25565b60405180910390fd5b600c5483612a4f86611089565b612a59919061493b565b1115612a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9190614eb7565b60405180910390fd5b5b601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015612b465750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612b9c5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612beb57600b54831115612be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdd90614f49565b60405180910390fd5b600190505b5b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c8d5750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80612ca55750600860059054906101000a900460ff16155b15612caf57600091505b6000612cba30611089565b90506000601d5482118015612ccc5750825b9050808015612ce75750600860039054906101000a900460ff165b8015612d005750600860029054906101000a900460ff16155b8015612d565750600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612dac5750600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612df0576001600860026101000a81548160ff021916908315150217905550612dd4612f1f565b6000600860026101000a81548160ff0219169083151502179055505b612dfd8787878787613016565b50505050505050565b6000838311158290612e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e459190613bc1565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612f2a30611089565b9050600080821480612f3e57506000601b54145b15612f4a575050613014565b6005601d54612f599190614865565b821115612f72576005601d54612f6f9190614865565b91505b612f7b82613056565b6000601b81905550601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612fc9906145a1565b60006040518083038185875af1925050503d8060008114613006576040519150601f19603f3d011682016040523d82523d6000602084013e61300b565b606091505b50508091505050505b565b8161302857613023613299565b613036565b613033858483613314565b92505b613041858585613482565b8161304f5761304e613616565b5b5050505050565b6000600267ffffffffffffffff8111156130735761307261390d565b5b6040519080825280602002602001820160405280156130a15781602001602082028036833780820191505090505b50905030816000815181106130b9576130b8613ebb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613160573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131849190614f7e565b8160018151811061319857613197613ebb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506131ff30600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612062565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613263959493929190615069565b600060405180830381600087803b15801561327d57600080fd5b505af1158015613291573d6000803e3d6000fd5b505050505050565b60006013541480156132ad57506000601554145b80156132bb57506000601754145b80156132c957506000601954145b61331257601354601481905550601554601681905550601754601881905550601954601a8190555060006013819055506000601581905550600060178190555060006019819055505b565b6000806000804360115460105461332b919061493b565b106133535761333861363c565b9250613342613646565b915061334c613650565b905061337f565b61335c8561365a565b92508415613373576017549150601954905061337e565b601354915060155490505b5b600080841115613411576133b06103e86133a2868a611f8490919063ffffffff16565b611f9a90919063ffffffff16565b90508383826133bf9190614865565b6133c991906148d6565b601b60008282546133da919061493b565b925050819055508382826133ee9190614865565b6133f891906148d6565b601c6000828254613409919061493b565b925050819055505b600081111561346657613425883083613482565b6000601c541180156134435750600860069054906101000a900460ff165b156134655761345430601c5461369f565b61345c613842565b6000601c819055505b5b80876134729190614907565b9650869450505050509392505050565b6134d481600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fb090919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061356981600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fc690919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516136099190613c92565b60405180910390a3505050565b601454601381905550601654601581905550601854601781905550601a54601981905550565b60006103e6905090565b60006101f3905090565b60006101f3905090565b6000811561368057613679601954601754611fc690919063ffffffff16565b905061369a565b613697601554601354611fc690919063ffffffff16565b90505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361370e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370590615135565b60405180910390fd5b61377a8160405180606001604052806022815260200161515660229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e069092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506137d281600954611fb090919063ffffffff16565b600981905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516138369190613c92565b60405180910390a35050565b6103e8600d54613850610d01565b61385a9190614865565b61386491906148d6565b600a819055506103e8600e54613878610d01565b6138829190614865565b61388c91906148d6565b600b819055506103e8600f546138a0610d01565b6138aa9190614865565b6138b491906148d6565b600c8190555061271060056138c7610d01565b6138d19190614865565b6138db91906148d6565b601d81905550565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613945826138fc565b810181811067ffffffffffffffff821117156139645761396361390d565b5b80604052505050565b60006139776138e3565b9050613983828261393c565b919050565b600067ffffffffffffffff8211156139a3576139a261390d565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139e4826139b9565b9050919050565b6139f4816139d9565b81146139ff57600080fd5b50565b600081359050613a11816139eb565b92915050565b6000613a2a613a2584613988565b61396d565b90508083825260208201905060208402830185811115613a4d57613a4c6139b4565b5b835b81811015613a765780613a628882613a02565b845260208401935050602081019050613a4f565b5050509392505050565b600082601f830112613a9557613a946138f7565b5b8135613aa5848260208601613a17565b91505092915050565b60008115159050919050565b613ac381613aae565b8114613ace57600080fd5b50565b600081359050613ae081613aba565b92915050565b60008060408385031215613afd57613afc6138ed565b5b600083013567ffffffffffffffff811115613b1b57613b1a6138f2565b5b613b2785828601613a80565b9250506020613b3885828601613ad1565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b7c578082015181840152602081019050613b61565b60008484015250505050565b6000613b9382613b42565b613b9d8185613b4d565b9350613bad818560208601613b5e565b613bb6816138fc565b840191505092915050565b60006020820190508181036000830152613bdb8184613b88565b905092915050565b6000819050919050565b613bf681613be3565b8114613c0157600080fd5b50565b600081359050613c1381613bed565b92915050565b60008060408385031215613c3057613c2f6138ed565b5b6000613c3e85828601613a02565b9250506020613c4f85828601613c04565b9150509250929050565b613c6281613aae565b82525050565b6000602082019050613c7d6000830184613c59565b92915050565b613c8c81613be3565b82525050565b6000602082019050613ca76000830184613c83565b92915050565b600060208284031215613cc357613cc26138ed565b5b6000613cd184828501613ad1565b91505092915050565b600080600060608486031215613cf357613cf26138ed565b5b6000613d0186828701613a02565b9350506020613d1286828701613a02565b9250506040613d2386828701613c04565b9150509250925092565b600060ff82169050919050565b613d4381613d2d565b82525050565b6000602082019050613d5e6000830184613d3a565b92915050565b600060208284031215613d7a57613d796138ed565b5b6000613d8884828501613c04565b91505092915050565b60008060408385031215613da857613da76138ed565b5b6000613db685828601613c04565b9250506020613dc785828601613c04565b9150509250929050565b600080600060608486031215613dea57613de96138ed565b5b6000613df886828701613c04565b9350506020613e0986828701613c04565b9250506040613e1a86828701613c04565b9150509250925092565b600060208284031215613e3a57613e396138ed565b5b6000613e4884828501613a02565b91505092915050565b613e5a816139d9565b82525050565b6000602082019050613e756000830184613e51565b92915050565b60008060408385031215613e9257613e916138ed565b5b6000613ea085828601613a02565b9250506020613eb185828601613a02565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f2482613be3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f5657613f55613eea565b5b600182019050919050565b7f4d757374206b656570206275792074617865732062656c6f7720313025000000600082015250565b6000613f97601d83613b4d565b9150613fa282613f61565b602082019050919050565b60006020820190508181036000830152613fc681613f8a565b9050919050565b7f4d61782062757920616d6f756e742063616e6e6f74206265206c6f776572207460008201527f68616e20302e312520746f74616c20737570706c792e00000000000000000000602082015250565b6000614029603683613b4d565b915061403482613fcd565b604082019050919050565b600060208201905081810360008301526140588161401c565b9050919050565b7f4d61782073656c6c20616d6f756e742063616e6e6f74206265206c6f7765722060008201527f7468616e20302e312520746f74616c20737570706c792e000000000000000000602082015250565b60006140bb603783613b4d565b91506140c68261405f565b604082019050919050565b600060208201905081810360008301526140ea816140ae565b9050919050565b7f4d61782077616c6c657420616d6f756e742063616e6e6f74206265206c6f776560008201527f72207468616e20302e312520746f74616c20737570706c792e00000000000000602082015250565b600061414d603983613b4d565b9150614158826140f1565b604082019050919050565b6000602082019050818103600083015261417c81614140565b9050919050565b7f4d757374206b6565702073656c6c2074617865732062656c6f77203130250000600082015250565b60006141b9601e83613b4d565b91506141c482614183565b602082019050919050565b600060208201905081810360008301526141e8816141ac565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061424b603583613b4d565b9150614256826141ef565b604082019050919050565b6000602082019050818103600083015261427a8161423e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006142dd603483613b4d565b91506142e882614281565b604082019050919050565b6000602082019050818103600083015261430c816142d0565b9050919050565b7f5f6f707357616c6c657420616464726573732063616e6e6f7420626520300000600082015250565b6000614349601e83613b4d565b915061435482614313565b602082019050919050565b600060208201905081810360008301526143788161433c565b9050919050565b7f43616e6e6f7420726573637565207468697320746f6b656e0000000000000000600082015250565b60006143b5601883613b4d565b91506143c08261437f565b602082019050919050565b600060208201905081810360008301526143e4816143a8565b9050919050565b6000815190506143fa81613bed565b92915050565b600060208284031215614416576144156138ed565b5b6000614424848285016143eb565b91505092915050565b7f4e6f20746f6b656e73206265696e6720686f6c6465642e000000000000000000600082015250565b6000614463601783613b4d565b915061446e8261442d565b602082019050919050565b6000602082019050818103600083015261449281614456565b9050919050565b60006040820190506144ae6000830185613e51565b6144bb6020830184613c83565b9392505050565b6000815190506144d181613aba565b92915050565b6000602082840312156144ed576144ec6138ed565b5b60006144fb848285016144c2565b91505092915050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b600061453a601783613b4d565b915061454582614504565b602082019050919050565b600060208201905081810360008301526145698161452d565b9050919050565b600081905092915050565b50565b600061458b600083614570565b91506145968261457b565b600082019050919050565b60006145ac8261457e565b9150819050919050565b7f4d61782073656c6c20616d6f756e742063616e6e6f74206265206c6f7765722060008201527f7468616e20302e30312520746f74616c20737570706c792e0000000000000000602082015250565b6000614612603883613b4d565b915061461d826145b6565b604082019050919050565b6000602082019050818103600083015261464181614605565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146a4602683613b4d565b91506146af82614648565b604082019050919050565b600060208201905081810360008301526146d381614697565b9050919050565b7f4d61782062757920616d6f756e742063616e6e6f74206265206c6f776572207460008201527f68616e20302e30312520746f74616c20737570706c792e000000000000000000602082015250565b6000614736603783613b4d565b9150614741826146da565b604082019050919050565b6000602082019050818103600083015261476581614729565b9050919050565b6000819050919050565b6000819050919050565b600061479b6147966147918461476c565b614776565b613be3565b9050919050565b6147ab81614780565b82525050565b600060c0820190506147c66000830189613e51565b6147d36020830188613c83565b6147e060408301876147a2565b6147ed60608301866147a2565b6147fa6080830185613e51565b61480760a0830184613c83565b979650505050505050565b60008060006060848603121561482b5761482a6138ed565b5b6000614839868287016143eb565b935050602061484a868287016143eb565b925050604061485b868287016143eb565b9150509250925092565b600061487082613be3565b915061487b83613be3565b925082820261488981613be3565b915082820484148315176148a05761489f613eea565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148e182613be3565b91506148ec83613be3565b9250826148fc576148fb6148a7565b5b828204905092915050565b600061491282613be3565b915061491d83613be3565b925082820390508181111561493557614934613eea565b5b92915050565b600061494682613be3565b915061495183613be3565b925082820190508082111561496957614968613eea565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149a5602083613b4d565b91506149b08261496f565b602082019050919050565b600060208201905081810360008301526149d481614998565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a37602483613b4d565b9150614a42826149db565b604082019050919050565b60006020820190508181036000830152614a6681614a2a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ac9602283613b4d565b9150614ad482614a6d565b604082019050919050565b60006020820190508181036000830152614af881614abc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b5b602583613b4d565b9150614b6682614aff565b604082019050919050565b60006020820190508181036000830152614b8a81614b4e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bed602383613b4d565b9150614bf882614b91565b604082019050919050565b60006020820190508181036000830152614c1c81614be0565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000614c7f602983613b4d565b9150614c8a82614c23565b604082019050919050565b60006020820190508181036000830152614cae81614c72565b9050919050565b7f54726164696e67206973206e6f7420616c6c6f776564207965742e0000000000600082015250565b6000614ceb601b83613b4d565b9150614cf682614cb5565b602082019050919050565b60006020820190508181036000830152614d1a81614cde565b9050919050565b7f5472616e736665722064656c617920656e61626c65642e20547279206167616960008201527f6e206c617465722e000000000000000000000000000000000000000000000000602082015250565b6000614d7d602883613b4d565b9150614d8882614d21565b604082019050919050565b60006020820190508181036000830152614dac81614d70565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61784260008201527f75792e0000000000000000000000000000000000000000000000000000000000602082015250565b6000614e0f602383613b4d565b9150614e1a82614db3565b604082019050919050565b60006020820190508181036000830152614e3e81614e02565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e742e00000000000000000000000000000000000000000000000000000000602082015250565b6000614ea1602483613b4d565b9150614eac82614e45565b604082019050919050565b60006020820190508181036000830152614ed081614e94565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785360008201527f656c6c2e00000000000000000000000000000000000000000000000000000000602082015250565b6000614f33602483613b4d565b9150614f3e82614ed7565b604082019050919050565b60006020820190508181036000830152614f6281614f26565b9050919050565b600081519050614f78816139eb565b92915050565b600060208284031215614f9457614f936138ed565b5b6000614fa284828501614f69565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614fe0816139d9565b82525050565b6000614ff28383614fd7565b60208301905092915050565b6000602082019050919050565b600061501682614fab565b6150208185614fb6565b935061502b83614fc7565b8060005b8381101561505c5781516150438882614fe6565b975061504e83614ffe565b92505060018101905061502f565b5085935050505092915050565b600060a08201905061507e6000830188613c83565b61508b60208301876147a2565b818103604083015261509d818661500b565b90506150ac6060830185613e51565b6150b96080830184613c83565b9695505050505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061511f602183613b4d565b915061512a826150c3565b604082019050919050565b6000602082019050818103600083015261514e81615112565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220265a1e46d3c25dbbd0512e632738f63f3c3598a8ee9d1e5b7dc68c539240025e64736f6c634300081100330000000000000000000000005eaed7dbe7607ae67093fb66400fa8963534be6500000000000000000000000097c4d1f4c800986856f2095f1b1420c69576ba55

Deployed Bytecode

0x60806040526004361061031d5760003560e01c80638da5cb5b116101ab578063cdba0f7f116100f7578063f2fde38b11610095578063f90e94c91161006f578063f90e94c914610b5b578063fa6dafab14610b72578063fe575a8714610b9b578063ffb54a9914610bd857610324565b8063f2fde38b14610ade578063f7a7032914610b07578063f8b45b0514610b3057610324565b8063dd62ed3e116100d1578063dd62ed3e14610a24578063e71dc3f514610a61578063e83c97f214610a8c578063e903d85914610ab557610324565b8063cdba0f7f146109b9578063ce774382146109d0578063d00efb2f146109f957610324565b8063a9059cbb11610164578063b202b6541161013e578063b202b65414610911578063b8eb35461461093c578063bf502a7214610967578063c5d30e501461099057610324565b8063a9059cbb1461087e578063a985ceef146108bb578063adb873bd146108e657610324565b80638da5cb5b1461078057806395d89b41146107ab57806397c21571146107d65780639e5437ef146107ff5780639e93ad8e14610828578063a64e4f8a1461085357610324565b806363b74caf1161026a57806370db69d61161022357806378dd7d41116101fd57806378dd7d41146106d65780637ab43983146107015780638091f3bf1461072c57806388b5e8cd1461075757610324565b806370db69d61461066b578063715018a614610696578063783fa1a3146106ad57610324565b806363b74caf1461055b578063659ffb9c146105865780636d35bff8146105b15780636ddd1713146105da5780636f8e10cd1461060557806370a082311461062e57610324565b806323b872dd116102d75780633df2ec08116102b15780633df2ec08146104b5578063452f88cf146104de57806347d17e2f146105075780635dc96d161461053057610324565b806323b872dd146104365780632e5e816f14610473578063313ce5671461048a57610324565b80627e72881461032657806306fdde031461034f578063095ea7b31461037a5780630fb56164146103b757806318160ddd146103e25780632044c7761461040d57610324565b3661032457005b005b34801561033257600080fd5b5061034d60048036038101906103489190613ae6565b610c03565b005b34801561035b57600080fd5b50610364610ca0565b6040516103719190613bc1565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613c19565b610cdd565b6040516103ae9190613c68565b60405180910390f35b3480156103c357600080fd5b506103cc610cfb565b6040516103d99190613c92565b60405180910390f35b3480156103ee57600080fd5b506103f7610d01565b6040516104049190613c92565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f9190613cad565b610d0b565b005b34801561044257600080fd5b5061045d60048036038101906104589190613cda565b610d30565b60405161046a9190613c68565b60405180910390f35b34801561047f57600080fd5b50610488610e09565b005b34801561049657600080fd5b5061049f610e49565b6040516104ac9190613d49565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190613cad565b610e52565b005b3480156104ea57600080fd5b5061050560048036038101906105009190613d64565b610e77565b005b34801561051357600080fd5b5061052e60048036038101906105299190613d91565b610e89565b005b34801561053c57600080fd5b50610545610ef9565b6040516105529190613c68565b60405180910390f35b34801561056757600080fd5b50610570610f0c565b60405161057d9190613c92565b60405180910390f35b34801561059257600080fd5b5061059b610f12565b6040516105a89190613c92565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190613dd1565b610f18565b005b3480156105e657600080fd5b506105ef611006565b6040516105fc9190613c68565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190613d91565b611019565b005b34801561063a57600080fd5b5061065560048036038101906106509190613e24565b611089565b6040516106629190613c92565b60405180910390f35b34801561067757600080fd5b506106806110d2565b60405161068d9190613c92565b60405180910390f35b3480156106a257600080fd5b506106ab6110d8565b005b3480156106b957600080fd5b506106d460048036038101906106cf9190613d64565b6110ec565b005b3480156106e257600080fd5b506106eb6111e1565b6040516106f89190613c92565b60405180910390f35b34801561070d57600080fd5b506107166111e7565b6040516107239190613c92565b60405180910390f35b34801561073857600080fd5b506107416111ed565b60405161074e9190613c68565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190613ae6565b611200565b005b34801561078c57600080fd5b5061079561129d565b6040516107a29190613e60565b60405180910390f35b3480156107b757600080fd5b506107c06112c6565b6040516107cd9190613bc1565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f89190613ae6565b611303565b005b34801561080b57600080fd5b5061082660048036038101906108219190613e24565b6113a0565b005b34801561083457600080fd5b5061083d611664565b60405161084a9190613c92565b60405180910390f35b34801561085f57600080fd5b5061086861166a565b6040516108759190613c68565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a09190613c19565b61167d565b6040516108b29190613c68565b60405180910390f35b3480156108c757600080fd5b506108d061169b565b6040516108dd9190613c68565b60405180910390f35b3480156108f257600080fd5b506108fb6116ae565b6040516109089190613c92565b60405180910390f35b34801561091d57600080fd5b506109266116b4565b6040516109339190613c92565b60405180910390f35b34801561094857600080fd5b506109516116ba565b60405161095e9190613c92565b60405180910390f35b34801561097357600080fd5b5061098e60048036038101906109899190613e24565b6116c0565b005b34801561099c57600080fd5b506109b760048036038101906109b29190613d64565b6118f3565b005b3480156109c557600080fd5b506109ce61198f565b005b3480156109dc57600080fd5b506109f760048036038101906109f29190613d64565b611a08565b005b348015610a0557600080fd5b50610a0e611a8b565b604051610a1b9190613c92565b60405180910390f35b348015610a3057600080fd5b50610a4b6004803603810190610a469190613e7b565b611a91565b604051610a589190613c92565b60405180910390f35b348015610a6d57600080fd5b50610a76611b18565b604051610a839190613c92565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae9190613cad565b611b1e565b005b348015610ac157600080fd5b50610adc6004803603810190610ad79190613cad565b611b43565b005b348015610aea57600080fd5b50610b056004803603810190610b009190613e24565b611b68565b005b348015610b1357600080fd5b50610b2e6004803603810190610b299190613d64565b611beb565b005b348015610b3c57600080fd5b50610b45611c6e565b604051610b529190613c92565b60405180910390f35b348015610b6757600080fd5b50610b70611c74565b005b348015610b7e57600080fd5b50610b996004803603810190610b949190613d64565b611e98565b005b348015610ba757600080fd5b50610bc26004803603810190610bbd9190613e24565b611f1b565b604051610bcf9190613c68565b60405180910390f35b348015610be457600080fd5b50610bed611f71565b604051610bfa9190613c68565b60405180910390f35b610c0b611fdc565b60005b8251811015610c9b578160066000858481518110610c2f57610c2e613ebb565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c9390613f19565b915050610c0e565b505050565b60606040518060400160405280600781526020017f414d415449415300000000000000000000000000000000000000000000000000815250905090565b6000610cf1610cea61205a565b8484612062565b6001905092915050565b6103e881565b6000600954905090565b610d13611fdc565b80600860066101000a81548160ff02191690831515021790555050565b6000610d3d84848461226d565b610dfe84610d4961205a565b610df98560405180606001604052806028815260200161517860289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610daf61205a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e069092919063ffffffff16565b612062565b600190509392505050565b610e11611fdc565b6103e8600d819055506103e8600e819055506103e8600f819055506000600860046101000a81548160ff021916908315150217905550565b60006012905090565b610e5a611fdc565b80600860046101000a81548160ff02191690831515021790555050565b610e7f611fdc565b8060128190555050565b610e91611fdc565b6064610ea68284611fc690919063ffffffff16565b1115610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90613fad565b60405180910390fd5b81601381905550806015819055505050565b600860069054906101000a900460ff1681565b600e5481565b60175481565b610f20611fdc565b6001831015610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b9061403f565b60405180910390fd5b6001821015610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f906140d1565b60405180910390fd5b6001811015610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390614163565b60405180910390fd5b82600d8190555081600e8190555080600f81905550505050565b600860039054906101000a900460ff1681565b611021611fdc565b60646110368284611fc690919063ffffffff16565b1115611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e906141cf565b60405180910390fd5b81601781905550806019819055505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a5481565b6110e0611fdc565b6110ea6000612e5b565b565b6110f4611fdc565b611124620186a06111166001611108610d01565b611f8490919063ffffffff16565b611f9a90919063ffffffff16565b811015611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90614261565b60405180910390fd5b6111956103e86111876005611179610d01565b611f8490919063ffffffff16565b611f9a90919063ffffffff16565b8111156111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce906142f3565b60405180910390fd5b80601d8190555050565b60135481565b600f5481565b600860019054906101000a900460ff1681565b611208611fdc565b60005b825181101561129857816007600085848151811061122c5761122b613ebb565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061129090613f19565b91505061120b565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600781526020017f414d415449415300000000000000000000000000000000000000000000000000815250905090565b61130b611fdc565b60005b825181101561139b57816005600085848151811061132f5761132e613ebb565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061139390613f19565b91505061130e565b505050565b6113a8611fdc565b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f9061435f565b60405180910390fd5b600060056000601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060066000601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080601e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160056000601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6103e881565b600860059054906101000a900460ff1681565b600061169161168a61205a565b848461226d565b6001905092915050565b600860049054906101000a900460ff1681565b60195481565b600d5481565b600b5481565b6116c8611fdc565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d906143cb565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117719190613e60565b602060405180830381865afa15801561178e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b29190614400565b116117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e990614479565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161182d9190613e60565b602060405180830381865afa15801561184a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186e9190614400565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016118ab929190614499565b6020604051808303816000875af11580156118ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ee91906144d7565b505050565b6118fb611fdc565b600860009054906101000a900460ff161580156119245750600860019054906101000a900460ff165b611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195a90614550565b60405180910390fd5b6001600860006101000a81548160ff021916908315150217905550436010819055508060118190555050565b611997611fdc565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516119bd906145a1565b60006040518083038185875af1925050503d80600081146119fa576040519150601f19603f3d011682016040523d82523d6000602084013e6119ff565b606091505b50508091505050565b611a10611fdc565b611a3f612710611a316001611a23610d01565b611f8490919063ffffffff16565b611f9a90919063ffffffff16565b811015611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890614628565b60405180910390fd5b80600b8190555050565b60105481565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60155481565b611b26611fdc565b80600860036101000a81548160ff02191690831515021790555050565b611b4b611fdc565b80600860056101000a81548160ff02191690831515021790555050565b611b70611fdc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd6906146ba565b60405180910390fd5b611be881612e5b565b50565b611bf3611fdc565b611c22612710611c146001611c06610d01565b611f8490919063ffffffff16565b611f9a90919063ffffffff16565b811015611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b9061474c565b60405180910390fd5b80600a8190555050565b600c5481565b611c7c611fdc565b600860019054906101000a900460ff1615611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390614550565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730611d1530611089565b600080611d2061129d565b426040518863ffffffff1660e01b8152600401611d42969594939291906147b1565b60606040518083038185885af1158015611d60573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d859190614812565b5050506001600860036101000a81548160ff0219169083151502179055506001600860046101000a81548160ff021916908315150217905550611de76064611dd96001600954611f8490919063ffffffff16565b611f9a90919063ffffffff16565b600a81905550611e166064611e086001600954611f8490919063ffffffff16565b611f9a90919063ffffffff16565b600b81905550611e456064611e376002600954611f8490919063ffffffff16565b611f9a90919063ffffffff16565b600c81905550611e75612710611e676005600954611f8490919063ffffffff16565b611f9a90919063ffffffff16565b601d819055506001600860016101000a81548160ff021916908315150217905550565b611ea0611fdc565b611ecf6103e8611ec16001611eb3610d01565b611f8490919063ffffffff16565b611f9a90919063ffffffff16565b811015611f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0890614163565b60405180910390fd5b80600c8190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900460ff1681565b60008183611f929190614865565b905092915050565b60008183611fa891906148d6565b905092915050565b60008183611fbe9190614907565b905092915050565b60008183611fd4919061493b565b905092915050565b611fe461205a565b73ffffffffffffffffffffffffffffffffffffffff1661200261129d565b73ffffffffffffffffffffffffffffffffffffffff1614612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f906149bb565b60405180910390fd5b565b600033905090565b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e990614a4d565b60405180910390fd5b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217990614adf565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122609190613c92565b60405180910390a3505050565b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f490614b71565b60405180910390fd5b602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361238d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238490614c03565b60405180910390fd5b600081116123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790614c95565b60405180910390fd5b60006001905060006123e061129d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415801561244e575061241e61129d565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156124a85750602160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156125025750602060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561251b5750600860029054906101000a900460ff16155b15612bec57600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125c45750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6125cd57600080fd5b600860009054906101000a900460ff166126c257600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126825750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b890614d01565b60405180910390fd5b5b600860049054906101000a900460ff16156128f757600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156127835750601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156128f657601254436127969190614907565b600260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410801561282e5750601254436127ec9190614907565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b61286d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286490614d93565b60405180910390fd5b43600260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156129a25750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156129f85750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a9b57600a54831115612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3990614e25565b60405180910390fd5b600c5483612a4f86611089565b612a59919061493b565b1115612a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9190614eb7565b60405180910390fd5b5b601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015612b465750600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612b9c5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612beb57600b54831115612be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdd90614f49565b60405180910390fd5b600190505b5b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c8d5750600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80612ca55750600860059054906101000a900460ff16155b15612caf57600091505b6000612cba30611089565b90506000601d5482118015612ccc5750825b9050808015612ce75750600860039054906101000a900460ff165b8015612d005750600860029054906101000a900460ff16155b8015612d565750600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612dac5750600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612df0576001600860026101000a81548160ff021916908315150217905550612dd4612f1f565b6000600860026101000a81548160ff0219169083151502179055505b612dfd8787878787613016565b50505050505050565b6000838311158290612e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e459190613bc1565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612f2a30611089565b9050600080821480612f3e57506000601b54145b15612f4a575050613014565b6005601d54612f599190614865565b821115612f72576005601d54612f6f9190614865565b91505b612f7b82613056565b6000601b81905550601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612fc9906145a1565b60006040518083038185875af1925050503d8060008114613006576040519150601f19603f3d011682016040523d82523d6000602084013e61300b565b606091505b50508091505050505b565b8161302857613023613299565b613036565b613033858483613314565b92505b613041858585613482565b8161304f5761304e613616565b5b5050505050565b6000600267ffffffffffffffff8111156130735761307261390d565b5b6040519080825280602002602001820160405280156130a15781602001602082028036833780820191505090505b50905030816000815181106130b9576130b8613ebb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613160573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131849190614f7e565b8160018151811061319857613197613ebb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506131ff30600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612062565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613263959493929190615069565b600060405180830381600087803b15801561327d57600080fd5b505af1158015613291573d6000803e3d6000fd5b505050505050565b60006013541480156132ad57506000601554145b80156132bb57506000601754145b80156132c957506000601954145b61331257601354601481905550601554601681905550601754601881905550601954601a8190555060006013819055506000601581905550600060178190555060006019819055505b565b6000806000804360115460105461332b919061493b565b106133535761333861363c565b9250613342613646565b915061334c613650565b905061337f565b61335c8561365a565b92508415613373576017549150601954905061337e565b601354915060155490505b5b600080841115613411576133b06103e86133a2868a611f8490919063ffffffff16565b611f9a90919063ffffffff16565b90508383826133bf9190614865565b6133c991906148d6565b601b60008282546133da919061493b565b925050819055508382826133ee9190614865565b6133f891906148d6565b601c6000828254613409919061493b565b925050819055505b600081111561346657613425883083613482565b6000601c541180156134435750600860069054906101000a900460ff165b156134655761345430601c5461369f565b61345c613842565b6000601c819055505b5b80876134729190614907565b9650869450505050509392505050565b6134d481600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fb090919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061356981600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fc690919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516136099190613c92565b60405180910390a3505050565b601454601381905550601654601581905550601854601781905550601a54601981905550565b60006103e6905090565b60006101f3905090565b60006101f3905090565b6000811561368057613679601954601754611fc690919063ffffffff16565b905061369a565b613697601554601354611fc690919063ffffffff16565b90505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361370e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370590615135565b60405180910390fd5b61377a8160405180606001604052806022815260200161515660229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e069092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506137d281600954611fb090919063ffffffff16565b600981905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516138369190613c92565b60405180910390a35050565b6103e8600d54613850610d01565b61385a9190614865565b61386491906148d6565b600a819055506103e8600e54613878610d01565b6138829190614865565b61388c91906148d6565b600b819055506103e8600f546138a0610d01565b6138aa9190614865565b6138b491906148d6565b600c8190555061271060056138c7610d01565b6138d19190614865565b6138db91906148d6565b601d81905550565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613945826138fc565b810181811067ffffffffffffffff821117156139645761396361390d565b5b80604052505050565b60006139776138e3565b9050613983828261393c565b919050565b600067ffffffffffffffff8211156139a3576139a261390d565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139e4826139b9565b9050919050565b6139f4816139d9565b81146139ff57600080fd5b50565b600081359050613a11816139eb565b92915050565b6000613a2a613a2584613988565b61396d565b90508083825260208201905060208402830185811115613a4d57613a4c6139b4565b5b835b81811015613a765780613a628882613a02565b845260208401935050602081019050613a4f565b5050509392505050565b600082601f830112613a9557613a946138f7565b5b8135613aa5848260208601613a17565b91505092915050565b60008115159050919050565b613ac381613aae565b8114613ace57600080fd5b50565b600081359050613ae081613aba565b92915050565b60008060408385031215613afd57613afc6138ed565b5b600083013567ffffffffffffffff811115613b1b57613b1a6138f2565b5b613b2785828601613a80565b9250506020613b3885828601613ad1565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b7c578082015181840152602081019050613b61565b60008484015250505050565b6000613b9382613b42565b613b9d8185613b4d565b9350613bad818560208601613b5e565b613bb6816138fc565b840191505092915050565b60006020820190508181036000830152613bdb8184613b88565b905092915050565b6000819050919050565b613bf681613be3565b8114613c0157600080fd5b50565b600081359050613c1381613bed565b92915050565b60008060408385031215613c3057613c2f6138ed565b5b6000613c3e85828601613a02565b9250506020613c4f85828601613c04565b9150509250929050565b613c6281613aae565b82525050565b6000602082019050613c7d6000830184613c59565b92915050565b613c8c81613be3565b82525050565b6000602082019050613ca76000830184613c83565b92915050565b600060208284031215613cc357613cc26138ed565b5b6000613cd184828501613ad1565b91505092915050565b600080600060608486031215613cf357613cf26138ed565b5b6000613d0186828701613a02565b9350506020613d1286828701613a02565b9250506040613d2386828701613c04565b9150509250925092565b600060ff82169050919050565b613d4381613d2d565b82525050565b6000602082019050613d5e6000830184613d3a565b92915050565b600060208284031215613d7a57613d796138ed565b5b6000613d8884828501613c04565b91505092915050565b60008060408385031215613da857613da76138ed565b5b6000613db685828601613c04565b9250506020613dc785828601613c04565b9150509250929050565b600080600060608486031215613dea57613de96138ed565b5b6000613df886828701613c04565b9350506020613e0986828701613c04565b9250506040613e1a86828701613c04565b9150509250925092565b600060208284031215613e3a57613e396138ed565b5b6000613e4884828501613a02565b91505092915050565b613e5a816139d9565b82525050565b6000602082019050613e756000830184613e51565b92915050565b60008060408385031215613e9257613e916138ed565b5b6000613ea085828601613a02565b9250506020613eb185828601613a02565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f2482613be3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f5657613f55613eea565b5b600182019050919050565b7f4d757374206b656570206275792074617865732062656c6f7720313025000000600082015250565b6000613f97601d83613b4d565b9150613fa282613f61565b602082019050919050565b60006020820190508181036000830152613fc681613f8a565b9050919050565b7f4d61782062757920616d6f756e742063616e6e6f74206265206c6f776572207460008201527f68616e20302e312520746f74616c20737570706c792e00000000000000000000602082015250565b6000614029603683613b4d565b915061403482613fcd565b604082019050919050565b600060208201905081810360008301526140588161401c565b9050919050565b7f4d61782073656c6c20616d6f756e742063616e6e6f74206265206c6f7765722060008201527f7468616e20302e312520746f74616c20737570706c792e000000000000000000602082015250565b60006140bb603783613b4d565b91506140c68261405f565b604082019050919050565b600060208201905081810360008301526140ea816140ae565b9050919050565b7f4d61782077616c6c657420616d6f756e742063616e6e6f74206265206c6f776560008201527f72207468616e20302e312520746f74616c20737570706c792e00000000000000602082015250565b600061414d603983613b4d565b9150614158826140f1565b604082019050919050565b6000602082019050818103600083015261417c81614140565b9050919050565b7f4d757374206b6565702073656c6c2074617865732062656c6f77203130250000600082015250565b60006141b9601e83613b4d565b91506141c482614183565b602082019050919050565b600060208201905081810360008301526141e8816141ac565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061424b603583613b4d565b9150614256826141ef565b604082019050919050565b6000602082019050818103600083015261427a8161423e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006142dd603483613b4d565b91506142e882614281565b604082019050919050565b6000602082019050818103600083015261430c816142d0565b9050919050565b7f5f6f707357616c6c657420616464726573732063616e6e6f7420626520300000600082015250565b6000614349601e83613b4d565b915061435482614313565b602082019050919050565b600060208201905081810360008301526143788161433c565b9050919050565b7f43616e6e6f7420726573637565207468697320746f6b656e0000000000000000600082015250565b60006143b5601883613b4d565b91506143c08261437f565b602082019050919050565b600060208201905081810360008301526143e4816143a8565b9050919050565b6000815190506143fa81613bed565b92915050565b600060208284031215614416576144156138ed565b5b6000614424848285016143eb565b91505092915050565b7f4e6f20746f6b656e73206265696e6720686f6c6465642e000000000000000000600082015250565b6000614463601783613b4d565b915061446e8261442d565b602082019050919050565b6000602082019050818103600083015261449281614456565b9050919050565b60006040820190506144ae6000830185613e51565b6144bb6020830184613c83565b9392505050565b6000815190506144d181613aba565b92915050565b6000602082840312156144ed576144ec6138ed565b5b60006144fb848285016144c2565b91505092915050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b600061453a601783613b4d565b915061454582614504565b602082019050919050565b600060208201905081810360008301526145698161452d565b9050919050565b600081905092915050565b50565b600061458b600083614570565b91506145968261457b565b600082019050919050565b60006145ac8261457e565b9150819050919050565b7f4d61782073656c6c20616d6f756e742063616e6e6f74206265206c6f7765722060008201527f7468616e20302e30312520746f74616c20737570706c792e0000000000000000602082015250565b6000614612603883613b4d565b915061461d826145b6565b604082019050919050565b6000602082019050818103600083015261464181614605565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146a4602683613b4d565b91506146af82614648565b604082019050919050565b600060208201905081810360008301526146d381614697565b9050919050565b7f4d61782062757920616d6f756e742063616e6e6f74206265206c6f776572207460008201527f68616e20302e30312520746f74616c20737570706c792e000000000000000000602082015250565b6000614736603783613b4d565b9150614741826146da565b604082019050919050565b6000602082019050818103600083015261476581614729565b9050919050565b6000819050919050565b6000819050919050565b600061479b6147966147918461476c565b614776565b613be3565b9050919050565b6147ab81614780565b82525050565b600060c0820190506147c66000830189613e51565b6147d36020830188613c83565b6147e060408301876147a2565b6147ed60608301866147a2565b6147fa6080830185613e51565b61480760a0830184613c83565b979650505050505050565b60008060006060848603121561482b5761482a6138ed565b5b6000614839868287016143eb565b935050602061484a868287016143eb565b925050604061485b868287016143eb565b9150509250925092565b600061487082613be3565b915061487b83613be3565b925082820261488981613be3565b915082820484148315176148a05761489f613eea565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148e182613be3565b91506148ec83613be3565b9250826148fc576148fb6148a7565b5b828204905092915050565b600061491282613be3565b915061491d83613be3565b925082820390508181111561493557614934613eea565b5b92915050565b600061494682613be3565b915061495183613be3565b925082820190508082111561496957614968613eea565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149a5602083613b4d565b91506149b08261496f565b602082019050919050565b600060208201905081810360008301526149d481614998565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a37602483613b4d565b9150614a42826149db565b604082019050919050565b60006020820190508181036000830152614a6681614a2a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ac9602283613b4d565b9150614ad482614a6d565b604082019050919050565b60006020820190508181036000830152614af881614abc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b5b602583613b4d565b9150614b6682614aff565b604082019050919050565b60006020820190508181036000830152614b8a81614b4e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bed602383613b4d565b9150614bf882614b91565b604082019050919050565b60006020820190508181036000830152614c1c81614be0565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000614c7f602983613b4d565b9150614c8a82614c23565b604082019050919050565b60006020820190508181036000830152614cae81614c72565b9050919050565b7f54726164696e67206973206e6f7420616c6c6f776564207965742e0000000000600082015250565b6000614ceb601b83613b4d565b9150614cf682614cb5565b602082019050919050565b60006020820190508181036000830152614d1a81614cde565b9050919050565b7f5472616e736665722064656c617920656e61626c65642e20547279206167616960008201527f6e206c617465722e000000000000000000000000000000000000000000000000602082015250565b6000614d7d602883613b4d565b9150614d8882614d21565b604082019050919050565b60006020820190508181036000830152614dac81614d70565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61784260008201527f75792e0000000000000000000000000000000000000000000000000000000000602082015250565b6000614e0f602383613b4d565b9150614e1a82614db3565b604082019050919050565b60006020820190508181036000830152614e3e81614e02565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e742e00000000000000000000000000000000000000000000000000000000602082015250565b6000614ea1602483613b4d565b9150614eac82614e45565b604082019050919050565b60006020820190508181036000830152614ed081614e94565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785360008201527f656c6c2e00000000000000000000000000000000000000000000000000000000602082015250565b6000614f33602483613b4d565b9150614f3e82614ed7565b604082019050919050565b60006020820190508181036000830152614f6281614f26565b9050919050565b600081519050614f78816139eb565b92915050565b600060208284031215614f9457614f936138ed565b5b6000614fa284828501614f69565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614fe0816139d9565b82525050565b6000614ff28383614fd7565b60208301905092915050565b6000602082019050919050565b600061501682614fab565b6150208185614fb6565b935061502b83614fc7565b8060005b8381101561505c5781516150438882614fe6565b975061504e83614ffe565b92505060018101905061502f565b5085935050505092915050565b600060a08201905061507e6000830188613c83565b61508b60208301876147a2565b818103604083015261509d818661500b565b90506150ac6060830185613e51565b6150b96080830184613c83565b9695505050505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061511f602183613b4d565b915061512a826150c3565b604082019050919050565b6000602082019050818103600083015261514e81615112565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220265a1e46d3c25dbbd0512e632738f63f3c3598a8ee9d1e5b7dc68c539240025e64736f6c63430008110033

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

0000000000000000000000005eaed7dbe7607ae67093fb66400fa8963534be6500000000000000000000000097c4d1f4c800986856f2095f1b1420c69576ba55

-----Decoded View---------------
Arg [0] : addy1 (address): 0x5EAEd7DbE7607AE67093FB66400fa8963534BE65
Arg [1] : addy2 (address): 0x97C4D1f4C800986856f2095f1B1420c69576bA55

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000005eaed7dbe7607ae67093fb66400fa8963534be65
Arg [1] : 00000000000000000000000097c4d1f4c800986856f2095f1b1420c69576ba55


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.