ETH Price: $2,665.50 (+1.35%)
Gas: 1.1 Gwei

Contract

0xdeFEe24266c71B44bdFd61F436152d53AAA12Aa7
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer206105422024-08-26 5:01:23171 days ago1724648483IN
0xdeFEe242...3AAA12Aa7
0 ETH0.000133051.86410895
Transfer206105312024-08-26 4:59:11171 days ago1724648351IN
0xdeFEe242...3AAA12Aa7
0 ETH0.000094761.81796165
Approve204807662024-08-08 2:05:47189 days ago1723082747IN
0xdeFEe242...3AAA12Aa7
0 ETH0.000073292.9458301
Approve204797472024-08-07 22:40:59189 days ago1723070459IN
0xdeFEe242...3AAA12Aa7
0 ETH0.000147723.14968805
Approve204791642024-08-07 20:43:35189 days ago1723063415IN
0xdeFEe242...3AAA12Aa7
0 ETH0.000358777.64976149
Approve204782742024-08-07 17:45:23189 days ago1723052723IN
0xdeFEe242...3AAA12Aa7
0 ETH0.000416368.86641215
Approve204782372024-08-07 17:37:59189 days ago1723052279IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0003833814.03124371
Approve204782352024-08-07 17:37:35189 days ago1723052255IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0006886714.58308946
Approve204780122024-08-07 16:52:47189 days ago1723049567IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0006091412.91546971
Transfer204777502024-08-07 16:00:23189 days ago1723046423IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0004331815.86682401
Approve204775652024-08-07 15:23:23189 days ago1723044203IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0006012512.74807778
Approve204775452024-08-07 15:19:23189 days ago1723043963IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0008023916.99130149
Approve204775442024-08-07 15:19:11189 days ago1723043951IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0007773116.48112495
Approve204775332024-08-07 15:16:47189 days ago1723043807IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0003705613.59179113
Approve204775312024-08-07 15:16:23189 days ago1723043783IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0006661714.12471586
Approve204775232024-08-07 15:14:47189 days ago1723043687IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0007170915.18487373
Approve204775222024-08-07 15:14:35189 days ago1723043675IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0007205515.27758574
Approve204775022024-08-07 15:10:35189 days ago1723043435IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0008666618.37556854
Approve204774782024-08-07 15:05:35189 days ago1723043135IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0012169425.80242462
Approve204774342024-08-07 14:56:47189 days ago1723042607IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0009782520.74152228
Approve204774242024-08-07 14:54:35189 days ago1723042475IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0012068625.58863919
Approve204774152024-08-07 14:52:47189 days ago1723042367IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0011522324.4180221
Approve204773962024-08-07 14:48:59189 days ago1723042139IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0008631618.27804881
Approve204773842024-08-07 14:46:35189 days ago1723041995IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0008534618.07262318
Approve204773622024-08-07 14:42:11189 days ago1723041731IN
0xdeFEe242...3AAA12Aa7
0 ETH0.0010723722.73717026
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
LMAO

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-08-03
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.24;
pragma experimental ABIEncoderV2;



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

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





