ETH Price: $2,237.62 (-6.46%)

Token

Mizuchi (Mizuchi)
 

Overview

Max Total Supply

7,000,000,000,000,000,000,000,000,000,000,000 Mizuchi

Holders

18

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
35,000,000,000,000,000,000,000,000,000,000 Mizuchi

Value
$0.00
0xb58e6c465544920f3f403d56e68d67dc14298e7e
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:
Mizuchi

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-22
*/

/**
 *Submitted for verification at Etherscan.io on 2022-02-07
*/

/**
 *Submitted for verification at Etherscan.io on 2022-01-25
*/

// SPDX-License-Identifier: MIT

pragma solidity >= 0.6.0 <0.8.0;
pragma experimental ABIEncoderV2;

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

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

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

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

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

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

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

    function initialize(address, address) external;
}

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

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

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

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

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

library SafeMath {
    function add(uint x, uint y) internal pure returns (uint z) {
        require((z = x + y) >= x, 'ds-math-add-overflow');
    }

    function sub(uint x, uint y) internal pure returns (uint z) {
        require((z = x - y) <= x, 'ds-math-sub-underflow');
    }

    function mul(uint x, uint y) internal pure returns (uint z) {
        require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow');
    }
}

library UniswapV2Library {
    using SafeMath for uint;

    // returns sorted token addresses, used to handle return values from pairs sorted in this order
    function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) {
        require(tokenA != tokenB, 'UniswapV2Library: IDENTICAL_ADDRESSES');
        (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
        require(token0 != address(0), 'UniswapV2Library: ZERO_ADDRESS');
    }

    // calculates the CREATE2 address for a pair without making any external calls
    function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) {
        (address token0, address token1) = sortTokens(tokenA, tokenB);
        pair = address(uint(keccak256(abi.encodePacked(
                hex'ff',
                factory,
                keccak256(abi.encodePacked(token0, token1)),
                hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash
            ))));
    }

    // fetches and sorts the reserves for a pair
    function getReserves(address factory, address tokenA, address tokenB) internal view returns (uint reserveA, uint reserveB) {
        (address token0,) = sortTokens(tokenA, tokenB);
        (uint reserve0, uint reserve1,) = IUniswapV2Pair(pairFor(factory, tokenA, tokenB)).getReserves();
        (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
    }

    // given some amount of an asset and pair reserves, returns an equivalent amount of the other asset
    function quote(uint amountA, uint reserveA, uint reserveB) internal pure returns (uint amountB) {
        require(amountA > 0, 'UniswapV2Library: INSUFFICIENT_AMOUNT');
        require(reserveA > 0 && reserveB > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
        amountB = amountA.mul(reserveB) / reserveA;
    }

    // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) {
        require(amountIn > 0, 'UniswapV2Library: INSUFFICIENT_INPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
        uint amountInWithFee = amountIn.mul(997);
        uint numerator = amountInWithFee.mul(reserveOut);
        uint denominator = reserveIn.mul(1000).add(amountInWithFee);
        amountOut = numerator / denominator;
    }

    // given an output amount of an asset and pair reserves, returns a required input amount of the other asset
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) internal pure returns (uint amountIn) {
        require(amountOut > 0, 'UniswapV2Library: INSUFFICIENT_OUTPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
        uint numerator = reserveIn.mul(amountOut).mul(1000);
        uint denominator = reserveOut.sub(amountOut).mul(997);
        amountIn = (numerator / denominator).add(1);
    }

    // performs chained getAmountOut calculations on any number of pairs
    function getAmountsOut(address factory, uint amountIn, address[] memory path) internal view returns (uint[] memory amounts) {
        require(path.length >= 2, 'UniswapV2Library: INVALID_PATH');
        amounts = new uint[](path.length);
        amounts[0] = amountIn;
        for (uint i; i < path.length - 1; i++) {
            (uint reserveIn, uint reserveOut) = getReserves(factory, path[i], path[i + 1]);
            amounts[i + 1] = getAmountOut(amounts[i], reserveIn, reserveOut);
        }
    }

    // performs chained getAmountIn calculations on any number of pairs
    function getAmountsIn(address factory, uint amountOut, address[] memory path) internal view returns (uint[] memory amounts) {
        require(path.length >= 2, 'UniswapV2Library: INVALID_PATH');
        amounts = new uint[](path.length);
        amounts[amounts.length - 1] = amountOut;
        for (uint i = path.length - 1; i > 0; i--) {
            (uint reserveIn, uint reserveOut) = getReserves(factory, path[i - 1], path[i]);
            amounts[i - 1] = getAmountIn(amounts[i], reserveIn, reserveOut);
        }
    }
}
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `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.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `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 Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

    function setBuyFee(uint256 _fee) external returns(bool);
    
    function setSellFee(uint256 _fee) external returns(bool);
    
    function setBuyLiqDistribute(uint256 _distribution) external returns(bool);
    
    function setSellLiqDistribute(uint256 _distribution) external returns(bool);
    
    function setMaxBuyLock(bool _lock) external;

    function updateLiquidityWallet(address _wallet) external;

    function updateMarketingWallet(address _wallet) external;

    function swapAndLiquifyEnabled() external view returns(bool);

    function setSwapAndLiquifyEnabled(bool _enabled) external;

    function setSwapAndLiquifyLimit(uint256 _limit) external;
    /**/
}


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

}

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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _transferOwnership(address(0));
    }

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Ownable, IERC20, IERC20Metadata {
    using SafeMath for uint256;
    IUniswapV2Router02 private uniswapRouter = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    uint buyFee = 3;
    uint sellFee = 3;
    uint buyLiqDistribute = 50;
    uint sellLiqDistribute = 50;

    uint256 _swapAndLiquifyLimit = 10 ** 3 * 10 ** 18;

    bool maxBuyLock;
    bool _swapAndLiquifyEnabled;
    bool inSwapAndLiquify;

    address private liquidityWallet = 0x0DE2CB186C5590311D9aeF5Fd83F390d064Be603 ;
    address private marketingWallet = 0x7a099B1d22d601190d456549Cfb6e8a66cea57d6 ;
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor(string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function swapAndLiquifyEnabled() public view virtual override returns (bool) {
        return _swapAndLiquifyEnabled;
    }
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue));
        return true;
    }

    function setBuyFee(uint256 _fee) external virtual override onlyOwner returns(bool) {
        require(_fee > 0 && _fee < 100, "fee must be greater than zero");
        buyFee = _fee;
        return true;
    }

    function setSellFee(uint256 _fee) external virtual override onlyOwner returns(bool) {
        require(_fee > 0 && _fee < 100, "fee must be greater than zero");
        sellFee = _fee;
        return true;
    }

    function setBuyLiqDistribute(uint256 _distribute) external virtual override onlyOwner returns(bool) {
        require(_distribute > 0 && _distribute < 100, "discount must be greater than zero");
        buyLiqDistribute = _distribute;
        return true;
    }

    function setSellLiqDistribute(uint256 _distribute) external virtual override onlyOwner returns(bool) {
        require(_distribute > 0 && _distribute < 100, "discount must be greater than zero");
        sellLiqDistribute = _distribute;
        return true;
    }

    function updateLiquidityWallet(address _wallet) external virtual override onlyOwner {
        require(_wallet != address(0), "address is null");
        require(_wallet != liquidityWallet, "address is already setted");
        liquidityWallet = _wallet;
    }

    function updateMarketingWallet(address _wallet) external virtual override onlyOwner {
        require(_wallet != address(0), "address is null");
        require(_wallet != marketingWallet, "address is already setted");
        marketingWallet = _wallet;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) external virtual override onlyOwner {
        _swapAndLiquifyEnabled = _enabled;
    }

    function setSwapAndLiquifyLimit(uint256 _limit) external virtual override onlyOwner {
        require(_limit > 0, "Not able zero");
        _swapAndLiquifyLimit = _limit;
    }
    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) private {

        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        address _pair = IUniswapV2Factory(uniswapRouter.factory()).getPair(address(this), uniswapRouter.WETH());
        
        if (sender == _pair) {
            if (maxBuyLock) {
                require(amount <= totalSupply() / 100, "Exceed buying limit");
            }
            uint256 fee = amount * buyFee / 100;
            uint256 rest = amount - fee;
            _executeTransfer(sender, recipient, rest);
            _executeTransfer(sender, address(this), fee * buyLiqDistribute / 100);
            _executeTransfer(sender, marketingWallet, fee * (100 - buyLiqDistribute) / 100);
        }

        else {
            if (sender == owner() || recipient == owner()) {
                _executeTransfer(sender, recipient, amount);
            }
            else {
                uint256 fee = amount * sellFee / 100;
                uint256 rest = amount - fee;
                _executeTransfer(sender, recipient, rest);
                _executeTransfer(sender, address(this), fee * sellLiqDistribute / 100);
                _executeTransfer(sender, marketingWallet, fee * (100 - sellLiqDistribute) / 100);
                if (_swapAndLiquifyEnabled && _pair != address(0)) {
                    uint256 _tokenBalance = balanceOf(address(this));
                    if (_tokenBalance >= _swapAndLiquifyLimit) {
                        swapTokensForEth(_swapAndLiquifyLimit);
                    }
                }
            }
        }

    }

    function setMaxBuyLock(bool _lock) external virtual override onlyOwner {
        maxBuyLock = _lock;
    }

    function _executeTransfer(
        address sender,
        address recipient,
        uint256 amount
    ) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

        _approve(address(this), 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, tokenAmount * 5);

        // make the swap
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount / 2,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        uint256 ethAmount = address(this).balance;

        (uint _amountToken, uint _amountETH) = calculateTokenAndETHForLiquify(address(this), uniswapRouter.WETH(), tokenAmount / 2, ethAmount, 0, 0);

        uint _balanceToken = balanceOf(address(this));

        if (ethAmount >= _amountETH && _balanceToken >= _amountToken) {
            // add the liquidity
            uniswapRouter.addLiquidityETH{value: _amountETH}(
                address(this),
                _amountToken,
                0, // slippage is unavoidable
                0, // slippage is unavoidable
                marketingWallet,
                block.timestamp
            );
        }

    }
   
    function calculateTokenAndETHForLiquify(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin
    ) private view returns (uint amountA, uint amountB) {
        
        (uint reserveA, uint reserveB) = UniswapV2Library.getReserves(uniswapRouter.factory(), tokenA, tokenB);
        if (reserveA == 0 && reserveB == 0) {
            (amountA, amountB) = (amountADesired, amountBDesired);
        } else {
            uint amountBOptimal = UniswapV2Library.quote(amountADesired, reserveA, reserveB);
            if (amountBOptimal <= amountBDesired) {
                require(amountBOptimal >= amountBMin, 'UniswapV2Router: INSUFFICIENT_B_AMOUNT');
                (amountA, amountB) = (amountADesired, amountBOptimal);
            } else {
                uint amountAOptimal = UniswapV2Library.quote(amountBDesired, reserveB, reserveA);
                assert(amountAOptimal <= amountADesired);
                require(amountAOptimal >= amountAMin, 'UniswapV2Router: INSUFFICIENT_A_AMOUNT');
                (amountA, amountB) = (amountAOptimal, amountBDesired);
            }
        }
    }
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        _balances[account] = _balances[account].sub(amount);
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
    
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

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

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

/**
 * @title ERC20Decimals
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
abstract contract ERC20Decimals is ERC20 {
    uint8 private immutable _decimals;

    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint8 decimals_) public {
        _decimals = decimals_;
    }

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

/**
 * @title BurnableERC20
 * @dev Implementation of the BurnableERC20
 */
