ETH Price: $3,213.45 (-6.70%)
Gas: 5 Gwei

Token

Hyonosen (USHIROYAMA)
 

Overview

Max Total Supply

100,000 USHIROYAMA

Holders

49

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4.331979260570290806 USHIROYAMA

Value
$0.00
0x51cc8d6dbd8877589a1c0bcba5a2e5c05da4a707
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:
HYONOSEN

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-11
*/

/**
 
*/
    
/**
            Hyonosen area is perfect for sightseeing and enjoying the
            unique plants while mountain climbing, hiking, exploring the 
            canyons, or camping. Photographers most frequently come at 
            the start of May before rice planting begins to take photos of 
            the backward reflection of Mt. Hyonosen in the rice terraces 
            (Bekku no Tanada) that are filled with water.

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;

interface IERC20 {
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

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

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

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

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

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @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.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;


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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract HYONOSEN is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping(address => bool) private _isExcludedFromFee;

    mapping(address => bool) private _isExcludedFromLimit;

    uint256 private _tTotal = 100000 * 10**18;

    address payable public _marketingAddress = payable(address(0xfe675eDEDC8CBf06feed97e300fde1861f400AE6));

    string private _name = "Hyonosen";
    string private _symbol = "USHIROYAMA";
    uint8 private _decimals = 18;

    struct BuyFee {
        uint8 liquidity;
        uint8 marketing;
    }

    struct SellFee {
        uint8 liquidity;
        uint8 marketing;
    }

    BuyFee public buyFee;
    SellFee public sellFee;

    uint8 private _liquidityFee;
    uint8 private _marketingFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = _tTotal.div(1000).mul(15); //1.5%
    uint256 private numTokensSellToAddToLiquidity = _tTotal.div(1000).mul(2); //0.2%
    uint256 public _maxWalletSize = _tTotal.div(1000).mul(15); // 1.5%

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

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

    uint256 public deadBlocks = 2;
    uint256 launchedAt = 0;
    bool tradingOpen = false;

    mapping (address => uint256) _lastTrade;

    constructor() {
        _rOwned[_msgSender()] = _tTotal;

        buyFee.liquidity = 2;
        buyFee.marketing = 2;

        sellFee.liquidity = 2;
        sellFee.marketing = 2;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        // exclude owner, and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingAddress] = true;

        _isExcludedFromLimit[_marketingAddress] = true;
        _isExcludedFromLimit[owner()] = true;
        _isExcludedFromLimit[address(this)] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

    function balanceOf(address account) public view override returns (uint256) {
        return _rOwned[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 increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    function updateMarketingWallet(address payable newAddress) external onlyOwner {
        _marketingAddress = newAddress;
    }

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

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

    function excludeFromLimit(address account) public onlyOwner {
        _isExcludedFromLimit[account] = true;
    }

    function includeInLimit(address account) public onlyOwner {
        _isExcludedFromLimit[account] = false;
    }

    function setSellFee(
        uint8 liquidity,
        uint8 marketing
    ) external onlyOwner {
        sellFee.marketing = marketing;
        sellFee.liquidity = liquidity;
    }

    function setBuyFee(
        uint8 liquidity,
        uint8 marketing
    ) external onlyOwner {
        buyFee.marketing = marketing;
        buyFee.liquidity = liquidity;
    }

    function setBothFees(
        uint8 buy_liquidity,
        uint8 buy_marketing,
        uint8 sell_liquidity,
        uint8 sell_marketing

    ) external onlyOwner {
        buyFee.marketing = buy_marketing;
        buyFee.liquidity = buy_liquidity;

        sellFee.marketing = sell_marketing;
        sellFee.liquidity = sell_liquidity;
    }

    function setNumTokensSellToAddToLiquidity(uint256 numTokens) external onlyOwner {
        numTokensSellToAddToLiquidity = numTokens;
    }

    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**3);
    }

    function _setMaxWalletSizePercent(uint256 maxWalletSize)
        external
        onlyOwner
    {
        _maxWalletSize = _tTotal.mul(maxWalletSize).div(10**3);
    }

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

    //to recieve ETH from uniswapV2Router when swapping
    receive() external payable {}

    function _getTValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tWallet = calculateMarketingFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tLiquidity).sub(tWallet);

        return (tTransferAmount, tLiquidity, tWallet);
    }

    function _takeLiquidity(uint256 tLiquidity) private {
        _rOwned[address(this)] = _rOwned[address(this)].add(tLiquidity);
    }

    function _takeWalletFee(uint256 tWallet) private {
        _rOwned[address(this)] = _rOwned[address(this)].add(tWallet);
    }

    function calculateLiquidityFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_liquidityFee).div(10**2);
    }

    function calculateMarketingFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_marketingFee).div(10**2);
    }

   
    function removeAllFee() private {
        _liquidityFee = 0;
        _marketingFee = 0;
     
    }

    function setBuy() private {
        _liquidityFee = buyFee.liquidity;
        _marketingFee = buyFee.marketing;
      
    }

    function setSell() private {
        _liquidityFee = sellFee.liquidity;
        _marketingFee = sellFee.marketing;
      
    }

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

    function isExcludedFromLimit(address account) public view returns (bool) {
        return _isExcludedFromLimit[account];
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if ( from != owner() && to != owner() ) require(tradingOpen, "Trading not yet enabled."); //transfers disabled before openTrading

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

        if (contractTokenBalance >= _maxTxAmount) {
            contractTokenBalance = _maxTxAmount;
        }

        bool overMinTokenBalance = contractTokenBalance >=
            numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

        //if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }
        if (takeFee) {
            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                require(
                    amount <= _maxTxAmount,
                    "Transfer amount exceeds the maxTxAmount."
                );
                if (to != uniswapV2Pair) {
                    require(
                        amount + balanceOf(to) <= _maxWalletSize,
                        "Recipient exceeds max wallet size."
                    );
                }

              
            }
        }

        //transfer amount, it will take liquidity fee
        _tokenTransfer(from, to, amount, takeFee);
    }

    function swapAndLiquify(uint256 tokens) private lockTheSwap {
        // Split the contract balance into halves
        uint256 denominator = (buyFee.liquidity + sellFee.liquidity + buyFee.marketing + sellFee.marketing) * 2;
        uint256 tokensToAddLiquidityWith = (tokens * (buyFee.liquidity + sellFee.liquidity)) / denominator;
        uint256 toSwap = tokens - tokensToAddLiquidityWith;

        uint256 initialBalance = address(this).balance;

        swapTokensForEth(toSwap);

        uint256 deltaBalance = address(this).balance - initialBalance;
        uint256 unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity));
        uint256 ethToAddLiquidityWith = unitBalance * (buyFee.liquidity + sellFee.liquidity);

        if (ethToAddLiquidityWith > 0) {
            // Add liquidity to uniswap
            addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith);
        }

        // Send ETH to marketing
        uint256 marketingAmt = unitBalance * 2 * (buyFee.marketing + sellFee.marketing);
       

        if (marketingAmt > 0) {
            payable(_marketingAddress).transfer(marketingAmt);
        }

    
    }

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

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

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

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

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

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (takeFee) {
            removeAllFee();
            if (sender == uniswapV2Pair) {
                setBuy();
            }
            if (recipient == uniswapV2Pair) {
                setSell();
            }
        }

        _transferStandard(sender, recipient, amount);

        removeAllFee();
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);

        _rOwned[sender] = _rOwned[sender].sub(tAmount);
        _rOwned[recipient] = _rOwned[recipient].add(tTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function openTrading(bool _status,uint256 _deadBlocks) external onlyOwner() {
        tradingOpen = _status;
        if(tradingOpen && launchedAt == 0){
            launchedAt = block.number;
            deadBlocks = _deadBlocks;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_marketingAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSizePercent","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":"buyFee","outputs":[{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"},{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","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":"sellFee","outputs":[{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"buy_liquidity","type":"uint8"},{"internalType":"uint8","name":"buy_marketing","type":"uint8"},{"internalType":"uint8","name":"sell_liquidity","type":"uint8"},{"internalType":"uint8","name":"sell_marketing","type":"uint8"}],"name":"setBothFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405269152d02c7e14af680000060065573fe675ededc8cbf06feed97e300fde1861f400ae6600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600881526020017f48796f6e6f73656e00000000000000000000000000000000000000000000000081525060089081620000ad919062000c50565b506040518060400160405280600a81526020017f55534849524f59414d410000000000000000000000000000000000000000000081525060099081620000f4919062000c50565b506012600a60006101000a81548160ff021916908360ff1602179055506001600d60036101000a81548160ff02191690831515021790555062000164600f620001506103e86006546200086860201b62001dda1790919060201c565b620008ba60201b62001e241790919060201c565b600e556200019f60026200018b6103e86006546200086860201b62001dda1790919060201c565b620008ba60201b62001e241790919060201c565b600f55620001da600f620001c66103e86006546200086860201b62001dda1790919060201c565b620008ba60201b62001e241790919060201c565b601055600260115560006012556000601360006101000a81548160ff0219169083151502179055503480156200020f57600080fd5b506000620002226200093d60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060065460026000620002d76200093d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600b60000160006101000a81548160ff021916908360ff1602179055506002600b60000160016101000a81548160ff021916908360ff1602179055506002600c60000160006101000a81548160ff021916908360ff1602179055506002600c60000160016101000a81548160ff021916908360ff1602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003f6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200041c919062000da1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000484573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004aa919062000da1565b6040518363ffffffff1660e01b8152600401620004c992919062000de4565b6020604051808303816000875af1158015620004e9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200050f919062000da1565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600460006200058c6200094560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160046000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160056000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600560006200073f6200094560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620007f86200093d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60065460405162000859919062000e22565b60405180910390a35062001081565b6000620008b283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200096e60201b60201c565b905092915050565b6000808303620008ce576000905062000937565b60008284620008de919062000e6e565b9050828482620008ef919062000efe565b1462000932576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009299062000fbd565b60405180910390fd5b809150505b92915050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008083118290620009b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009af91906200105d565b60405180910390fd5b5060008385620009c9919062000efe565b9050809150509392505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a5857607f821691505b60208210810362000a6e5762000a6d62000a10565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000ad87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a99565b62000ae4868362000a99565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b3162000b2b62000b258462000afc565b62000b06565b62000afc565b9050919050565b6000819050919050565b62000b4d8362000b10565b62000b6562000b5c8262000b38565b84845462000aa6565b825550505050565b600090565b62000b7c62000b6d565b62000b8981848462000b42565b505050565b5b8181101562000bb15762000ba560008262000b72565b60018101905062000b8f565b5050565b601f82111562000c005762000bca8162000a74565b62000bd58462000a89565b8101602085101562000be5578190505b62000bfd62000bf48562000a89565b83018262000b8e565b50505b505050565b600082821c905092915050565b600062000c256000198460080262000c05565b1980831691505092915050565b600062000c40838362000c12565b9150826002028217905092915050565b62000c5b82620009d6565b67ffffffffffffffff81111562000c775762000c76620009e1565b5b62000c83825462000a3f565b62000c9082828562000bb5565b600060209050601f83116001811462000cc8576000841562000cb3578287015190505b62000cbf858262000c32565b86555062000d2f565b601f19841662000cd88662000a74565b60005b8281101562000d025784890151825560018201915060208501945060208101905062000cdb565b8683101562000d22578489015162000d1e601f89168262000c12565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d698262000d3c565b9050919050565b62000d7b8162000d5c565b811462000d8757600080fd5b50565b60008151905062000d9b8162000d70565b92915050565b60006020828403121562000dba5762000db962000d37565b5b600062000dca8482850162000d8a565b91505092915050565b62000dde8162000d5c565b82525050565b600060408201905062000dfb600083018562000dd3565b62000e0a602083018462000dd3565b9392505050565b62000e1c8162000afc565b82525050565b600060208201905062000e39600083018462000e11565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e7b8262000afc565b915062000e888362000afc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ec45762000ec362000e3f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f0b8262000afc565b915062000f188362000afc565b92508262000f2b5762000f2a62000ecf565b5b828204905092915050565b600082825260208201905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b600062000fa560218362000f36565b915062000fb28262000f47565b604082019050919050565b6000602082019050818103600083015262000fd88162000f96565b9050919050565b60005b8381101562000fff57808201518184015260208101905062000fe2565b60008484015250505050565b6000601f19601f8301169050919050565b60006200102982620009d6565b62001035818562000f36565b93506200104781856020860162000fdf565b62001052816200100b565b840191505092915050565b600060208201905081810360008301526200107981846200101c565b905092915050565b60805160a0516143e7620010e660003960008181610fbe015281816122a4015281816124c60152818161295801526129b4015260008181610aad01528181612ac701528181612ba801528181612bcf01528181612c6b0152612c9201526143e76000f3fe6080604052600436106102295760003560e01c80637d1db4a511610123578063c49b9a80116100ab578063ea2f0b371161006f578063ea2f0b371461083c578063f0f165af14610865578063f2fde38b1461088e578063f6831bf2146108b7578063fabb0b4f146108e057610230565b8063c49b9a8014610745578063caac79341461076e578063d543dbeb14610799578063d94160e0146107c2578063dd62ed3e146107ff57610230565b806395d89b41116100f257806395d89b411461064e578063a457c2d714610679578063a9059cbb146106b6578063aacebbe3146106f3578063af2ce6141461071c57610230565b80637d1db4a5146105a45780638da5cb5b146105cf5780638f9a55c0146105fa57806391d919a91461062557610230565b806339509351116101b15780634a74bb02116101755780634a74bb02146104bf5780635342acb4146104ea5780636e4778611461052757806370a0823114610550578063715018a61461058d57610230565b806339509351146103d95780633a17304a14610416578063437823ec1461043f578063470624021461046857806349bd5a5e1461049457610230565b806318160ddd116101f857806318160ddd146102f157806323b872dd1461031c5780632b14ca56146103595780632d4103d614610385578063313ce567146103ae57610230565b806306fdde0314610235578063095ea7b3146102605780630bd3a7f91461029d5780631694505e146102c657610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a61090b565b60405161025791906132d4565b60405180910390f35b34801561026c57600080fd5b506102876004803603810190610282919061338f565b61099d565b60405161029491906133ea565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613405565b6109bb565b005b3480156102d257600080fd5b506102db610aab565b6040516102e89190613491565b60405180910390f35b3480156102fd57600080fd5b50610306610acf565b60405161031391906134bb565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e91906134d6565b610ad9565b60405161035091906133ea565b60405180910390f35b34801561036557600080fd5b5061036e610bb2565b60405161037c929190613545565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a7919061359a565b610bde565b005b3480156103ba57600080fd5b506103c3610cc3565b6040516103d091906135da565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb919061338f565b610cda565b60405161040d91906133ea565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190613621565b610d8d565b005b34801561044b57600080fd5b5061046660048036038101906104619190613405565b610ea0565b005b34801561047457600080fd5b5061047d610f90565b60405161048b929190613545565b60405180910390f35b3480156104a057600080fd5b506104a9610fbc565b6040516104b69190613697565b60405180910390f35b3480156104cb57600080fd5b506104d4610fe0565b6040516104e191906133ea565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190613405565b610ff3565b60405161051e91906133ea565b60405180910390f35b34801561053357600080fd5b5061054e600480360381019061054991906136b2565b611049565b005b34801561055c57600080fd5b5061057760048036038101906105729190613405565b61111e565b60405161058491906134bb565b60405180910390f35b34801561059957600080fd5b506105a2611167565b005b3480156105b057600080fd5b506105b96112ba565b6040516105c691906134bb565b60405180910390f35b3480156105db57600080fd5b506105e46112c0565b6040516105f19190613697565b60405180910390f35b34801561060657600080fd5b5061060f6112e9565b60405161061c91906134bb565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190613405565b6112ef565b005b34801561065a57600080fd5b506106636113df565b60405161067091906132d4565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b919061338f565b611471565b6040516106ad91906133ea565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d8919061338f565b61153e565b6040516106ea91906133ea565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190613730565b61155c565b005b34801561072857600080fd5b50610743600480360381019061073e919061375d565b611635565b005b34801561075157600080fd5b5061076c6004803603810190610767919061378a565b6116fc565b005b34801561077a57600080fd5b506107836117e5565b60405161079091906137c6565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb919061375d565b61180b565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190613405565b6118d2565b6040516107f691906133ea565b60405180910390f35b34801561080b57600080fd5b50610826600480360381019061082191906137e1565b611928565b60405161083391906134bb565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e9190613405565b6119af565b005b34801561087157600080fd5b5061088c6004803603810190610887919061375d565b611a9f565b005b34801561089a57600080fd5b506108b560048036038101906108b09190613405565b611b3e565b005b3480156108c357600080fd5b506108de60048036038101906108d991906136b2565b611cff565b005b3480156108ec57600080fd5b506108f5611dd4565b60405161090291906134bb565b60405180910390f35b60606008805461091a90613850565b80601f016020809104026020016040519081016040528092919081815260200182805461094690613850565b80156109935780601f1061096857610100808354040283529160200191610993565b820191906000526020600020905b81548152906001019060200180831161097657829003601f168201915b5050505050905090565b60006109b16109aa611e9e565b8484611ea6565b6001905092915050565b6109c3611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a47906138cd565b60405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600654905090565b6000610ae684848461206f565b610ba784610af2611e9e565b610ba28560405180606001604052806028815260200161436560289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b58611e9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125869092919063ffffffff16565b611ea6565b600190509392505050565b600c8060000160009054906101000a900460ff16908060000160019054906101000a900460ff16905082565b610be6611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a906138cd565b60405180910390fd5b81601360006101000a81548160ff021916908315150217905550601360009054906101000a900460ff168015610cab57506000601254145b15610cbf5743601281905550806011819055505b5050565b6000600a60009054906101000a900460ff16905090565b6000610d83610ce7611e9e565b84610d7e8560036000610cf8611e9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ea90919063ffffffff16565b611ea6565b6001905092915050565b610d95611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e19906138cd565b60405180910390fd5b82600b60000160016101000a81548160ff021916908360ff16021790555083600b60000160006101000a81548160ff021916908360ff16021790555080600c60000160016101000a81548160ff021916908360ff16021790555081600c60000160006101000a81548160ff021916908360ff16021790555050505050565b610ea8611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c906138cd565b60405180910390fd5b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b8060000160009054906101000a900460ff16908060000160019054906101000a900460ff16905082565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d60039054906101000a900460ff1681565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611051611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d5906138cd565b60405180910390fd5b80600b60000160016101000a81548160ff021916908360ff16021790555081600b60000160006101000a81548160ff021916908360ff1602179055505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61116f611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f3906138cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600e5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b6112f7611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b906138cd565b60405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6060600980546113ee90613850565b80601f016020809104026020016040519081016040528092919081815260200182805461141a90613850565b80156114675780601f1061143c57610100808354040283529160200191611467565b820191906000526020600020905b81548152906001019060200180831161144a57829003601f168201915b5050505050905090565b600061153461147e611e9e565b8461152f8560405180606001604052806025815260200161438d60259139600360006114a8611e9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125869092919063ffffffff16565b611ea6565b6001905092915050565b600061155261154b611e9e565b848461206f565b6001905092915050565b611564611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e8906138cd565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61163d611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c1906138cd565b60405180910390fd5b6116f36103e86116e583600654611e2490919063ffffffff16565b611dda90919063ffffffff16565b60108190555050565b611704611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611791576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611788906138cd565b60405180910390fd5b80600d60036101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516117da91906133ea565b60405180910390a150565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611813611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611897906138cd565b60405180910390fd5b6118c96103e86118bb83600654611e2490919063ffffffff16565b611dda90919063ffffffff16565b600e8190555050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6119b7611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b906138cd565b60405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611aa7611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2b906138cd565b60405180910390fd5b80600f8190555050565b611b46611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca906138cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c399061395f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611d07611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b906138cd565b60405180910390fd5b80600c60000160016101000a81548160ff021916908360ff16021790555081600c60000160006101000a81548160ff021916908360ff1602179055505050565b60115481565b6000611e1c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612648565b905092915050565b6000808303611e365760009050611e98565b60008284611e4491906139ae565b9050828482611e539190613a37565b14611e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8a90613ada565b60405180910390fd5b809150505b92915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c90613b6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7b90613bfe565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161206291906134bb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d590613c90565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361214d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214490613d22565b60405180910390fd5b60008111612190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218790613db4565b60405180910390fd5b6121986112c0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561220657506121d66112c0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561225b57601360009054906101000a900460ff1661225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190613e20565b60405180910390fd5b5b60006122663061111e565b9050600e54811061227757600e5490505b6000600f54821015905080801561229b5750600d60029054906101000a900460ff16155b80156122f357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561230b5750600d60039054906101000a900460ff165b1561231f57600f54915061231e826126ab565b5b600060019050600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123c65750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123d057600090505b801561257257600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561247a5750600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561257157600e548411156124c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bb90613eb2565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614612570576010546125238661111e565b8561252e9190613ed2565b111561256f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256690613f78565b60405180910390fd5b5b5b5b61257e86868684612948565b505050505050565b60008383111582906125ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c591906132d4565b60405180910390fd5b50600083856125dd9190613f98565b9050809150509392505050565b60008082846125f99190613ed2565b90508381101561263e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263590614018565b60405180910390fd5b8091505092915050565b6000808311829061268f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268691906132d4565b60405180910390fd5b506000838561269e9190613a37565b9050809150509392505050565b6001600d60026101000a81548160ff02191690831515021790555060006002600c60000160019054906101000a900460ff16600b60000160019054906101000a900460ff16600c60000160009054906101000a900460ff16600b60000160009054906101000a900460ff166127209190614038565b61272a9190614038565b6127349190614038565b61273e919061406d565b60ff169050600081600c60000160009054906101000a900460ff16600b60000160009054906101000a900460ff166127769190614038565b60ff168461278491906139ae565b61278e9190613a37565b90506000818461279e9190613f98565b905060004790506127ae82612a28565b600081476127bc9190613f98565b90506000600c60000160009054906101000a900460ff16600b60000160009054906101000a900460ff166127f09190614038565b60ff16866127fe9190613f98565b826128099190613a37565b90506000600c60000160009054906101000a900460ff16600b60000160009054906101000a900460ff1661283d9190614038565b60ff168261284b91906139ae565b90506000811115612861576128608682612c65565b5b6000600c60000160019054906101000a900460ff16600b60000160019054906101000a900460ff166128939190614038565b60ff166002846128a391906139ae565b6128ad91906139ae565b9050600081111561292257600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612920573d6000803e3d6000fd5b505b50505050505050506000600d60026101000a81548160ff02191690831515021790555050565b8015612a0f57612956612d3f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036129b2576129b1612d79565b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a0e57612a0d612dd5565b5b5b612a1a848484612e31565b612a22612d3f565b50505050565b6000600267ffffffffffffffff811115612a4557612a446140a8565b5b604051908082528060200260200182016040528015612a735781602001602082028036833780820191505090505b5090503081600081518110612a8b57612a8a6140d7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b54919061411b565b81600181518110612b6857612b676140d7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612bcd307f000000000000000000000000000000000000000000000000000000000000000084611ea6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612c2f959493929190614241565b600060405180830381600087803b158015612c4957600080fd5b505af1158015612c5d573d6000803e3d6000fd5b505050505050565b612c90307f000000000000000000000000000000000000000000000000000000000000000084611ea6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401612cf59695949392919061429b565b60606040518083038185885af1158015612d13573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612d389190614311565b5050505050565b6000600d60006101000a81548160ff021916908360ff1602179055506000600d60016101000a81548160ff021916908360ff160217905550565b600b60000160009054906101000a900460ff16600d60006101000a81548160ff021916908360ff160217905550600b60000160019054906101000a900460ff16600d60016101000a81548160ff021916908360ff160217905550565b600c60000160009054906101000a900460ff16600d60006101000a81548160ff021916908360ff160217905550600c60000160019054906101000a900460ff16600d60016101000a81548160ff021916908360ff160217905550565b6000806000612e3f84612fee565b925092509250612e9784600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304890919063ffffffff16565b600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612f2c83600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ea90919063ffffffff16565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612f7882613092565b612f818161312a565b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051612fde91906134bb565b60405180910390a3505050505050565b600080600080612ffd856131c2565b9050600061300a86613203565b9050600061303382613025858a61304890919063ffffffff16565b61304890919063ffffffff16565b90508083839550955095505050509193909250565b600061308a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612586565b905092915050565b6130e481600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ea90919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b61317c81600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ea90919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60006131fc60646131ee600d60009054906101000a900460ff1660ff1685611e2490919063ffffffff16565b611dda90919063ffffffff16565b9050919050565b600061323d606461322f600d60019054906101000a900460ff1660ff1685611e2490919063ffffffff16565b611dda90919063ffffffff16565b9050919050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561327e578082015181840152602081019050613263565b60008484015250505050565b6000601f19601f8301169050919050565b60006132a682613244565b6132b0818561324f565b93506132c0818560208601613260565b6132c98161328a565b840191505092915050565b600060208201905081810360008301526132ee818461329b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613326826132fb565b9050919050565b6133368161331b565b811461334157600080fd5b50565b6000813590506133538161332d565b92915050565b6000819050919050565b61336c81613359565b811461337757600080fd5b50565b60008135905061338981613363565b92915050565b600080604083850312156133a6576133a56132f6565b5b60006133b485828601613344565b92505060206133c58582860161337a565b9150509250929050565b60008115159050919050565b6133e4816133cf565b82525050565b60006020820190506133ff60008301846133db565b92915050565b60006020828403121561341b5761341a6132f6565b5b600061342984828501613344565b91505092915050565b6000819050919050565b600061345761345261344d846132fb565b613432565b6132fb565b9050919050565b60006134698261343c565b9050919050565b600061347b8261345e565b9050919050565b61348b81613470565b82525050565b60006020820190506134a66000830184613482565b92915050565b6134b581613359565b82525050565b60006020820190506134d060008301846134ac565b92915050565b6000806000606084860312156134ef576134ee6132f6565b5b60006134fd86828701613344565b935050602061350e86828701613344565b925050604061351f8682870161337a565b9150509250925092565b600060ff82169050919050565b61353f81613529565b82525050565b600060408201905061355a6000830185613536565b6135676020830184613536565b9392505050565b613577816133cf565b811461358257600080fd5b50565b6000813590506135948161356e565b92915050565b600080604083850312156135b1576135b06132f6565b5b60006135bf85828601613585565b92505060206135d08582860161337a565b9150509250929050565b60006020820190506135ef6000830184613536565b92915050565b6135fe81613529565b811461360957600080fd5b50565b60008135905061361b816135f5565b92915050565b6000806000806080858703121561363b5761363a6132f6565b5b60006136498782880161360c565b945050602061365a8782880161360c565b935050604061366b8782880161360c565b925050606061367c8782880161360c565b91505092959194509250565b6136918161331b565b82525050565b60006020820190506136ac6000830184613688565b92915050565b600080604083850312156136c9576136c86132f6565b5b60006136d78582860161360c565b92505060206136e88582860161360c565b9150509250929050565b60006136fd826132fb565b9050919050565b61370d816136f2565b811461371857600080fd5b50565b60008135905061372a81613704565b92915050565b600060208284031215613746576137456132f6565b5b60006137548482850161371b565b91505092915050565b600060208284031215613773576137726132f6565b5b60006137818482850161337a565b91505092915050565b6000602082840312156137a05761379f6132f6565b5b60006137ae84828501613585565b91505092915050565b6137c0816136f2565b82525050565b60006020820190506137db60008301846137b7565b92915050565b600080604083850312156137f8576137f76132f6565b5b600061380685828601613344565b925050602061381785828601613344565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061386857607f821691505b60208210810361387b5761387a613821565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138b760208361324f565b91506138c282613881565b602082019050919050565b600060208201905081810360008301526138e6816138aa565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061394960268361324f565b9150613954826138ed565b604082019050919050565b600060208201905081810360008301526139788161393c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139b982613359565b91506139c483613359565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139fd576139fc61397f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a4282613359565b9150613a4d83613359565b925082613a5d57613a5c613a08565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ac460218361324f565b9150613acf82613a68565b604082019050919050565b60006020820190508181036000830152613af381613ab7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613b5660248361324f565b9150613b6182613afa565b604082019050919050565b60006020820190508181036000830152613b8581613b49565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613be860228361324f565b9150613bf382613b8c565b604082019050919050565b60006020820190508181036000830152613c1781613bdb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c7a60258361324f565b9150613c8582613c1e565b604082019050919050565b60006020820190508181036000830152613ca981613c6d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d0c60238361324f565b9150613d1782613cb0565b604082019050919050565b60006020820190508181036000830152613d3b81613cff565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000613d9e60298361324f565b9150613da982613d42565b604082019050919050565b60006020820190508181036000830152613dcd81613d91565b9050919050565b7f54726164696e67206e6f742079657420656e61626c65642e0000000000000000600082015250565b6000613e0a60188361324f565b9150613e1582613dd4565b602082019050919050565b60006020820190508181036000830152613e3981613dfd565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000613e9c60288361324f565b9150613ea782613e40565b604082019050919050565b60006020820190508181036000830152613ecb81613e8f565b9050919050565b6000613edd82613359565b9150613ee883613359565b9250828201905080821115613f0057613eff61397f565b5b92915050565b7f526563697069656e742065786365656473206d61782077616c6c65742073697a60008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f6260228361324f565b9150613f6d82613f06565b604082019050919050565b60006020820190508181036000830152613f9181613f55565b9050919050565b6000613fa382613359565b9150613fae83613359565b9250828203905081811115613fc657613fc561397f565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614002601b8361324f565b915061400d82613fcc565b602082019050919050565b6000602082019050818103600083015261403181613ff5565b9050919050565b600061404382613529565b915061404e83613529565b9250828201905060ff8111156140675761406661397f565b5b92915050565b600061407882613529565b915061408383613529565b92508160ff048311821515161561409d5761409c61397f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506141158161332d565b92915050565b600060208284031215614131576141306132f6565b5b600061413f84828501614106565b91505092915050565b6000819050919050565b600061416d61416861416384614148565b613432565b613359565b9050919050565b61417d81614152565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141b88161331b565b82525050565b60006141ca83836141af565b60208301905092915050565b6000602082019050919050565b60006141ee82614183565b6141f8818561418e565b93506142038361419f565b8060005b8381101561423457815161421b88826141be565b9750614226836141d6565b925050600181019050614207565b5085935050505092915050565b600060a08201905061425660008301886134ac565b6142636020830187614174565b818103604083015261427581866141e3565b90506142846060830185613688565b61429160808301846134ac565b9695505050505050565b600060c0820190506142b06000830189613688565b6142bd60208301886134ac565b6142ca6040830187614174565b6142d76060830186614174565b6142e46080830185613688565b6142f160a08301846134ac565b979650505050505050565b60008151905061430b81613363565b92915050565b60008060006060848603121561432a576143296132f6565b5b6000614338868287016142fc565b9350506020614349868287016142fc565b925050604061435a868287016142fc565b915050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206902234a0a843e130d4df0f0ff913567f324bd9d370ced6daca8cb70f0f55a2664736f6c63430008100033

Deployed Bytecode

0x6080604052600436106102295760003560e01c80637d1db4a511610123578063c49b9a80116100ab578063ea2f0b371161006f578063ea2f0b371461083c578063f0f165af14610865578063f2fde38b1461088e578063f6831bf2146108b7578063fabb0b4f146108e057610230565b8063c49b9a8014610745578063caac79341461076e578063d543dbeb14610799578063d94160e0146107c2578063dd62ed3e146107ff57610230565b806395d89b41116100f257806395d89b411461064e578063a457c2d714610679578063a9059cbb146106b6578063aacebbe3146106f3578063af2ce6141461071c57610230565b80637d1db4a5146105a45780638da5cb5b146105cf5780638f9a55c0146105fa57806391d919a91461062557610230565b806339509351116101b15780634a74bb02116101755780634a74bb02146104bf5780635342acb4146104ea5780636e4778611461052757806370a0823114610550578063715018a61461058d57610230565b806339509351146103d95780633a17304a14610416578063437823ec1461043f578063470624021461046857806349bd5a5e1461049457610230565b806318160ddd116101f857806318160ddd146102f157806323b872dd1461031c5780632b14ca56146103595780632d4103d614610385578063313ce567146103ae57610230565b806306fdde0314610235578063095ea7b3146102605780630bd3a7f91461029d5780631694505e146102c657610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a61090b565b60405161025791906132d4565b60405180910390f35b34801561026c57600080fd5b506102876004803603810190610282919061338f565b61099d565b60405161029491906133ea565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613405565b6109bb565b005b3480156102d257600080fd5b506102db610aab565b6040516102e89190613491565b60405180910390f35b3480156102fd57600080fd5b50610306610acf565b60405161031391906134bb565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e91906134d6565b610ad9565b60405161035091906133ea565b60405180910390f35b34801561036557600080fd5b5061036e610bb2565b60405161037c929190613545565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a7919061359a565b610bde565b005b3480156103ba57600080fd5b506103c3610cc3565b6040516103d091906135da565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb919061338f565b610cda565b60405161040d91906133ea565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190613621565b610d8d565b005b34801561044b57600080fd5b5061046660048036038101906104619190613405565b610ea0565b005b34801561047457600080fd5b5061047d610f90565b60405161048b929190613545565b60405180910390f35b3480156104a057600080fd5b506104a9610fbc565b6040516104b69190613697565b60405180910390f35b3480156104cb57600080fd5b506104d4610fe0565b6040516104e191906133ea565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190613405565b610ff3565b60405161051e91906133ea565b60405180910390f35b34801561053357600080fd5b5061054e600480360381019061054991906136b2565b611049565b005b34801561055c57600080fd5b5061057760048036038101906105729190613405565b61111e565b60405161058491906134bb565b60405180910390f35b34801561059957600080fd5b506105a2611167565b005b3480156105b057600080fd5b506105b96112ba565b6040516105c691906134bb565b60405180910390f35b3480156105db57600080fd5b506105e46112c0565b6040516105f19190613697565b60405180910390f35b34801561060657600080fd5b5061060f6112e9565b60405161061c91906134bb565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190613405565b6112ef565b005b34801561065a57600080fd5b506106636113df565b60405161067091906132d4565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b919061338f565b611471565b6040516106ad91906133ea565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d8919061338f565b61153e565b6040516106ea91906133ea565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190613730565b61155c565b005b34801561072857600080fd5b50610743600480360381019061073e919061375d565b611635565b005b34801561075157600080fd5b5061076c6004803603810190610767919061378a565b6116fc565b005b34801561077a57600080fd5b506107836117e5565b60405161079091906137c6565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb919061375d565b61180b565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190613405565b6118d2565b6040516107f691906133ea565b60405180910390f35b34801561080b57600080fd5b50610826600480360381019061082191906137e1565b611928565b60405161083391906134bb565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e9190613405565b6119af565b005b34801561087157600080fd5b5061088c6004803603810190610887919061375d565b611a9f565b005b34801561089a57600080fd5b506108b560048036038101906108b09190613405565b611b3e565b005b3480156108c357600080fd5b506108de60048036038101906108d991906136b2565b611cff565b005b3480156108ec57600080fd5b506108f5611dd4565b60405161090291906134bb565b60405180910390f35b60606008805461091a90613850565b80601f016020809104026020016040519081016040528092919081815260200182805461094690613850565b80156109935780601f1061096857610100808354040283529160200191610993565b820191906000526020600020905b81548152906001019060200180831161097657829003601f168201915b5050505050905090565b60006109b16109aa611e9e565b8484611ea6565b6001905092915050565b6109c3611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a47906138cd565b60405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600654905090565b6000610ae684848461206f565b610ba784610af2611e9e565b610ba28560405180606001604052806028815260200161436560289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b58611e9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125869092919063ffffffff16565b611ea6565b600190509392505050565b600c8060000160009054906101000a900460ff16908060000160019054906101000a900460ff16905082565b610be6611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a906138cd565b60405180910390fd5b81601360006101000a81548160ff021916908315150217905550601360009054906101000a900460ff168015610cab57506000601254145b15610cbf5743601281905550806011819055505b5050565b6000600a60009054906101000a900460ff16905090565b6000610d83610ce7611e9e565b84610d7e8560036000610cf8611e9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ea90919063ffffffff16565b611ea6565b6001905092915050565b610d95611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e19906138cd565b60405180910390fd5b82600b60000160016101000a81548160ff021916908360ff16021790555083600b60000160006101000a81548160ff021916908360ff16021790555080600c60000160016101000a81548160ff021916908360ff16021790555081600c60000160006101000a81548160ff021916908360ff16021790555050505050565b610ea8611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c906138cd565b60405180910390fd5b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b8060000160009054906101000a900460ff16908060000160019054906101000a900460ff16905082565b7f000000000000000000000000c13ebd9373c4a8b7ab9dd9e442b0623cb91d27a281565b600d60039054906101000a900460ff1681565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611051611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d5906138cd565b60405180910390fd5b80600b60000160016101000a81548160ff021916908360ff16021790555081600b60000160006101000a81548160ff021916908360ff1602179055505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61116f611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f3906138cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600e5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b6112f7611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b906138cd565b60405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6060600980546113ee90613850565b80601f016020809104026020016040519081016040528092919081815260200182805461141a90613850565b80156114675780601f1061143c57610100808354040283529160200191611467565b820191906000526020600020905b81548152906001019060200180831161144a57829003601f168201915b5050505050905090565b600061153461147e611e9e565b8461152f8560405180606001604052806025815260200161438d60259139600360006114a8611e9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125869092919063ffffffff16565b611ea6565b6001905092915050565b600061155261154b611e9e565b848461206f565b6001905092915050565b611564611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e8906138cd565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61163d611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c1906138cd565b60405180910390fd5b6116f36103e86116e583600654611e2490919063ffffffff16565b611dda90919063ffffffff16565b60108190555050565b611704611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611791576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611788906138cd565b60405180910390fd5b80600d60036101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516117da91906133ea565b60405180910390a150565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611813611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611897906138cd565b60405180910390fd5b6118c96103e86118bb83600654611e2490919063ffffffff16565b611dda90919063ffffffff16565b600e8190555050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6119b7611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b906138cd565b60405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611aa7611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2b906138cd565b60405180910390fd5b80600f8190555050565b611b46611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca906138cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c399061395f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611d07611e9e565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b906138cd565b60405180910390fd5b80600c60000160016101000a81548160ff021916908360ff16021790555081600c60000160006101000a81548160ff021916908360ff1602179055505050565b60115481565b6000611e1c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612648565b905092915050565b6000808303611e365760009050611e98565b60008284611e4491906139ae565b9050828482611e539190613a37565b14611e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8a90613ada565b60405180910390fd5b809150505b92915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c90613b6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7b90613bfe565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161206291906134bb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d590613c90565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361214d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214490613d22565b60405180910390fd5b60008111612190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218790613db4565b60405180910390fd5b6121986112c0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561220657506121d66112c0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561225b57601360009054906101000a900460ff1661225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190613e20565b60405180910390fd5b5b60006122663061111e565b9050600e54811061227757600e5490505b6000600f54821015905080801561229b5750600d60029054906101000a900460ff16155b80156122f357507f000000000000000000000000c13ebd9373c4a8b7ab9dd9e442b0623cb91d27a273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561230b5750600d60039054906101000a900460ff165b1561231f57600f54915061231e826126ab565b5b600060019050600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123c65750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123d057600090505b801561257257600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561247a5750600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561257157600e548411156124c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bb90613eb2565b60405180910390fd5b7f000000000000000000000000c13ebd9373c4a8b7ab9dd9e442b0623cb91d27a273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614612570576010546125238661111e565b8561252e9190613ed2565b111561256f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256690613f78565b60405180910390fd5b5b5b5b61257e86868684612948565b505050505050565b60008383111582906125ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c591906132d4565b60405180910390fd5b50600083856125dd9190613f98565b9050809150509392505050565b60008082846125f99190613ed2565b90508381101561263e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263590614018565b60405180910390fd5b8091505092915050565b6000808311829061268f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268691906132d4565b60405180910390fd5b506000838561269e9190613a37565b9050809150509392505050565b6001600d60026101000a81548160ff02191690831515021790555060006002600c60000160019054906101000a900460ff16600b60000160019054906101000a900460ff16600c60000160009054906101000a900460ff16600b60000160009054906101000a900460ff166127209190614038565b61272a9190614038565b6127349190614038565b61273e919061406d565b60ff169050600081600c60000160009054906101000a900460ff16600b60000160009054906101000a900460ff166127769190614038565b60ff168461278491906139ae565b61278e9190613a37565b90506000818461279e9190613f98565b905060004790506127ae82612a28565b600081476127bc9190613f98565b90506000600c60000160009054906101000a900460ff16600b60000160009054906101000a900460ff166127f09190614038565b60ff16866127fe9190613f98565b826128099190613a37565b90506000600c60000160009054906101000a900460ff16600b60000160009054906101000a900460ff1661283d9190614038565b60ff168261284b91906139ae565b90506000811115612861576128608682612c65565b5b6000600c60000160019054906101000a900460ff16600b60000160019054906101000a900460ff166128939190614038565b60ff166002846128a391906139ae565b6128ad91906139ae565b9050600081111561292257600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612920573d6000803e3d6000fd5b505b50505050505050506000600d60026101000a81548160ff02191690831515021790555050565b8015612a0f57612956612d3f565b7f000000000000000000000000c13ebd9373c4a8b7ab9dd9e442b0623cb91d27a273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036129b2576129b1612d79565b5b7f000000000000000000000000c13ebd9373c4a8b7ab9dd9e442b0623cb91d27a273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a0e57612a0d612dd5565b5b5b612a1a848484612e31565b612a22612d3f565b50505050565b6000600267ffffffffffffffff811115612a4557612a446140a8565b5b604051908082528060200260200182016040528015612a735781602001602082028036833780820191505090505b5090503081600081518110612a8b57612a8a6140d7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b54919061411b565b81600181518110612b6857612b676140d7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612bcd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ea6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612c2f959493929190614241565b600060405180830381600087803b158015612c4957600080fd5b505af1158015612c5d573d6000803e3d6000fd5b505050505050565b612c90307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ea6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401612cf59695949392919061429b565b60606040518083038185885af1158015612d13573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612d389190614311565b5050505050565b6000600d60006101000a81548160ff021916908360ff1602179055506000600d60016101000a81548160ff021916908360ff160217905550565b600b60000160009054906101000a900460ff16600d60006101000a81548160ff021916908360ff160217905550600b60000160019054906101000a900460ff16600d60016101000a81548160ff021916908360ff160217905550565b600c60000160009054906101000a900460ff16600d60006101000a81548160ff021916908360ff160217905550600c60000160019054906101000a900460ff16600d60016101000a81548160ff021916908360ff160217905550565b6000806000612e3f84612fee565b925092509250612e9784600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304890919063ffffffff16565b600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612f2c83600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ea90919063ffffffff16565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612f7882613092565b612f818161312a565b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051612fde91906134bb565b60405180910390a3505050505050565b600080600080612ffd856131c2565b9050600061300a86613203565b9050600061303382613025858a61304890919063ffffffff16565b61304890919063ffffffff16565b90508083839550955095505050509193909250565b600061308a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612586565b905092915050565b6130e481600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ea90919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b61317c81600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ea90919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60006131fc60646131ee600d60009054906101000a900460ff1660ff1685611e2490919063ffffffff16565b611dda90919063ffffffff16565b9050919050565b600061323d606461322f600d60019054906101000a900460ff1660ff1685611e2490919063ffffffff16565b611dda90919063ffffffff16565b9050919050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561327e578082015181840152602081019050613263565b60008484015250505050565b6000601f19601f8301169050919050565b60006132a682613244565b6132b0818561324f565b93506132c0818560208601613260565b6132c98161328a565b840191505092915050565b600060208201905081810360008301526132ee818461329b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613326826132fb565b9050919050565b6133368161331b565b811461334157600080fd5b50565b6000813590506133538161332d565b92915050565b6000819050919050565b61336c81613359565b811461337757600080fd5b50565b60008135905061338981613363565b92915050565b600080604083850312156133a6576133a56132f6565b5b60006133b485828601613344565b92505060206133c58582860161337a565b9150509250929050565b60008115159050919050565b6133e4816133cf565b82525050565b60006020820190506133ff60008301846133db565b92915050565b60006020828403121561341b5761341a6132f6565b5b600061342984828501613344565b91505092915050565b6000819050919050565b600061345761345261344d846132fb565b613432565b6132fb565b9050919050565b60006134698261343c565b9050919050565b600061347b8261345e565b9050919050565b61348b81613470565b82525050565b60006020820190506134a66000830184613482565b92915050565b6134b581613359565b82525050565b60006020820190506134d060008301846134ac565b92915050565b6000806000606084860312156134ef576134ee6132f6565b5b60006134fd86828701613344565b935050602061350e86828701613344565b925050604061351f8682870161337a565b9150509250925092565b600060ff82169050919050565b61353f81613529565b82525050565b600060408201905061355a6000830185613536565b6135676020830184613536565b9392505050565b613577816133cf565b811461358257600080fd5b50565b6000813590506135948161356e565b92915050565b600080604083850312156135b1576135b06132f6565b5b60006135bf85828601613585565b92505060206135d08582860161337a565b9150509250929050565b60006020820190506135ef6000830184613536565b92915050565b6135fe81613529565b811461360957600080fd5b50565b60008135905061361b816135f5565b92915050565b6000806000806080858703121561363b5761363a6132f6565b5b60006136498782880161360c565b945050602061365a8782880161360c565b935050604061366b8782880161360c565b925050606061367c8782880161360c565b91505092959194509250565b6136918161331b565b82525050565b60006020820190506136ac6000830184613688565b92915050565b600080604083850312156136c9576136c86132f6565b5b60006136d78582860161360c565b92505060206136e88582860161360c565b9150509250929050565b60006136fd826132fb565b9050919050565b61370d816136f2565b811461371857600080fd5b50565b60008135905061372a81613704565b92915050565b600060208284031215613746576137456132f6565b5b60006137548482850161371b565b91505092915050565b600060208284031215613773576137726132f6565b5b60006137818482850161337a565b91505092915050565b6000602082840312156137a05761379f6132f6565b5b60006137ae84828501613585565b91505092915050565b6137c0816136f2565b82525050565b60006020820190506137db60008301846137b7565b92915050565b600080604083850312156137f8576137f76132f6565b5b600061380685828601613344565b925050602061381785828601613344565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061386857607f821691505b60208210810361387b5761387a613821565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138b760208361324f565b91506138c282613881565b602082019050919050565b600060208201905081810360008301526138e6816138aa565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061394960268361324f565b9150613954826138ed565b604082019050919050565b600060208201905081810360008301526139788161393c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139b982613359565b91506139c483613359565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139fd576139fc61397f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a4282613359565b9150613a4d83613359565b925082613a5d57613a5c613a08565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ac460218361324f565b9150613acf82613a68565b604082019050919050565b60006020820190508181036000830152613af381613ab7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613b5660248361324f565b9150613b6182613afa565b604082019050919050565b60006020820190508181036000830152613b8581613b49565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613be860228361324f565b9150613bf382613b8c565b604082019050919050565b60006020820190508181036000830152613c1781613bdb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c7a60258361324f565b9150613c8582613c1e565b604082019050919050565b60006020820190508181036000830152613ca981613c6d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d0c60238361324f565b9150613d1782613cb0565b604082019050919050565b60006020820190508181036000830152613d3b81613cff565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000613d9e60298361324f565b9150613da982613d42565b604082019050919050565b60006020820190508181036000830152613dcd81613d91565b9050919050565b7f54726164696e67206e6f742079657420656e61626c65642e0000000000000000600082015250565b6000613e0a60188361324f565b9150613e1582613dd4565b602082019050919050565b60006020820190508181036000830152613e3981613dfd565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000613e9c60288361324f565b9150613ea782613e40565b604082019050919050565b60006020820190508181036000830152613ecb81613e8f565b9050919050565b6000613edd82613359565b9150613ee883613359565b9250828201905080821115613f0057613eff61397f565b5b92915050565b7f526563697069656e742065786365656473206d61782077616c6c65742073697a60008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f6260228361324f565b9150613f6d82613f06565b604082019050919050565b60006020820190508181036000830152613f9181613f55565b9050919050565b6000613fa382613359565b9150613fae83613359565b9250828203905081811115613fc657613fc561397f565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614002601b8361324f565b915061400d82613fcc565b602082019050919050565b6000602082019050818103600083015261403181613ff5565b9050919050565b600061404382613529565b915061404e83613529565b9250828201905060ff8111156140675761406661397f565b5b92915050565b600061407882613529565b915061408383613529565b92508160ff048311821515161561409d5761409c61397f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506141158161332d565b92915050565b600060208284031215614131576141306132f6565b5b600061413f84828501614106565b91505092915050565b6000819050919050565b600061416d61416861416384614148565b613432565b613359565b9050919050565b61417d81614152565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141b88161331b565b82525050565b60006141ca83836141af565b60208301905092915050565b6000602082019050919050565b60006141ee82614183565b6141f8818561418e565b93506142038361419f565b8060005b8381101561423457815161421b88826141be565b9750614226836141d6565b925050600181019050614207565b5085935050505092915050565b600060a08201905061425660008301886134ac565b6142636020830187614174565b818103604083015261427581866141e3565b90506142846060830185613688565b61429160808301846134ac565b9695505050505050565b600060c0820190506142b06000830189613688565b6142bd60208301886134ac565b6142ca6040830187614174565b6142d76060830186614174565b6142e46080830185613688565b6142f160a08301846134ac565b979650505050505050565b60008151905061430b81613363565b92915050565b60008060006060848603121561432a576143296132f6565b5b6000614338868287016142fc565b9350506020614349868287016142fc565b925050604061435a868287016142fc565b915050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206902234a0a843e130d4df0f0ff913567f324bd9d370ced6daca8cb70f0f55a2664736f6c63430008100033

Deployed Bytecode Sourcemap

25582:15416:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28477:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29381:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31124:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26526:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28754:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29582:446;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26425:22;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;40744:251;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28663:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30036:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31754:357;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30887:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26398:20;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;26584:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26659:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34334:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31563:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28857:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15646:148;;;;;;;;;;;;;:::i;:::-;;26708:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15004:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26863:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31247:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28568:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30344:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28982:199;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30752:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32411:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32591:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26000:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32267:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34466:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29189:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31006:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32119:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15949:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31369:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27315:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28477:83;28514:13;28547:5;28540:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28477:83;:::o;29381:193::-;29483:4;29505:39;29514:12;:10;:12::i;:::-;29528:7;29537:6;29505:8;:39::i;:::-;29562:4;29555:11;;29381:193;;;;:::o;31124:115::-;15226:12;:10;:12::i;:::-;15216:22;;:6;;;;;;;;;;:22;;;15208:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31227:4:::1;31195:20;:29;31216:7;31195:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;31124:115:::0;:::o;26526:51::-;;;:::o;28754:95::-;28807:7;28834;;28827:14;;28754:95;:::o;29582:446::-;29714:4;29731:36;29741:6;29749:9;29760:6;29731:9;:36::i;:::-;29778:220;29801:6;29822:12;:10;:12::i;:::-;29849:138;29905:6;29849:138;;;;;;;;;;;;;;;;;:11;:19;29861:6;29849:19;;;;;;;;;;;;;;;:33;29869:12;:10;:12::i;:::-;29849:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;29778:8;:220::i;:::-;30016:4;30009:11;;29582:446;;;;;:::o;26425:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40744:251::-;15226:12;:10;:12::i;:::-;15216:22;;:6;;;;;;;;;;:22;;;15208:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;40845:7:::1;40831:11;;:21;;;;;;;;;;;;;;;;;;40866:11;;;;;;;;;;;:30;;;;;40895:1;40881:10;;:15;40866:30;40863:125;;;40925:12;40912:10;:25;;;;40965:11;40952:10;:24;;;;40863:125;40744:251:::0;;:::o;28663:83::-;28704:5;28729:9;;;;;;;;;;;28722:16;;28663:83;:::o;30036:300::-;30151:4;30173:133;30196:12;:10;:12::i;:::-;30223:7;30245:50;30284:10;30245:11;:25;30257:12;:10;:12::i;:::-;30245:25;;;;;;;;;;;;;;;:34;30271:7;30245:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30173:8;:133::i;:::-;30324:4;30317:11;;30036:300;;;;:::o;31754:357::-;15226:12;:10;:12::i;:::-;15216:22;;:6;;;;;;;;;;:22;;;15208:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31955:13:::1;31936:6;:16;;;:32;;;;;;;;;;;;;;;;;;31998:13;31979:6;:16;;;:32;;;;;;;;;;;;;;;;;;32044:14;32024:7;:17;;;:34;;;;;;;;;;;;;;;;;;32089:14;32069:7;:17;;;:34;;;;;;;;;;;;;;;;;;31754:357:::0;;;;:::o;30887:111::-;15226:12;:10;:12::i;:::-;15216:22;;:6;;;;;;;;;;:22;;;15208:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;30986:4:::1;30956:18;:27;30975:7;30956:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;30887:111:::0;:::o;26398:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26584:38::-;;;:::o;26659:40::-;;;;;;;;;;;;;:::o;34334:124::-;34399:4;34423:18;:27;34442:7;34423:27;;;;;;;;;;;;;;;;;;;;;;;;;34416:34;;34334:124;;;:::o;31563:183::-;15226:12;:10;:12::i;:::-;15216:22;;:6;;;;;;;;;;:22;;;15208:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31690:9:::1;31671:6;:16;;;:28;;;;;;;;;;;;;;;;;;31729:9;31710:6;:16;;;:28;;;;;;;;;;;;;;;;;;31563:183:::0;;:::o;28857:117::-;28923:7;28950;:16;28958:7;28950:16;;;;;;;;;;;;;;;;28943:23;;28857:117;;;:::o;15646:148::-;15226:12;:10;:12::i;:::-;15216:22;;:6;;;;;;;;;;:22;;;15208:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15753:1:::1;15716:40;;15737:6;::::0;::::1;;;;;;;;15716:40;;;;;;;;;;;;15784:1;15767:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;15646:148::o:0;26708:55::-;;;;:::o;15004:79::-;15042:7;15069:6;;;;;;;;;;;15062:13;;15004:79;:::o;26863:57::-;;;;:::o;31247:114::-;15226:12;:10;:12::i;:::-;15216:22;;:6;;;;;;;;;;:22;;;15208:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31348:5:::1;31316:20;:29;31337:7;31316:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;31247:114:::0;:::o;28568:87::-;28607:13;28640:7;28633:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28568:87;:::o;30344:400::-;30464:4;30486:228;30509:12;:10;:12::i;:::-;30536:7;30558:145;30615:15;30558:145;;;;;;;;;;;;;;;;;:11;:25;30570:12;:10;:12::i;:::-;30558:25;;;;;;;;;;;;;;;:34;30584:7;30558:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;30486:8;:228::i;:::-;30732:4;30725:11;;30344:400;;;;:::o;28982:199::-;29087:4;29109:42;29119:12;:10;:12::i;:::-;29133:9;29144:6;29109:9;:42::i;:::-;29169:4;29162:11;;28982:199;;;;:::o;30752:127::-;15226:12;:10;:12::i;:::-;15216:22;;:6;;;;;;;;;;:22;;;15208:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;30861:10:::1;30841:17;;:30;;;;;;;;;;;;;;;;;;30752:127:::0;:::o;32411:172::-;15226:12;:10;:12::i;:::-;15216:22;;:6;;;;;;;;;;:22;;;15208:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32538:37:::1;32569:5;32538:26;32550:13;32538:7;;:11;;:26;;;;:::i;:::-;:30;;:37;;;;:::i;:::-;32521:14;:54;;;;32411:172:::0;:::o;32591:171::-;15226:12;:10;:12::i;:::-;15216:22;;:6;;;;;;;;;;:22;;;15208:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32692:8:::1;32668:21;;:32;;;;;;;;;;;;;;;;;;32716:38;32745:8;32716:38;;;;;;:::i;:::-;;;;;;;;32591:171:::0;:::o;26000:103::-;;;;;;;;;;;;;:::o;32267:136::-;15226:12;:10;:12::i;:::-;15216:22;;:6;;;;;;;;;;:22;;;15208:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32359:36:::1;32389:5;32359:25;32371:12;32359:7;;:11;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;32344:12;:51;;;;32267:136:::0;:::o;34466:128::-;34533:4;34557:20;:29;34578:7;34557:29;;;;;;;;;;;;;;;;;;;;;;;;;34550:36;;34466:128;;;:::o;29189:184::-;29306:7;29338:11;:18;29350:5;29338:18;;;;;;;;;;;;;;;:27;29357:7;29338:27;;;;;;;;;;;;;;;;29331:34;;29189:184;;;;:::o;31006:110::-;15226:12;:10;:12::i;:::-;15216:22;;:6;;;;;;;;;;:22;;;15208:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31103:5:::1;31073:18;:27;31092:7;31073:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;31006:110:::0;:::o;32119:140::-;15226:12;:10;:12::i;:::-;15216:22;;:6;;;;;;;;;;:22;;;15208:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32242:9:::1;32210:29;:41;;;;32119:140:::0;:::o;15949:281::-;15226:12;:10;:12::i;:::-;15216:22;;:6;;;;;;;;;;:22;;;15208:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16072:1:::1;16052:22;;:8;:22;;::::0;16030:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;16185:8;16156:38;;16177:6;::::0;::::1;;;;;;;;16156:38;;;;;;;;;;;;16214:8;16205:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;15949:281:::0;:::o;31369:186::-;15226:12;:10;:12::i;:::-;15216:22;;:6;;;;;;;;;;:22;;;15208:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31498:9:::1;31478:7;:17;;;:29;;;;;;;;;;;;;;;;;;31538:9;31518:7;:17;;;:29;;;;;;;;;;;;;;;;;;31369:186:::0;;:::o;27315:29::-;;;;:::o;5492:132::-;5550:7;5577:39;5581:1;5584;5577:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5570:46;;5492:132;;;;:::o;4997:252::-;5055:7;5086:1;5081;:6;5077:47;;5111:1;5104:8;;;;5077:47;5136:9;5152:1;5148;:5;;;;:::i;:::-;5136:17;;5181:1;5176;5172;:5;;;;:::i;:::-;:10;5164:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;5240:1;5233:8;;;4997:252;;;;;:::o;7752:115::-;7805:15;7848:10;7833:26;;7752:115;:::o;34602:371::-;34746:1;34729:19;;:5;:19;;;34721:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34827:1;34808:21;;:7;:21;;;34800:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34911:6;34881:11;:18;34893:5;34881:18;;;;;;;;;;;;;;;:27;34900:7;34881:27;;;;;;;;;;;;;;;:36;;;;34949:7;34933:32;;34942:5;34933:32;;;34958:6;34933:32;;;;;;:::i;:::-;;;;;;;;34602:371;;;:::o;34981:2331::-;35119:1;35103:18;;:4;:18;;;35095:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35196:1;35182:16;;:2;:16;;;35174:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;35266:1;35257:6;:10;35249:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;35347:7;:5;:7::i;:::-;35339:15;;:4;:15;;;;:32;;;;;35364:7;:5;:7::i;:::-;35358:13;;:2;:13;;;;35339:32;35334:88;;;35382:11;;;;;;;;;;;35374:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;35334:88;35757:28;35788:24;35806:4;35788:9;:24::i;:::-;35757:55;;35853:12;;35829:20;:36;35825:104;;35905:12;;35882:35;;35825:104;35941:24;36005:29;;35968:20;:66;;35941:93;;36063:19;:53;;;;;36100:16;;;;;;;;;;;36099:17;36063:53;:91;;;;;36141:13;36133:21;;:4;:21;;;;36063:91;:129;;;;;36171:21;;;;;;;;;;;36063:129;36045:318;;;36242:29;;36219:52;;36315:36;36330:20;36315:14;:36::i;:::-;36045:318;36436:12;36451:4;36436:19;;36556:18;:24;36575:4;36556:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;36584:18;:22;36603:2;36584:22;;;;;;;;;;;;;;;;;;;;;;;;;36556:50;36552:98;;;36633:5;36623:15;;36552:98;36664:7;36660:536;;;36693:20;:26;36714:4;36693:26;;;;;;;;;;;;;;;;;;;;;;;;;36692:27;:56;;;;;36724:20;:24;36745:2;36724:24;;;;;;;;;;;;;;;;;;;;;;;;;36723:25;36692:56;36688:497;;;36809:12;;36799:6;:22;;36769:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;36934:13;36928:19;;:2;:19;;;36924:228;;37032:14;;37015:13;37025:2;37015:9;:13::i;:::-;37006:6;:22;;;;:::i;:::-;:40;;36972:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;36924:228;36688:497;36660:536;37263:41;37278:4;37284:2;37288:6;37296:7;37263:14;:41::i;:::-;35084:2228;;;34981:2331;;;:::o;4512:226::-;4632:7;4665:1;4660;:6;;4668:12;4652:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4692:9;4708:1;4704;:5;;;;:::i;:::-;4692:17;;4729:1;4722:8;;;4512:226;;;;;:::o;3609:181::-;3667:7;3687:9;3703:1;3699;:5;;;;:::i;:::-;3687:17;;3728:1;3723;:6;;3715:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3781:1;3774:8;;;3609:181;;;;:::o;6120:312::-;6240:7;6272:1;6268;:5;6275:12;6260:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;6299:9;6315:1;6311;:5;;;;:::i;:::-;6299:17;;6423:1;6416:8;;;6120:312;;;;;:::o;37320:1195::-;27248:4;27229:16;;:23;;;;;;;;;;;;;;;;;;37442:19:::1;37544:1;37523:7;:17;;;;;;;;;;;;37504:6;:16;;;;;;;;;;;;37484:7;:17;;;;;;;;;;;;37465:6;:16;;;;;;;;;;;;:36;;;;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;37464:81;;;;:::i;:::-;37442:103;;;;37556:32;37643:11;37621:7;:17;;;;;;;;;;;;37602:6;:16;;;;;;;;;;;;:36;;;;:::i;:::-;37592:47;;:6;:47;;;;:::i;:::-;37591:63;;;;:::i;:::-;37556:98;;37665:14;37691:24;37682:6;:33;;;;:::i;:::-;37665:50;;37728:22;37753:21;37728:46;;37787:24;37804:6;37787:16;:24::i;:::-;37824:20;37871:14;37847:21;:38;;;;:::i;:::-;37824:61;;37896:19;37968:7;:17;;;;;;;;;;;;37949:6;:16;;;;;;;;;;;;:36;;;;:::i;:::-;37934:52;;:11;:52;;;;:::i;:::-;37918:12;:69;;;;:::i;:::-;37896:91;;37998:29;38064:7;:17;;;;;;;;;;;;38045:6;:16;;;;;;;;;;;;:36;;;;:::i;:::-;38030:52;;:11;:52;;;;:::i;:::-;37998:84;;38123:1;38099:21;:25;38095:160;;;38182:61;38195:24;38221:21;38182:12;:61::i;:::-;38095:160;38301:20;38362:7;:17;;;;;;;;;;;;38343:6;:16;;;;;;;;;;;;:36;;;;:::i;:::-;38324:56;;38338:1;38324:11;:15;;;;:::i;:::-;:56;;;;:::i;:::-;38301:79;;38421:1;38406:12;:16;38402:98;;;38447:17;;;;;;;;;;;38439:35;;:49;38475:12;38439:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38402:98;37380:1135;;;;;;;;27294:5:::0;27275:16;;:24;;;;;;;;;;;;;;;;;;37320:1195;:::o;39720:472::-;39875:7;39871:230;;;39899:14;:12;:14::i;:::-;39942:13;39932:23;;:6;:23;;;39928:72;;39976:8;:6;:8::i;:::-;39928:72;40031:13;40018:26;;:9;:26;;;40014:76;;40065:9;:7;:9::i;:::-;40014:76;39871:230;40113:44;40131:6;40139:9;40150:6;40113:17;:44::i;:::-;40170:14;:12;:14::i;:::-;39720:472;;;;:::o;38523:589::-;38649:21;38687:1;38673:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38649:40;;38718:4;38700;38705:1;38700:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;38744:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38734:4;38739:1;38734:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;38779:62;38796:4;38811:15;38829:11;38779:8;:62::i;:::-;38880:15;:66;;;38961:11;38987:1;39031:4;39058;39078:15;38880:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38578:534;38523:589;:::o;39120:519::-;39268:62;39285:4;39300:15;39318:11;39268:8;:62::i;:::-;39373:15;:31;;;39412:9;39445:4;39465:11;39491:1;39534;39585:4;39605:15;39373:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;39120:519;;:::o;33948:103::-;34007:1;33991:13;;:17;;;;;;;;;;;;;;;;;;34035:1;34019:13;;:17;;;;;;;;;;;;;;;;;;33948:103::o;34059:128::-;34112:6;:16;;;;;;;;;;;;34096:13;;:32;;;;;;;;;;;;;;;;;;34155:6;:16;;;;;;;;;;;;34139:13;;:32;;;;;;;;;;;;;;;;;;34059:128::o;34195:131::-;34249:7;:17;;;;;;;;;;;;34233:13;;:33;;;;;;;;;;;;;;;;;;34293:7;:17;;;;;;;;;;;;34277:13;;:33;;;;;;;;;;;;;;;;;;34195:131::o;40200:536::-;40347:23;40385:18;40418:15;40447:20;40459:7;40447:11;:20::i;:::-;40332:135;;;;;;40498:28;40518:7;40498;:15;40506:6;40498:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40480:7;:15;40488:6;40480:15;;;;;;;;;;;;;;;:46;;;;40558:39;40581:15;40558:7;:18;40566:9;40558:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40537:7;:18;40545:9;40537:18;;;;;;;;;;;;;;;:60;;;;40608:26;40623:10;40608:14;:26::i;:::-;40645:23;40660:7;40645:14;:23::i;:::-;40701:9;40684:44;;40693:6;40684:44;;;40712:15;40684:44;;;;;;:::i;:::-;;;;;;;;40321:415;;;40200:536;;;:::o;32864:429::-;32965:7;32987;33009;33044:18;33065:30;33087:7;33065:21;:30::i;:::-;33044:51;;33106:15;33124:30;33146:7;33124:21;:30::i;:::-;33106:48;;33165:23;33191:36;33219:7;33191:23;33203:10;33191:7;:11;;:23;;;;:::i;:::-;:27;;:36;;;;:::i;:::-;33165:62;;33248:15;33265:10;33277:7;33240:45;;;;;;;;;32864:429;;;;;:::o;4073:136::-;4131:7;4158:43;4162:1;4165;4158:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4151:50;;4073:136;;;;:::o;33301:134::-;33389:38;33416:10;33389:7;:22;33405:4;33389:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;33364:7;:22;33380:4;33364:22;;;;;;;;;;;;;;;:63;;;;33301:134;:::o;33443:128::-;33528:35;33555:7;33528;:22;33544:4;33528:22;;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;33503:7;:22;33519:4;33503:22;;;;;;;;;;;;;;;:60;;;;33443:128;:::o;33579:174::-;33676:7;33708:37;33739:5;33708:26;33720:13;;;;;;;;;;;33708:26;;:7;:11;;:26;;;;:::i;:::-;:30;;:37;;;;:::i;:::-;33701:44;;33579:174;;;:::o;33761:::-;33858:7;33890:37;33921:5;33890:26;33902:13;;;;;;;;;;;33890:26;;:7;:11;;:26;;;;:::i;:::-;:30;;:37;;;;:::i;:::-;33883:44;;33761:174;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:619::-;5188:6;5196;5204;5253:2;5241:9;5232:7;5228:23;5224:32;5221:119;;;5259:79;;:::i;:::-;5221:119;5379:1;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5350:117;5506:2;5532:53;5577:7;5568:6;5557:9;5553:22;5532:53;:::i;:::-;5522:63;;5477:118;5634:2;5660:53;5705:7;5696:6;5685:9;5681:22;5660:53;:::i;:::-;5650:63;;5605:118;5111:619;;;;;:::o;5736:86::-;5771:7;5811:4;5804:5;5800:16;5789:27;;5736:86;;;:::o;5828:112::-;5911:22;5927:5;5911:22;:::i;:::-;5906:3;5899:35;5828:112;;:::o;5946:316::-;6059:4;6097:2;6086:9;6082:18;6074:26;;6110:67;6174:1;6163:9;6159:17;6150:6;6110:67;:::i;:::-;6187:68;6251:2;6240:9;6236:18;6227:6;6187:68;:::i;:::-;5946:316;;;;;:::o;6268:116::-;6338:21;6353:5;6338:21;:::i;:::-;6331:5;6328:32;6318:60;;6374:1;6371;6364:12;6318:60;6268:116;:::o;6390:133::-;6433:5;6471:6;6458:20;6449:29;;6487:30;6511:5;6487:30;:::i;:::-;6390:133;;;;:::o;6529:468::-;6594:6;6602;6651:2;6639:9;6630:7;6626:23;6622:32;6619:119;;;6657:79;;:::i;:::-;6619:119;6777:1;6802:50;6844:7;6835:6;6824:9;6820:22;6802:50;:::i;:::-;6792:60;;6748:114;6901:2;6927:53;6972:7;6963:6;6952:9;6948:22;6927:53;:::i;:::-;6917:63;;6872:118;6529:468;;;;;:::o;7003:214::-;7092:4;7130:2;7119:9;7115:18;7107:26;;7143:67;7207:1;7196:9;7192:17;7183:6;7143:67;:::i;:::-;7003:214;;;;:::o;7223:118::-;7294:22;7310:5;7294:22;:::i;:::-;7287:5;7284:33;7274:61;;7331:1;7328;7321:12;7274:61;7223:118;:::o;7347:135::-;7391:5;7429:6;7416:20;7407:29;;7445:31;7470:5;7445:31;:::i;:::-;7347:135;;;;:::o;7488:749::-;7566:6;7574;7582;7590;7639:3;7627:9;7618:7;7614:23;7610:33;7607:120;;;7646:79;;:::i;:::-;7607:120;7766:1;7791:51;7834:7;7825:6;7814:9;7810:22;7791:51;:::i;:::-;7781:61;;7737:115;7891:2;7917:51;7960:7;7951:6;7940:9;7936:22;7917:51;:::i;:::-;7907:61;;7862:116;8017:2;8043:51;8086:7;8077:6;8066:9;8062:22;8043:51;:::i;:::-;8033:61;;7988:116;8143:2;8169:51;8212:7;8203:6;8192:9;8188:22;8169:51;:::i;:::-;8159:61;;8114:116;7488:749;;;;;;;:::o;8243:118::-;8330:24;8348:5;8330:24;:::i;:::-;8325:3;8318:37;8243:118;;:::o;8367:222::-;8460:4;8498:2;8487:9;8483:18;8475:26;;8511:71;8579:1;8568:9;8564:17;8555:6;8511:71;:::i;:::-;8367:222;;;;:::o;8595:466::-;8659:6;8667;8716:2;8704:9;8695:7;8691:23;8687:32;8684:119;;;8722:79;;:::i;:::-;8684:119;8842:1;8867:51;8910:7;8901:6;8890:9;8886:22;8867:51;:::i;:::-;8857:61;;8813:115;8967:2;8993:51;9036:7;9027:6;9016:9;9012:22;8993:51;:::i;:::-;8983:61;;8938:116;8595:466;;;;;:::o;9067:104::-;9112:7;9141:24;9159:5;9141:24;:::i;:::-;9130:35;;9067:104;;;:::o;9177:138::-;9258:32;9284:5;9258:32;:::i;:::-;9251:5;9248:43;9238:71;;9305:1;9302;9295:12;9238:71;9177:138;:::o;9321:155::-;9375:5;9413:6;9400:20;9391:29;;9429:41;9464:5;9429:41;:::i;:::-;9321:155;;;;:::o;9482:345::-;9549:6;9598:2;9586:9;9577:7;9573:23;9569:32;9566:119;;;9604:79;;:::i;:::-;9566:119;9724:1;9749:61;9802:7;9793:6;9782:9;9778:22;9749:61;:::i;:::-;9739:71;;9695:125;9482:345;;;;:::o;9833:329::-;9892:6;9941:2;9929:9;9920:7;9916:23;9912:32;9909:119;;;9947:79;;:::i;:::-;9909:119;10067:1;10092:53;10137:7;10128:6;10117:9;10113:22;10092:53;:::i;:::-;10082:63;;10038:117;9833:329;;;;:::o;10168:323::-;10224:6;10273:2;10261:9;10252:7;10248:23;10244:32;10241:119;;;10279:79;;:::i;:::-;10241:119;10399:1;10424:50;10466:7;10457:6;10446:9;10442:22;10424:50;:::i;:::-;10414:60;;10370:114;10168:323;;;;:::o;10497:142::-;10600:32;10626:5;10600:32;:::i;:::-;10595:3;10588:45;10497:142;;:::o;10645:254::-;10754:4;10792:2;10781:9;10777:18;10769:26;;10805:87;10889:1;10878:9;10874:17;10865:6;10805:87;:::i;:::-;10645:254;;;;:::o;10905:474::-;10973:6;10981;11030:2;11018:9;11009:7;11005:23;11001:32;10998:119;;;11036:79;;:::i;:::-;10998:119;11156:1;11181:53;11226:7;11217:6;11206:9;11202:22;11181:53;:::i;:::-;11171:63;;11127:117;11283:2;11309:53;11354:7;11345:6;11334:9;11330:22;11309:53;:::i;:::-;11299:63;;11254:118;10905:474;;;;;:::o;11385:180::-;11433:77;11430:1;11423:88;11530:4;11527:1;11520:15;11554:4;11551:1;11544:15;11571:320;11615:6;11652:1;11646:4;11642:12;11632:22;;11699:1;11693:4;11689:12;11720:18;11710:81;;11776:4;11768:6;11764:17;11754:27;;11710:81;11838:2;11830:6;11827:14;11807:18;11804:38;11801:84;;11857:18;;:::i;:::-;11801:84;11622:269;11571:320;;;:::o;11897:182::-;12037:34;12033:1;12025:6;12021:14;12014:58;11897:182;:::o;12085:366::-;12227:3;12248:67;12312:2;12307:3;12248:67;:::i;:::-;12241:74;;12324:93;12413:3;12324:93;:::i;:::-;12442:2;12437:3;12433:12;12426:19;;12085:366;;;:::o;12457:419::-;12623:4;12661:2;12650:9;12646:18;12638:26;;12710:9;12704:4;12700:20;12696:1;12685:9;12681:17;12674:47;12738:131;12864:4;12738:131;:::i;:::-;12730:139;;12457:419;;;:::o;12882:225::-;13022:34;13018:1;13010:6;13006:14;12999:58;13091:8;13086:2;13078:6;13074:15;13067:33;12882:225;:::o;13113:366::-;13255:3;13276:67;13340:2;13335:3;13276:67;:::i;:::-;13269:74;;13352:93;13441:3;13352:93;:::i;:::-;13470:2;13465:3;13461:12;13454:19;;13113:366;;;:::o;13485:419::-;13651:4;13689:2;13678:9;13674:18;13666:26;;13738:9;13732:4;13728:20;13724:1;13713:9;13709:17;13702:47;13766:131;13892:4;13766:131;:::i;:::-;13758:139;;13485:419;;;:::o;13910:180::-;13958:77;13955:1;13948:88;14055:4;14052:1;14045:15;14079:4;14076:1;14069:15;14096:348;14136:7;14159:20;14177:1;14159:20;:::i;:::-;14154:25;;14193:20;14211:1;14193:20;:::i;:::-;14188:25;;14381:1;14313:66;14309:74;14306:1;14303:81;14298:1;14291:9;14284:17;14280:105;14277:131;;;14388:18;;:::i;:::-;14277:131;14436:1;14433;14429:9;14418:20;;14096:348;;;;:::o;14450:180::-;14498:77;14495:1;14488:88;14595:4;14592:1;14585:15;14619:4;14616:1;14609:15;14636:185;14676:1;14693:20;14711:1;14693:20;:::i;:::-;14688:25;;14727:20;14745:1;14727:20;:::i;:::-;14722:25;;14766:1;14756:35;;14771:18;;:::i;:::-;14756:35;14813:1;14810;14806:9;14801:14;;14636:185;;;;:::o;14827:220::-;14967:34;14963:1;14955:6;14951:14;14944:58;15036:3;15031:2;15023:6;15019:15;15012:28;14827:220;:::o;15053:366::-;15195:3;15216:67;15280:2;15275:3;15216:67;:::i;:::-;15209:74;;15292:93;15381:3;15292:93;:::i;:::-;15410:2;15405:3;15401:12;15394:19;;15053:366;;;:::o;15425:419::-;15591:4;15629:2;15618:9;15614:18;15606:26;;15678:9;15672:4;15668:20;15664:1;15653:9;15649:17;15642:47;15706:131;15832:4;15706:131;:::i;:::-;15698:139;;15425:419;;;:::o;15850:223::-;15990:34;15986:1;15978:6;15974:14;15967:58;16059:6;16054:2;16046:6;16042:15;16035:31;15850:223;:::o;16079:366::-;16221:3;16242:67;16306:2;16301:3;16242:67;:::i;:::-;16235:74;;16318:93;16407:3;16318:93;:::i;:::-;16436:2;16431:3;16427:12;16420:19;;16079:366;;;:::o;16451:419::-;16617:4;16655:2;16644:9;16640:18;16632:26;;16704:9;16698:4;16694:20;16690:1;16679:9;16675:17;16668:47;16732:131;16858:4;16732:131;:::i;:::-;16724:139;;16451:419;;;:::o;16876:221::-;17016:34;17012:1;17004:6;17000:14;16993:58;17085:4;17080:2;17072:6;17068:15;17061:29;16876:221;:::o;17103:366::-;17245:3;17266:67;17330:2;17325:3;17266:67;:::i;:::-;17259:74;;17342:93;17431:3;17342:93;:::i;:::-;17460:2;17455:3;17451:12;17444:19;;17103:366;;;:::o;17475:419::-;17641:4;17679:2;17668:9;17664:18;17656:26;;17728:9;17722:4;17718:20;17714:1;17703:9;17699:17;17692:47;17756:131;17882:4;17756:131;:::i;:::-;17748:139;;17475:419;;;:::o;17900:224::-;18040:34;18036:1;18028:6;18024:14;18017:58;18109:7;18104:2;18096:6;18092:15;18085:32;17900:224;:::o;18130:366::-;18272:3;18293:67;18357:2;18352:3;18293:67;:::i;:::-;18286:74;;18369:93;18458:3;18369:93;:::i;:::-;18487:2;18482:3;18478:12;18471:19;;18130:366;;;:::o;18502:419::-;18668:4;18706:2;18695:9;18691:18;18683:26;;18755:9;18749:4;18745:20;18741:1;18730:9;18726:17;18719:47;18783:131;18909:4;18783:131;:::i;:::-;18775:139;;18502:419;;;:::o;18927:222::-;19067:34;19063:1;19055:6;19051:14;19044:58;19136:5;19131:2;19123:6;19119:15;19112:30;18927:222;:::o;19155:366::-;19297:3;19318:67;19382:2;19377:3;19318:67;:::i;:::-;19311:74;;19394:93;19483:3;19394:93;:::i;:::-;19512:2;19507:3;19503:12;19496:19;;19155:366;;;:::o;19527:419::-;19693:4;19731:2;19720:9;19716:18;19708:26;;19780:9;19774:4;19770:20;19766:1;19755:9;19751:17;19744:47;19808:131;19934:4;19808:131;:::i;:::-;19800:139;;19527:419;;;:::o;19952:228::-;20092:34;20088:1;20080:6;20076:14;20069:58;20161:11;20156:2;20148:6;20144:15;20137:36;19952:228;:::o;20186:366::-;20328:3;20349:67;20413:2;20408:3;20349:67;:::i;:::-;20342:74;;20425:93;20514:3;20425:93;:::i;:::-;20543:2;20538:3;20534:12;20527:19;;20186:366;;;:::o;20558:419::-;20724:4;20762:2;20751:9;20747:18;20739:26;;20811:9;20805:4;20801:20;20797:1;20786:9;20782:17;20775:47;20839:131;20965:4;20839:131;:::i;:::-;20831:139;;20558:419;;;:::o;20983:174::-;21123:26;21119:1;21111:6;21107:14;21100:50;20983:174;:::o;21163:366::-;21305:3;21326:67;21390:2;21385:3;21326:67;:::i;:::-;21319:74;;21402:93;21491:3;21402:93;:::i;:::-;21520:2;21515:3;21511:12;21504:19;;21163:366;;;:::o;21535:419::-;21701:4;21739:2;21728:9;21724:18;21716:26;;21788:9;21782:4;21778:20;21774:1;21763:9;21759:17;21752:47;21816:131;21942:4;21816:131;:::i;:::-;21808:139;;21535:419;;;:::o;21960:227::-;22100:34;22096:1;22088:6;22084:14;22077:58;22169:10;22164:2;22156:6;22152:15;22145:35;21960:227;:::o;22193:366::-;22335:3;22356:67;22420:2;22415:3;22356:67;:::i;:::-;22349:74;;22432:93;22521:3;22432:93;:::i;:::-;22550:2;22545:3;22541:12;22534:19;;22193:366;;;:::o;22565:419::-;22731:4;22769:2;22758:9;22754:18;22746:26;;22818:9;22812:4;22808:20;22804:1;22793:9;22789:17;22782:47;22846:131;22972:4;22846:131;:::i;:::-;22838:139;;22565:419;;;:::o;22990:191::-;23030:3;23049:20;23067:1;23049:20;:::i;:::-;23044:25;;23083:20;23101:1;23083:20;:::i;:::-;23078:25;;23126:1;23123;23119:9;23112:16;;23147:3;23144:1;23141:10;23138:36;;;23154:18;;:::i;:::-;23138:36;22990:191;;;;:::o;23187:221::-;23327:34;23323:1;23315:6;23311:14;23304:58;23396:4;23391:2;23383:6;23379:15;23372:29;23187:221;:::o;23414:366::-;23556:3;23577:67;23641:2;23636:3;23577:67;:::i;:::-;23570:74;;23653:93;23742:3;23653:93;:::i;:::-;23771:2;23766:3;23762:12;23755:19;;23414:366;;;:::o;23786:419::-;23952:4;23990:2;23979:9;23975:18;23967:26;;24039:9;24033:4;24029:20;24025:1;24014:9;24010:17;24003:47;24067:131;24193:4;24067:131;:::i;:::-;24059:139;;23786:419;;;:::o;24211:194::-;24251:4;24271:20;24289:1;24271:20;:::i;:::-;24266:25;;24305:20;24323:1;24305:20;:::i;:::-;24300:25;;24349:1;24346;24342:9;24334:17;;24373:1;24367:4;24364:11;24361:37;;;24378:18;;:::i;:::-;24361:37;24211:194;;;;:::o;24411:177::-;24551:29;24547:1;24539:6;24535:14;24528:53;24411:177;:::o;24594:366::-;24736:3;24757:67;24821:2;24816:3;24757:67;:::i;:::-;24750:74;;24833:93;24922:3;24833:93;:::i;:::-;24951:2;24946:3;24942:12;24935:19;;24594:366;;;:::o;24966:419::-;25132:4;25170:2;25159:9;25155:18;25147:26;;25219:9;25213:4;25209:20;25205:1;25194:9;25190:17;25183:47;25247:131;25373:4;25247:131;:::i;:::-;25239:139;;24966:419;;;:::o;25391:188::-;25429:3;25448:18;25464:1;25448:18;:::i;:::-;25443:23;;25480:18;25496:1;25480:18;:::i;:::-;25475:23;;25521:1;25518;25514:9;25507:16;;25544:4;25539:3;25536:13;25533:39;;;25552:18;;:::i;:::-;25533:39;25391:188;;;;:::o;25585:280::-;25623:7;25646:18;25662:1;25646:18;:::i;:::-;25641:23;;25678:18;25694:1;25678:18;:::i;:::-;25673:23;;25802:1;25796:4;25792:12;25789:1;25786:19;25781:1;25774:9;25767:17;25763:43;25760:69;;;25809:18;;:::i;:::-;25760:69;25857:1;25854;25850:9;25839:20;;25585:280;;;;:::o;25871:180::-;25919:77;25916:1;25909:88;26016:4;26013:1;26006:15;26040:4;26037:1;26030:15;26057:180;26105:77;26102:1;26095:88;26202:4;26199:1;26192:15;26226:4;26223:1;26216:15;26243:143;26300:5;26331:6;26325:13;26316:22;;26347:33;26374:5;26347:33;:::i;:::-;26243:143;;;;:::o;26392:351::-;26462:6;26511:2;26499:9;26490:7;26486:23;26482:32;26479:119;;;26517:79;;:::i;:::-;26479:119;26637:1;26662:64;26718:7;26709:6;26698:9;26694:22;26662:64;:::i;:::-;26652:74;;26608:128;26392:351;;;;:::o;26749:85::-;26794:7;26823:5;26812:16;;26749:85;;;:::o;26840:158::-;26898:9;26931:61;26949:42;26958:32;26984:5;26958:32;:::i;:::-;26949:42;:::i;:::-;26931:61;:::i;:::-;26918:74;;26840:158;;;:::o;27004:147::-;27099:45;27138:5;27099:45;:::i;:::-;27094:3;27087:58;27004:147;;:::o;27157:114::-;27224:6;27258:5;27252:12;27242:22;;27157:114;;;:::o;27277:184::-;27376:11;27410:6;27405:3;27398:19;27450:4;27445:3;27441:14;27426:29;;27277:184;;;;:::o;27467:132::-;27534:4;27557:3;27549:11;;27587:4;27582:3;27578:14;27570:22;;27467:132;;;:::o;27605:108::-;27682:24;27700:5;27682:24;:::i;:::-;27677:3;27670:37;27605:108;;:::o;27719:179::-;27788:10;27809:46;27851:3;27843:6;27809:46;:::i;:::-;27887:4;27882:3;27878:14;27864:28;;27719:179;;;;:::o;27904:113::-;27974:4;28006;28001:3;27997:14;27989:22;;27904:113;;;:::o;28053:732::-;28172:3;28201:54;28249:5;28201:54;:::i;:::-;28271:86;28350:6;28345:3;28271:86;:::i;:::-;28264:93;;28381:56;28431:5;28381:56;:::i;:::-;28460:7;28491:1;28476:284;28501:6;28498:1;28495:13;28476:284;;;28577:6;28571:13;28604:63;28663:3;28648:13;28604:63;:::i;:::-;28597:70;;28690:60;28743:6;28690:60;:::i;:::-;28680:70;;28536:224;28523:1;28520;28516:9;28511:14;;28476:284;;;28480:14;28776:3;28769:10;;28177:608;;;28053:732;;;;:::o;28791:831::-;29054:4;29092:3;29081:9;29077:19;29069:27;;29106:71;29174:1;29163:9;29159:17;29150:6;29106:71;:::i;:::-;29187:80;29263:2;29252:9;29248:18;29239:6;29187:80;:::i;:::-;29314:9;29308:4;29304:20;29299:2;29288:9;29284:18;29277:48;29342:108;29445:4;29436:6;29342:108;:::i;:::-;29334:116;;29460:72;29528:2;29517:9;29513:18;29504:6;29460:72;:::i;:::-;29542:73;29610:3;29599:9;29595:19;29586:6;29542:73;:::i;:::-;28791:831;;;;;;;;:::o;29628:807::-;29877:4;29915:3;29904:9;29900:19;29892:27;;29929:71;29997:1;29986:9;29982:17;29973:6;29929:71;:::i;:::-;30010:72;30078:2;30067:9;30063:18;30054:6;30010:72;:::i;:::-;30092:80;30168:2;30157:9;30153:18;30144:6;30092:80;:::i;:::-;30182;30258:2;30247:9;30243:18;30234:6;30182:80;:::i;:::-;30272:73;30340:3;30329:9;30325:19;30316:6;30272:73;:::i;:::-;30355;30423:3;30412:9;30408:19;30399:6;30355:73;:::i;:::-;29628:807;;;;;;;;;:::o;30441:143::-;30498:5;30529:6;30523:13;30514:22;;30545:33;30572:5;30545:33;:::i;:::-;30441:143;;;;:::o;30590:663::-;30678:6;30686;30694;30743:2;30731:9;30722:7;30718:23;30714:32;30711:119;;;30749:79;;:::i;:::-;30711:119;30869:1;30894:64;30950:7;30941:6;30930:9;30926:22;30894:64;:::i;:::-;30884:74;;30840:128;31007:2;31033:64;31089:7;31080:6;31069:9;31065:22;31033:64;:::i;:::-;31023:74;;30978:129;31146:2;31172:64;31228:7;31219:6;31208:9;31204:22;31172:64;:::i;:::-;31162:74;;31117:129;30590:663;;;;;:::o

Swarm Source

ipfs://6902234a0a843e130d4df0f0ff913567f324bd9d370ced6daca8cb70f0f55a26
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.