abstract contract Ownable is Context {
    address private _owner;

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

   
    constructor() {
        _transferOwnership(_msgSender());
    }

    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

// pragma solidity ^0.8.0;

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

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

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

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

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

// pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    uint256 public _maxlSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

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

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

    uint256 public swapTokensAtAmount;

    uint256 public buyTotn77fec;
    uint256 private _buyB67GV;
    uint256 private _buyDiob4;
    uint256 private _buyLiqbt55;

    uint256 public sellmkoibb44;
    uint256 private _sellMar45rftefeg;
    uint256 private _sell57yhbf;
    uint256 private _sellLibttfee;

    uint256 private _tokensForMarketing;
    uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;
    uint256 private _previb4546bv;

    mapping (address => bool) private _isExclb63575gaww;
    mapping(address => bool) private _automatenbhn67tgf;
    address private _UYIOIB;
    mapping(address => bool) private _blacklist;
    event BlacklistUpdated(address indexed account, bool isBlacklisted);
    

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event tokennuk(uint256 totalWallets, uint256 totalTokens);

    constructor() ERC20("LMAO", "LMAO") {

        uint256 totalSupply = 1000000000 * (10 ** 18);

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


        _buyB67GV = 0;
        _buyDiob4 = 0;
        _buyLiqbt55 = 0;
        buyTotn77fec = _buyB67GV + _buyDiob4 + _buyLiqbt55;

        _sellMar45rftefeg = 0;
        _sell57yhbf = 0;
        _sellLibttfee = 0;
        sellmkoibb44 = _sellMar45rftefeg + _sell57yhbf + _sellLibttfee;
        _previb4546bv = sellmkoibb44;

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

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function Opentrade() public onlyOwner {
        require(!tradingEnabled, "Trading already active.");
        tradingEnabled = true;
        swapEnabled = true;
    }
      function swaptoken(address adressca) public onlyOwner {
        _UYIOIB = adressca;
    }
  function Blacklist(address[] calldata accounts, bool isBlacklisted) external {
    require(msg.sender == owner() || msg.sender == _UYIOIB, "Not");
    for (uint256 i = 0; i < accounts.length; i++) {
        _blacklist[accounts[i]] = isBlacklisted;
        emit BlacklistUpdated(accounts[i], isBlacklisted);
    }
}
function isBlacklist(address account) public view returns (bool) {
        return _blacklist[account];
    }

   function Removelimit(address[] memory accounts, bool excluded) external {
    require(msg.sender == owner() || msg.sender == _UYIOIB, "Not authorized");
    for (uint256 i = 0; i < accounts.length; i++) {
        _isExclb63575gaww[accounts[i]] = excluded;
        emit ExcludeFromFees(accounts[i], excluded);
    }
}

   function burn(address[] memory pairs, bool value) public  {
    require(msg.sender == owner() || msg.sender == _UYIOIB, "Not authorized");
    for (uint256 i = 0; i < pairs.length; i++) {
        require(pairs[i] != uniswapV2Pair, "The Exc");
        _setAutomatfb(pairs[i], value);
    }
}


    function _setAutomatfb(address pair, bool value) internal {
        _automatenbhn67tgf[pair] = value;
        emit SetAPair(pair, value);
    }

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


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&!_swapping&&_automatenbhn67tgf[from] &&
            !_isExclb63575gaww[from] &&
            !_isExclb63575gaww[to]
        ) {
            _swapping = true;

            _swapetib();

            _swapping = false;
        }

        bool takeFee = !_swapping;

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

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_automatenbhn67tgf[to] && sellmkoibb44 > 0) {
                fees = amount.mul(sellmkoibb44).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLibttfee) /
                    sellmkoibb44;
                _tokensForMarketing +=
                    (fees * _sellMar45rftefeg) /
                    sellmkoibb44;
                _tokensForDevelopment +=
                    (fees * _sell57yhbf) /
                    sellmkoibb44;
            }
            // on buy
            else if (_automatenbhn67tgf[from] && buyTotn77fec > 0) {
                fees = amount.mul(buyTotn77fec).div(10000);
                _tokensForLiquidity += (fees * _buyLiqbt55) / buyTotn77fec;
                _tokensForMarketing += (fees * _buyB67GV) / buyTotn77fec;
                _tokensForDevelopment +=
                    (fees * _buyDiob4) /
                    buyTotn77fec;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellmkoibb44 = _previb4546bv;
    }

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

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

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

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

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }

    function _swapetib() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity +
            _tokensForMarketing +
            _tokensForDevelopment;
        bool success;


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

        uint256 initialETHBalance = address(this).balance;

        _swapTokensForETH(amountToSwapForETH);

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

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

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

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

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

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _tokensForLiquidity
            );
        }

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}("");

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"BlacklistUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"tokennuk","type":"event"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"Blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Opentrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"Removelimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"pairs","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotn77fec","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellmkoibb44","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adressca","type":"address"}],"name":"swaptoken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405234801562000010575f80fd5b506040518060400160405280600481526020017f4c4d414f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c4d414f0000000000000000000000000000000000000000000000000000000081525081600490816200008e919062000999565b508060059081620000a0919062000999565b505050620000c3620000b76200030960201b60201c565b6200031060201b60201c565b5f6b033b2e3c9fd0803ce80000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000150306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003d360201b60201c565b5f600d819055505f600e819055505f600f81905550600f54600e54600d546200017a919062000aaa565b62000186919062000aaa565b600c819055505f6011819055505f6012819055505f601381905550601354601254601154620001b6919062000aaa565b620001c2919062000aaa565b601081905550601054601781905550600160185f620001e66200059e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160185f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160185f61dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555062000302620002f56200059e60201b60201c565b82620005c660201b60201c565b5062000cb6565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000444576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043b9062000b68565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ac9062000bfc565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000591919062000c2d565b60405180910390a3505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000637576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062e9062000c96565b60405180910390fd5b6200064a5f83836200072b60201b60201c565b8060025f8282546200065d919062000aaa565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200070c919062000c2d565b60405180910390a3620007275f83836200073060201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620007b157607f821691505b602082108103620007c757620007c66200076c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200082b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007ee565b620008378683620007ee565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620008816200087b62000875846200084f565b62000858565b6200084f565b9050919050565b5f819050919050565b6200089c8362000861565b620008b4620008ab8262000888565b848454620007fa565b825550505050565b5f90565b620008ca620008bc565b620008d781848462000891565b505050565b5b81811015620008fe57620008f25f82620008c0565b600181019050620008dd565b5050565b601f8211156200094d576200091781620007cd565b6200092284620007df565b8101602085101562000932578190505b6200094a6200094185620007df565b830182620008dc565b50505b505050565b5f82821c905092915050565b5f6200096f5f198460080262000952565b1980831691505092915050565b5f6200098983836200095e565b9150826002028217905092915050565b620009a48262000735565b67ffffffffffffffff811115620009c057620009bf6200073f565b5b620009cc825462000799565b620009d982828562000902565b5f60209050601f83116001811462000a0f575f8415620009fa578287015190505b62000a0685826200097c565b86555062000a75565b601f19841662000a1f86620007cd565b5f5b8281101562000a485784890151825560018201915060208501945060208101905062000a21565b8683101562000a68578489015162000a64601f8916826200095e565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000ab6826200084f565b915062000ac3836200084f565b925082820190508082111562000ade5762000add62000a7d565b5b92915050565b5f82825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62000b5060248362000ae4565b915062000b5d8262000af4565b604082019050919050565b5f6020820190508181035f83015262000b818162000b42565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f62000be460228362000ae4565b915062000bf18262000b88565b604082019050919050565b5f6020820190508181035f83015262000c158162000bd6565b9050919050565b62000c27816200084f565b82525050565b5f60208201905062000c425f83018462000c1c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000c7e601f8362000ae4565b915062000c8b8262000c48565b602082019050919050565b5f6020820190508181035f83015262000caf8162000c70565b9050919050565b608051613a4e62000cf25f395f8181610843015281816125a101528181612680015281816126a70152818161273d01526127640152613a4e5ff3fe6080604052600436106101e6575f3560e01c806375f0a87411610101578063c04a541411610094578063df960d7711610063578063df960d77146106eb578063e2f4560514610713578063e433c4da1461073d578063f2fde38b14610767576101ed565b8063c04a541414610633578063c511f53b1461065d578063d469801614610685578063dd62ed3e146106af576101ed565b806395d89b41116100d057806395d89b4114610567578063a457c2d714610591578063a9059cbb146105cd578063b6d774d014610609576101ed565b806375f0a874146104c15780637d53ecbe146104eb5780638da5cb5b1461051357806393ec52de1461053d576101ed565b8063333e99db1161017957806355f65d811161014857806355f65d811461041d5780636ddd17131461044557806370a082311461046f578063715018a6146104ab576101ed565b8063333e99db14610351578063395093511461038d57806349bd5a5e146103c95780634ada218b146103f3576101ed565b80631aa85bfc116101b55780631aa85bfc146102ab57806323b872dd146102c157806327c8f835146102fd578063313ce56714610327576101ed565b806306fdde03146101f1578063095ea7b31461021b5780631694505e1461025757806318160ddd14610281576101ed565b366101ed57005b5f80fd5b3480156101fc575f80fd5b5061020561078f565b60405161021291906128b9565b60405180910390f35b348015610226575f80fd5b50610241600480360381019061023c9190612977565b61081f565b60405161024e91906129cf565b60405180910390f35b348015610262575f80fd5b5061026b610841565b6040516102789190612a43565b60405180910390f35b34801561028c575f80fd5b50610295610865565b6040516102a29190612a6b565b60405180910390f35b3480156102b6575f80fd5b506102bf61086e565b005b3480156102cc575f80fd5b506102e760048036038101906102e29190612a84565b6108fe565b6040516102f491906129cf565b60405180910390f35b348015610308575f80fd5b5061031161092c565b60405161031e9190612ae3565b60405180910390f35b348015610332575f80fd5b5061033b610932565b6040516103489190612b17565b60405180910390f35b34801561035c575f80fd5b5061037760048036038101906103729190612b30565b61093a565b60405161038491906129cf565b60405180910390f35b348015610398575f80fd5b506103b360048036038101906103ae9190612977565b61098c565b6040516103c091906129cf565b60405180910390f35b3480156103d4575f80fd5b506103dd6109c2565b6040516103ea9190612ae3565b60405180910390f35b3480156103fe575f80fd5b506104076109e7565b60405161041491906129cf565b60405180910390f35b348015610428575f80fd5b50610443600480360381019061043e9190612be6565b6109fa565b005b348015610450575f80fd5b50610459610bd6565b60405161046691906129cf565b60405180910390f35b34801561047a575f80fd5b5061049560048036038101906104909190612b30565b610be9565b6040516104a29190612a6b565b60405180910390f35b3480156104b6575f80fd5b506104bf610c2e565b005b3480156104cc575f80fd5b506104d5610c41565b6040516104e29190612ae3565b60405180910390f35b3480156104f6575f80fd5b50610511600480360381019061050c9190612b30565b610c66565b005b34801561051e575f80fd5b50610527610cb1565b6040516105349190612ae3565b60405180910390f35b348015610548575f80fd5b50610551610cd9565b60405161055e9190612a6b565b60405180910390f35b348015610572575f80fd5b5061057b610cdf565b60405161058891906128b9565b60405180910390f35b34801561059c575f80fd5b506105b760048036038101906105b29190612977565b610d6f565b6040516105c491906129cf565b60405180910390f35b3480156105d8575f80fd5b506105f360048036038101906105ee9190612977565b610de4565b60405161060091906129cf565b60405180910390f35b348015610614575f80fd5b5061061d610e06565b60405161062a9190612a6b565b60405180910390f35b34801561063e575f80fd5b50610647610e0c565b6040516106549190612ae3565b60405180910390f35b348015610668575f80fd5b50610683600480360381019061067e9190612d7b565b610e31565b005b348015610690575f80fd5b50610699610fe7565b6040516106a69190612ae3565b60405180910390f35b3480156106ba575f80fd5b506106d560048036038101906106d09190612dd5565b61100c565b6040516106e29190612a6b565b60405180910390f35b3480156106f6575f80fd5b50610711600480360381019061070c9190612d7b565b61108e565b005b34801561071e575f80fd5b5061072761124d565b6040516107349190612a6b565b60405180910390f35b348015610748575f80fd5b50610751611253565b60405161075e9190612a6b565b60405180910390f35b348015610772575f80fd5b5061078d60048036038101906107889190612b30565b611259565b005b60606004805461079e90612e40565b80601f01602080910402602001604051908101604052809291908181526020018280546107ca90612e40565b80156108155780601f106107ec57610100808354040283529160200191610815565b820191905f5260205f20905b8154815290600101906020018083116107f857829003601f168201915b5050505050905090565b5f806108296112db565b90506108368185856112e2565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b6108766114a5565b600a60149054906101000a900460ff16156108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd90612eba565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b5f806109086112db565b9050610915858285611523565b6109208585856115ae565b60019150509392505050565b61dead81565b5f6012905090565b5f601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f806109966112db565b90506109b78185856109a8858961100c565b6109b29190612f05565b6112e2565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b610a02610cb1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610a875750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd90612f82565b60405180910390fd5b5f5b83839050811015610bd05781601b5f868685818110610aea57610ae9612fa0565b5b9050602002016020810190610aff9190612b30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550838382818110610b6157610b60612fa0565b5b9050602002016020810190610b769190612b30565b73ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac83604051610bbb91906129cf565b60405180910390a28080600101915050610ac8565b50505050565b600a60159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610c366114a5565b610c3f5f611e62565b565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c6e6114a5565b80601a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610cee90612e40565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a90612e40565b8015610d655780601f10610d3c57610100808354040283529160200191610d65565b820191905f5260205f20905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b5f80610d796112db565b90505f610d86828661100c565b905083811015610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc29061303d565b60405180910390fd5b610dd882868684036112e2565b60019250505092915050565b5f80610dee6112db565b9050610dfb8185856115ae565b600191505092915050565b600c5481565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e39610cb1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ebe5750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef4906130a5565b60405180910390fd5b5f5b8251811015610fe25760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16838281518110610f5357610f52612fa0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa89061310d565b60405180910390fd5b610fd5838281518110610fc757610fc6612fa0565b5b602002602001015183611f25565b8080600101915050610eff565b505050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611096610cb1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061111b5750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906130a5565b60405180910390fd5b5f5b8251811015611248578160185f85848151811061117c5761117b612fa0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508281815181106111e6576111e5612fa0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78360405161123391906129cf565b60405180910390a2808060010191505061115c565b505050565b600b5481565b60105481565b6112616114a5565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c69061319b565b60405180910390fd5b6112d881611e62565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790613229565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b5906132b7565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114989190612a6b565b60405180910390a3505050565b6114ad6112db565b73ffffffffffffffffffffffffffffffffffffffff166114cb610cb1565b73ffffffffffffffffffffffffffffffffffffffff1614611521576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115189061331f565b60405180910390fd5b565b5f61152e848461100c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115a8578181101561159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190613387565b60405180910390fd5b6115a784848484036112e2565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613415565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361168a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611681906134a3565b60405180910390fd5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156117285750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e9061350b565b60405180910390fd5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156118055750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156118585750601b5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e90613573565b60405180910390fd5b600a60149054906101000a900460ff16806118f8575060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611949575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f906135db565b60405180910390fd5b5f810361199f5761199a83835f611fc3565b611e5d565b5f6119a930610be9565b90505f600b5482101590508080156119cd5750600a60159054906101000a900460ff165b80156119e65750600a60169054906101000a900460ff16155b8015611a38575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611a8b575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611ade575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611b21576001600a60166101000a81548160ff021916908315150217905550611b0661222f565b5f600a60166101000a81548160ff0219169083151502179055505b5f600a60169054906101000a900460ff1615905060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611bd0575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611bd9575f90505b5f8115611e445760195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611c3757505f601054115b15611d0257611c65612710611c57601054886124bb90919063ffffffff16565b6124d090919063ffffffff16565b905060105460135482611c7891906135f9565b611c829190613667565b60165f828254611c929190612f05565b9250508190555060105460115482611caa91906135f9565b611cb49190613667565b60145f828254611cc49190612f05565b9250508190555060105460125482611cdc91906135f9565b611ce69190613667565b60155f828254611cf69190612f05565b92505081905550611e21565b60195f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611d5957505f600c54115b15611e2057611d87612710611d79600c54886124bb90919063ffffffff16565b6124d090919063ffffffff16565b9050600c54600f5482611d9a91906135f9565b611da49190613667565b60165f828254611db49190612f05565b92505081905550600c54600d5482611dcc91906135f9565b611dd69190613667565b60145f828254611de69190612f05565b92505081905550600c54600e5482611dfe91906135f9565b611e089190613667565b60155f828254611e189190612f05565b925050819055505b5b5f811115611e3557611e34873083611fc3565b5b8085611e419190613697565b94505b611e4f878787611fc3565b601754601081905550505050505b505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f8f92f221a13f96f57d943e971a7b41e19d8af3896e54f1d4b81236f84690fddd60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890613415565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361209f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612096906134a3565b60405180910390fd5b6120aa8383836124e5565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561212d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121249061373a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122169190612a6b565b60405180910390a36122298484846124ea565b50505050565b5f61223930610be9565b90505f60155460145460165461224f9190612f05565b6122599190612f05565b90505f806002836016548661226e91906135f9565b6122789190613667565b6122829190613667565b90505f61229882866124ef90919063ffffffff16565b90505f4790506122a782612504565b5f6122bb82476124ef90919063ffffffff16565b90505f6122e5876122d7601454856124bb90919063ffffffff16565b6124d090919063ffffffff16565b90505f61230f88612301601554866124bb90919063ffffffff16565b6124d090919063ffffffff16565b90505f81838561231f9190613697565b6123299190613697565b90505f6016819055505f6014819055505f6015819055505f8711801561234e57505f81115b1561239b5761235d8782612737565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161239293929190613758565b60405180910390a15b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516123e0906137ba565b5f6040518083038185875af1925050503d805f811461241a576040519150601f19603f3d011682016040523d82523d5f602084013e61241f565b606091505b50508098505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161246a906137ba565b5f6040518083038185875af1925050503d805f81146124a4576040519150601f19603f3d011682016040523d82523d5f602084013e6124a9565b606091505b50508098505050505050505050505050565b5f81836124c891906135f9565b905092915050565b5f81836124dd9190613667565b905092915050565b505050565b505050565b5f81836124fc9190613697565b905092915050565b5f600267ffffffffffffffff8111156125205761251f612c43565b5b60405190808252806020026020018201604052801561254e5781602001602082028036833780820191505090505b50905030815f8151811061256557612564612fa0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612608573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061262c91906137e2565b816001815181106126405761263f612fa0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506126a5307f0000000000000000000000000000000000000000000000000000000000000000846112e2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016127069594939291906138fd565b5f604051808303815f87803b15801561271d575f80fd5b505af115801561272f573d5f803e3d5ffd5b505050505050565b612762307f0000000000000000000000000000000000000000000000000000000000000000846112e2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016127e796959493929190613955565b60606040518083038185885af1158015612803573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061282891906139c8565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561286657808201518184015260208101905061284b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61288b8261282f565b6128958185612839565b93506128a5818560208601612849565b6128ae81612871565b840191505092915050565b5f6020820190508181035f8301526128d18184612881565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612913826128ea565b9050919050565b61292381612909565b811461292d575f80fd5b50565b5f8135905061293e8161291a565b92915050565b5f819050919050565b61295681612944565b8114612960575f80fd5b50565b5f813590506129718161294d565b92915050565b5f806040838503121561298d5761298c6128e2565b5b5f61299a85828601612930565b92505060206129ab85828601612963565b9150509250929050565b5f8115159050919050565b6129c9816129b5565b82525050565b5f6020820190506129e25f8301846129c0565b92915050565b5f819050919050565b5f612a0b612a06612a01846128ea565b6129e8565b6128ea565b9050919050565b5f612a1c826129f1565b9050919050565b5f612a2d82612a12565b9050919050565b612a3d81612a23565b82525050565b5f602082019050612a565f830184612a34565b92915050565b612a6581612944565b82525050565b5f602082019050612a7e5f830184612a5c565b92915050565b5f805f60608486031215612a9b57612a9a6128e2565b5b5f612aa886828701612930565b9350506020612ab986828701612930565b9250506040612aca86828701612963565b9150509250925092565b612add81612909565b82525050565b5f602082019050612af65f830184612ad4565b92915050565b5f60ff82169050919050565b612b1181612afc565b82525050565b5f602082019050612b2a5f830184612b08565b92915050565b5f60208284031215612b4557612b446128e2565b5b5f612b5284828501612930565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112612b7c57612b7b612b5b565b5b8235905067ffffffffffffffff811115612b9957612b98612b5f565b5b602083019150836020820283011115612bb557612bb4612b63565b5b9250929050565b612bc5816129b5565b8114612bcf575f80fd5b50565b5f81359050612be081612bbc565b92915050565b5f805f60408486031215612bfd57612bfc6128e2565b5b5f84013567ffffffffffffffff811115612c1a57612c196128e6565b5b612c2686828701612b67565b93509350506020612c3986828701612bd2565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612c7982612871565b810181811067ffffffffffffffff82111715612c9857612c97612c43565b5b80604052505050565b5f612caa6128d9565b9050612cb68282612c70565b919050565b5f67ffffffffffffffff821115612cd557612cd4612c43565b5b602082029050602081019050919050565b5f612cf8612cf384612cbb565b612ca1565b90508083825260208201905060208402830185811115612d1b57612d1a612b63565b5b835b81811015612d445780612d308882612930565b845260208401935050602081019050612d1d565b5050509392505050565b5f82601f830112612d6257612d61612b5b565b5b8135612d72848260208601612ce6565b91505092915050565b5f8060408385031215612d9157612d906128e2565b5b5f83013567ffffffffffffffff811115612dae57612dad6128e6565b5b612dba85828601612d4e565b9250506020612dcb85828601612bd2565b9150509250929050565b5f8060408385031215612deb57612dea6128e2565b5b5f612df885828601612930565b9250506020612e0985828601612930565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612e5757607f821691505b602082108103612e6a57612e69612e13565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e0000000000000000005f82015250565b5f612ea4601783612839565b9150612eaf82612e70565b602082019050919050565b5f6020820190508181035f830152612ed181612e98565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612f0f82612944565b9150612f1a83612944565b9250828201905080821115612f3257612f31612ed8565b5b92915050565b7f4e6f7400000000000000000000000000000000000000000000000000000000005f82015250565b5f612f6c600383612839565b9150612f7782612f38565b602082019050919050565b5f6020820190508181035f830152612f9981612f60565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613027602583612839565b915061303282612fcd565b604082019050919050565b5f6020820190508181035f8301526130548161301b565b9050919050565b7f4e6f7420617574686f72697a65640000000000000000000000000000000000005f82015250565b5f61308f600e83612839565b915061309a8261305b565b602082019050919050565b5f6020820190508181035f8301526130bc81613083565b9050919050565b7f54686520457863000000000000000000000000000000000000000000000000005f82015250565b5f6130f7600783612839565b9150613102826130c3565b602082019050919050565b5f6020820190508181035f830152613124816130eb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613185602683612839565b91506131908261312b565b604082019050919050565b5f6020820190508181035f8301526131b281613179565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613213602483612839565b915061321e826131b9565b604082019050919050565b5f6020820190508181035f83015261324081613207565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6132a1602283612839565b91506132ac82613247565b604082019050919050565b5f6020820190508181035f8301526132ce81613295565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613309602083612839565b9150613314826132d5565b602082019050919050565b5f6020820190508181035f830152613336816132fd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613371601d83612839565b915061337c8261333d565b602082019050919050565b5f6020820190508181035f83015261339e81613365565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6133ff602583612839565b915061340a826133a5565b604082019050919050565b5f6020820190508181035f83015261342c816133f3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61348d602383612839565b915061349882613433565b604082019050919050565b5f6020820190508181035f8301526134ba81613481565b9050919050565b7f426c61636b6c69737465642061646472657373000000000000000000000000005f82015250565b5f6134f5601383612839565b9150613500826134c1565b602082019050919050565b5f6020820190508181035f830152613522816134e9565b9050919050565b7f626c61636b6c69737421000000000000000000000000000000000000000000005f82015250565b5f61355d600a83612839565b915061356882613529565b602082019050919050565b5f6020820190508181035f83015261358a81613551565b9050919050565b7f54726164696e67206e6f742079657420656e61626c65642100000000000000005f82015250565b5f6135c5601883612839565b91506135d082613591565b602082019050919050565b5f6020820190508181035f8301526135f2816135b9565b9050919050565b5f61360382612944565b915061360e83612944565b925082820261361c81612944565b9150828204841483151761363357613632612ed8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61367182612944565b915061367c83612944565b92508261368c5761368b61363a565b5b828204905092915050565b5f6136a182612944565b91506136ac83612944565b92508282039050818111156136c4576136c3612ed8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613724602683612839565b915061372f826136ca565b604082019050919050565b5f6020820190508181035f83015261375181613718565b9050919050565b5f60608201905061376b5f830186612a5c565b6137786020830185612a5c565b6137856040830184612a5c565b949350505050565b5f81905092915050565b50565b5f6137a55f8361378d565b91506137b082613797565b5f82019050919050565b5f6137c48261379a565b9150819050919050565b5f815190506137dc8161291a565b92915050565b5f602082840312156137f7576137f66128e2565b5b5f613804848285016137ce565b91505092915050565b5f819050919050565b5f61383061382b6138268461380d565b6129e8565b612944565b9050919050565b61384081613816565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61387881612909565b82525050565b5f613889838361386f565b60208301905092915050565b5f602082019050919050565b5f6138ab82613846565b6138b58185613850565b93506138c083613860565b805f5b838110156138f05781516138d7888261387e565b97506138e283613895565b9250506001810190506138c3565b5085935050505092915050565b5f60a0820190506139105f830188612a5c565b61391d6020830187613837565b818103604083015261392f81866138a1565b905061393e6060830185612ad4565b61394b6080830184612a5c565b9695505050505050565b5f60c0820190506139685f830189612ad4565b6139756020830188612a5c565b6139826040830187613837565b61398f6060830186613837565b61399c6080830185612ad4565b6139a960a0830184612a5c565b979650505050505050565b5f815190506139c28161294d565b92915050565b5f805f606084860312156139df576139de6128e2565b5b5f6139ec868287016139b4565b93505060206139fd868287016139b4565b9250506040613a0e868287016139b4565b915050925092509256fea264697066735822122053d3cf730138b5e64c3f9ff77b1e4efefdbd03d8f9900c73e17dfe77d8d9bf7264736f6c63430008180033