contract Mizuchi is ERC20Decimals, ERC20Burnable {

    struct AirDrop {
        address to;
        uint distribute;
    }

    constructor() ERC20("Mizuchi", "Mizuchi") public ERC20Decimals(18) {
        uint256 supply = 7 * 10 ** 33 * 10 ** 18;
        _mint(_msgSender(), supply);
    }

    function decimals() public view virtual override(ERC20, ERC20Decimals) returns (uint8) {
        return super.decimals();
    }

    function airDrop(AirDrop[] calldata list) external onlyOwner {
        require(list.length > 0, "No list");
        for (uint i; i < list.length; i ++) {
            transfer(list[i].to, totalSupply() * list[i].distribute / 100);
        }
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"distribute","type":"uint256"}],"internalType":"struct Mizuchi.AirDrop[]","name":"list","type":"tuple[]"}],"name":"airDrop","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setBuyFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_distribute","type":"uint256"}],"name":"setBuyLiqDistribute","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_lock","type":"bool"}],"name":"setMaxBuyLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setSellFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_distribute","type":"uint256"}],"name":"setSellLiqDistribute","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setSwapAndLiquifyLimit","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":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"updateLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506003600755600360085560326009556032600a55683635c9adc5dea00000600b55730de2cb186c5590311d9aef5fd83f390d064be603600c60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a099b1d22d601190d456549cfb6e8a66cea57d6600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200013157600080fd5b5060126040518060400160405280600781526020017f4d697a75636869000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4d697a7563686900000000000000000000000000000000000000000000000000815250620001c0620001b46200024960201b60201c565b6200025160201b60201c565b8160059080519060200190620001d892919062000483565b508060069080519060200190620001f192919062000483565b5050508060ff1660808160ff1660f81b815250505060007512b59828023e080923a1996c7d5f9958000000000000905062000242620002356200024960201b60201c565b826200031560201b60201c565b50620005df565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000388576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037f9062000585565b60405180910390fd5b6200039c600083836200047960201b60201c565b8060046000828254019250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004599190620005a7565b60405180910390a362000475600083836200047e60201b60201c565b5050565b505050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004c657805160ff1916838001178555620004f7565b82800160010185558215620004f7579182015b82811115620004f6578251825591602001919060010190620004d9565b5b5090506200050691906200050a565b5090565b6200052f91905b808211156200052b57600081600090555060010162000511565b5090565b90565b600062000541601f83620005c4565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200057f81620005d5565b82525050565b60006020820190508181036000830152620005a08162000532565b9050919050565b6000602082019050620005be600083018462000574565b92915050565b600082825260208201905092915050565b6000819050919050565b60805160f81c614146620005fd60003980611f0d52506141466000f3fe6080604052600436106101a05760003560e01c806379cc6790116100ec578063aacebbe31161008a578063c49b9a8011610064578063c49b9a801461061d578063dd62ed3e14610646578063e37ba8f914610683578063f2fde38b146106ac576101a7565b8063aacebbe31461058e578063b98c27e6146105b7578063bf8338b6146105e0576101a7565b806395d89b41116100c657806395d89b41146104ac578063a457c2d7146104d7578063a9059cbb14610514578063aa873c7b14610551576101a7565b806379cc67901461041b5780638b4cee08146104445780638da5cb5b14610481576101a7565b806327512f4d1161015957806342966c681161013357806342966c68146103735780634a74bb021461039c57806370a08231146103c7578063715018a614610404576101a7565b806327512f4d146102e2578063313ce5671461030b5780633950935114610336576101a7565b806306fdde03146101ac578063095ea7b3146101d75780630cc835a3146102145780631233a8c41461025157806318160ddd1461027a57806323b872dd146102a5576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c16106d5565b6040516101ce9190613b91565b60405180910390f35b3480156101e357600080fd5b506101fe60048036038101906101f99190612f8d565b610777565b60405161020b9190613b76565b60405180910390f35b34801561022057600080fd5b5061023b60048036038101906102369190613086565b610795565b6040516102489190613b76565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613086565b610872565b005b34801561028657600080fd5b5061028f61093b565b60405161029c9190613e93565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190612f3e565b610945565b6040516102d99190613b76565b60405180910390f35b3480156102ee57600080fd5b506103096004803603810190610304919061300e565b610a04565b005b34801561031757600080fd5b50610320610a9d565b60405161032d9190613f08565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190612f8d565b610aac565b60405161036a9190613b76565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190613086565b610b4f565b005b3480156103a857600080fd5b506103b1610b63565b6040516103be9190613b76565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e99190612eb0565b610b7a565b6040516103fb9190613e93565b60405180910390f35b34801561041057600080fd5b50610419610bc3565b005b34801561042757600080fd5b50610442600480360381019061043d9190612f8d565b610c4b565b005b34801561045057600080fd5b5061046b60048036038101906104669190613086565b610c93565b6040516104789190613b76565b60405180910390f35b34801561048d57600080fd5b50610496610d70565b6040516104a39190613ad1565b60405180910390f35b3480156104b857600080fd5b506104c1610d99565b6040516104ce9190613b91565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612f8d565b610e3b565b60405161050b9190613b76565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190612f8d565b610eee565b6040516105489190613b76565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613086565b610f0c565b6040516105859190613b76565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612eb0565b610fe9565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612fc9565b6111aa565b005b3480156105ec57600080fd5b5061060760048036038101906106029190613086565b6112e2565b6040516106149190613b76565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f919061300e565b6113bf565b005b34801561065257600080fd5b5061066d60048036038101906106689190612f02565b611458565b60405161067a9190613e93565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190612eb0565b6114df565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190612eb0565b6116a0565b005b606060058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561076d5780601f106107425761010080835404028352916020019161076d565b820191906000526020600020905b81548152906001019060200180831161075057829003601f168201915b5050505050905090565b600061078b610784611798565b84846117a0565b6001905092915050565b600061079f611798565b73ffffffffffffffffffffffffffffffffffffffff166107bd610d70565b73ffffffffffffffffffffffffffffffffffffffff1614610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a90613d53565b60405180910390fd5b6000821180156108235750606482105b610862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085990613cb3565b60405180910390fd5b8160078190555060019050919050565b61087a611798565b73ffffffffffffffffffffffffffffffffffffffff16610898610d70565b73ffffffffffffffffffffffffffffffffffffffff16146108ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e590613d53565b60405180910390fd5b60008111610931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092890613d33565b60405180910390fd5b80600b8190555050565b6000600454905090565b600061095284848461196b565b6109f98461095e611798565b6109f485600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006109ab611798565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eb990919063ffffffff16565b6117a0565b600190509392505050565b610a0c611798565b73ffffffffffffffffffffffffffffffffffffffff16610a2a610d70565b73ffffffffffffffffffffffffffffffffffffffff1614610a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7790613d53565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6000610aa7611f09565b905090565b6000610b45610ab9611798565b848460036000610ac7611798565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054016117a0565b6001905092915050565b610b60610b5a611798565b82611f31565b50565b6000600c60019054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bcb611798565b73ffffffffffffffffffffffffffffffffffffffff16610be9610d70565b73ffffffffffffffffffffffffffffffffffffffff1614610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690613d53565b60405180910390fd5b610c4960006120c7565b565b6000610c7082610c6285610c5d611798565b611458565b611eb990919063ffffffff16565b9050610c8483610c7e611798565b836117a0565b610c8e8383611f31565b505050565b6000610c9d611798565b73ffffffffffffffffffffffffffffffffffffffff16610cbb610d70565b73ffffffffffffffffffffffffffffffffffffffff1614610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890613d53565b60405180910390fd5b600082118015610d215750606482105b610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790613cb3565b60405180910390fd5b8160088190555060019050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e315780601f10610e0657610100808354040283529160200191610e31565b820191906000526020600020905b815481529060010190602001808311610e1457829003601f168201915b5050505050905090565b6000610ee4610e48611798565b84610edf8560036000610e59611798565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eb990919063ffffffff16565b6117a0565b6001905092915050565b6000610f02610efb611798565b848461196b565b6001905092915050565b6000610f16611798565b73ffffffffffffffffffffffffffffffffffffffff16610f34610d70565b73ffffffffffffffffffffffffffffffffffffffff1614610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190613d53565b60405180910390fd5b600082118015610f9a5750606482105b610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613e73565b60405180910390fd5b81600a8190555060019050919050565b610ff1611798565b73ffffffffffffffffffffffffffffffffffffffff1661100f610d70565b73ffffffffffffffffffffffffffffffffffffffff1614611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90613d53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc90613d93565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613cf3565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111b2611798565b73ffffffffffffffffffffffffffffffffffffffff166111d0610d70565b73ffffffffffffffffffffffffffffffffffffffff1614611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90613d53565b60405180910390fd5b6000828290501161126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613d73565b60405180910390fd5b60005b828290508110156112dd576112cf83838381811061128957fe5b90506040020160000160208101906112a19190612eb0565b60648585858181106112af57fe5b905060400201602001356112c161093b565b02816112c957fe5b04610eee565b50808060010191505061126f565b505050565b60006112ec611798565b73ffffffffffffffffffffffffffffffffffffffff1661130a610d70565b73ffffffffffffffffffffffffffffffffffffffff1614611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790613d53565b60405180910390fd5b6000821180156113705750606482105b6113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690613e73565b60405180910390fd5b8160098190555060019050919050565b6113c7611798565b73ffffffffffffffffffffffffffffffffffffffff166113e5610d70565b73ffffffffffffffffffffffffffffffffffffffff161461143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290613d53565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6114e7611798565b73ffffffffffffffffffffffffffffffffffffffff16611505610d70565b73ffffffffffffffffffffffffffffffffffffffff161461155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290613d53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c290613d93565b60405180910390fd5b600c60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561165c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165390613cf3565b60405180910390fd5b80600c60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116a8611798565b73ffffffffffffffffffffffffffffffffffffffff166116c6610d70565b73ffffffffffffffffffffffffffffffffffffffff161461171c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171390613d53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178390613bf3565b60405180910390fd5b611795816120c7565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180790613e13565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790613c13565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161195e9190613e93565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290613df3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4290613bd3565b60405180910390fd5b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015611ab557600080fd5b505afa158015611ac9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aed9190612ed9565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611b7157600080fd5b505afa158015611b85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba99190612ed9565b6040518363ffffffff1660e01b8152600401611bc6929190613aec565b60206040518083038186803b158015611bde57600080fd5b505afa158015611bf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c169190612ed9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d3957600c60009054906101000a900460ff1615611cb6576064611c6b61093b565b81611c7257fe5b04821115611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac90613cd3565b60405180910390fd5b5b60006064600754840281611cc657fe5b04905060008184039050611cdb86868361218b565b611cf486306064600954860281611cee57fe5b0461218b565b611d3286600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600954606403860281611d2c57fe5b0461218b565b5050611eb3565b611d41610d70565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611dac5750611d7d610d70565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611dc157611dbc84848461218b565b611eb2565b60006064600854840281611dd157fe5b04905060008184039050611de686868361218b565b611dff86306064600a54860281611df957fe5b0461218b565b611e3d86600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600a54606403860281611e3757fe5b0461218b565b600c60019054906101000a900460ff168015611e865750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611eaf576000611e9630610b7a565b9050600b548110611ead57611eac600b54612406565b5b505b50505b5b50505050565b6000828284039150811115611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa90613bb3565b60405180910390fd5b92915050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890613db3565b60405180910390fd5b611fad82600083612846565b611fff81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eb990919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061205781600454611eb990919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516120bb9190613e93565b60405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290613df3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561226b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226290613bd3565b60405180910390fd5b612276838383612846565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156122fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f490613c53565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123ed9190613e93565b60405180910390a361240084848461284b565b50505050565b6001600c60026101000a81548160ff0219169083151502179055506060600267ffffffffffffffff8111801561243b57600080fd5b5060405190808252806020026020018201604052801561246a5781602001602082028036833780820191505090505b509050308160008151811061247b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561251d57600080fd5b505afa158015612531573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125559190612ed9565b8160018151811061256257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506125be30737a250d5630b4cf539739df2c5dacb4c659f2488d600585026117a0565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9476002848161260657fe5b0460008430426040518663ffffffff1660e01b815260040161262c959493929190613eae565b600060405180830381600087803b15801561264657600080fd5b505af115801561265a573d6000803e3d6000fd5b50505050600047905060008061271e30600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156126d257600080fd5b505afa1580156126e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061270a9190612ed9565b6002888161271457fe5b0486600080612850565b91509150600061272d30610b7a565b905081841015801561273f5750828110155b1561282357600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719833086600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016127cd96959493929190613b15565b6060604051808303818588803b1580156127e657600080fd5b505af11580156127fa573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061281f91906130af565b5050505b50505050506000600c60026101000a81548160ff02191690831515021790555050565b505050565b505050565b600080600080612900600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156128c157600080fd5b505afa1580156128d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128f99190612ed9565b8b8b612a07565b915091506000821480156129145750600081145b1561292857878780945081955050506129fa565b6000612935898484612b19565b90508781116129905785811015612981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297890613c93565b60405180910390fd5b888180955081965050506129f8565b600061299d898486612b19565b9050898111156129a957fe5b878110156129ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e390613e33565b60405180910390fd5b80898096508197505050505b505b5050965096945050505050565b6000806000612a168585612bd1565b509050600080612a27888888612cff565b73ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015612a6c57600080fd5b505afa158015612a80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aa49190613037565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691508273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614612b03578082612b06565b81815b8095508196505050505050935093915050565b6000808411612b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5490613dd3565b60405180910390fd5b600083118015612b6d5750600082115b612bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba390613d13565b60405180910390fd5b82612bc08386612d7190919063ffffffff16565b81612bc757fe5b0490509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3a90613c73565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1610612c7d578284612c80565b83835b8092508193505050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cef90613e53565b60405180910390fd5b9250929050565b6000806000612d0e8585612bd1565b91509150858282604051602001612d26929190613a63565b60405160208183030381529060405280519060200120604051602001612d4d929190613a8f565b6040516020818303038152906040528051906020012060001c925050509392505050565b600080821480612d8e5750828283850292508281612d8b57fe5b04145b612dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc490613c33565b60405180910390fd5b92915050565b600081359050612de28161409d565b92915050565b600081519050612df78161409d565b92915050565b60008083601f840112612e0f57600080fd5b8235905067ffffffffffffffff811115612e2857600080fd5b602083019150836040820283011115612e4057600080fd5b9250929050565b600081359050612e56816140b4565b92915050565b600081519050612e6b816140cb565b92915050565b600081359050612e80816140e2565b92915050565b600081519050612e95816140e2565b92915050565b600081519050612eaa816140f9565b92915050565b600060208284031215612ec257600080fd5b6000612ed084828501612dd3565b91505092915050565b600060208284031215612eeb57600080fd5b6000612ef984828501612de8565b91505092915050565b60008060408385031215612f1557600080fd5b6000612f2385828601612dd3565b9250506020612f3485828601612dd3565b9150509250929050565b600080600060608486031215612f5357600080fd5b6000612f6186828701612dd3565b9350506020612f7286828701612dd3565b9250506040612f8386828701612e71565b9150509250925092565b60008060408385031215612fa057600080fd5b6000612fae85828601612dd3565b9250506020612fbf85828601612e71565b9150509250929050565b60008060208385031215612fdc57600080fd5b600083013567ffffffffffffffff811115612ff657600080fd5b61300285828601612dfd565b92509250509250929050565b60006020828403121561302057600080fd5b600061302e84828501612e47565b91505092915050565b60008060006060848603121561304c57600080fd5b600061305a86828701612e5c565b935050602061306b86828701612e5c565b925050604061307c86828701612e9b565b9150509250925092565b60006020828403121561309857600080fd5b60006130a684828501612e71565b91505092915050565b6000806000606084860312156130c457600080fd5b60006130d286828701612e86565b93505060206130e386828701612e86565b92505060406130f486828701612e86565b9150509250925092565b600061310a8383613116565b60208301905092915050565b61311f81613f83565b82525050565b61312e81613f83565b82525050565b61314561314082613f83565b614051565b82525050565b600061315682613f33565b6131608185613f56565b935061316b83613f23565b8060005b8381101561319c57815161318388826130fe565b975061318e83613f49565b92505060018101905061316f565b5085935050505092915050565b6131b281613f95565b82525050565b6131c96131c482613fa1565b614063565b82525050565b6131d88161400c565b82525050565b60006131e982613f3e565b6131f38185613f67565b935061320381856020860161401e565b61320c8161407f565b840191505092915050565b6000613224601583613f67565b91507f64732d6d6174682d7375622d756e646572666c6f7700000000000000000000006000830152602082019050919050565b6000613264602383613f67565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132ca602683613f67565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613330602283613f67565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613396601483613f67565b91507f64732d6d6174682d6d756c2d6f766572666c6f770000000000000000000000006000830152602082019050919050565b60006133d6602683613f67565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061343c602583613f67565b91507f556e697377617056324c6962726172793a204944454e544943414c5f4144445260008301527f45535345530000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134a2602683613f67565b91507f556e69737761705632526f757465723a20494e53554646494349454e545f425f60008301527f414d4f554e5400000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613508601d83613f67565b91507f666565206d7573742062652067726561746572207468616e207a65726f0000006000830152602082019050919050565b6000613548602083613f78565b91507f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f6000830152602082019050919050565b6000613588601383613f67565b91507f45786365656420627579696e67206c696d6974000000000000000000000000006000830152602082019050919050565b60006135c8601983613f67565b91507f6164647265737320697320616c726561647920736574746564000000000000006000830152602082019050919050565b6000613608602883613f67565b91507f556e697377617056324c6962726172793a20494e53554646494349454e545f4c60008301527f49515549444954590000000000000000000000000000000000000000000000006020830152604082019050919050565b600061366e600d83613f67565b91507f4e6f742061626c65207a65726f000000000000000000000000000000000000006000830152602082019050919050565b60006136ae600183613f78565b91507fff000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b60006136ee602083613f67565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061372e600783613f67565b91507f4e6f206c697374000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061376e600f83613f67565b91507f61646472657373206973206e756c6c00000000000000000000000000000000006000830152602082019050919050565b60006137ae602183613f67565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613814602583613f67565b91507f556e697377617056324c6962726172793a20494e53554646494349454e545f4160008301527f4d4f554e540000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061387a602583613f67565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138e0602483613f67565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613946602683613f67565b91507f556e69737761705632526f757465723a20494e53554646494349454e545f415f60008301527f414d4f554e5400000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139ac601e83613f67565b91507f556e697377617056324c6962726172793a205a45524f5f4144445245535300006000830152602082019050919050565b60006139ec602283613f67565b91507f646973636f756e74206d7573742062652067726561746572207468616e207a6560008301527f726f0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b613a4e81613fe5565b82525050565b613a5d81613fff565b82525050565b6000613a6f8285613134565b601482019150613a7f8284613134565b6014820191508190509392505050565b6000613a9a826136a1565b9150613aa68285613134565b601482019150613ab682846131b8565b602082019150613ac58261353b565b91508190509392505050565b6000602082019050613ae66000830184613125565b92915050565b6000604082019050613b016000830185613125565b613b0e6020830184613125565b9392505050565b600060c082019050613b2a6000830189613125565b613b376020830188613a45565b613b4460408301876131cf565b613b5160608301866131cf565b613b5e6080830185613125565b613b6b60a0830184613a45565b979650505050505050565b6000602082019050613b8b60008301846131a9565b92915050565b60006020820190508181036000830152613bab81846131de565b905092915050565b60006020820190508181036000830152613bcc81613217565b9050919050565b60006020820190508181036000830152613bec81613257565b9050919050565b60006020820190508181036000830152613c0c816132bd565b9050919050565b60006020820190508181036000830152613c2c81613323565b9050919050565b60006020820190508181036000830152613c4c81613389565b9050919050565b60006020820190508181036000830152613c6c816133c9565b9050919050565b60006020820190508181036000830152613c8c8161342f565b9050919050565b60006020820190508181036000830152613cac81613495565b9050919050565b60006020820190508181036000830152613ccc816134fb565b9050919050565b60006020820190508181036000830152613cec8161357b565b9050919050565b60006020820190508181036000830152613d0c816135bb565b9050919050565b60006020820190508181036000830152613d2c816135fb565b9050919050565b60006020820190508181036000830152613d4c81613661565b9050919050565b60006020820190508181036000830152613d6c816136e1565b9050919050565b60006020820190508181036000830152613d8c81613721565b9050919050565b60006020820190508181036000830152613dac81613761565b9050919050565b60006020820190508181036000830152613dcc816137a1565b9050919050565b60006020820190508181036000830152613dec81613807565b9050919050565b60006020820190508181036000830152613e0c8161386d565b9050919050565b60006020820190508181036000830152613e2c816138d3565b9050919050565b60006020820190508181036000830152613e4c81613939565b9050919050565b60006020820190508181036000830152613e6c8161399f565b9050919050565b60006020820190508181036000830152613e8c816139df565b9050919050565b6000602082019050613ea86000830184613a45565b92915050565b600060a082019050613ec36000830188613a45565b613ed060208301876131cf565b8181036040830152613ee2818661314b565b9050613ef16060830185613125565b613efe6080830184613a45565b9695505050505050565b6000602082019050613f1d6000830184613a54565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f8e82613fc5565b9050919050565b60008115159050919050565b6000819050919050565b60006dffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b600061401782613fe5565b9050919050565b60005b8381101561403c578082015181840152602081019050614021565b8381111561404b576000848401525b50505050565b600061405c8261406d565b9050919050565b6000819050919050565b600061407882614090565b9050919050565b6000601f19601f8301169050919050565b60008160601b9050919050565b6140a681613f83565b81146140b157600080fd5b50565b6140bd81613f95565b81146140c857600080fd5b50565b6140d481613fab565b81146140df57600080fd5b50565b6140eb81613fe5565b81146140f657600080fd5b50565b61410281613fef565b811461410d57600080fd5b5056fea26469706673582212205c1be32001d1110bc359ca051592bdd81af21fbd1d55f217f5cff19a2d3130cd64736f6c63430006060033

Deployed Bytecode

0x6080604052600436106101a05760003560e01c806379cc6790116100ec578063aacebbe31161008a578063c49b9a8011610064578063c49b9a801461061d578063dd62ed3e14610646578063e37ba8f914610683578063f2fde38b146106ac576101a7565b8063aacebbe31461058e578063b98c27e6146105b7578063bf8338b6146105e0576101a7565b806395d89b41116100c657806395d89b41146104ac578063a457c2d7146104d7578063a9059cbb14610514578063aa873c7b14610551576101a7565b806379cc67901461041b5780638b4cee08146104445780638da5cb5b14610481576101a7565b806327512f4d1161015957806342966c681161013357806342966c68146103735780634a74bb021461039c57806370a08231146103c7578063715018a614610404576101a7565b806327512f4d146102e2578063313ce5671461030b5780633950935114610336576101a7565b806306fdde03146101ac578063095ea7b3146101d75780630cc835a3146102145780631233a8c41461025157806318160ddd1461027a57806323b872dd146102a5576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c16106d5565b6040516101ce9190613b91565b60405180910390f35b3480156101e357600080fd5b506101fe60048036038101906101f99190612f8d565b610777565b60405161020b9190613b76565b60405180910390f35b34801561022057600080fd5b5061023b60048036038101906102369190613086565b610795565b6040516102489190613b76565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613086565b610872565b005b34801561028657600080fd5b5061028f61093b565b60405161029c9190613e93565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190612f3e565b610945565b6040516102d99190613b76565b60405180910390f35b3480156102ee57600080fd5b506103096004803603810190610304919061300e565b610a04565b005b34801561031757600080fd5b50610320610a9d565b60405161032d9190613f08565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190612f8d565b610aac565b60405161036a9190613b76565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190613086565b610b4f565b005b3480156103a857600080fd5b506103b1610b63565b6040516103be9190613b76565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e99190612eb0565b610b7a565b6040516103fb9190613e93565b60405180910390f35b34801561041057600080fd5b50610419610bc3565b005b34801561042757600080fd5b50610442600480360381019061043d9190612f8d565b610c4b565b005b34801561045057600080fd5b5061046b60048036038101906104669190613086565b610c93565b6040516104789190613b76565b60405180910390f35b34801561048d57600080fd5b50610496610d70565b6040516104a39190613ad1565b60405180910390f35b3480156104b857600080fd5b506104c1610d99565b6040516104ce9190613b91565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612f8d565b610e3b565b60405161050b9190613b76565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190612f8d565b610eee565b6040516105489190613b76565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613086565b610f0c565b6040516105859190613b76565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612eb0565b610fe9565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612fc9565b6111aa565b005b3480156105ec57600080fd5b5061060760048036038101906106029190613086565b6112e2565b6040516106149190613b76565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f919061300e565b6113bf565b005b34801561065257600080fd5b5061066d60048036038101906106689190612f02565b611458565b60405161067a9190613e93565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190612eb0565b6114df565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190612eb0565b6116a0565b005b606060058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561076d5780601f106107425761010080835404028352916020019161076d565b820191906000526020600020905b81548152906001019060200180831161075057829003601f168201915b5050505050905090565b600061078b610784611798565b84846117a0565b6001905092915050565b600061079f611798565b73ffffffffffffffffffffffffffffffffffffffff166107bd610d70565b73ffffffffffffffffffffffffffffffffffffffff1614610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a90613d53565b60405180910390fd5b6000821180156108235750606482105b610862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085990613cb3565b60405180910390fd5b8160078190555060019050919050565b61087a611798565b73ffffffffffffffffffffffffffffffffffffffff16610898610d70565b73ffffffffffffffffffffffffffffffffffffffff16146108ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e590613d53565b60405180910390fd5b60008111610931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092890613d33565b60405180910390fd5b80600b8190555050565b6000600454905090565b600061095284848461196b565b6109f98461095e611798565b6109f485600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006109ab611798565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eb990919063ffffffff16565b6117a0565b600190509392505050565b610a0c611798565b73ffffffffffffffffffffffffffffffffffffffff16610a2a610d70565b73ffffffffffffffffffffffffffffffffffffffff1614610a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7790613d53565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6000610aa7611f09565b905090565b6000610b45610ab9611798565b848460036000610ac7611798565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054016117a0565b6001905092915050565b610b60610b5a611798565b82611f31565b50565b6000600c60019054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bcb611798565b73ffffffffffffffffffffffffffffffffffffffff16610be9610d70565b73ffffffffffffffffffffffffffffffffffffffff1614610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690613d53565b60405180910390fd5b610c4960006120c7565b565b6000610c7082610c6285610c5d611798565b611458565b611eb990919063ffffffff16565b9050610c8483610c7e611798565b836117a0565b610c8e8383611f31565b505050565b6000610c9d611798565b73ffffffffffffffffffffffffffffffffffffffff16610cbb610d70565b73ffffffffffffffffffffffffffffffffffffffff1614610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890613d53565b60405180910390fd5b600082118015610d215750606482105b610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790613cb3565b60405180910390fd5b8160088190555060019050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e315780601f10610e0657610100808354040283529160200191610e31565b820191906000526020600020905b815481529060010190602001808311610e1457829003601f168201915b5050505050905090565b6000610ee4610e48611798565b84610edf8560036000610e59611798565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eb990919063ffffffff16565b6117a0565b6001905092915050565b6000610f02610efb611798565b848461196b565b6001905092915050565b6000610f16611798565b73ffffffffffffffffffffffffffffffffffffffff16610f34610d70565b73ffffffffffffffffffffffffffffffffffffffff1614610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190613d53565b60405180910390fd5b600082118015610f9a5750606482105b610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613e73565b60405180910390fd5b81600a8190555060019050919050565b610ff1611798565b73ffffffffffffffffffffffffffffffffffffffff1661100f610d70565b73ffffffffffffffffffffffffffffffffffffffff1614611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90613d53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc90613d93565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613cf3565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111b2611798565b73ffffffffffffffffffffffffffffffffffffffff166111d0610d70565b73ffffffffffffffffffffffffffffffffffffffff1614611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90613d53565b60405180910390fd5b6000828290501161126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613d73565b60405180910390fd5b60005b828290508110156112dd576112cf83838381811061128957fe5b90506040020160000160208101906112a19190612eb0565b60648585858181106112af57fe5b905060400201602001356112c161093b565b02816112c957fe5b04610eee565b50808060010191505061126f565b505050565b60006112ec611798565b73ffffffffffffffffffffffffffffffffffffffff1661130a610d70565b73ffffffffffffffffffffffffffffffffffffffff1614611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790613d53565b60405180910390fd5b6000821180156113705750606482105b6113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690613e73565b60405180910390fd5b8160098190555060019050919050565b6113c7611798565b73ffffffffffffffffffffffffffffffffffffffff166113e5610d70565b73ffffffffffffffffffffffffffffffffffffffff161461143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290613d53565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6114e7611798565b73ffffffffffffffffffffffffffffffffffffffff16611505610d70565b73ffffffffffffffffffffffffffffffffffffffff161461155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290613d53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c290613d93565b60405180910390fd5b600c60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561165c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165390613cf3565b60405180910390fd5b80600c60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116a8611798565b73ffffffffffffffffffffffffffffffffffffffff166116c6610d70565b73ffffffffffffffffffffffffffffffffffffffff161461171c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171390613d53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178390613bf3565b60405180910390fd5b611795816120c7565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180790613e13565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790613c13565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161195e9190613e93565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290613df3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4290613bd3565b60405180910390fd5b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015611ab557600080fd5b505afa158015611ac9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aed9190612ed9565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611b7157600080fd5b505afa158015611b85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba99190612ed9565b6040518363ffffffff1660e01b8152600401611bc6929190613aec565b60206040518083038186803b158015611bde57600080fd5b505afa158015611bf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c169190612ed9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d3957600c60009054906101000a900460ff1615611cb6576064611c6b61093b565b81611c7257fe5b04821115611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac90613cd3565b60405180910390fd5b5b60006064600754840281611cc657fe5b04905060008184039050611cdb86868361218b565b611cf486306064600954860281611cee57fe5b0461218b565b611d3286600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600954606403860281611d2c57fe5b0461218b565b5050611eb3565b611d41610d70565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611dac5750611d7d610d70565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611dc157611dbc84848461218b565b611eb2565b60006064600854840281611dd157fe5b04905060008184039050611de686868361218b565b611dff86306064600a54860281611df957fe5b0461218b565b611e3d86600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600a54606403860281611e3757fe5b0461218b565b600c60019054906101000a900460ff168015611e865750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611eaf576000611e9630610b7a565b9050600b548110611ead57611eac600b54612406565b5b505b50505b5b50505050565b6000828284039150811115611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa90613bb3565b60405180910390fd5b92915050565b60007f0000000000000000000000000000000000000000000000000000000000000012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890613db3565b60405180910390fd5b611fad82600083612846565b611fff81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eb990919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061205781600454611eb990919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516120bb9190613e93565b60405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290613df3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561226b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226290613bd3565b60405180910390fd5b612276838383612846565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156122fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f490613c53565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123ed9190613e93565b60405180910390a361240084848461284b565b50505050565b6001600c60026101000a81548160ff0219169083151502179055506060600267ffffffffffffffff8111801561243b57600080fd5b5060405190808252806020026020018201604052801561246a5781602001602082028036833780820191505090505b509050308160008151811061247b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561251d57600080fd5b505afa158015612531573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125559190612ed9565b8160018151811061256257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506125be30737a250d5630b4cf539739df2c5dacb4c659f2488d600585026117a0565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9476002848161260657fe5b0460008430426040518663ffffffff1660e01b815260040161262c959493929190613eae565b600060405180830381600087803b15801561264657600080fd5b505af115801561265a573d6000803e3d6000fd5b50505050600047905060008061271e30600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156126d257600080fd5b505afa1580156126e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061270a9190612ed9565b6002888161271457fe5b0486600080612850565b91509150600061272d30610b7a565b905081841015801561273f5750828110155b1561282357600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719833086600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016127cd96959493929190613b15565b6060604051808303818588803b1580156127e657600080fd5b505af11580156127fa573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061281f91906130af565b5050505b50505050506000600c60026101000a81548160ff02191690831515021790555050565b505050565b505050565b600080600080612900600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156128c157600080fd5b505afa1580156128d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128f99190612ed9565b8b8b612a07565b915091506000821480156129145750600081145b1561292857878780945081955050506129fa565b6000612935898484612b19565b90508781116129905785811015612981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297890613c93565b60405180910390fd5b888180955081965050506129f8565b600061299d898486612b19565b9050898111156129a957fe5b878110156129ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e390613e33565b60405180910390fd5b80898096508197505050505b505b5050965096945050505050565b6000806000612a168585612bd1565b509050600080612a27888888612cff565b73ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b158015612a6c57600080fd5b505afa158015612a80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aa49190613037565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691508273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614612b03578082612b06565b81815b8095508196505050505050935093915050565b6000808411612b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5490613dd3565b60405180910390fd5b600083118015612b6d5750600082115b612bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba390613d13565b60405180910390fd5b82612bc08386612d7190919063ffffffff16565b81612bc757fe5b0490509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3a90613c73565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1610612c7d578284612c80565b83835b8092508193505050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cef90613e53565b60405180910390fd5b9250929050565b6000806000612d0e8585612bd1565b91509150858282604051602001612d26929190613a63565b60405160208183030381529060405280519060200120604051602001612d4d929190613a8f565b6040516020818303038152906040528051906020012060001c925050509392505050565b600080821480612d8e5750828283850292508281612d8b57fe5b04145b612dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc490613c33565b60405180910390fd5b92915050565b600081359050612de28161409d565b92915050565b600081519050612df78161409d565b92915050565b60008083601f840112612e0f57600080fd5b8235905067ffffffffffffffff811115612e2857600080fd5b602083019150836040820283011115612e4057600080fd5b9250929050565b600081359050612e56816140b4565b92915050565b600081519050612e6b816140cb565b92915050565b600081359050612e80816140e2565b92915050565b600081519050612e95816140e2565b92915050565b600081519050612eaa816140f9565b92915050565b600060208284031215612ec257600080fd5b6000612ed084828501612dd3565b91505092915050565b600060208284031215612eeb57600080fd5b6000612ef984828501612de8565b91505092915050565b60008060408385031215612f1557600080fd5b6000612f2385828601612dd3565b9250506020612f3485828601612dd3565b9150509250929050565b600080600060608486031215612f5357600080fd5b6000612f6186828701612dd3565b9350506020612f7286828701612dd3565b9250506040612f8386828701612e71565b9150509250925092565b60008060408385031215612fa057600080fd5b6000612fae85828601612dd3565b9250506020612fbf85828601612e71565b9150509250929050565b60008060208385031215612fdc57600080fd5b600083013567ffffffffffffffff811115612ff657600080fd5b61300285828601612dfd565b92509250509250929050565b60006020828403121561302057600080fd5b600061302e84828501612e47565b91505092915050565b60008060006060848603121561304c57600080fd5b600061305a86828701612e5c565b935050602061306b86828701612e5c565b925050604061307c86828701612e9b565b9150509250925092565b60006020828403121561309857600080fd5b60006130a684828501612e71565b91505092915050565b6000806000606084860312156130c457600080fd5b60006130d286828701612e86565b93505060206130e386828701612e86565b92505060406130f486828701612e86565b9150509250925092565b600061310a8383613116565b60208301905092915050565b61311f81613f83565b82525050565b61312e81613f83565b82525050565b61314561314082613f83565b614051565b82525050565b600061315682613f33565b6131608185613f56565b935061316b83613f23565b8060005b8381101561319c57815161318388826130fe565b975061318e83613f49565b92505060018101905061316f565b5085935050505092915050565b6131b281613f95565b82525050565b6131c96131c482613fa1565b614063565b82525050565b6131d88161400c565b82525050565b60006131e982613f3e565b6131f38185613f67565b935061320381856020860161401e565b61320c8161407f565b840191505092915050565b6000613224601583613f67565b91507f64732d6d6174682d7375622d756e646572666c6f7700000000000000000000006000830152602082019050919050565b6000613264602383613f67565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132ca602683613f67565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613330602283613f67565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613396601483613f67565b91507f64732d6d6174682d6d756c2d6f766572666c6f770000000000000000000000006000830152602082019050919050565b60006133d6602683613f67565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061343c602583613f67565b91507f556e697377617056324c6962726172793a204944454e544943414c5f4144445260008301527f45535345530000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134a2602683613f67565b91507f556e69737761705632526f757465723a20494e53554646494349454e545f425f60008301527f414d4f554e5400000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613508601d83613f67565b91507f666565206d7573742062652067726561746572207468616e207a65726f0000006000830152602082019050919050565b6000613548602083613f78565b91507f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f6000830152602082019050919050565b6000613588601383613f67565b91507f45786365656420627579696e67206c696d6974000000000000000000000000006000830152602082019050919050565b60006135c8601983613f67565b91507f6164647265737320697320616c726561647920736574746564000000000000006000830152602082019050919050565b6000613608602883613f67565b91507f556e697377617056324c6962726172793a20494e53554646494349454e545f4c60008301527f49515549444954590000000000000000000000000000000000000000000000006020830152604082019050919050565b600061366e600d83613f67565b91507f4e6f742061626c65207a65726f000000000000000000000000000000000000006000830152602082019050919050565b60006136ae600183613f78565b91507fff000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b60006136ee602083613f67565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061372e600783613f67565b91507f4e6f206c697374000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061376e600f83613f67565b91507f61646472657373206973206e756c6c00000000000000000000000000000000006000830152602082019050919050565b60006137ae602183613f67565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613814602583613f67565b91507f556e697377617056324c6962726172793a20494e53554646494349454e545f4160008301527f4d4f554e540000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061387a602583613f67565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138e0602483613f67565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613946602683613f67565b91507f556e69737761705632526f757465723a20494e53554646494349454e545f415f60008301527f414d4f554e5400000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139ac601e83613f67565b91507f556e697377617056324c6962726172793a205a45524f5f4144445245535300006000830152602082019050919050565b60006139ec602283613f67565b91507f646973636f756e74206d7573742062652067726561746572207468616e207a6560008301527f726f0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b613a4e81613fe5565b82525050565b613a5d81613fff565b82525050565b6000613a6f8285613134565b601482019150613a7f8284613134565b6014820191508190509392505050565b6000613a9a826136a1565b9150613aa68285613134565b601482019150613ab682846131b8565b602082019150613ac58261353b565b91508190509392505050565b6000602082019050613ae66000830184613125565b92915050565b6000604082019050613b016000830185613125565b613b0e6020830184613125565b9392505050565b600060c082019050613b2a6000830189613125565b613b376020830188613a45565b613b4460408301876131cf565b613b5160608301866131cf565b613b5e6080830185613125565b613b6b60a0830184613a45565b979650505050505050565b6000602082019050613b8b60008301846131a9565b92915050565b60006020820190508181036000830152613bab81846131de565b905092915050565b60006020820190508181036000830152613bcc81613217565b9050919050565b60006020820190508181036000830152613bec81613257565b9050919050565b60006020820190508181036000830152613c0c816132bd565b9050919050565b60006020820190508181036000830152613c2c81613323565b9050919050565b60006020820190508181036000830152613c4c81613389565b9050919050565b60006020820190508181036000830152613c6c816133c9565b9050919050565b60006020820190508181036000830152613c8c8161342f565b9050919050565b60006020820190508181036000830152613cac81613495565b9050919050565b60006020820190508181036000830152613ccc816134fb565b9050919050565b60006020820190508181036000830152613cec8161357b565b9050919050565b60006020820190508181036000830152613d0c816135bb565b9050919050565b60006020820190508181036000830152613d2c816135fb565b9050919050565b60006020820190508181036000830152613d4c81613661565b9050919050565b60006020820190508181036000830152613d6c816136e1565b9050919050565b60006020820190508181036000830152613d8c81613721565b9050919050565b60006020820190508181036000830152613dac81613761565b9050919050565b60006020820190508181036000830152613dcc816137a1565b9050919050565b60006020820190508181036000830152613dec81613807565b9050919050565b60006020820190508181036000830152613e0c8161386d565b9050919050565b60006020820190508181036000830152613e2c816138d3565b9050919050565b60006020820190508181036000830152613e4c81613939565b9050919050565b60006020820190508181036000830152613e6c8161399f565b9050919050565b60006020820190508181036000830152613e8c816139df565b9050919050565b6000602082019050613ea86000830184613a45565b92915050565b600060a082019050613ec36000830188613a45565b613ed060208301876131cf565b8181036040830152613ee2818661314b565b9050613ef16060830185613125565b613efe6080830184613a45565b9695505050505050565b6000602082019050613f1d6000830184613a54565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f8e82613fc5565b9050919050565b60008115159050919050565b6000819050919050565b60006dffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b600061401782613fe5565b9050919050565b60005b8381101561403c578082015181840152602081019050614021565b8381111561404b576000848401525b50505050565b600061405c8261406d565b9050919050565b6000819050919050565b600061407882614090565b9050919050565b6000601f19601f8301169050919050565b60008160601b9050919050565b6140a681613f83565b81146140b157600080fd5b50565b6140bd81613f95565b81146140c857600080fd5b50565b6140d481613fab565b81146140df57600080fd5b50565b6140eb81613fe5565b81146140f657600080fd5b50565b61410281613fef565b811461410d57600080fd5b5056fea26469706673582212205c1be32001d1110bc359ca051592bdd81af21fbd1d55f217f5cff19a2d3130cd64736f6c63430006060033