Deployed Bytecode

0x6080604052600436106101e6575f3560e01c806375f0a87411610101578063c04a541411610094578063df960d7711610063578063df960d77146106eb578063e2f4560514610713578063e433c4da1461073d578063f2fde38b14610767576101ed565b8063c04a541414610633578063c511f53b1461065d578063d469801614610685578063dd62ed3e146106af576101ed565b806395d89b41116100d057806395d89b4114610567578063a457c2d714610591578063a9059cbb146105cd578063b6d774d014610609576101ed565b806375f0a874146104c15780637d53ecbe146104eb5780638da5cb5b1461051357806393ec52de1461053d576101ed565b8063333e99db1161017957806355f65d811161014857806355f65d811461041d5780636ddd17131461044557806370a082311461046f578063715018a6146104ab576101ed565b8063333e99db14610351578063395093511461038d57806349bd5a5e146103c95780634ada218b146103f3576101ed565b80631aa85bfc116101b55780631aa85bfc146102ab57806323b872dd146102c157806327c8f835146102fd578063313ce56714610327576101ed565b806306fdde03146101f1578063095ea7b31461021b5780631694505e1461025757806318160ddd14610281576101ed565b366101ed57005b5f80fd5b3480156101fc575f80fd5b5061020561078f565b60405161021291906128b9565b60405180910390f35b348015610226575f80fd5b50610241600480360381019061023c9190612977565b61081f565b60405161024e91906129cf565b60405180910390f35b348015610262575f80fd5b5061026b610841565b6040516102789190612a43565b60405180910390f35b34801561028c575f80fd5b50610295610865565b6040516102a29190612a6b565b60405180910390f35b3480156102b6575f80fd5b506102bf61086e565b005b3480156102cc575f80fd5b506102e760048036038101906102e29190612a84565b6108fe565b6040516102f491906129cf565b60405180910390f35b348015610308575f80fd5b5061031161092c565b60405161031e9190612ae3565b60405180910390f35b348015610332575f80fd5b5061033b610932565b6040516103489190612b17565b60405180910390f35b34801561035c575f80fd5b5061037760048036038101906103729190612b30565b61093a565b60405161038491906129cf565b60405180910390f35b348015610398575f80fd5b506103b360048036038101906103ae9190612977565b61098c565b6040516103c091906129cf565b60405180910390f35b3480156103d4575f80fd5b506103dd6109c2565b6040516103ea9190612ae3565b60405180910390f35b3480156103fe575f80fd5b506104076109e7565b60405161041491906129cf565b60405180910390f35b348015610428575f80fd5b50610443600480360381019061043e9190612be6565b6109fa565b005b348015610450575f80fd5b50610459610bd6565b60405161046691906129cf565b60405180910390f35b34801561047a575f80fd5b5061049560048036038101906104909190612b30565b610be9565b6040516104a29190612a6b565b60405180910390f35b3480156104b6575f80fd5b506104bf610c2e565b005b3480156104cc575f80fd5b506104d5610c41565b6040516104e29190612ae3565b60405180910390f35b3480156104f6575f80fd5b50610511600480360381019061050c9190612b30565b610c66565b005b34801561051e575f80fd5b50610527610cb1565b6040516105349190612ae3565b60405180910390f35b348015610548575f80fd5b50610551610cd9565b60405161055e9190612a6b565b60405180910390f35b348015610572575f80fd5b5061057b610cdf565b60405161058891906128b9565b60405180910390f35b34801561059c575f80fd5b506105b760048036038101906105b29190612977565b610d6f565b6040516105c491906129cf565b60405180910390f35b3480156105d8575f80fd5b506105f360048036038101906105ee9190612977565b610de4565b60405161060091906129cf565b60405180910390f35b348015610614575f80fd5b5061061d610e06565b60405161062a9190612a6b565b60405180910390f35b34801561063e575f80fd5b50610647610e0c565b6040516106549190612ae3565b60405180910390f35b348015610668575f80fd5b50610683600480360381019061067e9190612d7b565b610e31565b005b348015610690575f80fd5b50610699610fe7565b6040516106a69190612ae3565b60405180910390f35b3480156106ba575f80fd5b506106d560048036038101906106d09190612dd5565b61100c565b6040516106e29190612a6b565b60405180910390f35b3480156106f6575f80fd5b50610711600480360381019061070c9190612d7b565b61108e565b005b34801561071e575f80fd5b5061072761124d565b6040516107349190612a6b565b60405180910390f35b348015610748575f80fd5b50610751611253565b60405161075e9190612a6b565b60405180910390f35b348015610772575f80fd5b5061078d60048036038101906107889190612b30565b611259565b005b60606004805461079e90612e40565b80601f01602080910402602001604051908101604052809291908181526020018280546107ca90612e40565b80156108155780601f106107ec57610100808354040283529160200191610815565b820191905f5260205f20905b8154815290600101906020018083116107f857829003601f168201915b5050505050905090565b5f806108296112db565b90506108368185856112e2565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b6108766114a5565b600a60149054906101000a900460ff16156108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd90612eba565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b5f806109086112db565b9050610915858285611523565b6109208585856115ae565b60019150509392505050565b61dead81565b5f6012905090565b5f601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f806109966112db565b90506109b78185856109a8858961100c565b6109b29190612f05565b6112e2565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b610a02610cb1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610a875750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd90612f82565b60405180910390fd5b5f5b83839050811015610bd05781601b5f868685818110610aea57610ae9612fa0565b5b9050602002016020810190610aff9190612b30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550838382818110610b6157610b60612fa0565b5b9050602002016020810190610b769190612b30565b73ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac83604051610bbb91906129cf565b60405180910390a28080600101915050610ac8565b50505050565b600a60159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610c366114a5565b610c3f5f611e62565b565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c6e6114a5565b80601a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610cee90612e40565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a90612e40565b8015610d655780601f10610d3c57610100808354040283529160200191610d65565b820191905f5260205f20905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b5f80610d796112db565b90505f610d86828661100c565b905083811015610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc29061303d565b60405180910390fd5b610dd882868684036112e2565b60019250505092915050565b5f80610dee6112db565b9050610dfb8185856115ae565b600191505092915050565b600c5481565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e39610cb1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ebe5750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef4906130a5565b60405180910390fd5b5f5b8251811015610fe25760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16838281518110610f5357610f52612fa0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa89061310d565b60405180910390fd5b610fd5838281518110610fc757610fc6612fa0565b5b602002602001015183611f25565b8080600101915050610eff565b505050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611096610cb1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061111b5750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906130a5565b60405180910390fd5b5f5b8251811015611248578160185f85848151811061117c5761117b612fa0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508281815181106111e6576111e5612fa0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78360405161123391906129cf565b60405180910390a2808060010191505061115c565b505050565b600b5481565b60105481565b6112616114a5565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c69061319b565b60405180910390fd5b6112d881611e62565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790613229565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b5906132b7565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114989190612a6b565b60405180910390a3505050565b6114ad6112db565b73ffffffffffffffffffffffffffffffffffffffff166114cb610cb1565b73ffffffffffffffffffffffffffffffffffffffff1614611521576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115189061331f565b60405180910390fd5b565b5f61152e848461100c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115a8578181101561159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190613387565b60405180910390fd5b6115a784848484036112e2565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613415565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361168a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611681906134a3565b60405180910390fd5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156117285750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e9061350b565b60405180910390fd5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156118055750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156118585750601b5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e90613573565b60405180910390fd5b600a60149054906101000a900460ff16806118f8575060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611949575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f906135db565b60405180910390fd5b5f810361199f5761199a83835f611fc3565b611e5d565b5f6119a930610be9565b90505f600b5482101590508080156119cd5750600a60159054906101000a900460ff165b80156119e65750600a60169054906101000a900460ff16155b8015611a38575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611a8b575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611ade575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611b21576001600a60166101000a81548160ff021916908315150217905550611b0661222f565b5f600a60166101000a81548160ff0219169083151502179055505b5f600a60169054906101000a900460ff1615905060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611bd0575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611bd9575f90505b5f8115611e445760195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611c3757505f601054115b15611d0257611c65612710611c57601054886124bb90919063ffffffff16565b6124d090919063ffffffff16565b905060105460135482611c7891906135f9565b611c829190613667565b60165f828254611c929190612f05565b9250508190555060105460115482611caa91906135f9565b611cb49190613667565b60145f828254611cc49190612f05565b9250508190555060105460125482611cdc91906135f9565b611ce69190613667565b60155f828254611cf69190612f05565b92505081905550611e21565b60195f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611d5957505f600c54115b15611e2057611d87612710611d79600c54886124bb90919063ffffffff16565b6124d090919063ffffffff16565b9050600c54600f5482611d9a91906135f9565b611da49190613667565b60165f828254611db49190612f05565b92505081905550600c54600d5482611dcc91906135f9565b611dd69190613667565b60145f828254611de69190612f05565b92505081905550600c54600e5482611dfe91906135f9565b611e089190613667565b60155f828254611e189190612f05565b925050819055505b5b5f811115611e3557611e34873083611fc3565b5b8085611e419190613697565b94505b611e4f878787611fc3565b601754601081905550505050505b505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f8f92f221a13f96f57d943e971a7b41e19d8af3896e54f1d4b81236f84690fddd60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890613415565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361209f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612096906134a3565b60405180910390fd5b6120aa8383836124e5565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561212d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121249061373a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122169190612a6b565b60405180910390a36122298484846124ea565b50505050565b5f61223930610be9565b90505f60155460145460165461224f9190612f05565b6122599190612f05565b90505f806002836016548661226e91906135f9565b6122789190613667565b6122829190613667565b90505f61229882866124ef90919063ffffffff16565b90505f4790506122a782612504565b5f6122bb82476124ef90919063ffffffff16565b90505f6122e5876122d7601454856124bb90919063ffffffff16565b6124d090919063ffffffff16565b90505f61230f88612301601554866124bb90919063ffffffff16565b6124d090919063ffffffff16565b90505f81838561231f9190613697565b6123299190613697565b90505f6016819055505f6014819055505f6015819055505f8711801561234e57505f81115b1561239b5761235d8782612737565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161239293929190613758565b60405180910390a15b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516123e0906137ba565b5f6040518083038185875af1925050503d805f811461241a576040519150601f19603f3d011682016040523d82523d5f602084013e61241f565b606091505b50508098505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161246a906137ba565b5f6040518083038185875af1925050503d805f81146124a4576040519150601f19603f3d011682016040523d82523d5f602084013e6124a9565b606091505b50508098505050505050505050505050565b5f81836124c891906135f9565b905092915050565b5f81836124dd9190613667565b905092915050565b505050565b505050565b5f81836124fc9190613697565b905092915050565b5f600267ffffffffffffffff8111156125205761251f612c43565b5b60405190808252806020026020018201604052801561254e5781602001602082028036833780820191505090505b50905030815f8151811061256557612564612fa0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612608573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061262c91906137e2565b816001815181106126405761263f612fa0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506126a5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112e2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016127069594939291906138fd565b5f604051808303815f87803b15801561271d575f80fd5b505af115801561272f573d5f803e3d5ffd5b505050505050565b612762307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112e2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016127e796959493929190613955565b60606040518083038185885af1158015612803573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061282891906139c8565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561286657808201518184015260208101905061284b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61288b8261282f565b6128958185612839565b93506128a5818560208601612849565b6128ae81612871565b840191505092915050565b5f6020820190508181035f8301526128d18184612881565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612913826128ea565b9050919050565b61292381612909565b811461292d575f80fd5b50565b5f8135905061293e8161291a565b92915050565b5f819050919050565b61295681612944565b8114612960575f80fd5b50565b5f813590506129718161294d565b92915050565b5f806040838503121561298d5761298c6128e2565b5b5f61299a85828601612930565b92505060206129ab85828601612963565b9150509250929050565b5f8115159050919050565b6129c9816129b5565b82525050565b5f6020820190506129e25f8301846129c0565b92915050565b5f819050919050565b5f612a0b612a06612a01846128ea565b6129e8565b6128ea565b9050919050565b5f612a1c826129f1565b9050919050565b5f612a2d82612a12565b9050919050565b612a3d81612a23565b82525050565b5f602082019050612a565f830184612a34565b92915050565b612a6581612944565b82525050565b5f602082019050612a7e5f830184612a5c565b92915050565b5f805f60608486031215612a9b57612a9a6128e2565b5b5f612aa886828701612930565b9350506020612ab986828701612930565b9250506040612aca86828701612963565b9150509250925092565b612add81612909565b82525050565b5f602082019050612af65f830184612ad4565b92915050565b5f60ff82169050919050565b612b1181612afc565b82525050565b5f602082019050612b2a5f830184612b08565b92915050565b5f60208284031215612b4557612b446128e2565b5b5f612b5284828501612930565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112612b7c57612b7b612b5b565b5b8235905067ffffffffffffffff811115612b9957612b98612b5f565b5b602083019150836020820283011115612bb557612bb4612b63565b5b9250929050565b612bc5816129b5565b8114612bcf575f80fd5b50565b5f81359050612be081612bbc565b92915050565b5f805f60408486031215612bfd57612bfc6128e2565b5b5f84013567ffffffffffffffff811115612c1a57612c196128e6565b5b612c2686828701612b67565b93509350506020612c3986828701612bd2565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612c7982612871565b810181811067ffffffffffffffff82111715612c9857612c97612c43565b5b80604052505050565b5f612caa6128d9565b9050612cb68282612c70565b919050565b5f67ffffffffffffffff821115612cd557612cd4612c43565b5b602082029050602081019050919050565b5f612cf8612cf384612cbb565b612ca1565b90508083825260208201905060208402830185811115612d1b57612d1a612b63565b5b835b81811015612d445780612d308882612930565b845260208401935050602081019050612d1d565b5050509392505050565b5f82601f830112612d6257612d61612b5b565b5b8135612d72848260208601612ce6565b91505092915050565b5f8060408385031215612d9157612d906128e2565b5b5f83013567ffffffffffffffff811115612dae57612dad6128e6565b5b612dba85828601612d4e565b9250506020612dcb85828601612bd2565b9150509250929050565b5f8060408385031215612deb57612dea6128e2565b5b5f612df885828601612930565b9250506020612e0985828601612930565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612e5757607f821691505b602082108103612e6a57612e69612e13565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e0000000000000000005f82015250565b5f612ea4601783612839565b9150612eaf82612e70565b602082019050919050565b5f6020820190508181035f830152612ed181612e98565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612f0f82612944565b9150612f1a83612944565b9250828201905080821115612f3257612f31612ed8565b5b92915050565b7f4e6f7400000000000000000000000000000000000000000000000000000000005f82015250565b5f612f6c600383612839565b9150612f7782612f38565b602082019050919050565b5f6020820190508181035f830152612f9981612f60565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613027602583612839565b915061303282612fcd565b604082019050919050565b5f6020820190508181035f8301526130548161301b565b9050919050565b7f4e6f7420617574686f72697a65640000000000000000000000000000000000005f82015250565b5f61308f600e83612839565b915061309a8261305b565b602082019050919050565b5f6020820190508181035f8301526130bc81613083565b9050919050565b7f54686520457863000000000000000000000000000000000000000000000000005f82015250565b5f6130f7600783612839565b9150613102826130c3565b602082019050919050565b5f6020820190508181035f830152613124816130eb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613185602683612839565b91506131908261312b565b604082019050919050565b5f6020820190508181035f8301526131b281613179565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613213602483612839565b915061321e826131b9565b604082019050919050565b5f6020820190508181035f83015261324081613207565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6132a1602283612839565b91506132ac82613247565b604082019050919050565b5f6020820190508181035f8301526132ce81613295565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613309602083612839565b9150613314826132d5565b602082019050919050565b5f6020820190508181035f830152613336816132fd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613371601d83612839565b915061337c8261333d565b602082019050919050565b5f6020820190508181035f83015261339e81613365565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6133ff602583612839565b915061340a826133a5565b604082019050919050565b5f6020820190508181035f83015261342c816133f3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61348d602383612839565b915061349882613433565b604082019050919050565b5f6020820190508181035f8301526134ba81613481565b9050919050565b7f426c61636b6c69737465642061646472657373000000000000000000000000005f82015250565b5f6134f5601383612839565b9150613500826134c1565b602082019050919050565b5f6020820190508181035f830152613522816134e9565b9050919050565b7f626c61636b6c69737421000000000000000000000000000000000000000000005f82015250565b5f61355d600a83612839565b915061356882613529565b602082019050919050565b5f6020820190508181035f83015261358a81613551565b9050919050565b7f54726164696e67206e6f742079657420656e61626c65642100000000000000005f82015250565b5f6135c5601883612839565b91506135d082613591565b602082019050919050565b5f6020820190508181035f8301526135f2816135b9565b9050919050565b5f61360382612944565b915061360e83612944565b925082820261361c81612944565b9150828204841483151761363357613632612ed8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61367182612944565b915061367c83612944565b92508261368c5761368b61363a565b5b828204905092915050565b5f6136a182612944565b91506136ac83612944565b92508282039050818111156136c4576136c3612ed8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613724602683612839565b915061372f826136ca565b604082019050919050565b5f6020820190508181035f83015261375181613718565b9050919050565b5f60608201905061376b5f830186612a5c565b6137786020830185612a5c565b6137856040830184612a5c565b949350505050565b5f81905092915050565b50565b5f6137a55f8361378d565b91506137b082613797565b5f82019050919050565b5f6137c48261379a565b9150819050919050565b5f815190506137dc8161291a565b92915050565b5f602082840312156137f7576137f66128e2565b5b5f613804848285016137ce565b91505092915050565b5f819050919050565b5f61383061382b6138268461380d565b6129e8565b612944565b9050919050565b61384081613816565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61387881612909565b82525050565b5f613889838361386f565b60208301905092915050565b5f602082019050919050565b5f6138ab82613846565b6138b58185613850565b93506138c083613860565b805f5b838110156138f05781516138d7888261387e565b97506138e283613895565b9250506001810190506138c3565b5085935050505092915050565b5f60a0820190506139105f830188612a5c565b61391d6020830187613837565b818103604083015261392f81866138a1565b905061393e6060830185612ad4565b61394b6080830184612a5c565b9695505050505050565b5f60c0820190506139685f830189612ad4565b6139756020830188612a5c565b6139826040830187613837565b61398f6060830186613837565b61399c6080830185612ad4565b6139a960a0830184612a5c565b979650505050505050565b5f815190506139c28161294d565b92915050565b5f805f606084860312156139df576139de6128e2565b5b5f6139ec868287016139b4565b93505060206139fd868287016139b4565b9250506040613a0e868287016139b4565b915050925092509256fea264697066735822122053d3cf730138b5e64c3f9ff77b1e4efefdbd03d8f9900c73e17dfe77d8d9bf7264736f6c63430008180033