Deployed Bytecode Sourcemap

40223:735:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;22783:100:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;22783:100:0;;;:::i;:::-;;;;;;;;;;;;;;;;24950:169;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24950:169:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27372:212;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27372:212:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;29049:179;;5:9:-1;2:2;;;27:1;24;17:12;2:2;29049:179:0;;;;;;;;;;;;;;;;:::i;:::-;;23903:108;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23903:108:0;;;:::i;:::-;;;;;;;;;;;;;;;;25732:277;;5:9:-1;2:2;;;27:1;24;17:12;2:2;25732:277:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;31496:108;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31496:108:0;;;;;;;;;;;;;;;;:::i;:::-;;40531:129;;5:9:-1;2:2;;;27:1;24;17:12;2:2;40531:129:0;;;:::i;:::-;;;;;;;;;;;;;;;;26418:215;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26418:215:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;38912:91;;5:9:-1;2:2;;;27:1;24;17:12;2:2;38912:91:0;;;;;;;;;;;;;;;;:::i;:::-;;25127:125;;5:9:-1;2:2;;;27:1;24;17:12;2:2;25127:125:0;;;:::i;:::-;;;;;;;;;;;;;;;;24074:127;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24074:127:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;19290:103;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19290:103:0;;;:::i;:::-;;39322:255;;5:9:-1;2:2;;;27:1;24;17:12;2:2;39322:255:0;;;;;;;;;;;;;;;;:::i;:::-;;27592:214;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27592:214:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;18639:87;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18639:87:0;;;:::i;:::-;;;;;;;;;;;;;;;;23002:104;;5:9:-1;2:2;;;27:1;24;17:12;2:2;23002:104:0;;;:::i;:::-;;;;;;;;;;;;;;;;27136:228;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27136:228:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;24414:175;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24414:175:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28087:267;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28087:267:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28633:263;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28633:263:0;;;;;;;;;;;;;;;;:::i;:::-;;40668:250;;5:9:-1;2:2;;;27:1;24;17:12;2:2;40668:250:0;;;;;;;;;;;;;;;;:::i;:::-;;27814:265;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27814:265:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28904:137;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28904:137:0;;;;;;;;;;;;;;;;:::i;:::-;;24652:151;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24652:151:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28362:263;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28362:263:0;;;;;;;;;;;;;;;;:::i;:::-;;19548:201;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19548:201:0;;;;;;;;;;;;;;;;:::i;:::-;;22783:100;22837:13;22870:5;22863:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22783:100;:::o;24950:169::-;25033:4;25050:39;25059:12;:10;:12::i;:::-;25073:7;25082:6;25050:8;:39::i;:::-;25107:4;25100:11;;24950:169;;;;:::o;27372:212::-;27449:4;18870:12;:10;:12::i;:::-;18859:23;;:7;:5;:7::i;:::-;:23;;;18851:68;;;;;;;;;;;;;;;;;;;;;;27481:1:::1;27474:4;:8;:22;;;;;27493:3;27486:4;:10;27474:22;27466:64;;;;;;;;;;;;;;;;;;;;;;27550:4;27541:6;:13;;;;27572:4;27565:11;;27372:212:::0;;;:::o;29049:179::-;18870:12;:10;:12::i;:::-;18859:23;;:7;:5;:7::i;:::-;:23;;;18851:68;;;;;;;;;;;;;;;;;;;;;;29161:1:::1;29152:6;:10;29144:36;;;;;;;;;;;;;;;;;;;;;;29214:6;29191:20;:29;;;;29049:179:::0;:::o;23903:108::-;23964:7;23991:12;;23984:19;;23903:108;:::o;25732:277::-;25838:4;25855:36;25865:6;25873:9;25884:6;25855:9;:36::i;:::-;25902:77;25911:6;25919:12;:10;:12::i;:::-;25933:45;25971:6;25933:11;:19;25945:6;25933:19;;;;;;;;;;;;;;;:33;25953:12;:10;:12::i;:::-;25933:33;;;;;;;;;;;;;;;;:37;;:45;;;;:::i;:::-;25902:8;:77::i;:::-;25997:4;25990:11;;25732:277;;;;;:::o;31496:108::-;18870:12;:10;:12::i;:::-;18859:23;;:7;:5;:7::i;:::-;:23;;;18851:68;;;;;;;;;;;;;;;;;;;;;;31591:5:::1;31578:10;;:18;;;;;;;;;;;;;;;;;;31496:108:::0;:::o;40531:129::-;40611:5;40636:16;:14;:16::i;:::-;40629:23;;40531:129;:::o;26418:215::-;26506:4;26523:80;26532:12;:10;:12::i;:::-;26546:7;26592:10;26555:11;:25;26567:12;:10;:12::i;:::-;26555:25;;;;;;;;;;;;;;;:34;26581:7;26555:34;;;;;;;;;;;;;;;;:47;26523:8;:80::i;:::-;26621:4;26614:11;;26418:215;;;;:::o;38912:91::-;38968:27;38974:12;:10;:12::i;:::-;38988:6;38968:5;:27::i;:::-;38912:91;:::o;25127:125::-;25198:4;25222:22;;;;;;;;;;;25215:29;;25127:125;:::o;24074:127::-;24148:7;24175:9;:18;24185:7;24175:18;;;;;;;;;;;;;;;;24168:25;;24074:127;;;:::o;19290:103::-;18870:12;:10;:12::i;:::-;18859:23;;:7;:5;:7::i;:::-;:23;;;18851:68;;;;;;;;;;;;;;;;;;;;;;19355:30:::1;19382:1;19355:18;:30::i;:::-;19290:103::o:0;39322:255::-;39399:26;39428:44;39465:6;39428:32;39438:7;39447:12;:10;:12::i;:::-;39428:9;:32::i;:::-;:36;;:44;;;;:::i;:::-;39399:73;;39485:51;39494:7;39503:12;:10;:12::i;:::-;39517:18;39485:8;:51::i;:::-;39547:22;39553:7;39562:6;39547:5;:22::i;:::-;39322:255;;;:::o;27592:214::-;27670:4;18870:12;:10;:12::i;:::-;18859:23;;:7;:5;:7::i;:::-;:23;;;18851:68;;;;;;;;;;;;;;;;;;;;;;27702:1:::1;27695:4;:8;:22;;;;;27714:3;27707:4;:10;27695:22;27687:64;;;;;;;;;;;;;;;;;;;;;;27772:4;27762:7;:14;;;;27794:4;27787:11;;27592:214:::0;;;:::o;18639:87::-;18685:7;18712:6;;;;;;;;;;;18705:13;;18639:87;:::o;23002:104::-;23058:13;23091:7;23084:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23002:104;:::o;27136:228::-;27229:4;27246:88;27255:12;:10;:12::i;:::-;27269:7;27278:55;27317:15;27278:11;:25;27290:12;:10;:12::i;:::-;27278:25;;;;;;;;;;;;;;;:34;27304:7;27278:34;;;;;;;;;;;;;;;;:38;;:55;;;;:::i;:::-;27246:8;:88::i;:::-;27352:4;27345:11;;27136:228;;;;:::o;24414:175::-;24500:4;24517:42;24527:12;:10;:12::i;:::-;24541:9;24552:6;24517:9;:42::i;:::-;24577:4;24570:11;;24414:175;;;;:::o;28087:267::-;28182:4;18870:12;:10;:12::i;:::-;18859:23;;:7;:5;:7::i;:::-;:23;;;18851:68;;;;;;;;;;;;;;;;;;;;;;28221:1:::1;28207:11;:15;:36;;;;;28240:3;28226:11;:17;28207:36;28199:83;;;;;;;;;;;;;;;;;;;;;;28313:11;28293:17;:31;;;;28342:4;28335:11;;28087:267:::0;;;:::o;28633:263::-;18870:12;:10;:12::i;:::-;18859:23;;:7;:5;:7::i;:::-;:23;;;18851:68;;;;;;;;;;;;;;;;;;;;;;28755:1:::1;28736:21;;:7;:21;;;;28728:49;;;;;;;;;;;;;;;;;;;;;;28807:15;;;;;;;;;;;28796:26;;:7;:26;;;;28788:64;;;;;;;;;;;;;;;;;;;;;;28881:7;28863:15;;:25;;;;;;;;;;;;;;;;;;28633:263:::0;:::o;40668:250::-;18870:12;:10;:12::i;:::-;18859:23;;:7;:5;:7::i;:::-;:23;;;18851:68;;;;;;;;;;;;;;;;;;;;;;40762:1:::1;40748:4;;:11;;:15;40740:35;;;;;;;;;;;;;;;;;;;;;;40791:6;40786:125;40803:4;;:11;;40799:1;:15;40786:125;;;40837:62;40846:4;;40851:1;40846:7;;;;;;;;;;;;:10;;;;;;;;;;;;40895:3;40874:4;;40879:1;40874:7;;;;;;;;;;;;:18;;;40858:13;:11;:13::i;:::-;:34;:40;;;;;;40837:8;:62::i;:::-;;40816:4;;;;;;;40786:125;;;;40668:250:::0;;:::o;27814:265::-;27908:4;18870:12;:10;:12::i;:::-;18859:23;;:7;:5;:7::i;:::-;:23;;;18851:68;;;;;;;;;;;;;;;;;;;;;;27947:1:::1;27933:11;:15;:36;;;;;27966:3;27952:11;:17;27933:36;27925:83;;;;;;;;;;;;;;;;;;;;;;28038:11;28019:16;:30;;;;28067:4;28060:11;;27814:265:::0;;;:::o;28904:137::-;18870:12;:10;:12::i;:::-;18859:23;;:7;:5;:7::i;:::-;:23;;;18851:68;;;;;;;;;;;;;;;;;;;;;;29025:8:::1;29000:22;;:33;;;;;;;;;;;;;;;;;;28904:137:::0;:::o;24652:151::-;24741:7;24768:11;:18;24780:5;24768:18;;;;;;;;;;;;;;;:27;24787:7;24768:27;;;;;;;;;;;;;;;;24761:34;;24652:151;;;;:::o;28362:263::-;18870:12;:10;:12::i;:::-;18859:23;;:7;:5;:7::i;:::-;:23;;;18851:68;;;;;;;;;;;;;;;;;;;;;;28484:1:::1;28465:21;;:7;:21;;;;28457:49;;;;;;;;;;;;;;;;;;;;;;28536:15;;;;;;;;;;;28525:26;;:7;:26;;;;28517:64;;;;;;;;;;;;;;;;;;;;;;28610:7;28592:15;;:25;;;;;;;;;;;;;;;;;;28362:263:::0;:::o;19548:201::-;18870:12;:10;:12::i;:::-;18859:23;;:7;:5;:7::i;:::-;:23;;;18851:68;;;;;;;;;;;;;;;;;;;;;;19657:1:::1;19637:22;;:8;:22;;;;19629:73;;;;;;;;;;;;;;;;;;;;;;19713:28;19732:8;19713:18;:28::i;:::-;19548:201:::0;:::o;17606:98::-;17659:7;17686:10;17679:17;;17606:98;:::o;36689:380::-;36842:1;36825:19;;:5;:19;;;;36817:68;;;;;;;;;;;;;;;;;;;;;;36923:1;36904:21;;:7;:21;;;;36896:68;;;;;;;;;;;;;;;;;;;;;;37007:6;36977:11;:18;36989:5;36977:18;;;;;;;;;;;;;;;:27;36996:7;36977:27;;;;;;;;;;;;;;;:36;;;;37045:7;37029:32;;37038:5;37029:32;;;37054:6;37029:32;;;;;;;;;;;;;;;36689:380;;;:::o;29716:1772::-;29867:1;29849:20;;:6;:20;;;;29841:70;;;;;;;;;;;;;;;;;;;;;;29951:1;29930:23;;:9;:23;;;;29922:71;;;;;;;;;;;;;;;;;;;;;;30004:13;30038;;;;;;;;;;;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30038:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30038:23:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;30038:23:0;;;;;;;;;30020:50;;;30079:4;30086:13;;;;;;;;;;;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30086:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30086:20:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;30086:20:0;;;;;;;;;30020:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30020:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30020:87:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;30020:87:0;;;;;;;;;30004:103;;30142:5;30132:15;;:6;:15;;;30128:1351;;;30168:10;;;;;;;;;;;30164:112;;;30233:3;30217:13;:11;:13::i;:::-;:19;;;;;;30207:6;:29;;30199:61;;;;;;;;;;;;;;;;;;;;;;30164:112;30290:11;30322:3;30313:6;;30304;:15;:21;;;;;;30290:35;;30340:12;30364:3;30355:6;:12;30340:27;;30382:41;30399:6;30407:9;30418:4;30382:16;:41::i;:::-;30438:69;30455:6;30471:4;30503:3;30484:16;;30478:3;:22;:28;;;;;;30438:16;:69::i;:::-;30522:79;30539:6;30547:15;;;;;;;;;;;30597:3;30577:16;;30571:3;:22;30564:3;:30;:36;;;;;;30522:16;:79::i;:::-;30128:1351;;;;;30659:7;:5;:7::i;:::-;30649:17;;:6;:17;;;:41;;;;30683:7;:5;:7::i;:::-;30670:20;;:9;:20;;;30649:41;30645:823;;;30711:43;30728:6;30736:9;30747:6;30711:16;:43::i;:::-;30645:823;;;30808:11;30841:3;30831:7;;30822:6;:16;:22;;;;;;30808:36;;30863:12;30887:3;30878:6;:12;30863:27;;30909:41;30926:6;30934:9;30945:4;30909:16;:41::i;:::-;30969:70;30986:6;31002:4;31035:3;31015:17;;31009:3;:23;:29;;;;;;30969:16;:70::i;:::-;31058:80;31075:6;31083:15;;;;;;;;;;;31134:3;31113:17;;31107:3;:23;31100:3;:31;:37;;;;;;31058:16;:80::i;:::-;31161:22;;;;;;;;;;;:45;;;;;31204:1;31187:19;;:5;:19;;;;31161:45;31157:296;;;31231:21;31255:24;31273:4;31255:9;:24::i;:::-;31231:48;;31323:20;;31306:13;:37;31302:132;;31372:38;31389:20;;31372:16;:38::i;:::-;31302:132;31157:296;;30645:823;;;30128:1351;29716:1772;;;;:::o;8371:129::-;8423:6;8465:1;8459;8455;:5;8451:9;;;8450:16;;8442:50;;;;;;;;;;;;;;;;;;;;;;8371:129;;;;:::o;40036:100::-;40094:5;40119:9;40112:16;;40036:100;:::o;35871:380::-;35974:1;35955:21;;:7;:21;;;;35947:67;;;;;;;;;;;;;;;;;;;;;;36027:49;36048:7;36065:1;36069:6;36027:20;:49::i;:::-;36110:30;36133:6;36110:9;:18;36120:7;36110:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;36089:9;:18;36099:7;36089:18;;;;;;;;;;;;;;;:51;;;;36166:24;36183:6;36166:12;;:16;;:24;;;;:::i;:::-;36151:12;:39;;;;36232:1;36206:37;;36215:7;36206:37;;;36236:6;36206:37;;;;;;;;;;;;;;;35871:380;;:::o;19909:191::-;19983:16;20002:6;;;;;;;;;;;19983:25;;20028:8;20019:6;;:17;;;;;;;;;;;;;;;;;;20083:8;20052:40;;20073:8;20052:40;;;;;;;;;;;;19909:191;;:::o;31612:695::-;31768:1;31750:20;;:6;:20;;;;31742:70;;;;;;;;;;;;;;;;;;;;;;31852:1;31831:23;;:9;:23;;;;31823:71;;;;;;;;;;;;;;;;;;;;;;31907:47;31928:6;31936:9;31947:6;31907:20;:47::i;:::-;31967:21;31991:9;:17;32001:6;31991:17;;;;;;;;;;;;;;;;31967:41;;32044:6;32027:13;:23;;32019:74;;;;;;;;;;;;;;;;;;;;;;32140:6;32124:13;:22;32104:9;:17;32114:6;32104:17;;;;;;;;;;;;;;;:42;;;;32181:6;32157:9;:20;32167:9;32157:20;;;;;;;;;;;;;;;;:30;;;;;;;;;;;32222:9;32205:35;;32214:6;32205:35;;;32233:6;32205:35;;;;;;;;;;;;;;;32253:46;32273:6;32281:9;32292:6;32253:19;:46::i;:::-;31612:695;;;;:::o;32315:1311::-;22523:4;22504:16;;:23;;;;;;;;;;;;;;;;;;32453:21:::1;32491:1;32477:16;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;32477:16:0;;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;156:4;148:6;144:17;134:27;;0:165;32477:16:0;;;;32453:40;;32522:4;32504;32509:1;32504:7;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;32548:13;;;;;;;;;;;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;32548:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;32548:20:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;32548:20:0;;;;;;;;;32538:4;32543:1;32538:7;;;;;;;;;;;;;:30;;;;;;;;;::::0;::::1;32581:84;32598:4;32605:42;32663:1;32649:11;:15;32581:8;:84::i;:::-;32704:13;;;;;;;;;;;:64;;;32797:1;32783:11;:15;;;;;;32813:1;32857:4;32884;32904:15;32704:226;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;32704:226:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;32704:226:0;;;;32941:17;32961:21;32941:41;;32996:17;33015:15:::0;33034:101:::1;33073:4;33080:13;;;;;;;;;;;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;33080:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;33080:20:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;33080:20:0;;;;;;;;;33116:1;33102:11;:15;;;;;;33119:9;33130:1;33133::::0;33034:30:::1;:101::i;:::-;32995:140;;;;33148:18;33169:24;33187:4;33169:9;:24::i;:::-;33148:45;;33223:10;33210:9;:23;;:56;;;;;33254:12;33237:13;:29;;33210:56;33206:411;;;33317:13;;;;;;;;;;;:29;;;33354:10;33392:4;33416:12;33447:1;33494::::0;33541:15:::1;;;;;;;;;;;33575;33317:288;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;33317:288:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;33317:288:0;;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;33317:288:0;;;;;;;;;;;;33206:411;22538:1;;;;;22569:5:::0;22550:16;;:24;;;;;;;;;;;;;;;;;;32315:1311;:::o;37673:125::-;;;;:::o;38402:124::-;;;;:::o;33637:1217::-;33868:12;33882;33918:13;33933;33950:69;33979:13;;;;;;;;;;;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;33979:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;33979:23:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;33979:23:0;;;;;;;;;34004:6;34012;33950:28;:69::i;:::-;33917:102;;;;34046:1;34034:8;:13;:30;;;;;34063:1;34051:8;:13;34034:30;34030:817;;;34103:14;34119;34081:53;;;;;;;;34030:817;;;34167:19;34189:58;34212:14;34228:8;34238;34189:22;:58::i;:::-;34167:80;;34284:14;34266;:32;34262:574;;34345:10;34327:14;:28;;34319:79;;;;;;;;;;;;;;;;;;;;;;34439:14;34455;34417:53;;;;;;;;34262:574;;;34511:19;34533:58;34556:14;34572:8;34582;34533:22;:58::i;:::-;34511:80;;34635:14;34617;:32;;34610:40;;;;34695:10;34677:14;:28;;34669:79;;;;;;;;;;;;;;;;;;;;;;34789:14;34805;34767:53;;;;;;;;34262:574;;34030:817;;33637:1217;;;;;;;;;;;:::o;9799:391::-;9892:13;9907;9934:14;9953:26;9964:6;9972;9953:10;:26::i;:::-;9933:46;;;9991:13;10006;10039:32;10047:7;10056:6;10064;10039:7;:32::i;:::-;10024:60;;;:62;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10024:62:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10024:62:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;10024:62:0;;;;;;;;;9990:96;;;;;;;;;10130:6;10120:16;;:6;:16;;;:62;;10163:8;10173;10120:62;;;10140:8;10150;10120:62;10097:85;;;;;;;;9799:391;;;;;;;;;:::o;10303:321::-;10385:12;10428:1;10418:7;:11;10410:61;;;;;;;;;;;;;;;;;;;;;;10501:1;10490:8;:12;:28;;;;;10517:1;10506:8;:12;10490:28;10482:81;;;;;;;;;;;;;;;;;;;;;;10608:8;10584:21;10596:8;10584:7;:11;;:21;;;;:::i;:::-;:32;;;;;;10574:42;;10303:321;;;;;:::o;8822:349::-;8897:14;8913;8958:6;8948:16;;:6;:16;;;;8940:66;;;;;;;;;;;;;;;;;;;;;;9045:6;9036:15;;:6;:15;;;:53;;9074:6;9082;9036:53;;;9055:6;9063;9036:53;9017:72;;;;;;;;9126:1;9108:20;;:6;:20;;;;9100:63;;;;;;;;;;;;;;;;;;;;;;8822:349;;;;;:::o;9263:478::-;9352:12;9378:14;9394;9412:26;9423:6;9431;9412:10;:26::i;:::-;9377:61;;;;9540:7;9593:6;9601;9576:32;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;9576:32:0;;;9566:43;;;;;;9479:251;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;9479:251:0;;;9469:262;;;;;;9464:268;;9449:284;;9263:478;;;;;;;:::o;8508:142::-;8560:6;8592:1;8587;:6;:30;;;;8616:1;8611;8606;8602;:5;8598:9;;;8597:15;;;;;;:20;8587:30;8579:63;;;;;;;;;;;;;;;;;;;;;;8508:142;;;;:::o;5:130:-1:-;;85:6;72:20;63:29;;97:33;124:5;97:33;;;57:78;;;;;142:134;;226:6;220:13;211:22;;238:33;265:5;238:33;;;205:71;;;;;316:379;;;473:3;466:4;458:6;454:17;450:27;440:2;;491:1;488;481:12;440:2;524:6;511:20;501:30;;551:18;543:6;540:30;537:2;;;583:1;580;573:12;537:2;617:4;609:6;605:17;593:29;;668:3;660:4;652:6;648:17;638:8;634:32;631:41;628:2;;;685:1;682;675:12;628:2;433:262;;;;;;703:124;;780:6;767:20;758:29;;792:30;816:5;792:30;;;752:75;;;;;834:134;;918:6;912:13;903:22;;930:33;957:5;930:33;;;897:71;;;;;975:130;;1055:6;1042:20;1033:29;;1067:33;1094:5;1067:33;;;1027:78;;;;;1112:134;;1196:6;1190:13;1181:22;;1208:33;1235:5;1208:33;;;1175:71;;;;;1253:132;;1336:6;1330:13;1321:22;;1348:32;1374:5;1348:32;;;1315:70;;;;;1392:241;;1496:2;1484:9;1475:7;1471:23;1467:32;1464:2;;;1512:1;1509;1502:12;1464:2;1547:1;1564:53;1609:7;1600:6;1589:9;1585:22;1564:53;;;1554:63;;1526:97;1458:175;;;;;1640:263;;1755:2;1743:9;1734:7;1730:23;1726:32;1723:2;;;1771:1;1768;1761:12;1723:2;1806:1;1823:64;1879:7;1870:6;1859:9;1855:22;1823:64;;;1813:74;;1785:108;1717:186;;;;;1910:366;;;2031:2;2019:9;2010:7;2006:23;2002:32;1999:2;;;2047:1;2044;2037:12;1999:2;2082:1;2099:53;2144:7;2135:6;2124:9;2120:22;2099:53;;;2089:63;;2061:97;2189:2;2207:53;2252:7;2243:6;2232:9;2228:22;2207:53;;;2197:63;;2168:98;1993:283;;;;;;2283:491;;;;2421:2;2409:9;2400:7;2396:23;2392:32;2389:2;;;2437:1;2434;2427:12;2389:2;2472:1;2489:53;2534:7;2525:6;2514:9;2510:22;2489:53;;;2479:63;;2451:97;2579:2;2597:53;2642:7;2633:6;2622:9;2618:22;2597:53;;;2587:63;;2558:98;2687:2;2705:53;2750:7;2741:6;2730:9;2726:22;2705:53;;;2695:63;;2666:98;2383:391;;;;;;2781:366;;;2902:2;2890:9;2881:7;2877:23;2873:32;2870:2;;;2918:1;2915;2908:12;2870:2;2953:1;2970:53;3015:7;3006:6;2995:9;2991:22;2970:53;;;2960:63;;2932:97;3060:2;3078:53;3123:7;3114:6;3103:9;3099:22;3078:53;;;3068:63;;3039:98;2864:283;;;;;;3154:451;;;3320:2;3308:9;3299:7;3295:23;3291:32;3288:2;;;3336:1;3333;3326:12;3288:2;3399:1;3388:9;3384:17;3371:31;3422:18;3414:6;3411:30;3408:2;;;3454:1;3451;3444:12;3408:2;3482:107;3581:7;3572:6;3561:9;3557:22;3482:107;;;3472:117;;;;3350:245;3282:323;;;;;;3612:235;;3713:2;3701:9;3692:7;3688:23;3684:32;3681:2;;;3729:1;3726;3719:12;3681:2;3764:1;3781:50;3823:7;3814:6;3803:9;3799:22;3781:50;;;3771:60;;3743:94;3675:172;;;;;3854:533;;;;4002:2;3990:9;3981:7;3977:23;3973:32;3970:2;;;4018:1;4015;4008:12;3970:2;4053:1;4070:64;4126:7;4117:6;4106:9;4102:22;4070:64;;;4060:74;;4032:108;4171:2;4189:64;4245:7;4236:6;4225:9;4221:22;4189:64;;;4179:74;;4150:109;4290:2;4308:63;4363:7;4354:6;4343:9;4339:22;4308:63;;;4298:73;;4269:108;3964:423;;;;;;4394:241;;4498:2;4486:9;4477:7;4473:23;4469:32;4466:2;;;4514:1;4511;4504:12;4466:2;4549:1;4566:53;4611:7;4602:6;4591:9;4587:22;4566:53;;;4556:63;;4528:97;4460:175;;;;;4642:535;;;;4791:2;4779:9;4770:7;4766:23;4762:32;4759:2;;;4807:1;4804;4797:12;4759:2;4842:1;4859:64;4915:7;4906:6;4895:9;4891:22;4859:64;;;4849:74;;4821:108;4960:2;4978:64;5034:7;5025:6;5014:9;5010:22;4978:64;;;4968:74;;4939:109;5079:2;5097:64;5153:7;5144:6;5133:9;5129:22;5097:64;;;5087:74;;5058:109;4753:424;;;;;;5185:173;;5272:46;5314:3;5306:6;5272:46;;;5347:4;5342:3;5338:14;5324:28;;5265:93;;;;;5366:103;5439:24;5457:5;5439:24;;;5434:3;5427:37;5421:48;;;5476:113;5559:24;5577:5;5559:24;;;5554:3;5547:37;5541:48;;;5596:152;5697:45;5717:24;5735:5;5717:24;;;5697:45;;;5692:3;5685:58;5679:69;;;5786:690;;5931:54;5979:5;5931:54;;;5998:86;6077:6;6072:3;5998:86;;;5991:93;;6105:56;6155:5;6105:56;;;6181:7;6209:1;6194:260;6219:6;6216:1;6213:13;6194:260;;;6286:6;6280:13;6307:63;6366:3;6351:13;6307:63;;;6300:70;;6387:60;6440:6;6387:60;;;6377:70;;6251:203;6241:1;6238;6234:9;6229:14;;6194:260;;;6198:14;6467:3;6460:10;;5910:566;;;;;;;;6484:104;6561:21;6576:5;6561:21;;;6556:3;6549:34;6543:45;;;6595:152;6696:45;6716:24;6734:5;6716:24;;;6696:45;;;6691:3;6684:58;6678:69;;;6754:142;6845:45;6884:5;6845:45;;;6840:3;6833:58;6827:69;;;6903:347;;7015:39;7048:5;7015:39;;;7066:71;7130:6;7125:3;7066:71;;;7059:78;;7142:52;7187:6;7182:3;7175:4;7168:5;7164:16;7142:52;;;7215:29;7237:6;7215:29;;;7210:3;7206:39;7199:46;;6995:255;;;;;;7258:321;;7418:67;7482:2;7477:3;7418:67;;;7411:74;;7518:23;7514:1;7509:3;7505:11;7498:44;7570:2;7565:3;7561:12;7554:19;;7404:175;;;;7588:372;;7748:67;7812:2;7807:3;7748:67;;;7741:74;;7848:34;7844:1;7839:3;7835:11;7828:55;7917:5;7912:2;7907:3;7903:12;7896:27;7951:2;7946:3;7942:12;7935:19;;7734:226;;;;7969:375;;8129:67;8193:2;8188:3;8129:67;;;8122:74;;8229:34;8225:1;8220:3;8216:11;8209:55;8298:8;8293:2;8288:3;8284:12;8277:30;8335:2;8330:3;8326:12;8319:19;;8115:229;;;;8353:371;;8513:67;8577:2;8572:3;8513:67;;;8506:74;;8613:34;8609:1;8604:3;8600:11;8593:55;8682:4;8677:2;8672:3;8668:12;8661:26;8715:2;8710:3;8706:12;8699:19;;8499:225;;;;8733:320;;8893:67;8957:2;8952:3;8893:67;;;8886:74;;8993:22;8989:1;8984:3;8980:11;8973:43;9044:2;9039:3;9035:12;9028:19;;8879:174;;;;9062:375;;9222:67;9286:2;9281:3;9222:67;;;9215:74;;9322:34;9318:1;9313:3;9309:11;9302:55;9391:8;9386:2;9381:3;9377:12;9370:30;9428:2;9423:3;9419:12;9412:19;;9208:229;;;;9446:374;;9606:67;9670:2;9665:3;9606:67;;;9599:74;;9706:34;9702:1;9697:3;9693:11;9686:55;9775:7;9770:2;9765:3;9761:12;9754:29;9811:2;9806:3;9802:12;9795:19;;9592:228;;;;9829:375;;9989:67;10053:2;10048:3;9989:67;;;9982:74;;10089:34;10085:1;10080:3;10076:11;10069:55;10158:8;10153:2;10148:3;10144:12;10137:30;10195:2;10190:3;10186:12;10179:19;;9975:229;;;;10213:329;;10373:67;10437:2;10432:3;10373:67;;;10366:74;;10473:31;10469:1;10464:3;10460:11;10453:52;10533:2;10528:3;10524:12;10517:19;;10359:183;;;;10551:400;;10729:85;10811:2;10806:3;10729:85;;;10722:92;;10847:66;10843:1;10838:3;10834:11;10827:87;10942:2;10937:3;10933:12;10926:19;;10715:236;;;;10960:319;;11120:67;11184:2;11179:3;11120:67;;;11113:74;;11220:21;11216:1;11211:3;11207:11;11200:42;11270:2;11265:3;11261:12;11254:19;;11106:173;;;;11288:325;;11448:67;11512:2;11507:3;11448:67;;;11441:74;;11548:27;11544:1;11539:3;11535:11;11528:48;11604:2;11599:3;11595:12;11588:19;;11434:179;;;;11622:377;;11782:67;11846:2;11841:3;11782:67;;;11775:74;;11882:34;11878:1;11873:3;11869:11;11862:55;11951:10;11946:2;11941:3;11937:12;11930:32;11990:2;11985:3;11981:12;11974:19;;11768:231;;;;12008:313;;12168:67;12232:2;12227:3;12168:67;;;12161:74;;12268:15;12264:1;12259:3;12255:11;12248:36;12312:2;12307:3;12303:12;12296:19;;12154:167;;;;12330:398;;12508:84;12590:1;12585:3;12508:84;;;12501:91;;12625:66;12621:1;12616:3;12612:11;12605:87;12720:1;12715:3;12711:11;12704:18;;12494:234;;;;12737:332;;12897:67;12961:2;12956:3;12897:67;;;12890:74;;12997:34;12993:1;12988:3;12984:11;12977:55;13060:2;13055:3;13051:12;13044:19;;12883:186;;;;13078:306;;13238:66;13302:1;13297:3;13238:66;;;13231:73;;13337:9;13333:1;13328:3;13324:11;13317:30;13375:2;13370:3;13366:12;13359:19;;13224:160;;;;13393:315;;13553:67;13617:2;13612:3;13553:67;;;13546:74;;13653:17;13649:1;13644:3;13640:11;13633:38;13699:2;13694:3;13690:12;13683:19;;13539:169;;;;13717:370;;13877:67;13941:2;13936:3;13877:67;;;13870:74;;13977:34;13973:1;13968:3;13964:11;13957:55;14046:3;14041:2;14036:3;14032:12;14025:25;14078:2;14073:3;14069:12;14062:19;;13863:224;;;;14096:374;;14256:67;14320:2;14315:3;14256:67;;;14249:74;;14356:34;14352:1;14347:3;14343:11;14336:55;14425:7;14420:2;14415:3;14411:12;14404:29;14461:2;14456:3;14452:12;14445:19;;14242:228;;;;14479:374;;14639:67;14703:2;14698:3;14639:67;;;14632:74;;14739:34;14735:1;14730:3;14726:11;14719:55;14808:7;14803:2;14798:3;14794:12;14787:29;14844:2;14839:3;14835:12;14828:19;;14625:228;;;;14862:373;;15022:67;15086:2;15081:3;15022:67;;;15015:74;;15122:34;15118:1;15113:3;15109:11;15102:55;15191:6;15186:2;15181:3;15177:12;15170:28;15226:2;15221:3;15217:12;15210:19;;15008:227;;;;15244:375;;15404:67;15468:2;15463:3;15404:67;;;15397:74;;15504:34;15500:1;15495:3;15491:11;15484:55;15573:8;15568:2;15563:3;15559:12;15552:30;15610:2;15605:3;15601:12;15594:19;;15390:229;;;;15628:330;;15788:67;15852:2;15847:3;15788:67;;;15781:74;;15888:32;15884:1;15879:3;15875:11;15868:53;15949:2;15944:3;15940:12;15933:19;;15774:184;;;;15967:371;;16127:67;16191:2;16186:3;16127:67;;;16120:74;;16227:34;16223:1;16218:3;16214:11;16207:55;16296:4;16291:2;16286:3;16282:12;16275:26;16329:2;16324:3;16320:12;16313:19;;16113:225;;;;16346:113;16429:24;16447:5;16429:24;;;16424:3;16417:37;16411:48;;;16466:107;16545:22;16561:5;16545:22;;;16540:3;16533:35;16527:46;;;16580:383;;16727:75;16798:3;16789:6;16727:75;;;16824:2;16819:3;16815:12;16808:19;;16838:75;16909:3;16900:6;16838:75;;;16935:2;16930:3;16926:12;16919:19;;16955:3;16948:10;;16715:248;;;;;;16970:917;;17326:148;17470:3;17326:148;;;17319:155;;17485:75;17556:3;17547:6;17485:75;;;17582:2;17577:3;17573:12;17566:19;;17596:75;17667:3;17658:6;17596:75;;;17693:2;17688:3;17684:12;17677:19;;17714:148;17858:3;17714:148;;;17707:155;;17879:3;17872:10;;17307:580;;;;;;17894:213;;18012:2;18001:9;17997:18;17989:26;;18026:71;18094:1;18083:9;18079:17;18070:6;18026:71;;;17983:124;;;;;18114:324;;18260:2;18249:9;18245:18;18237:26;;18274:71;18342:1;18331:9;18327:17;18318:6;18274:71;;;18356:72;18424:2;18413:9;18409:18;18400:6;18356:72;;;18231:207;;;;;;18445:803;;18719:3;18708:9;18704:19;18696:27;;18734:71;18802:1;18791:9;18787:17;18778:6;18734:71;;;18816:72;18884:2;18873:9;18869:18;18860:6;18816:72;;;18899:80;18975:2;18964:9;18960:18;18951:6;18899:80;;;18990;19066:2;19055:9;19051:18;19042:6;18990:80;;;19081:73;19149:3;19138:9;19134:19;19125:6;19081:73;;;19165;19233:3;19222:9;19218:19;19209:6;19165:73;;;18690:558;;;;;;;;;;19255:201;;19367:2;19356:9;19352:18;19344:26;;19381:65;19443:1;19432:9;19428:17;19419:6;19381:65;;;19338:118;;;;;19463:301;;19601:2;19590:9;19586:18;19578:26;;19651:9;19645:4;19641:20;19637:1;19626:9;19622:17;19615:47;19676:78;19749:4;19740:6;19676:78;;;19668:86;;19572:192;;;;;19771:407;;19962:2;19951:9;19947:18;19939:26;;20012:9;20006:4;20002:20;19998:1;19987:9;19983:17;19976:47;20037:131;20163:4;20037:131;;;20029:139;;19933:245;;;;20185:407;;20376:2;20365:9;20361:18;20353:26;;20426:9;20420:4;20416:20;20412:1;20401:9;20397:17;20390:47;20451:131;20577:4;20451:131;;;20443:139;;20347:245;;;;20599:407;;20790:2;20779:9;20775:18;20767:26;;20840:9;20834:4;20830:20;20826:1;20815:9;20811:17;20804:47;20865:131;20991:4;20865:131;;;20857:139;;20761:245;;;;21013:407;;21204:2;21193:9;21189:18;21181:26;;21254:9;21248:4;21244:20;21240:1;21229:9;21225:17;21218:47;21279:131;21405:4;21279:131;;;21271:139;;21175:245;;;;21427:407;;21618:2;21607:9;21603:18;21595:26;;21668:9;21662:4;21658:20;21654:1;21643:9;21639:17;21632:47;21693:131;21819:4;21693:131;;;21685:139;;21589:245;;;;21841:407;;22032:2;22021:9;22017:18;22009:26;;22082:9;22076:4;22072:20;22068:1;22057:9;22053:17;22046:47;22107:131;22233:4;22107:131;;;22099:139;;22003:245;;;;22255:407;;22446:2;22435:9;22431:18;22423:26;;22496:9;22490:4;22486:20;22482:1;22471:9;22467:17;22460:47;22521:131;22647:4;22521:131;;;22513:139;;22417:245;;;;22669:407;;22860:2;22849:9;22845:18;22837:26;;22910:9;22904:4;22900:20;22896:1;22885:9;22881:17;22874:47;22935:131;23061:4;22935:131;;;22927:139;;22831:245;;;;23083:407;;23274:2;23263:9;23259:18;23251:26;;23324:9;23318:4;23314:20;23310:1;23299:9;23295:17;23288:47;23349:131;23475:4;23349:131;;;23341:139;;23245:245;;;;23497:407;;23688:2;23677:9;23673:18;23665:26;;23738:9;23732:4;23728:20;23724:1;23713:9;23709:17;23702:47;23763:131;23889:4;23763:131;;;23755:139;;23659:245;;;;23911:407;;24102:2;24091:9;24087:18;24079:26;;24152:9;24146:4;24142:20;24138:1;24127:9;24123:17;24116:47;24177:131;24303:4;24177:131;;;24169:139;;24073:245;;;;24325:407;;24516:2;24505:9;24501:18;24493:26;;24566:9;24560:4;24556:20;24552:1;24541:9;24537:17;24530:47;24591:131;24717:4;24591:131;;;24583:139;;24487:245;;;;24739:407;;24930:2;24919:9;24915:18;24907:26;;24980:9;24974:4;24970:20;24966:1;24955:9;24951:17;24944:47;25005:131;25131:4;25005:131;;;24997:139;;24901:245;;;;25153:407;;25344:2;25333:9;25329:18;25321:26;;25394:9;25388:4;25384:20;25380:1;25369:9;25365:17;25358:47;25419:131;25545:4;25419:131;;;25411:139;;25315:245;;;;25567:407;;25758:2;25747:9;25743:18;25735:26;;25808:9;25802:4;25798:20;25794:1;25783:9;25779:17;25772:47;25833:131;25959:4;25833:131;;;25825:139;;25729:245;;;;25981:407;;26172:2;26161:9;26157:18;26149:26;;26222:9;26216:4;26212:20;26208:1;26197:9;26193:17;26186:47;26247:131;26373:4;26247:131;;;26239:139;;26143:245;;;;26395:407;;26586:2;26575:9;26571:18;26563:26;;26636:9;26630:4;26626:20;26622:1;26611:9;26607:17;26600:47;26661:131;26787:4;26661:131;;;26653:139;;26557:245;;;;26809:407;;27000:2;26989:9;26985:18;26977:26;;27050:9;27044:4;27040:20;27036:1;27025:9;27021:17;27014:47;27075:131;27201:4;27075:131;;;27067:139;;26971:245;;;;27223:407;;27414:2;27403:9;27399:18;27391:26;;27464:9;27458:4;27454:20;27450:1;27439:9;27435:17;27428:47;27489:131;27615:4;27489:131;;;27481:139;;27385:245;;;;27637:407;;27828:2;27817:9;27813:18;27805:26;;27878:9;27872:4;27868:20;27864:1;27853:9;27849:17;27842:47;27903:131;28029:4;27903:131;;;27895:139;;27799:245;;;;28051:407;;28242:2;28231:9;28227:18;28219:26;;28292:9;28286:4;28282:20;28278:1;28267:9;28263:17;28256:47;28317:131;28443:4;28317:131;;;28309:139;;28213:245;;;;28465:407;;28656:2;28645:9;28641:18;28633:26;;28706:9;28700:4;28696:20;28692:1;28681:9;28677:17;28670:47;28731:131;28857:4;28731:131;;;28723:139;;28627:245;;;;28879:407;;29070:2;29059:9;29055:18;29047:26;;29120:9;29114:4;29110:20;29106:1;29095:9;29091:17;29084:47;29145:131;29271:4;29145:131;;;29137:139;;29041:245;;;;29293:213;;29411:2;29400:9;29396:18;29388:26;;29425:71;29493:1;29482:9;29478:17;29469:6;29425:71;;;29382:124;;;;;29513:823;;29801:3;29790:9;29786:19;29778:27;;29816:71;29884:1;29873:9;29869:17;29860:6;29816:71;;;29898:80;29974:2;29963:9;29959:18;29950:6;29898:80;;;30026:9;30020:4;30016:20;30011:2;30000:9;29996:18;29989:48;30051:108;30154:4;30145:6;30051:108;;;30043:116;;30170:72;30238:2;30227:9;30223:18;30214:6;30170:72;;;30253:73;30321:3;30310:9;30306:19;30297:6;30253:73;;;29772:564;;;;;;;;;30343:205;;30457:2;30446:9;30442:18;30434:26;;30471:67;30535:1;30524:9;30520:17;30511:6;30471:67;;;30428:120;;;;;30555:151;;30641:3;30633:11;;30679:4;30674:3;30670:14;30662:22;;30627:79;;;;30713:137;;30822:5;30816:12;30806:22;;30787:63;;;;30857:122;;30951:5;30945:12;30935:22;;30916:63;;;;30986:108;;31084:4;31079:3;31075:14;31067:22;;31061:33;;;;31102:178;;31232:6;31227:3;31220:19;31269:4;31264:3;31260:14;31245:29;;31213:67;;;;;31289:163;;31404:6;31399:3;31392:19;31441:4;31436:3;31432:14;31417:29;;31385:67;;;;;31461:145;;31597:3;31582:18;;31575:31;;;;;31614:91;;31676:24;31694:5;31676:24;;;31665:35;;31659:46;;;;31712:85;;31785:5;31778:13;31771:21;31760:32;;31754:43;;;;31804:72;;31866:5;31855:16;;31849:27;;;;31883:109;;31956:30;31949:5;31945:42;31934:53;;31928:64;;;;31999:121;;32072:42;32065:5;32061:54;32050:65;;32044:76;;;;32127:72;;32189:5;32178:16;;32172:27;;;;32206:88;;32278:10;32271:5;32267:22;32256:33;;32250:44;;;;32301:81;;32372:4;32365:5;32361:16;32350:27;;32344:38;;;;32389:116;;32476:24;32494:5;32476:24;;;32463:37;;32457:48;;;;32513:268;32578:1;32585:101;32599:6;32596:1;32593:13;32585:101;;;32675:1;32670:3;32666:11;32660:18;32656:1;32651:3;32647:11;32640:39;32621:2;32618:1;32614:10;32609:15;;32585:101;;;32701:6;32698:1;32695:13;32692:2;;;32766:1;32757:6;32752:3;32748:16;32741:27;32692:2;32562:219;;;;;32789:95;;32853:26;32873:5;32853:26;;;32842:37;;32836:48;;;;32891:74;;32955:5;32944:16;;32938:27;;;;32972:89;;33036:20;33050:5;33036:20;;;33025:31;;33019:42;;;;33068:97;;33156:2;33152:7;33147:2;33140:5;33136:14;33132:28;33122:38;;33116:49;;;;33173:94;;33251:5;33247:2;33243:14;33221:36;;33215:52;;;;33275:117;33344:24;33362:5;33344:24;;;33337:5;33334:35;33324:2;;33383:1;33380;33373:12;33324:2;33318:74;;33399:111;33465:21;33480:5;33465:21;;;33458:5;33455:32;33445:2;;33501:1;33498;33491:12;33445:2;33439:71;;33517:117;33586:24;33604:5;33586:24;;;33579:5;33576:35;33566:2;;33625:1;33622;33615:12;33566:2;33560:74;;33641:117;33710:24;33728:5;33710:24;;;33703:5;33700:35;33690:2;;33749:1;33746;33739:12;33690:2;33684:74;;33765:115;33833:23;33850:5;33833:23;;;33826:5;33823:34;33813:2;;33871:1;33868;33861:12;33813:2;33807:73;

Swarm Source

ipfs://5c1be32001d1110bc359ca051592bdd81af21fbd1d55f217f5cff19a2d3130cd
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.