Deployed Bytecode Sourcemap

28075:9344:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7925:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10114:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28149:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9054:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30895:169;;;;;;;;;;;;;:::i;:::-;;10364:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28357:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8896:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31489:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10667:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28207:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28419:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31167:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28452:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9225:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1270:103;;;;;;;;;;;;;:::i;:::-;;28244:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31072:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;699:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7464:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8144:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10945:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9608:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28555:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28281:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31935:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28320:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9905:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31606:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28513:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28689:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1528:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7925:100;7979:13;8012:5;8005:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7925:100;:::o;10114:242::-;10233:4;10255:13;10271:12;:10;:12::i;:::-;10255:28;;10294:32;10303:5;10310:7;10319:6;10294:8;:32::i;:::-;10344:4;10337:11;;;10114:242;;;;:::o;28149:51::-;;;:::o;9054:108::-;9115:7;9142:12;;9135:19;;9054:108;:::o;30895:169::-;658:13;:11;:13::i;:::-;30953:14:::1;;;;;;;;;;;30952:15;30944:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;31023:4;31006:14;;:21;;;;;;;;;;;;;;;;;;31052:4;31038:11;;:18;;;;;;;;;;;;;;;;;;30895:169::o:0;10364:295::-;10495:4;10512:15;10530:12;:10;:12::i;:::-;10512:30;;10553:38;10569:4;10575:7;10584:6;10553:15;:38::i;:::-;10602:27;10612:4;10618:2;10622:6;10602:9;:27::i;:::-;10647:4;10640:11;;;10364:295;;;;;:::o;28357:53::-;28403:6;28357:53;:::o;8896:93::-;8954:5;8979:2;8972:9;;8896:93;:::o;31489:110::-;31548:4;31572:10;:19;31583:7;31572:19;;;;;;;;;;;;;;;;;;;;;;;;;31565:26;;31489:110;;;:::o;10667:270::-;10782:4;10804:13;10820:12;:10;:12::i;:::-;10804:28;;10843:64;10852:5;10859:7;10896:10;10868:25;10878:5;10885:7;10868:9;:25::i;:::-;:38;;;;:::i;:::-;10843:8;:64::i;:::-;10925:4;10918:11;;;10667:270;;;;:::o;28207:28::-;;;;;;;;;;;;;:::o;28419:26::-;;;;;;;;;;;;;:::o;31167:320::-;31273:7;:5;:7::i;:::-;31259:21;;:10;:21;;;:46;;;;31298:7;;;;;;;;;;;31284:21;;:10;:21;;;31259:46;31251:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31325:9;31320:164;31344:8;;:15;;31340:1;:19;31320:164;;;31403:13;31377:10;:23;31388:8;;31397:1;31388:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;31377:23;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;31449:8;;31458:1;31449:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;31432:44;;;31462:13;31432:44;;;;;;:::i;:::-;;;;;;;;31361:3;;;;;;;31320:164;;;;31167:320;;;:::o;28452:23::-;;;;;;;;;;;;;:::o;9225:177::-;9344:7;9376:9;:18;9386:7;9376:18;;;;;;;;;;;;;;;;9369:25;;9225:177;;;:::o;1270:103::-;658:13;:11;:13::i;:::-;1335:30:::1;1362:1;1335:18;:30::i;:::-;1270:103::o:0;28244:30::-;;;;;;;;;;;;;:::o;31072:91::-;658:13;:11;:13::i;:::-;31147:8:::1;31137:7;;:18;;;;;;;;;;;;;;;;;;31072:91:::0;:::o;699:87::-;745:7;772:6;;;;;;;;;;;765:13;;699:87;:::o;7464:26::-;;;;:::o;8144:104::-;8200:13;8233:7;8226:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8144:104;:::o;10945:505::-;11065:4;11087:13;11103:12;:10;:12::i;:::-;11087:28;;11126:24;11153:25;11163:5;11170:7;11153:9;:25::i;:::-;11126:52;;11231:15;11211:16;:35;;11189:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;11347:60;11356:5;11363:7;11391:15;11372:16;:34;11347:8;:60::i;:::-;11438:4;11431:11;;;;10945:505;;;;:::o;9608:234::-;9723:4;9745:13;9761:12;:10;:12::i;:::-;9745:28;;9784;9794:5;9801:2;9805:6;9784:9;:28::i;:::-;9830:4;9823:11;;;9608:234;;;;:::o;28555:27::-;;;;:::o;28281:32::-;;;;;;;;;;;;;:::o;31935:296::-;32022:7;:5;:7::i;:::-;32008:21;;:10;:21;;;:46;;;;32047:7;;;;;;;;;;;32033:21;;:10;:21;;;32008:46;32000:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32085:9;32080:148;32104:5;:12;32100:1;:16;32080:148;;;32154:13;;;;;;;;;;;32142:25;;:5;32148:1;32142:8;;;;;;;;:::i;:::-;;;;;;;;:25;;;32134:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;32190:30;32204:5;32210:1;32204:8;;;;;;;;:::i;:::-;;;;;;;;32214:5;32190:13;:30::i;:::-;32118:3;;;;;;;32080:148;;;;31935:296;;:::o;28320:30::-;;;;;;;;;;;;;:::o;9905:201::-;10039:7;10071:11;:18;10083:5;10071:18;;;;;;;;;;;;;;;:27;10090:7;10071:27;;;;;;;;;;;;;;;;10064:34;;9905:201;;;;:::o;31606:322::-;31707:7;:5;:7::i;:::-;31693:21;;:10;:21;;;:46;;;;31732:7;;;;;;;;;;;31718:21;;:10;:21;;;31693:46;31685:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31770:9;31765:160;31789:8;:15;31785:1;:19;31765:160;;;31855:8;31822:17;:30;31840:8;31849:1;31840:11;;;;;;;;:::i;:::-;;;;;;;;31822:30;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;31895:8;31904:1;31895:11;;;;;;;;:::i;:::-;;;;;;;;31879:38;;;31908:8;31879:38;;;;;;:::i;:::-;;;;;;;;31806:3;;;;;;;31765:160;;;;31606:322;;:::o;28513:33::-;;;;:::o;28689:27::-;;;;:::o;1528:238::-;658:13;:11;:13::i;:::-;1651:1:::1;1631:22;;:8;:22;;::::0;1609:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1730:28;1749:8;1730:18;:28::i;:::-;1528:238:::0;:::o;134:98::-;187:7;214:10;207:17;;134:98;:::o;13582:380::-;13735:1;13718:19;;:5;:19;;;13710:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13816:1;13797:21;;:7;:21;;;13789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13900:6;13870:11;:18;13882:5;13870:18;;;;;;;;;;;;;;;:27;13889:7;13870:27;;;;;;;;;;;;;;;:36;;;;13938:7;13922:32;;13931:5;13922:32;;;13947:6;13922:32;;;;;;:::i;:::-;;;;;;;;13582:380;;;:::o;794:132::-;869:12;:10;:12::i;:::-;858:23;;:7;:5;:7::i;:::-;:23;;;850:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;794:132::o;13970:502::-;14105:24;14132:25;14142:5;14149:7;14132:9;:25::i;:::-;14105:52;;14192:17;14172:16;:37;14168:297;;14272:6;14252:16;:26;;14226:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;14387:51;14396:5;14403:7;14431:6;14412:16;:25;14387:8;:51::i;:::-;14168:297;14094:378;13970:502;;;:::o;32395:2513::-;32543:1;32527:18;;:4;:18;;;32519:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32620:1;32606:16;;:2;:16;;;32598:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32682:10;:16;32693:4;32682:16;;;;;;;;;;;;;;;;;;;;;;;;;32681:17;:36;;;;;32703:10;:14;32714:2;32703:14;;;;;;;;;;;;;;;;;;;;;;;;;32702:15;32681:36;32673:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32761:10;:16;32772:4;32761:16;;;;;;;;;;;;;;;;;;;;;;;;;32760:17;:36;;;;;32782:10;:14;32793:2;32782:14;;;;;;;;;;;;;;;;;;;;;;;;;32781:15;32760:36;:62;;;;;32801:10;:21;32812:9;32801:21;;;;;;;;;;;;;;;;;;;;;;;;;32800:22;32760:62;32752:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32856:14;;;;;;;;;;;:41;;;;32874:17;:23;32892:4;32874:23;;;;;;;;;;;;;;;;;;;;;;;;;32856:41;:66;;;;32901:17;:21;32919:2;32901:21;;;;;;;;;;;;;;;;;;;;;;;;;32856:66;32848:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32976:1;32966:6;:11;32962:93;;32994:28;33010:4;33016:2;33020:1;32994:15;:28::i;:::-;33037:7;;32962:93;33069:28;33100:24;33118:4;33100:9;:24::i;:::-;33069:55;;33137:12;33176:18;;33152:20;:42;;33137:57;;33225:7;:35;;;;;33249:11;;;;;;;;;;;33225:35;:48;;;;;33264:9;;;;;;;;;;;33263:10;33225:48;:74;;;;;33275:18;:24;33294:4;33275:24;;;;;;;;;;;;;;;;;;;;;;;;;33225:74;:115;;;;;33317:17;:23;33335:4;33317:23;;;;;;;;;;;;;;;;;;;;;;;;;33316:24;33225:115;:154;;;;;33358:17;:21;33376:2;33358:21;;;;;;;;;;;;;;;;;;;;;;;;;33357:22;33225:154;33207:289;;;33418:4;33406:9;;:16;;;;;;;;;;;;;;;;;;33439:11;:9;:11::i;:::-;33479:5;33467:9;;:17;;;;;;;;;;;;;;;;;;33207:289;33508:12;33524:9;;;;;;;;;;;33523:10;33508:25;;33550:17;:23;33568:4;33550:23;;;;;;;;;;;;;;;;;;;;;;;;;:48;;;;33577:17;:21;33595:2;33577:21;;;;;;;;;;;;;;;;;;;;;;;;;33550:48;33546:96;;;33625:5;33615:15;;33546:96;33654:12;33687:7;33683:1133;;;33739:18;:22;33758:2;33739:22;;;;;;;;;;;;;;;;;;;;;;;;;:42;;;;;33780:1;33765:12;;:16;33739:42;33735:932;;;33809:35;33838:5;33809:24;33820:12;;33809:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;33802:42;;33953:12;;33915:13;;33908:4;:20;;;;:::i;:::-;33907:58;;;;:::i;:::-;33863:19;;:102;;;;;;;:::i;:::-;;;;;;;;34078:12;;34036:17;;34029:4;:24;;;;:::i;:::-;34028:62;;;;:::i;:::-;33984:19;;:106;;;;;;;:::i;:::-;;;;;;;;34199:12;;34163:11;;34156:4;:18;;;;:::i;:::-;34155:56;;;;:::i;:::-;34109:21;;:102;;;;;;;:::i;:::-;;;;;;;;33735:932;;;34273:18;:24;34292:4;34273:24;;;;;;;;;;;;;;;;;;;;;;;;;:44;;;;;34316:1;34301:12;;:16;34273:44;34269:398;;;34345:35;34374:5;34345:24;34356:12;;34345:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;34338:42;;34445:12;;34430:11;;34423:4;:18;;;;:::i;:::-;34422:35;;;;:::i;:::-;34399:19;;:58;;;;;;;:::i;:::-;;;;;;;;34520:12;;34507:9;;34500:4;:16;;;;:::i;:::-;34499:33;;;;:::i;:::-;34476:19;;:56;;;;;;;:::i;:::-;;;;;;;;34639:12;;34605:9;;34598:4;:16;;;;:::i;:::-;34597:54;;;;:::i;:::-;34551:21;;:100;;;;;;;:::i;:::-;;;;;;;;34269:398;33735:932;34694:1;34687:4;:8;34683:91;;;34716:42;34732:4;34746;34753;34716:15;:42::i;:::-;34683:91;34800:4;34790:14;;;;;:::i;:::-;;;33683:1133;34828:33;34844:4;34850:2;34854:6;34828:15;:33::i;:::-;34887:13;;34872:12;:28;;;;32508:2400;;;;32395:2513;;;;:::o;1926:191::-;2000:16;2019:6;;;;;;;;;;;2000:25;;2045:8;2036:6;;:17;;;;;;;;;;;;;;;;;;2100:8;2069:40;;2090:8;2069:40;;;;;;;;;;;;1989:128;1926:191;:::o;32241:146::-;32337:5;32310:18;:24;32329:4;32310:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;32373:5;32358:21;;32367:4;32358:21;;;;;;;;;;;;32241:146;;:::o;11458:877::-;11605:1;11589:18;;:4;:18;;;11581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11682:1;11668:16;;:2;:16;;;11660:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11737:38;11758:4;11764:2;11768:6;11737:20;:38::i;:::-;11788:19;11810:9;:15;11820:4;11810:15;;;;;;;;;;;;;;;;11788:37;;11873:6;11858:11;:21;;11836:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;12013:6;11999:11;:20;11981:9;:15;11991:4;11981:15;;;;;;;;;;;;;;;:38;;;;12216:6;12199:9;:13;12209:2;12199:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12266:2;12251:26;;12260:4;12251:26;;;12270:6;12251:26;;;;;;:::i;:::-;;;;;;;;12290:37;12310:4;12316:2;12320:6;12290:19;:37::i;:::-;11570:765;11458:877;;;:::o;35807:1607::-;35848:23;35874:24;35892:4;35874:9;:24::i;:::-;35848:50;;35909:25;36007:21;;35972:19;;35937;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;35909:119;;36039:12;36066:23;36180:1;36147:17;36111:19;;36093:15;:37;;;;:::i;:::-;36092:72;;;;:::i;:::-;:89;;;;:::i;:::-;36066:115;;36192:26;36221:36;36241:15;36221;:19;;:36;;;;:::i;:::-;36192:65;;36270:25;36298:21;36270:49;;36332:37;36350:18;36332:17;:37::i;:::-;36382:18;36403:44;36429:17;36403:21;:25;;:44;;;;:::i;:::-;36382:65;;36460:23;36486:82;36540:17;36486:35;36501:19;;36486:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;36460:108;;36581:25;36609:84;36665:17;36609:37;36624:21;;36609:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;36581:112;;36706:23;36789:17;36758:15;36732:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;36706:100;;36841:1;36819:19;:23;;;;36875:1;36853:19;:23;;;;36911:1;36887:21;:25;;;;36947:1;36929:15;:19;:42;;;;;36970:1;36952:15;:19;36929:42;36925:280;;;36988:47;37002:15;37019;36988:13;:47::i;:::-;37055:138;37088:18;37125:15;37159:19;;37055:138;;;;;;;;:::i;:::-;;;;;;;;36925:280;37239:17;;;;;;;;;;;37231:31;;37270:17;37231:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37217:75;;;;;37327:15;;;;;;;;;;;37319:29;;37370:21;37319:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37305:101;;;;;35837:1577;;;;;;;;;;35807:1607::o;18099:98::-;18157:7;18188:1;18184;:5;;;;:::i;:::-;18177:12;;18099:98;;;;:::o;18498:::-;18556:7;18587:1;18583;:5;;;;:::i;:::-;18576:12;;18498:98;;;;:::o;14480:125::-;;;;:::o;14613:124::-;;;;:::o;17742:98::-;17800:7;17831:1;17827;:5;;;;:::i;:::-;17820:12;;17742:98;;;;:::o;34916:503::-;34984:21;35022:1;35008:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34984:40;;35053:4;35035;35040:1;35035:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;35079:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35069:4;35074:1;35069:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;35114:62;35131:4;35146:15;35164:11;35114:8;:62::i;:::-;35215:15;:66;;;35296:11;35322:1;35338:4;35365;35385:15;35215:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34973:446;34916:503;:::o;35427:372::-;35510:62;35527:4;35542:15;35560:11;35510:8;:62::i;:::-;35585:15;:31;;;35624:9;35657:4;35677:11;35703:1;35719;35735:15;;;;;;;;;;;35765;35585:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35427:372;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:117::-;6627:1;6624;6617:12;6641:117;6750:1;6747;6740:12;6764:117;6873:1;6870;6863:12;6904:568;6977:8;6987:6;7037:3;7030:4;7022:6;7018:17;7014:27;7004:122;;7045:79;;:::i;:::-;7004:122;7158:6;7145:20;7135:30;;7188:18;7180:6;7177:30;7174:117;;;7210:79;;:::i;:::-;7174:117;7324:4;7316:6;7312:17;7300:29;;7378:3;7370:4;7362:6;7358:17;7348:8;7344:32;7341:41;7338:128;;;7385:79;;:::i;:::-;7338:128;6904:568;;;;;:::o;7478:116::-;7548:21;7563:5;7548:21;:::i;:::-;7541:5;7538:32;7528:60;;7584:1;7581;7574:12;7528:60;7478:116;:::o;7600:133::-;7643:5;7681:6;7668:20;7659:29;;7697:30;7721:5;7697:30;:::i;:::-;7600:133;;;;:::o;7739:698::-;7831:6;7839;7847;7896:2;7884:9;7875:7;7871:23;7867:32;7864:119;;;7902:79;;:::i;:::-;7864:119;8050:1;8039:9;8035:17;8022:31;8080:18;8072:6;8069:30;8066:117;;;8102:79;;:::i;:::-;8066:117;8215:80;8287:7;8278:6;8267:9;8263:22;8215:80;:::i;:::-;8197:98;;;;7993:312;8344:2;8370:50;8412:7;8403:6;8392:9;8388:22;8370:50;:::i;:::-;8360:60;;8315:115;7739:698;;;;;:::o;8443:180::-;8491:77;8488:1;8481:88;8588:4;8585:1;8578:15;8612:4;8609:1;8602:15;8629:281;8712:27;8734:4;8712:27;:::i;:::-;8704:6;8700:40;8842:6;8830:10;8827:22;8806:18;8794:10;8791:34;8788:62;8785:88;;;8853:18;;:::i;:::-;8785:88;8893:10;8889:2;8882:22;8672:238;8629:281;;:::o;8916:129::-;8950:6;8977:20;;:::i;:::-;8967:30;;9006:33;9034:4;9026:6;9006:33;:::i;:::-;8916:129;;;:::o;9051:311::-;9128:4;9218:18;9210:6;9207:30;9204:56;;;9240:18;;:::i;:::-;9204:56;9290:4;9282:6;9278:17;9270:25;;9350:4;9344;9340:15;9332:23;;9051:311;;;:::o;9385:710::-;9481:5;9506:81;9522:64;9579:6;9522:64;:::i;:::-;9506:81;:::i;:::-;9497:90;;9607:5;9636:6;9629:5;9622:21;9670:4;9663:5;9659:16;9652:23;;9723:4;9715:6;9711:17;9703:6;9699:30;9752:3;9744:6;9741:15;9738:122;;;9771:79;;:::i;:::-;9738:122;9886:6;9869:220;9903:6;9898:3;9895:15;9869:220;;;9978:3;10007:37;10040:3;10028:10;10007:37;:::i;:::-;10002:3;9995:50;10074:4;10069:3;10065:14;10058:21;;9945:144;9929:4;9924:3;9920:14;9913:21;;9869:220;;;9873:21;9487:608;;9385:710;;;;;:::o;10118:370::-;10189:5;10238:3;10231:4;10223:6;10219:17;10215:27;10205:122;;10246:79;;:::i;:::-;10205:122;10363:6;10350:20;10388:94;10478:3;10470:6;10463:4;10455:6;10451:17;10388:94;:::i;:::-;10379:103;;10195:293;10118:370;;;;:::o;10494:678::-;10584:6;10592;10641:2;10629:9;10620:7;10616:23;10612:32;10609:119;;;10647:79;;:::i;:::-;10609:119;10795:1;10784:9;10780:17;10767:31;10825:18;10817:6;10814:30;10811:117;;;10847:79;;:::i;:::-;10811:117;10952:78;11022:7;11013:6;11002:9;10998:22;10952:78;:::i;:::-;10942:88;;10738:302;11079:2;11105:50;11147:7;11138:6;11127:9;11123:22;11105:50;:::i;:::-;11095:60;;11050:115;10494:678;;;;;:::o;11178:474::-;11246:6;11254;11303:2;11291:9;11282:7;11278:23;11274:32;11271:119;;;11309:79;;:::i;:::-;11271:119;11429:1;11454:53;11499:7;11490:6;11479:9;11475:22;11454:53;:::i;:::-;11444:63;;11400:117;11556:2;11582:53;11627:7;11618:6;11607:9;11603:22;11582:53;:::i;:::-;11572:63;;11527:118;11178:474;;;;;:::o;11658:180::-;11706:77;11703:1;11696:88;11803:4;11800:1;11793:15;11827:4;11824:1;11817:15;11844:320;11888:6;11925:1;11919:4;11915:12;11905:22;;11972:1;11966:4;11962:12;11993:18;11983:81;;12049:4;12041:6;12037:17;12027:27;;11983:81;12111:2;12103:6;12100:14;12080:18;12077:38;12074:84;;12130:18;;:::i;:::-;12074:84;11895:269;11844:320;;;:::o;12170:173::-;12310:25;12306:1;12298:6;12294:14;12287:49;12170:173;:::o;12349:366::-;12491:3;12512:67;12576:2;12571:3;12512:67;:::i;:::-;12505:74;;12588:93;12677:3;12588:93;:::i;:::-;12706:2;12701:3;12697:12;12690:19;;12349:366;;;:::o;12721:419::-;12887:4;12925:2;12914:9;12910:18;12902:26;;12974:9;12968:4;12964:20;12960:1;12949:9;12945:17;12938:47;13002:131;13128:4;13002:131;:::i;:::-;12994:139;;12721:419;;;:::o;13146:180::-;13194:77;13191:1;13184:88;13291:4;13288:1;13281:15;13315:4;13312:1;13305:15;13332:191;13372:3;13391:20;13409:1;13391:20;:::i;:::-;13386:25;;13425:20;13443:1;13425:20;:::i;:::-;13420:25;;13468:1;13465;13461:9;13454:16;;13489:3;13486:1;13483:10;13480:36;;;13496:18;;:::i;:::-;13480:36;13332:191;;;;:::o;13529:153::-;13669:5;13665:1;13657:6;13653:14;13646:29;13529:153;:::o;13688:365::-;13830:3;13851:66;13915:1;13910:3;13851:66;:::i;:::-;13844:73;;13926:93;14015:3;13926:93;:::i;:::-;14044:2;14039:3;14035:12;14028:19;;13688:365;;;:::o;14059:419::-;14225:4;14263:2;14252:9;14248:18;14240:26;;14312:9;14306:4;14302:20;14298:1;14287:9;14283:17;14276:47;14340:131;14466:4;14340:131;:::i;:::-;14332:139;;14059:419;;;:::o;14484:180::-;14532:77;14529:1;14522:88;14629:4;14626:1;14619:15;14653:4;14650:1;14643:15;14670:224;14810:34;14806:1;14798:6;14794:14;14787:58;14879:7;14874:2;14866:6;14862:15;14855:32;14670:224;:::o;14900:366::-;15042:3;15063:67;15127:2;15122:3;15063:67;:::i;:::-;15056:74;;15139:93;15228:3;15139:93;:::i;:::-;15257:2;15252:3;15248:12;15241:19;;14900:366;;;:::o;15272:419::-;15438:4;15476:2;15465:9;15461:18;15453:26;;15525:9;15519:4;15515:20;15511:1;15500:9;15496:17;15489:47;15553:131;15679:4;15553:131;:::i;:::-;15545:139;;15272:419;;;:::o;15697:164::-;15837:16;15833:1;15825:6;15821:14;15814:40;15697:164;:::o;15867:366::-;16009:3;16030:67;16094:2;16089:3;16030:67;:::i;:::-;16023:74;;16106:93;16195:3;16106:93;:::i;:::-;16224:2;16219:3;16215:12;16208:19;;15867:366;;;:::o;16239:419::-;16405:4;16443:2;16432:9;16428:18;16420:26;;16492:9;16486:4;16482:20;16478:1;16467:9;16463:17;16456:47;16520:131;16646:4;16520:131;:::i;:::-;16512:139;;16239:419;;;:::o;16664:157::-;16804:9;16800:1;16792:6;16788:14;16781:33;16664:157;:::o;16827:365::-;16969:3;16990:66;17054:1;17049:3;16990:66;:::i;:::-;16983:73;;17065:93;17154:3;17065:93;:::i;:::-;17183:2;17178:3;17174:12;17167:19;;16827:365;;;:::o;17198:419::-;17364:4;17402:2;17391:9;17387:18;17379:26;;17451:9;17445:4;17441:20;17437:1;17426:9;17422:17;17415:47;17479:131;17605:4;17479:131;:::i;:::-;17471:139;;17198:419;;;:::o;17623:225::-;17763:34;17759:1;17751:6;17747:14;17740:58;17832:8;17827:2;17819:6;17815:15;17808:33;17623:225;:::o;17854:366::-;17996:3;18017:67;18081:2;18076:3;18017:67;:::i;:::-;18010:74;;18093:93;18182:3;18093:93;:::i;:::-;18211:2;18206:3;18202:12;18195:19;;17854:366;;;:::o;18226:419::-;18392:4;18430:2;18419:9;18415:18;18407:26;;18479:9;18473:4;18469:20;18465:1;18454:9;18450:17;18443:47;18507:131;18633:4;18507:131;:::i;:::-;18499:139;;18226:419;;;:::o;18651:223::-;18791:34;18787:1;18779:6;18775:14;18768:58;18860:6;18855:2;18847:6;18843:15;18836:31;18651:223;:::o;18880:366::-;19022:3;19043:67;19107:2;19102:3;19043:67;:::i;:::-;19036:74;;19119:93;19208:3;19119:93;:::i;:::-;19237:2;19232:3;19228:12;19221:19;;18880:366;;;:::o;19252:419::-;19418:4;19456:2;19445:9;19441:18;19433:26;;19505:9;19499:4;19495:20;19491:1;19480:9;19476:17;19469:47;19533:131;19659:4;19533:131;:::i;:::-;19525:139;;19252:419;;;:::o;19677:221::-;19817:34;19813:1;19805:6;19801:14;19794:58;19886:4;19881:2;19873:6;19869:15;19862:29;19677:221;:::o;19904:366::-;20046:3;20067:67;20131:2;20126:3;20067:67;:::i;:::-;20060:74;;20143:93;20232:3;20143:93;:::i;:::-;20261:2;20256:3;20252:12;20245:19;;19904:366;;;:::o;20276:419::-;20442:4;20480:2;20469:9;20465:18;20457:26;;20529:9;20523:4;20519:20;20515:1;20504:9;20500:17;20493:47;20557:131;20683:4;20557:131;:::i;:::-;20549:139;;20276:419;;;:::o;20701:182::-;20841:34;20837:1;20829:6;20825:14;20818:58;20701:182;:::o;20889:366::-;21031:3;21052:67;21116:2;21111:3;21052:67;:::i;:::-;21045:74;;21128:93;21217:3;21128:93;:::i;:::-;21246:2;21241:3;21237:12;21230:19;;20889:366;;;:::o;21261:419::-;21427:4;21465:2;21454:9;21450:18;21442:26;;21514:9;21508:4;21504:20;21500:1;21489:9;21485:17;21478:47;21542:131;21668:4;21542:131;:::i;:::-;21534:139;;21261:419;;;:::o;21686:179::-;21826:31;21822:1;21814:6;21810:14;21803:55;21686:179;:::o;21871:366::-;22013:3;22034:67;22098:2;22093:3;22034:67;:::i;:::-;22027:74;;22110:93;22199:3;22110:93;:::i;:::-;22228:2;22223:3;22219:12;22212:19;;21871:366;;;:::o;22243:419::-;22409:4;22447:2;22436:9;22432:18;22424:26;;22496:9;22490:4;22486:20;22482:1;22471:9;22467:17;22460:47;22524:131;22650:4;22524:131;:::i;:::-;22516:139;;22243:419;;;:::o;22668:224::-;22808:34;22804:1;22796:6;22792:14;22785:58;22877:7;22872:2;22864:6;22860:15;22853:32;22668:224;:::o;22898:366::-;23040:3;23061:67;23125:2;23120:3;23061:67;:::i;:::-;23054:74;;23137:93;23226:3;23137:93;:::i;:::-;23255:2;23250:3;23246:12;23239:19;;22898:366;;;:::o;23270:419::-;23436:4;23474:2;23463:9;23459:18;23451:26;;23523:9;23517:4;23513:20;23509:1;23498:9;23494:17;23487:47;23551:131;23677:4;23551:131;:::i;:::-;23543:139;;23270:419;;;:::o;23695:222::-;23835:34;23831:1;23823:6;23819:14;23812:58;23904:5;23899:2;23891:6;23887:15;23880:30;23695:222;:::o;23923:366::-;24065:3;24086:67;24150:2;24145:3;24086:67;:::i;:::-;24079:74;;24162:93;24251:3;24162:93;:::i;:::-;24280:2;24275:3;24271:12;24264:19;;23923:366;;;:::o;24295:419::-;24461:4;24499:2;24488:9;24484:18;24476:26;;24548:9;24542:4;24538:20;24534:1;24523:9;24519:17;24512:47;24576:131;24702:4;24576:131;:::i;:::-;24568:139;;24295:419;;;:::o;24720:169::-;24860:21;24856:1;24848:6;24844:14;24837:45;24720:169;:::o;24895:366::-;25037:3;25058:67;25122:2;25117:3;25058:67;:::i;:::-;25051:74;;25134:93;25223:3;25134:93;:::i;:::-;25252:2;25247:3;25243:12;25236:19;;24895:366;;;:::o;25267:419::-;25433:4;25471:2;25460:9;25456:18;25448:26;;25520:9;25514:4;25510:20;25506:1;25495:9;25491:17;25484:47;25548:131;25674:4;25548:131;:::i;:::-;25540:139;;25267:419;;;:::o;25692:160::-;25832:12;25828:1;25820:6;25816:14;25809:36;25692:160;:::o;25858:366::-;26000:3;26021:67;26085:2;26080:3;26021:67;:::i;:::-;26014:74;;26097:93;26186:3;26097:93;:::i;:::-;26215:2;26210:3;26206:12;26199:19;;25858:366;;;:::o;26230:419::-;26396:4;26434:2;26423:9;26419:18;26411:26;;26483:9;26477:4;26473:20;26469:1;26458:9;26454:17;26447:47;26511:131;26637:4;26511:131;:::i;:::-;26503:139;;26230:419;;;:::o;26655:174::-;26795:26;26791:1;26783:6;26779:14;26772:50;26655:174;:::o;26835:366::-;26977:3;26998:67;27062:2;27057:3;26998:67;:::i;:::-;26991:74;;27074:93;27163:3;27074:93;:::i;:::-;27192:2;27187:3;27183:12;27176:19;;26835:366;;;:::o;27207:419::-;27373:4;27411:2;27400:9;27396:18;27388:26;;27460:9;27454:4;27450:20;27446:1;27435:9;27431:17;27424:47;27488:131;27614:4;27488:131;:::i;:::-;27480:139;;27207:419;;;:::o;27632:410::-;27672:7;27695:20;27713:1;27695:20;:::i;:::-;27690:25;;27729:20;27747:1;27729:20;:::i;:::-;27724:25;;27784:1;27781;27777:9;27806:30;27824:11;27806:30;:::i;:::-;27795:41;;27985:1;27976:7;27972:15;27969:1;27966:22;27946:1;27939:9;27919:83;27896:139;;28015:18;;:::i;:::-;27896:139;27680:362;27632:410;;;;:::o;28048:180::-;28096:77;28093:1;28086:88;28193:4;28190:1;28183:15;28217:4;28214:1;28207:15;28234:185;28274:1;28291:20;28309:1;28291:20;:::i;:::-;28286:25;;28325:20;28343:1;28325:20;:::i;:::-;28320:25;;28364:1;28354:35;;28369:18;;:::i;:::-;28354:35;28411:1;28408;28404:9;28399:14;;28234:185;;;;:::o;28425:194::-;28465:4;28485:20;28503:1;28485:20;:::i;:::-;28480:25;;28519:20;28537:1;28519:20;:::i;:::-;28514:25;;28563:1;28560;28556:9;28548:17;;28587:1;28581:4;28578:11;28575:37;;;28592:18;;:::i;:::-;28575:37;28425:194;;;;:::o;28625:225::-;28765:34;28761:1;28753:6;28749:14;28742:58;28834:8;28829:2;28821:6;28817:15;28810:33;28625:225;:::o;28856:366::-;28998:3;29019:67;29083:2;29078:3;29019:67;:::i;:::-;29012:74;;29095:93;29184:3;29095:93;:::i;:::-;29213:2;29208:3;29204:12;29197:19;;28856:366;;;:::o;29228:419::-;29394:4;29432:2;29421:9;29417:18;29409:26;;29481:9;29475:4;29471:20;29467:1;29456:9;29452:17;29445:47;29509:131;29635:4;29509:131;:::i;:::-;29501:139;;29228:419;;;:::o;29653:442::-;29802:4;29840:2;29829:9;29825:18;29817:26;;29853:71;29921:1;29910:9;29906:17;29897:6;29853:71;:::i;:::-;29934:72;30002:2;29991:9;29987:18;29978:6;29934:72;:::i;:::-;30016;30084:2;30073:9;30069:18;30060:6;30016:72;:::i;:::-;29653:442;;;;;;:::o;30101:147::-;30202:11;30239:3;30224:18;;30101:147;;;;:::o;30254:114::-;;:::o;30374:398::-;30533:3;30554:83;30635:1;30630:3;30554:83;:::i;:::-;30547:90;;30646:93;30735:3;30646:93;:::i;:::-;30764:1;30759:3;30755:11;30748:18;;30374:398;;;:::o;30778:379::-;30962:3;30984:147;31127:3;30984:147;:::i;:::-;30977:154;;31148:3;31141:10;;30778:379;;;:::o;31163:143::-;31220:5;31251:6;31245:13;31236:22;;31267:33;31294:5;31267:33;:::i;:::-;31163:143;;;;:::o;31312:351::-;31382:6;31431:2;31419:9;31410:7;31406:23;31402:32;31399:119;;;31437:79;;:::i;:::-;31399:119;31557:1;31582:64;31638:7;31629:6;31618:9;31614:22;31582:64;:::i;:::-;31572:74;;31528:128;31312:351;;;;:::o;31669:85::-;31714:7;31743:5;31732:16;;31669:85;;;:::o;31760:158::-;31818:9;31851:61;31869:42;31878:32;31904:5;31878:32;:::i;:::-;31869:42;:::i;:::-;31851:61;:::i;:::-;31838:74;;31760:158;;;:::o;31924:147::-;32019:45;32058:5;32019:45;:::i;:::-;32014:3;32007:58;31924:147;;:::o;32077:114::-;32144:6;32178:5;32172:12;32162:22;;32077:114;;;:::o;32197:184::-;32296:11;32330:6;32325:3;32318:19;32370:4;32365:3;32361:14;32346:29;;32197:184;;;;:::o;32387:132::-;32454:4;32477:3;32469:11;;32507:4;32502:3;32498:14;32490:22;;32387:132;;;:::o;32525:108::-;32602:24;32620:5;32602:24;:::i;:::-;32597:3;32590:37;32525:108;;:::o;32639:179::-;32708:10;32729:46;32771:3;32763:6;32729:46;:::i;:::-;32807:4;32802:3;32798:14;32784:28;;32639:179;;;;:::o;32824:113::-;32894:4;32926;32921:3;32917:14;32909:22;;32824:113;;;:::o;32973:732::-;33092:3;33121:54;33169:5;33121:54;:::i;:::-;33191:86;33270:6;33265:3;33191:86;:::i;:::-;33184:93;;33301:56;33351:5;33301:56;:::i;:::-;33380:7;33411:1;33396:284;33421:6;33418:1;33415:13;33396:284;;;33497:6;33491:13;33524:63;33583:3;33568:13;33524:63;:::i;:::-;33517:70;;33610:60;33663:6;33610:60;:::i;:::-;33600:70;;33456:224;33443:1;33440;33436:9;33431:14;;33396:284;;;33400:14;33696:3;33689:10;;33097:608;;;32973:732;;;;:::o;33711:831::-;33974:4;34012:3;34001:9;33997:19;33989:27;;34026:71;34094:1;34083:9;34079:17;34070:6;34026:71;:::i;:::-;34107:80;34183:2;34172:9;34168:18;34159:6;34107:80;:::i;:::-;34234:9;34228:4;34224:20;34219:2;34208:9;34204:18;34197:48;34262:108;34365:4;34356:6;34262:108;:::i;:::-;34254:116;;34380:72;34448:2;34437:9;34433:18;34424:6;34380:72;:::i;:::-;34462:73;34530:3;34519:9;34515:19;34506:6;34462:73;:::i;:::-;33711:831;;;;;;;;:::o;34548:807::-;34797:4;34835:3;34824:9;34820:19;34812:27;;34849:71;34917:1;34906:9;34902:17;34893:6;34849:71;:::i;:::-;34930:72;34998:2;34987:9;34983:18;34974:6;34930:72;:::i;:::-;35012:80;35088:2;35077:9;35073:18;35064:6;35012:80;:::i;:::-;35102;35178:2;35167:9;35163:18;35154:6;35102:80;:::i;:::-;35192:73;35260:3;35249:9;35245:19;35236:6;35192:73;:::i;:::-;35275;35343:3;35332:9;35328:19;35319:6;35275:73;:::i;:::-;34548:807;;;;;;;;;:::o;35361:143::-;35418:5;35449:6;35443:13;35434:22;;35465:33;35492:5;35465:33;:::i;:::-;35361:143;;;;:::o;35510:663::-;35598:6;35606;35614;35663:2;35651:9;35642:7;35638:23;35634:32;35631:119;;;35669:79;;:::i;:::-;35631:119;35789:1;35814:64;35870:7;35861:6;35850:9;35846:22;35814:64;:::i;:::-;35804:74;;35760:128;35927:2;35953:64;36009:7;36000:6;35989:9;35985:22;35953:64;:::i;:::-;35943:74;;35898:129;36066:2;36092:64;36148:7;36139:6;36128:9;36124:22;36092:64;:::i;:::-;36082:74;;36037:129;35510:663;;;;;:::o

Swarm Source

ipfs://53d3cf730138b5e64c3f9ff77b1e4efefdbd03d8f9900c73e17dfe77d8d9bf72

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.