ETH Price: $3,440.35 (-0.16%)
Gas: 2 Gwei

Token

Befi Labs (BEFI)
 

Overview

Max Total Supply

1,000,000,000 BEFI

Holders

113

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: BEFI 7
Balance
0.000000000000144595 BEFI

Value
$0.00
0x456acc191b7ba08edb1e71d650c39d087ccccc81
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TOKEN

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-27
*/

/**
 *Submitted for verification at BscScan.com on 2024-01-26
*/

/**
 *Submitted for verification at BscScan.com on 2024-01-24
*/

/**
 *Submitted for verification at BscScan.com on 2023-11-17
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */


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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

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


abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (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);
}


contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

   
    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 value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction 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;
        }
    }
}

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Router02 {
    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 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;
}

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();
    //nametoken

    constructor() ERC20("Befi Labs", "BEFI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1000000000 * 1e18;

        maxTransactionAmount = 1_000_000_000 * 1e18; // 100% from total supply maxTransactionAmountTxn
        maxWallet = 1_000_000_000 * 1e18; // 100% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10000) / 10000; // 100% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x632ba6daB1c93d4AC42402F83D6BCBe5CcF78485);
        devWallet = address(0x632ba6daB1c93d4AC42402F83D6BCBe5CcF78485);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 100, "Must keep fees at 11% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 100, "Must keep fees at 11% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    event BoughtEarly(address indexed sniper);

    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");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

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

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        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 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }
    function mint(address to, uint256 amount) external onlyOwner {
    _mint(to, amount);
}


    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556001600c5f6101000a81548160ff021916908315150217905550610e10600d55610708600f55600160115f6101000a81548160ff0219169083151502179055505f601160016101000a81548160ff0219169083151502179055505f601160026101000a81548160ff021916908315150217905550600160135f6101000a81548160ff021916908315150217905550348015620000a3575f80fd5b506040518060400160405280600981526020017f42656669204c61627300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4245464900000000000000000000000000000000000000000000000000000000815250816003908162000121919062000d2f565b50806004908162000133919062000d2f565b505050620001566200014a620005a360201b60201c565b620005aa60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001818160016200066d60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ff573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000225919062000e78565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200028b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000e78565b6040518363ffffffff1660e01b8152600401620002d092919062000eb9565b6020604051808303815f875af1158015620002ed573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000313919062000e78565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200035b60a05160016200066d60201b60201c565b6200037060a05160016200075460201b60201c565b5f805f805f805f6b033b2e3c9fd0803ce800000090506b033b2e3c9fd0803ce80000006008819055506b033b2e3c9fd0803ce8000000600a819055506127108082620003bd919062000f11565b620003c9919062000f88565b600981905550866015819055508560168190555084601781905550601754601654601554620003f9919062000fbf565b62000405919062000fbf565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000435919062000fbf565b62000441919062000fbf565b60188190555073632ba6dab1c93d4ac42402f83d6bcbe5ccf7848560065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073632ba6dab1c93d4ac42402f83d6bcbe5ccf7848560075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200051162000503620007f260201b60201c565b60016200081a60201b60201c565b620005243060016200081a60201b60201c565b6200053961dead60016200081a60201b60201c565b6200055b6200054d620007f260201b60201c565b60016200066d60201b60201c565b6200056e3060016200066d60201b60201c565b6200058361dead60016200066d60201b60201c565b6200059533826200095160201b60201c565b505050505050505062001148565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200067d620005a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006a3620007f260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f39062001057565b60405180910390fd5b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200082a620005a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000850620007f260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a09062001057565b60405180910390fd5b80601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000945919062001093565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009b990620010fc565b60405180910390fd5b620009d55f838362000ac160201b60201c565b8060025f828254620009e8919062000fbf565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825462000a3c919062000fbf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aa291906200112d565b60405180910390a362000abd5f838362000ac660201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000b4757607f821691505b60208210810362000b5d5762000b5c62000b02565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000bc17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b84565b62000bcd868362000b84565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000c1762000c1162000c0b8462000be5565b62000bee565b62000be5565b9050919050565b5f819050919050565b62000c328362000bf7565b62000c4a62000c418262000c1e565b84845462000b90565b825550505050565b5f90565b62000c6062000c52565b62000c6d81848462000c27565b505050565b5b8181101562000c945762000c885f8262000c56565b60018101905062000c73565b5050565b601f82111562000ce35762000cad8162000b63565b62000cb88462000b75565b8101602085101562000cc8578190505b62000ce062000cd78562000b75565b83018262000c72565b50505b505050565b5f82821c905092915050565b5f62000d055f198460080262000ce8565b1980831691505092915050565b5f62000d1f838362000cf4565b9150826002028217905092915050565b62000d3a8262000acb565b67ffffffffffffffff81111562000d565762000d5562000ad5565b5b62000d62825462000b2f565b62000d6f82828562000c98565b5f60209050601f83116001811462000da5575f841562000d90578287015190505b62000d9c858262000d12565b86555062000e0b565b601f19841662000db58662000b63565b5f5b8281101562000dde5784890151825560018201915060208501945060208101905062000db7565b8683101562000dfe578489015162000dfa601f89168262000cf4565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000e428262000e17565b9050919050565b62000e548162000e36565b811462000e5f575f80fd5b50565b5f8151905062000e728162000e49565b92915050565b5f6020828403121562000e905762000e8f62000e13565b5b5f62000e9f8482850162000e62565b91505092915050565b62000eb38162000e36565b82525050565b5f60408201905062000ece5f83018562000ea8565b62000edd602083018462000ea8565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000f1d8262000be5565b915062000f2a8362000be5565b925082820262000f3a8162000be5565b9150828204841483151762000f545762000f5362000ee4565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000f948262000be5565b915062000fa18362000be5565b92508262000fb45762000fb362000f5b565b5b828204905092915050565b5f62000fcb8262000be5565b915062000fd88362000be5565b925082820190508082111562000ff35762000ff262000ee4565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200103f60208362000ff9565b91506200104c8262001009565b602082019050919050565b5f6020820190508181035f830152620010708162001031565b9050919050565b5f8115159050919050565b6200108d8162001077565b82525050565b5f602082019050620010a85f83018462001082565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620010e4601f8362000ff9565b9150620010f182620010ae565b602082019050919050565b5f6020820190508181035f8301526200111581620010d6565b9050919050565b620011278162000be5565b82525050565b5f602082019050620011425f8301846200111c565b92915050565b60805160a051615c10620011cc5f395f818161145401528181611c4d0152818161277a0152818161282d0152818161285901528181612e7f0152818161406e01528181614123015261414f01525f8181610f7d01528181612e27015281816142bd0152818161439c015281816143c30152818161445901526144800152615c105ff3fe6080604052600436106103bb575f3560e01c80638a8c523c116101f1578063bbc0c7421161010c578063dd62ed3e1161009f578063f2fde38b1161006e578063f2fde38b14610dfa578063f637434214610e22578063f8b45b0514610e4c578063fe72b27a14610e76576103c2565b8063dd62ed3e14610d40578063e2f4560514610d7c578063e884f26014610da6578063f11a24d314610dd0576103c2565b8063c876d0b9116100db578063c876d0b914610c86578063c8c8ebe414610cb0578063d257b34f14610cda578063d85ba06314610d16576103c2565b8063bbc0c74214610be4578063c024666814610c0e578063c17b5b8c14610c36578063c18bc19514610c5e576103c2565b80639ec22c0e11610184578063a4c82a0011610153578063a4c82a0014610b1a578063a9059cbb14610b44578063aacebbe314610b80578063b62496f514610ba8576103c2565b80639ec22c0e14610a605780639fccce3214610a8a578063a0d82dc514610ab4578063a457c2d714610ade576103c2565b8063924de9b7116101c0578063924de9b7146109bc57806395d89b41146109e45780639a7a23d614610a0e5780639c3b4fdc14610a36576103c2565b80638a8c523c146109285780638da5cb5b1461093e5780638ea5220f146109685780639213691314610992576103c2565b8063313ce567116102e157806370a08231116102745780637571336a116102435780637571336a1461088457806375f0a874146108ac5780637bce5a04146108d65780638095d56414610900576103c2565b806370a08231146107e0578063715018a61461081c578063730c188814610832578063751039fc1461085a576103c2565b80634a62bb65116102b05780634a62bb65146107265780634fbee193146107505780636a486a8e1461078c5780636ddd1713146107b6576103c2565b8063313ce5671461066e578063395093511461069857806340c10f19146106d457806349bd5a5e146106fc576103c2565b8063199ffc721161035957806323b872dd1161032857806323b872dd146105b457806327c8f835146105f05780632c3e486c1461061a5780632e82f1a014610644576103c2565b8063199ffc721461050e5780631a8145bb146105385780631f3fed8f14610562578063203e727e1461058c576103c2565b80631694505e116103955780631694505e1461046857806318160ddd146104925780631816467f146104bc578063184c16c5146104e4576103c2565b806306fdde03146103c6578063095ea7b3146103f057806310d5de531461042c576103c2565b366103c257005b5f80fd5b3480156103d1575f80fd5b506103da610eb2565b6040516103e791906145b6565b60405180910390f35b3480156103fb575f80fd5b5061041660048036038101906104119190614667565b610f42565b60405161042391906146bf565b60405180910390f35b348015610437575f80fd5b50610452600480360381019061044d91906146d8565b610f5f565b60405161045f91906146bf565b60405180910390f35b348015610473575f80fd5b5061047c610f7b565b604051610489919061475e565b60405180910390f35b34801561049d575f80fd5b506104a6610f9f565b6040516104b39190614786565b60405180910390f35b3480156104c7575f80fd5b506104e260048036038101906104dd91906146d8565b610fa8565b005b3480156104ef575f80fd5b506104f86110e2565b6040516105059190614786565b60405180910390f35b348015610519575f80fd5b506105226110e8565b60405161052f9190614786565b60405180910390f35b348015610543575f80fd5b5061054c6110ee565b6040516105599190614786565b60405180910390f35b34801561056d575f80fd5b506105766110f4565b6040516105839190614786565b60405180910390f35b348015610597575f80fd5b506105b260048036038101906105ad919061479f565b6110fa565b005b3480156105bf575f80fd5b506105da60048036038101906105d591906147ca565b611209565b6040516105e791906146bf565b60405180910390f35b3480156105fb575f80fd5b506106046112fb565b6040516106119190614829565b60405180910390f35b348015610625575f80fd5b5061062e611301565b60405161063b9190614786565b60405180910390f35b34801561064f575f80fd5b50610658611307565b60405161066591906146bf565b60405180910390f35b348015610679575f80fd5b50610682611319565b60405161068f919061485d565b60405180910390f35b3480156106a3575f80fd5b506106be60048036038101906106b99190614667565b611321565b6040516106cb91906146bf565b60405180910390f35b3480156106df575f80fd5b506106fa60048036038101906106f59190614667565b6113c8565b005b348015610707575f80fd5b50610710611452565b60405161071d9190614829565b60405180910390f35b348015610731575f80fd5b5061073a611476565b60405161074791906146bf565b60405180910390f35b34801561075b575f80fd5b50610776600480360381019061077191906146d8565b611488565b60405161078391906146bf565b60405180910390f35b348015610797575f80fd5b506107a06114da565b6040516107ad9190614786565b60405180910390f35b3480156107c1575f80fd5b506107ca6114e0565b6040516107d791906146bf565b60405180910390f35b3480156107eb575f80fd5b50610806600480360381019061080191906146d8565b6114f3565b6040516108139190614786565b60405180910390f35b348015610827575f80fd5b50610830611538565b005b34801561083d575f80fd5b50610858600480360381019061085391906148a0565b6115bf565b005b348015610865575f80fd5b5061086e6116fd565b60405161087b91906146bf565b60405180910390f35b34801561088f575f80fd5b506108aa60048036038101906108a591906148f0565b61179a565b005b3480156108b7575f80fd5b506108c061186e565b6040516108cd9190614829565b60405180910390f35b3480156108e1575f80fd5b506108ea611893565b6040516108f79190614786565b60405180910390f35b34801561090b575f80fd5b506109266004803603810190610921919061492e565b611899565b005b348015610933575f80fd5b5061093c611998565b005b348015610949575f80fd5b50610952611a53565b60405161095f9190614829565b60405180910390f35b348015610973575f80fd5b5061097c611a7b565b6040516109899190614829565b60405180910390f35b34801561099d575f80fd5b506109a6611aa0565b6040516109b39190614786565b60405180910390f35b3480156109c7575f80fd5b506109e260048036038101906109dd919061497e565b611aa6565b005b3480156109ef575f80fd5b506109f8611b3f565b604051610a0591906145b6565b60405180910390f35b348015610a19575f80fd5b50610a346004803603810190610a2f91906148f0565b611bcf565b005b348015610a41575f80fd5b50610a4a611ce7565b604051610a579190614786565b60405180910390f35b348015610a6b575f80fd5b50610a74611ced565b604051610a819190614786565b60405180910390f35b348015610a95575f80fd5b50610a9e611cf3565b604051610aab9190614786565b60405180910390f35b348015610abf575f80fd5b50610ac8611cf9565b604051610ad59190614786565b60405180910390f35b348015610ae9575f80fd5b50610b046004803603810190610aff9190614667565b611cff565b604051610b1191906146bf565b60405180910390f35b348015610b25575f80fd5b50610b2e611de5565b604051610b3b9190614786565b60405180910390f35b348015610b4f575f80fd5b50610b6a6004803603810190610b659190614667565b611deb565b604051610b7791906146bf565b60405180910390f35b348015610b8b575f80fd5b50610ba66004803603810190610ba191906146d8565b611e08565b005b348015610bb3575f80fd5b50610bce6004803603810190610bc991906146d8565b611f42565b604051610bdb91906146bf565b60405180910390f35b348015610bef575f80fd5b50610bf8611f5f565b604051610c0591906146bf565b60405180910390f35b348015610c19575f80fd5b50610c346004803603810190610c2f91906148f0565b611f72565b005b348015610c41575f80fd5b50610c5c6004803603810190610c57919061492e565b612094565b005b348015610c69575f80fd5b50610c846004803603810190610c7f919061479f565b612193565b005b348015610c91575f80fd5b50610c9a6122a2565b604051610ca791906146bf565b60405180910390f35b348015610cbb575f80fd5b50610cc46122b4565b604051610cd19190614786565b60405180910390f35b348015610ce5575f80fd5b50610d006004803603810190610cfb919061479f565b6122ba565b604051610d0d91906146bf565b60405180910390f35b348015610d21575f80fd5b50610d2a61240e565b604051610d379190614786565b60405180910390f35b348015610d4b575f80fd5b50610d666004803603810190610d6191906149a9565b612414565b604051610d739190614786565b60405180910390f35b348015610d87575f80fd5b50610d90612496565b604051610d9d9190614786565b60405180910390f35b348015610db1575f80fd5b50610dba61249c565b604051610dc791906146bf565b60405180910390f35b348015610ddb575f80fd5b50610de4612539565b604051610df19190614786565b60405180910390f35b348015610e05575f80fd5b50610e206004803603810190610e1b91906146d8565b61253f565b005b348015610e2d575f80fd5b50610e36612635565b604051610e439190614786565b60405180910390f35b348015610e57575f80fd5b50610e6061263b565b604051610e6d9190614786565b60405180910390f35b348015610e81575f80fd5b50610e9c6004803603810190610e97919061479f565b612641565b604051610ea991906146bf565b60405180910390f35b606060038054610ec190614a14565b80601f0160208091040260200160405190810160405280929190818152602001828054610eed90614a14565b8015610f385780601f10610f0f57610100808354040283529160200191610f38565b820191905f5260205f20905b815481529060010190602001808311610f1b57829003601f168201915b5050505050905090565b5f610f55610f4e61290d565b8484612914565b6001905092915050565b60208052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610fb061290d565b73ffffffffffffffffffffffffffffffffffffffff16610fce611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90614a8e565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61110261290d565b73ffffffffffffffffffffffffffffffffffffffff16611120611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90614a8e565b60405180910390fd5b670de0b6b3a76400006103e8600161118c610f9f565b6111969190614ad9565b6111a09190614b47565b6111aa9190614b47565b8110156111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e390614be7565b60405180910390fd5b670de0b6b3a7640000816112009190614ad9565b60088190555050565b5f611215848484612ad7565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61125c61290d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d290614c75565b60405180910390fd5b6112ef856112e761290d565b858403612914565b60019150509392505050565b61dead81565b600d5481565b600c5f9054906101000a900460ff1681565b5f6012905090565b5f6113be61132d61290d565b848460015f61133a61290d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546113b99190614c93565b612914565b6001905092915050565b6113d061290d565b73ffffffffffffffffffffffffffffffffffffffff166113ee611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90614a8e565b60405180910390fd5b61144e8282613821565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60115f9054906101000a900460ff1681565b5f601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61154061290d565b73ffffffffffffffffffffffffffffffffffffffff1661155e611a53565b73ffffffffffffffffffffffffffffffffffffffff16146115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90614a8e565b60405180910390fd5b6115bd5f613978565b565b6115c761290d565b73ffffffffffffffffffffffffffffffffffffffff166115e5611a53565b73ffffffffffffffffffffffffffffffffffffffff161461163b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163290614a8e565b60405180910390fd5b610258831015611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790614d36565b60405180910390fd5b6103e8821115801561169257505f8210155b6116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c890614dc4565b60405180910390fd5b82600d8190555081600b8190555080600c5f6101000a81548160ff021916908315150217905550505050565b5f61170661290d565b73ffffffffffffffffffffffffffffffffffffffff16611724611a53565b73ffffffffffffffffffffffffffffffffffffffff161461177a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177190614a8e565b60405180910390fd5b5f60115f6101000a81548160ff0219169083151502179055506001905090565b6117a261290d565b73ffffffffffffffffffffffffffffffffffffffff166117c0611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90614a8e565b60405180910390fd5b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6118a161290d565b73ffffffffffffffffffffffffffffffffffffffff166118bf611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c90614a8e565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461193d9190614c93565b6119479190614c93565b60148190555060646014541115611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a90614e2c565b60405180910390fd5b505050565b6119a061290d565b73ffffffffffffffffffffffffffffffffffffffff166119be611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b90614a8e565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611aae61290d565b73ffffffffffffffffffffffffffffffffffffffff16611acc611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990614a8e565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611b4e90614a14565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7a90614a14565b8015611bc55780601f10611b9c57610100808354040283529160200191611bc5565b820191905f5260205f20905b815481529060010190602001808311611ba857829003601f168201915b5050505050905090565b611bd761290d565b73ffffffffffffffffffffffffffffffffffffffff16611bf5611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4290614a8e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd090614eba565b60405180910390fd5b611ce38282613a3b565b5050565b60175481565b60105481565b601e5481565b601b5481565b5f8060015f611d0c61290d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd90614f48565b60405180910390fd5b611dda611dd161290d565b85858403612914565b600191505092915050565b600e5481565b5f611dfe611df761290d565b8484612ad7565b6001905092915050565b611e1061290d565b73ffffffffffffffffffffffffffffffffffffffff16611e2e611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7b90614a8e565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6021602052805f5260405f205f915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f7a61290d565b73ffffffffffffffffffffffffffffffffffffffff16611f98611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe590614a8e565b60405180910390fd5b80601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161208891906146bf565b60405180910390a25050565b61209c61290d565b73ffffffffffffffffffffffffffffffffffffffff166120ba611a53565b73ffffffffffffffffffffffffffffffffffffffff1614612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790614a8e565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546121389190614c93565b6121429190614c93565b6018819055506064601854111561218e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218590614e2c565b60405180910390fd5b505050565b61219b61290d565b73ffffffffffffffffffffffffffffffffffffffff166121b9611a53565b73ffffffffffffffffffffffffffffffffffffffff161461220f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220690614a8e565b60405180910390fd5b670de0b6b3a76400006103e86005612225610f9f565b61222f9190614ad9565b6122399190614b47565b6122439190614b47565b811015612285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227c90614fd6565b60405180910390fd5b670de0b6b3a7640000816122999190614ad9565b600a8190555050565b60135f9054906101000a900460ff1681565b60085481565b5f6122c361290d565b73ffffffffffffffffffffffffffffffffffffffff166122e1611a53565b73ffffffffffffffffffffffffffffffffffffffff1614612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e90614a8e565b60405180910390fd5b620186a06001612345610f9f565b61234f9190614ad9565b6123599190614b47565b82101561239b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239290615064565b60405180910390fd5b6103e860056123a8610f9f565b6123b29190614ad9565b6123bc9190614b47565b8211156123fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f5906150f2565b60405180910390fd5b8160098190555060019050919050565b60145481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b5f6124a561290d565b73ffffffffffffffffffffffffffffffffffffffff166124c3611a53565b73ffffffffffffffffffffffffffffffffffffffff1614612519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251090614a8e565b60405180910390fd5b5f60135f6101000a81548160ff0219169083151502179055506001905090565b60165481565b61254761290d565b73ffffffffffffffffffffffffffffffffffffffff16612565611a53565b73ffffffffffffffffffffffffffffffffffffffff16146125bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b290614a8e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262090615180565b60405180910390fd5b61263281613978565b50565b601a5481565b600a5481565b5f61264a61290d565b73ffffffffffffffffffffffffffffffffffffffff16612668611a53565b73ffffffffffffffffffffffffffffffffffffffff16146126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b590614a8e565b60405180910390fd5b600f546010546126ce9190614c93565b421161270f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612706906151e8565b60405180910390fd5b6103e8821115612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274b90615276565b60405180910390fd5b426010819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016127b59190614829565b602060405180830381865afa1580156127d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127f491906152a8565b90505f61281e6127106128108685613ad990919063ffffffff16565b613aee90919063ffffffff16565b90505f811115612856576128557f000000000000000000000000000000000000000000000000000000000000000061dead83613b03565b5b5f7f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156128bf575f80fd5b505af11580156128d1573d5f803e3d5ffd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297990615343565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e7906153d1565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aca9190614786565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3c9061545f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612baa906154ed565b60405180910390fd5b5f8103612bca57612bc583835f613b03565b61381c565b60115f9054906101000a900460ff161561327157612be6611a53565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c545750612c24611a53565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c8c57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc6575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cdf5750600560149054906101000a900460ff16155b1561327057601160019054906101000a900460ff16612dd357601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612d935750601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc990615555565b60405180910390fd5b5b60135f9054906101000a900460ff1615612f9657612def611a53565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e7657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ece57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f95574360125f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410612f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4990615609565b60405180910390fd5b4360125f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613033575060205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156130da5760085481111561307d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307490615697565b60405180910390fd5b600a54613089836114f3565b826130949190614c93565b11156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc906156ff565b60405180910390fd5b61326f565b60215f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613177575060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156131c6576008548111156131c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b89061578d565b60405180910390fd5b61326e565b60205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661326d57600a54613220836114f3565b8261322b9190614c93565b111561326c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613263906156ff565b60405180910390fd5b5b5b5b5b5b5f61327b306114f3565b90505f600954821015905080801561329f5750601160029054906101000a900460ff165b80156132b85750600560149054906101000a900460ff16155b801561330b575060215f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561335e5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156133b15750601f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156133f4576001600560146101000a81548160ff0219169083151502179055506133d9613d78565b5f600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015613457575060215f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b801561346e5750600c5f9054906101000a900460ff165b80156134895750600d54600e546134859190614c93565b4210155b80156134dc5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156134eb576134e9614047565b505b5f600560149054906101000a900460ff16159050601f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061359a5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156135a3575f90505b5f811561380c5760215f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561360157505f601854115b156136cb5761362e606461362060185488613ad990919063ffffffff16565b613aee90919063ffffffff16565b9050601854601a54826136419190614ad9565b61364b9190614b47565b601d5f82825461365b9190614c93565b92505081905550601854601b54826136739190614ad9565b61367d9190614b47565b601e5f82825461368d9190614c93565b92505081905550601854601954826136a59190614ad9565b6136af9190614b47565b601c5f8282546136bf9190614c93565b925050819055506137e9565b60215f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561372257505f601454115b156137e85761374f606461374160145488613ad990919063ffffffff16565b613aee90919063ffffffff16565b9050601454601654826137629190614ad9565b61376c9190614b47565b601d5f82825461377c9190614c93565b92505081905550601454601754826137949190614ad9565b61379e9190614b47565b601e5f8282546137ae9190614c93565b92505081905550601454601554826137c69190614ad9565b6137d09190614b47565b601c5f8282546137e09190614c93565b925050819055505b5b5f8111156137fd576137fc873083613b03565b5b808561380991906157ab565b94505b613817878787613b03565b505050505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361388f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388690615828565b60405180910390fd5b61389a5f8383614201565b8060025f8282546138ab9190614c93565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546138fd9190614c93565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139619190614786565b60405180910390a36139745f8383614206565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f8183613ae69190614ad9565b905092915050565b5f8183613afb9190614b47565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b689061545f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bd6906154ed565b60405180910390fd5b613bea838383614201565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c64906158b6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254613cfb9190614c93565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613d5f9190614786565b60405180910390a3613d72848484614206565b50505050565b5f613d82306114f3565b90505f601e54601c54601d54613d989190614c93565b613da29190614c93565b90505f80831480613db257505f82145b15613dbf57505050614045565b6014600954613dce9190614ad9565b831115613de7576014600954613de49190614ad9565b92505b5f600283601d5486613df99190614ad9565b613e039190614b47565b613e0d9190614b47565b90505f613e23828661420b90919063ffffffff16565b90505f479050613e3282614220565b5f613e46824761420b90919063ffffffff16565b90505f613e7087613e62601c5485613ad990919063ffffffff16565b613aee90919063ffffffff16565b90505f613e9a88613e8c601e5486613ad990919063ffffffff16565b613aee90919063ffffffff16565b90505f818385613eaa91906157ab565b613eb491906157ab565b90505f601d819055505f601c819055505f601e8190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613f1090615901565b5f6040518083038185875af1925050503d805f8114613f4a576040519150601f19603f3d011682016040523d82523d5f602084013e613f4f565b606091505b5050809850505f87118015613f6357505f81115b15613fb057613f728782614453565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613fa793929190615915565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ff590615901565b5f6040518083038185875af1925050503d805f811461402f576040519150601f19603f3d011682016040523d82523d5f602084013e614034565b606091505b505080985050505050505050505050505b565b5f42600e819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016140a99190614829565b602060405180830381865afa1580156140c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140e891906152a8565b90505f614114612710614106600b5485613ad990919063ffffffff16565b613aee90919063ffffffff16565b90505f81111561414c5761414b7f000000000000000000000000000000000000000000000000000000000000000061dead83613b03565b5b5f7f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156141b5575f80fd5b505af11580156141c7573d5f803e3d5ffd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b5f818361421891906157ab565b905092915050565b5f600267ffffffffffffffff81111561423c5761423b61594a565b5b60405190808252806020026020018201604052801561426a5781602001602082028036833780820191505090505b50905030815f8151811061428157614280615977565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614324573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061434891906159b8565b8160018151811061435c5761435b615977565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506143c1307f000000000000000000000000000000000000000000000000000000000000000084612914565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401614422959493929190615ad3565b5f604051808303815f87803b158015614439575f80fd5b505af115801561444b573d5f803e3d5ffd5b505050505050565b61447e307f000000000000000000000000000000000000000000000000000000000000000084612914565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061dead426040518863ffffffff1660e01b81526004016144e496959493929190615b2b565b60606040518083038185885af1158015614500573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906145259190615b8a565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015614563578082015181840152602081019050614548565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6145888261452c565b6145928185614536565b93506145a2818560208601614546565b6145ab8161456e565b840191505092915050565b5f6020820190508181035f8301526145ce818461457e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f614603826145da565b9050919050565b614613816145f9565b811461461d575f80fd5b50565b5f8135905061462e8161460a565b92915050565b5f819050919050565b61464681614634565b8114614650575f80fd5b50565b5f813590506146618161463d565b92915050565b5f806040838503121561467d5761467c6145d6565b5b5f61468a85828601614620565b925050602061469b85828601614653565b9150509250929050565b5f8115159050919050565b6146b9816146a5565b82525050565b5f6020820190506146d25f8301846146b0565b92915050565b5f602082840312156146ed576146ec6145d6565b5b5f6146fa84828501614620565b91505092915050565b5f819050919050565b5f61472661472161471c846145da565b614703565b6145da565b9050919050565b5f6147378261470c565b9050919050565b5f6147488261472d565b9050919050565b6147588161473e565b82525050565b5f6020820190506147715f83018461474f565b92915050565b61478081614634565b82525050565b5f6020820190506147995f830184614777565b92915050565b5f602082840312156147b4576147b36145d6565b5b5f6147c184828501614653565b91505092915050565b5f805f606084860312156147e1576147e06145d6565b5b5f6147ee86828701614620565b93505060206147ff86828701614620565b925050604061481086828701614653565b9150509250925092565b614823816145f9565b82525050565b5f60208201905061483c5f83018461481a565b92915050565b5f60ff82169050919050565b61485781614842565b82525050565b5f6020820190506148705f83018461484e565b92915050565b61487f816146a5565b8114614889575f80fd5b50565b5f8135905061489a81614876565b92915050565b5f805f606084860312156148b7576148b66145d6565b5b5f6148c486828701614653565b93505060206148d586828701614653565b92505060406148e68682870161488c565b9150509250925092565b5f8060408385031215614906576149056145d6565b5b5f61491385828601614620565b92505060206149248582860161488c565b9150509250929050565b5f805f60608486031215614945576149446145d6565b5b5f61495286828701614653565b935050602061496386828701614653565b925050604061497486828701614653565b9150509250925092565b5f60208284031215614993576149926145d6565b5b5f6149a08482850161488c565b91505092915050565b5f80604083850312156149bf576149be6145d6565b5b5f6149cc85828601614620565b92505060206149dd85828601614620565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680614a2b57607f821691505b602082108103614a3e57614a3d6149e7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614a78602083614536565b9150614a8382614a44565b602082019050919050565b5f6020820190508181035f830152614aa581614a6c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614ae382614634565b9150614aee83614634565b9250828202614afc81614634565b91508282048414831517614b1357614b12614aac565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614b5182614634565b9150614b5c83614634565b925082614b6c57614b6b614b1a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f614bd1602f83614536565b9150614bdc82614b77565b604082019050919050565b5f6020820190508181035f830152614bfe81614bc5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614c5f602883614536565b9150614c6a82614c05565b604082019050919050565b5f6020820190508181035f830152614c8c81614c53565b9050919050565b5f614c9d82614634565b9150614ca883614634565b9250828201905080821115614cc057614cbf614aac565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e2074685f8201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b5f614d20603383614536565b9150614d2b82614cc6565b604082019050919050565b5f6020820190508181035f830152614d4d81614d14565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e742062655f8201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b5f614dae603083614536565b9150614db982614d54565b604082019050919050565b5f6020820190508181035f830152614ddb81614da2565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c6573730000005f82015250565b5f614e16601d83614536565b9150614e2182614de2565b602082019050919050565b5f6020820190508181035f830152614e4381614e0a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614ea4603983614536565b9150614eaf82614e4a565b604082019050919050565b5f6020820190508181035f830152614ed181614e98565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614f32602583614536565b9150614f3d82614ed8565b604082019050919050565b5f6020820190508181035f830152614f5f81614f26565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f614fc0602483614536565b9150614fcb82614f66565b604082019050919050565b5f6020820190508181035f830152614fed81614fb4565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f61504e603583614536565b915061505982614ff4565b604082019050919050565b5f6020820190508181035f83015261507b81615042565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f6150dc603483614536565b91506150e782615082565b604082019050919050565b5f6020820190508181035f830152615109816150d0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61516a602683614536565b915061517582615110565b604082019050919050565b5f6020820190508181035f8301526151978161515e565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973685f82015250565b5f6151d2602083614536565b91506151dd8261519e565b602082019050919050565b5f6020820190508181035f8301526151ff816151c6565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f5f8201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b5f615260602a83614536565b915061526b82615206565b604082019050919050565b5f6020820190508181035f83015261528d81615254565b9050919050565b5f815190506152a28161463d565b92915050565b5f602082840312156152bd576152bc6145d6565b5b5f6152ca84828501615294565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61532d602483614536565b9150615338826152d3565b604082019050919050565b5f6020820190508181035f83015261535a81615321565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6153bb602283614536565b91506153c682615361565b604082019050919050565b5f6020820190508181035f8301526153e8816153af565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f615449602583614536565b9150615454826153ef565b604082019050919050565b5f6020820190508181035f8301526154768161543d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6154d7602383614536565b91506154e28261547d565b604082019050919050565b5f6020820190508181035f830152615504816154cb565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f61553f601683614536565b915061554a8261550b565b602082019050919050565b5f6020820190508181035f83015261556c81615533565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f6155f3604983614536565b91506155fe82615573565b606082019050919050565b5f6020820190508181035f830152615620816155e7565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f615681603583614536565b915061568c82615627565b604082019050919050565b5f6020820190508181035f8301526156ae81615675565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6156e9601383614536565b91506156f4826156b5565b602082019050919050565b5f6020820190508181035f830152615716816156dd565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615777603683614536565b91506157828261571d565b604082019050919050565b5f6020820190508181035f8301526157a48161576b565b9050919050565b5f6157b582614634565b91506157c083614634565b92508282039050818111156157d8576157d7614aac565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f615812601f83614536565b915061581d826157de565b602082019050919050565b5f6020820190508181035f83015261583f81615806565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6158a0602683614536565b91506158ab82615846565b604082019050919050565b5f6020820190508181035f8301526158cd81615894565b9050919050565b5f81905092915050565b50565b5f6158ec5f836158d4565b91506158f7826158de565b5f82019050919050565b5f61590b826158e1565b9150819050919050565b5f6060820190506159285f830186614777565b6159356020830185614777565b6159426040830184614777565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506159b28161460a565b92915050565b5f602082840312156159cd576159cc6145d6565b5b5f6159da848285016159a4565b91505092915050565b5f819050919050565b5f615a06615a016159fc846159e3565b614703565b614634565b9050919050565b615a16816159ec565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b615a4e816145f9565b82525050565b5f615a5f8383615a45565b60208301905092915050565b5f602082019050919050565b5f615a8182615a1c565b615a8b8185615a26565b9350615a9683615a36565b805f5b83811015615ac6578151615aad8882615a54565b9750615ab883615a6b565b925050600181019050615a99565b5085935050505092915050565b5f60a082019050615ae65f830188614777565b615af36020830187615a0d565b8181036040830152615b058186615a77565b9050615b14606083018561481a565b615b216080830184614777565b9695505050505050565b5f60c082019050615b3e5f83018961481a565b615b4b6020830188614777565b615b586040830187615a0d565b615b656060830186615a0d565b615b72608083018561481a565b615b7f60a0830184614777565b979650505050505050565b5f805f60608486031215615ba157615ba06145d6565b5b5f615bae86828701615294565b9350506020615bbf86828701615294565b9250506040615bd086828701615294565b915050925092509256fea2646970667358221220c372ce3feb9f0052547b7176292da22703606a38cf51744051a1e173e9c3662b64736f6c63430008140033

Deployed Bytecode

0x6080604052600436106103bb575f3560e01c80638a8c523c116101f1578063bbc0c7421161010c578063dd62ed3e1161009f578063f2fde38b1161006e578063f2fde38b14610dfa578063f637434214610e22578063f8b45b0514610e4c578063fe72b27a14610e76576103c2565b8063dd62ed3e14610d40578063e2f4560514610d7c578063e884f26014610da6578063f11a24d314610dd0576103c2565b8063c876d0b9116100db578063c876d0b914610c86578063c8c8ebe414610cb0578063d257b34f14610cda578063d85ba06314610d16576103c2565b8063bbc0c74214610be4578063c024666814610c0e578063c17b5b8c14610c36578063c18bc19514610c5e576103c2565b80639ec22c0e11610184578063a4c82a0011610153578063a4c82a0014610b1a578063a9059cbb14610b44578063aacebbe314610b80578063b62496f514610ba8576103c2565b80639ec22c0e14610a605780639fccce3214610a8a578063a0d82dc514610ab4578063a457c2d714610ade576103c2565b8063924de9b7116101c0578063924de9b7146109bc57806395d89b41146109e45780639a7a23d614610a0e5780639c3b4fdc14610a36576103c2565b80638a8c523c146109285780638da5cb5b1461093e5780638ea5220f146109685780639213691314610992576103c2565b8063313ce567116102e157806370a08231116102745780637571336a116102435780637571336a1461088457806375f0a874146108ac5780637bce5a04146108d65780638095d56414610900576103c2565b806370a08231146107e0578063715018a61461081c578063730c188814610832578063751039fc1461085a576103c2565b80634a62bb65116102b05780634a62bb65146107265780634fbee193146107505780636a486a8e1461078c5780636ddd1713146107b6576103c2565b8063313ce5671461066e578063395093511461069857806340c10f19146106d457806349bd5a5e146106fc576103c2565b8063199ffc721161035957806323b872dd1161032857806323b872dd146105b457806327c8f835146105f05780632c3e486c1461061a5780632e82f1a014610644576103c2565b8063199ffc721461050e5780631a8145bb146105385780631f3fed8f14610562578063203e727e1461058c576103c2565b80631694505e116103955780631694505e1461046857806318160ddd146104925780631816467f146104bc578063184c16c5146104e4576103c2565b806306fdde03146103c6578063095ea7b3146103f057806310d5de531461042c576103c2565b366103c257005b5f80fd5b3480156103d1575f80fd5b506103da610eb2565b6040516103e791906145b6565b60405180910390f35b3480156103fb575f80fd5b5061041660048036038101906104119190614667565b610f42565b60405161042391906146bf565b60405180910390f35b348015610437575f80fd5b50610452600480360381019061044d91906146d8565b610f5f565b60405161045f91906146bf565b60405180910390f35b348015610473575f80fd5b5061047c610f7b565b604051610489919061475e565b60405180910390f35b34801561049d575f80fd5b506104a6610f9f565b6040516104b39190614786565b60405180910390f35b3480156104c7575f80fd5b506104e260048036038101906104dd91906146d8565b610fa8565b005b3480156104ef575f80fd5b506104f86110e2565b6040516105059190614786565b60405180910390f35b348015610519575f80fd5b506105226110e8565b60405161052f9190614786565b60405180910390f35b348015610543575f80fd5b5061054c6110ee565b6040516105599190614786565b60405180910390f35b34801561056d575f80fd5b506105766110f4565b6040516105839190614786565b60405180910390f35b348015610597575f80fd5b506105b260048036038101906105ad919061479f565b6110fa565b005b3480156105bf575f80fd5b506105da60048036038101906105d591906147ca565b611209565b6040516105e791906146bf565b60405180910390f35b3480156105fb575f80fd5b506106046112fb565b6040516106119190614829565b60405180910390f35b348015610625575f80fd5b5061062e611301565b60405161063b9190614786565b60405180910390f35b34801561064f575f80fd5b50610658611307565b60405161066591906146bf565b60405180910390f35b348015610679575f80fd5b50610682611319565b60405161068f919061485d565b60405180910390f35b3480156106a3575f80fd5b506106be60048036038101906106b99190614667565b611321565b6040516106cb91906146bf565b60405180910390f35b3480156106df575f80fd5b506106fa60048036038101906106f59190614667565b6113c8565b005b348015610707575f80fd5b50610710611452565b60405161071d9190614829565b60405180910390f35b348015610731575f80fd5b5061073a611476565b60405161074791906146bf565b60405180910390f35b34801561075b575f80fd5b50610776600480360381019061077191906146d8565b611488565b60405161078391906146bf565b60405180910390f35b348015610797575f80fd5b506107a06114da565b6040516107ad9190614786565b60405180910390f35b3480156107c1575f80fd5b506107ca6114e0565b6040516107d791906146bf565b60405180910390f35b3480156107eb575f80fd5b50610806600480360381019061080191906146d8565b6114f3565b6040516108139190614786565b60405180910390f35b348015610827575f80fd5b50610830611538565b005b34801561083d575f80fd5b50610858600480360381019061085391906148a0565b6115bf565b005b348015610865575f80fd5b5061086e6116fd565b60405161087b91906146bf565b60405180910390f35b34801561088f575f80fd5b506108aa60048036038101906108a591906148f0565b61179a565b005b3480156108b7575f80fd5b506108c061186e565b6040516108cd9190614829565b60405180910390f35b3480156108e1575f80fd5b506108ea611893565b6040516108f79190614786565b60405180910390f35b34801561090b575f80fd5b506109266004803603810190610921919061492e565b611899565b005b348015610933575f80fd5b5061093c611998565b005b348015610949575f80fd5b50610952611a53565b60405161095f9190614829565b60405180910390f35b348015610973575f80fd5b5061097c611a7b565b6040516109899190614829565b60405180910390f35b34801561099d575f80fd5b506109a6611aa0565b6040516109b39190614786565b60405180910390f35b3480156109c7575f80fd5b506109e260048036038101906109dd919061497e565b611aa6565b005b3480156109ef575f80fd5b506109f8611b3f565b604051610a0591906145b6565b60405180910390f35b348015610a19575f80fd5b50610a346004803603810190610a2f91906148f0565b611bcf565b005b348015610a41575f80fd5b50610a4a611ce7565b604051610a579190614786565b60405180910390f35b348015610a6b575f80fd5b50610a74611ced565b604051610a819190614786565b60405180910390f35b348015610a95575f80fd5b50610a9e611cf3565b604051610aab9190614786565b60405180910390f35b348015610abf575f80fd5b50610ac8611cf9565b604051610ad59190614786565b60405180910390f35b348015610ae9575f80fd5b50610b046004803603810190610aff9190614667565b611cff565b604051610b1191906146bf565b60405180910390f35b348015610b25575f80fd5b50610b2e611de5565b604051610b3b9190614786565b60405180910390f35b348015610b4f575f80fd5b50610b6a6004803603810190610b659190614667565b611deb565b604051610b7791906146bf565b60405180910390f35b348015610b8b575f80fd5b50610ba66004803603810190610ba191906146d8565b611e08565b005b348015610bb3575f80fd5b50610bce6004803603810190610bc991906146d8565b611f42565b604051610bdb91906146bf565b60405180910390f35b348015610bef575f80fd5b50610bf8611f5f565b604051610c0591906146bf565b60405180910390f35b348015610c19575f80fd5b50610c346004803603810190610c2f91906148f0565b611f72565b005b348015610c41575f80fd5b50610c5c6004803603810190610c57919061492e565b612094565b005b348015610c69575f80fd5b50610c846004803603810190610c7f919061479f565b612193565b005b348015610c91575f80fd5b50610c9a6122a2565b604051610ca791906146bf565b60405180910390f35b348015610cbb575f80fd5b50610cc46122b4565b604051610cd19190614786565b60405180910390f35b348015610ce5575f80fd5b50610d006004803603810190610cfb919061479f565b6122ba565b604051610d0d91906146bf565b60405180910390f35b348015610d21575f80fd5b50610d2a61240e565b604051610d379190614786565b60405180910390f35b348015610d4b575f80fd5b50610d666004803603810190610d6191906149a9565b612414565b604051610d739190614786565b60405180910390f35b348015610d87575f80fd5b50610d90612496565b604051610d9d9190614786565b60405180910390f35b348015610db1575f80fd5b50610dba61249c565b604051610dc791906146bf565b60405180910390f35b348015610ddb575f80fd5b50610de4612539565b604051610df19190614786565b60405180910390f35b348015610e05575f80fd5b50610e206004803603810190610e1b91906146d8565b61253f565b005b348015610e2d575f80fd5b50610e36612635565b604051610e439190614786565b60405180910390f35b348015610e57575f80fd5b50610e6061263b565b604051610e6d9190614786565b60405180910390f35b348015610e81575f80fd5b50610e9c6004803603810190610e97919061479f565b612641565b604051610ea991906146bf565b60405180910390f35b606060038054610ec190614a14565b80601f0160208091040260200160405190810160405280929190818152602001828054610eed90614a14565b8015610f385780601f10610f0f57610100808354040283529160200191610f38565b820191905f5260205f20905b815481529060010190602001808311610f1b57829003601f168201915b5050505050905090565b5f610f55610f4e61290d565b8484612914565b6001905092915050565b60208052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610fb061290d565b73ffffffffffffffffffffffffffffffffffffffff16610fce611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90614a8e565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61110261290d565b73ffffffffffffffffffffffffffffffffffffffff16611120611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90614a8e565b60405180910390fd5b670de0b6b3a76400006103e8600161118c610f9f565b6111969190614ad9565b6111a09190614b47565b6111aa9190614b47565b8110156111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e390614be7565b60405180910390fd5b670de0b6b3a7640000816112009190614ad9565b60088190555050565b5f611215848484612ad7565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61125c61290d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d290614c75565b60405180910390fd5b6112ef856112e761290d565b858403612914565b60019150509392505050565b61dead81565b600d5481565b600c5f9054906101000a900460ff1681565b5f6012905090565b5f6113be61132d61290d565b848460015f61133a61290d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546113b99190614c93565b612914565b6001905092915050565b6113d061290d565b73ffffffffffffffffffffffffffffffffffffffff166113ee611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90614a8e565b60405180910390fd5b61144e8282613821565b5050565b7f000000000000000000000000456acc191b7ba08edb1e71d650c39d087ccccc8181565b60115f9054906101000a900460ff1681565b5f601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61154061290d565b73ffffffffffffffffffffffffffffffffffffffff1661155e611a53565b73ffffffffffffffffffffffffffffffffffffffff16146115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90614a8e565b60405180910390fd5b6115bd5f613978565b565b6115c761290d565b73ffffffffffffffffffffffffffffffffffffffff166115e5611a53565b73ffffffffffffffffffffffffffffffffffffffff161461163b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163290614a8e565b60405180910390fd5b610258831015611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790614d36565b60405180910390fd5b6103e8821115801561169257505f8210155b6116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c890614dc4565b60405180910390fd5b82600d8190555081600b8190555080600c5f6101000a81548160ff021916908315150217905550505050565b5f61170661290d565b73ffffffffffffffffffffffffffffffffffffffff16611724611a53565b73ffffffffffffffffffffffffffffffffffffffff161461177a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177190614a8e565b60405180910390fd5b5f60115f6101000a81548160ff0219169083151502179055506001905090565b6117a261290d565b73ffffffffffffffffffffffffffffffffffffffff166117c0611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180d90614a8e565b60405180910390fd5b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6118a161290d565b73ffffffffffffffffffffffffffffffffffffffff166118bf611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c90614a8e565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461193d9190614c93565b6119479190614c93565b60148190555060646014541115611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a90614e2c565b60405180910390fd5b505050565b6119a061290d565b73ffffffffffffffffffffffffffffffffffffffff166119be611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b90614a8e565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611aae61290d565b73ffffffffffffffffffffffffffffffffffffffff16611acc611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990614a8e565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611b4e90614a14565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7a90614a14565b8015611bc55780601f10611b9c57610100808354040283529160200191611bc5565b820191905f5260205f20905b815481529060010190602001808311611ba857829003601f168201915b5050505050905090565b611bd761290d565b73ffffffffffffffffffffffffffffffffffffffff16611bf5611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4290614a8e565b60405180910390fd5b7f000000000000000000000000456acc191b7ba08edb1e71d650c39d087ccccc8173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd090614eba565b60405180910390fd5b611ce38282613a3b565b5050565b60175481565b60105481565b601e5481565b601b5481565b5f8060015f611d0c61290d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd90614f48565b60405180910390fd5b611dda611dd161290d565b85858403612914565b600191505092915050565b600e5481565b5f611dfe611df761290d565b8484612ad7565b6001905092915050565b611e1061290d565b73ffffffffffffffffffffffffffffffffffffffff16611e2e611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7b90614a8e565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6021602052805f5260405f205f915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f7a61290d565b73ffffffffffffffffffffffffffffffffffffffff16611f98611a53565b73ffffffffffffffffffffffffffffffffffffffff1614611fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe590614a8e565b60405180910390fd5b80601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161208891906146bf565b60405180910390a25050565b61209c61290d565b73ffffffffffffffffffffffffffffffffffffffff166120ba611a53565b73ffffffffffffffffffffffffffffffffffffffff1614612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790614a8e565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546121389190614c93565b6121429190614c93565b6018819055506064601854111561218e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218590614e2c565b60405180910390fd5b505050565b61219b61290d565b73ffffffffffffffffffffffffffffffffffffffff166121b9611a53565b73ffffffffffffffffffffffffffffffffffffffff161461220f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220690614a8e565b60405180910390fd5b670de0b6b3a76400006103e86005612225610f9f565b61222f9190614ad9565b6122399190614b47565b6122439190614b47565b811015612285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227c90614fd6565b60405180910390fd5b670de0b6b3a7640000816122999190614ad9565b600a8190555050565b60135f9054906101000a900460ff1681565b60085481565b5f6122c361290d565b73ffffffffffffffffffffffffffffffffffffffff166122e1611a53565b73ffffffffffffffffffffffffffffffffffffffff1614612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e90614a8e565b60405180910390fd5b620186a06001612345610f9f565b61234f9190614ad9565b6123599190614b47565b82101561239b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239290615064565b60405180910390fd5b6103e860056123a8610f9f565b6123b29190614ad9565b6123bc9190614b47565b8211156123fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f5906150f2565b60405180910390fd5b8160098190555060019050919050565b60145481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b5f6124a561290d565b73ffffffffffffffffffffffffffffffffffffffff166124c3611a53565b73ffffffffffffffffffffffffffffffffffffffff1614612519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251090614a8e565b60405180910390fd5b5f60135f6101000a81548160ff0219169083151502179055506001905090565b60165481565b61254761290d565b73ffffffffffffffffffffffffffffffffffffffff16612565611a53565b73ffffffffffffffffffffffffffffffffffffffff16146125bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b290614a8e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262090615180565b60405180910390fd5b61263281613978565b50565b601a5481565b600a5481565b5f61264a61290d565b73ffffffffffffffffffffffffffffffffffffffff16612668611a53565b73ffffffffffffffffffffffffffffffffffffffff16146126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b590614a8e565b60405180910390fd5b600f546010546126ce9190614c93565b421161270f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612706906151e8565b60405180910390fd5b6103e8821115612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274b90615276565b60405180910390fd5b426010819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000456acc191b7ba08edb1e71d650c39d087ccccc816040518263ffffffff1660e01b81526004016127b59190614829565b602060405180830381865afa1580156127d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127f491906152a8565b90505f61281e6127106128108685613ad990919063ffffffff16565b613aee90919063ffffffff16565b90505f811115612856576128557f000000000000000000000000456acc191b7ba08edb1e71d650c39d087ccccc8161dead83613b03565b5b5f7f000000000000000000000000456acc191b7ba08edb1e71d650c39d087ccccc8190508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156128bf575f80fd5b505af11580156128d1573d5f803e3d5ffd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297990615343565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e7906153d1565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aca9190614786565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3c9061545f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612baa906154ed565b60405180910390fd5b5f8103612bca57612bc583835f613b03565b61381c565b60115f9054906101000a900460ff161561327157612be6611a53565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c545750612c24611a53565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c8c57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc6575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cdf5750600560149054906101000a900460ff16155b1561327057601160019054906101000a900460ff16612dd357601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612d935750601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc990615555565b60405180910390fd5b5b60135f9054906101000a900460ff1615612f9657612def611a53565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e7657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ece57507f000000000000000000000000456acc191b7ba08edb1e71d650c39d087ccccc8173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f95574360125f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410612f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4990615609565b60405180910390fd5b4360125f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613033575060205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156130da5760085481111561307d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307490615697565b60405180910390fd5b600a54613089836114f3565b826130949190614c93565b11156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc906156ff565b60405180910390fd5b61326f565b60215f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613177575060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156131c6576008548111156131c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b89061578d565b60405180910390fd5b61326e565b60205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661326d57600a54613220836114f3565b8261322b9190614c93565b111561326c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613263906156ff565b60405180910390fd5b5b5b5b5b5b5f61327b306114f3565b90505f600954821015905080801561329f5750601160029054906101000a900460ff165b80156132b85750600560149054906101000a900460ff16155b801561330b575060215f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561335e5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156133b15750601f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156133f4576001600560146101000a81548160ff0219169083151502179055506133d9613d78565b5f600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015613457575060215f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b801561346e5750600c5f9054906101000a900460ff165b80156134895750600d54600e546134859190614c93565b4210155b80156134dc5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156134eb576134e9614047565b505b5f600560149054906101000a900460ff16159050601f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061359a5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156135a3575f90505b5f811561380c5760215f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561360157505f601854115b156136cb5761362e606461362060185488613ad990919063ffffffff16565b613aee90919063ffffffff16565b9050601854601a54826136419190614ad9565b61364b9190614b47565b601d5f82825461365b9190614c93565b92505081905550601854601b54826136739190614ad9565b61367d9190614b47565b601e5f82825461368d9190614c93565b92505081905550601854601954826136a59190614ad9565b6136af9190614b47565b601c5f8282546136bf9190614c93565b925050819055506137e9565b60215f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561372257505f601454115b156137e85761374f606461374160145488613ad990919063ffffffff16565b613aee90919063ffffffff16565b9050601454601654826137629190614ad9565b61376c9190614b47565b601d5f82825461377c9190614c93565b92505081905550601454601754826137949190614ad9565b61379e9190614b47565b601e5f8282546137ae9190614c93565b92505081905550601454601554826137c69190614ad9565b6137d09190614b47565b601c5f8282546137e09190614c93565b925050819055505b5b5f8111156137fd576137fc873083613b03565b5b808561380991906157ab565b94505b613817878787613b03565b505050505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361388f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388690615828565b60405180910390fd5b61389a5f8383614201565b8060025f8282546138ab9190614c93565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546138fd9190614c93565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139619190614786565b60405180910390a36139745f8383614206565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f8183613ae69190614ad9565b905092915050565b5f8183613afb9190614b47565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b689061545f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bd6906154ed565b60405180910390fd5b613bea838383614201565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c64906158b6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254613cfb9190614c93565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613d5f9190614786565b60405180910390a3613d72848484614206565b50505050565b5f613d82306114f3565b90505f601e54601c54601d54613d989190614c93565b613da29190614c93565b90505f80831480613db257505f82145b15613dbf57505050614045565b6014600954613dce9190614ad9565b831115613de7576014600954613de49190614ad9565b92505b5f600283601d5486613df99190614ad9565b613e039190614b47565b613e0d9190614b47565b90505f613e23828661420b90919063ffffffff16565b90505f479050613e3282614220565b5f613e46824761420b90919063ffffffff16565b90505f613e7087613e62601c5485613ad990919063ffffffff16565b613aee90919063ffffffff16565b90505f613e9a88613e8c601e5486613ad990919063ffffffff16565b613aee90919063ffffffff16565b90505f818385613eaa91906157ab565b613eb491906157ab565b90505f601d819055505f601c819055505f601e8190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613f1090615901565b5f6040518083038185875af1925050503d805f8114613f4a576040519150601f19603f3d011682016040523d82523d5f602084013e613f4f565b606091505b5050809850505f87118015613f6357505f81115b15613fb057613f728782614453565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613fa793929190615915565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ff590615901565b5f6040518083038185875af1925050503d805f811461402f576040519150601f19603f3d011682016040523d82523d5f602084013e614034565b606091505b505080985050505050505050505050505b565b5f42600e819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000456acc191b7ba08edb1e71d650c39d087ccccc816040518263ffffffff1660e01b81526004016140a99190614829565b602060405180830381865afa1580156140c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140e891906152a8565b90505f614114612710614106600b5485613ad990919063ffffffff16565b613aee90919063ffffffff16565b90505f81111561414c5761414b7f000000000000000000000000456acc191b7ba08edb1e71d650c39d087ccccc8161dead83613b03565b5b5f7f000000000000000000000000456acc191b7ba08edb1e71d650c39d087ccccc8190508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156141b5575f80fd5b505af11580156141c7573d5f803e3d5ffd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b5f818361421891906157ab565b905092915050565b5f600267ffffffffffffffff81111561423c5761423b61594a565b5b60405190808252806020026020018201604052801561426a5781602001602082028036833780820191505090505b50905030815f8151811061428157614280615977565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614324573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061434891906159b8565b8160018151811061435c5761435b615977565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506143c1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612914565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401614422959493929190615ad3565b5f604051808303815f87803b158015614439575f80fd5b505af115801561444b573d5f803e3d5ffd5b505050505050565b61447e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612914565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061dead426040518863ffffffff1660e01b81526004016144e496959493929190615b2b565b60606040518083038185885af1158015614500573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906145259190615b8a565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015614563578082015181840152602081019050614548565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6145888261452c565b6145928185614536565b93506145a2818560208601614546565b6145ab8161456e565b840191505092915050565b5f6020820190508181035f8301526145ce818461457e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f614603826145da565b9050919050565b614613816145f9565b811461461d575f80fd5b50565b5f8135905061462e8161460a565b92915050565b5f819050919050565b61464681614634565b8114614650575f80fd5b50565b5f813590506146618161463d565b92915050565b5f806040838503121561467d5761467c6145d6565b5b5f61468a85828601614620565b925050602061469b85828601614653565b9150509250929050565b5f8115159050919050565b6146b9816146a5565b82525050565b5f6020820190506146d25f8301846146b0565b92915050565b5f602082840312156146ed576146ec6145d6565b5b5f6146fa84828501614620565b91505092915050565b5f819050919050565b5f61472661472161471c846145da565b614703565b6145da565b9050919050565b5f6147378261470c565b9050919050565b5f6147488261472d565b9050919050565b6147588161473e565b82525050565b5f6020820190506147715f83018461474f565b92915050565b61478081614634565b82525050565b5f6020820190506147995f830184614777565b92915050565b5f602082840312156147b4576147b36145d6565b5b5f6147c184828501614653565b91505092915050565b5f805f606084860312156147e1576147e06145d6565b5b5f6147ee86828701614620565b93505060206147ff86828701614620565b925050604061481086828701614653565b9150509250925092565b614823816145f9565b82525050565b5f60208201905061483c5f83018461481a565b92915050565b5f60ff82169050919050565b61485781614842565b82525050565b5f6020820190506148705f83018461484e565b92915050565b61487f816146a5565b8114614889575f80fd5b50565b5f8135905061489a81614876565b92915050565b5f805f606084860312156148b7576148b66145d6565b5b5f6148c486828701614653565b93505060206148d586828701614653565b92505060406148e68682870161488c565b9150509250925092565b5f8060408385031215614906576149056145d6565b5b5f61491385828601614620565b92505060206149248582860161488c565b9150509250929050565b5f805f60608486031215614945576149446145d6565b5b5f61495286828701614653565b935050602061496386828701614653565b925050604061497486828701614653565b9150509250925092565b5f60208284031215614993576149926145d6565b5b5f6149a08482850161488c565b91505092915050565b5f80604083850312156149bf576149be6145d6565b5b5f6149cc85828601614620565b92505060206149dd85828601614620565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680614a2b57607f821691505b602082108103614a3e57614a3d6149e7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614a78602083614536565b9150614a8382614a44565b602082019050919050565b5f6020820190508181035f830152614aa581614a6c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614ae382614634565b9150614aee83614634565b9250828202614afc81614634565b91508282048414831517614b1357614b12614aac565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614b5182614634565b9150614b5c83614634565b925082614b6c57614b6b614b1a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f614bd1602f83614536565b9150614bdc82614b77565b604082019050919050565b5f6020820190508181035f830152614bfe81614bc5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614c5f602883614536565b9150614c6a82614c05565b604082019050919050565b5f6020820190508181035f830152614c8c81614c53565b9050919050565b5f614c9d82614634565b9150614ca883614634565b9250828201905080821115614cc057614cbf614aac565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e2074685f8201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b5f614d20603383614536565b9150614d2b82614cc6565b604082019050919050565b5f6020820190508181035f830152614d4d81614d14565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e742062655f8201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b5f614dae603083614536565b9150614db982614d54565b604082019050919050565b5f6020820190508181035f830152614ddb81614da2565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c6573730000005f82015250565b5f614e16601d83614536565b9150614e2182614de2565b602082019050919050565b5f6020820190508181035f830152614e4381614e0a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614ea4603983614536565b9150614eaf82614e4a565b604082019050919050565b5f6020820190508181035f830152614ed181614e98565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614f32602583614536565b9150614f3d82614ed8565b604082019050919050565b5f6020820190508181035f830152614f5f81614f26565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f614fc0602483614536565b9150614fcb82614f66565b604082019050919050565b5f6020820190508181035f830152614fed81614fb4565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f61504e603583614536565b915061505982614ff4565b604082019050919050565b5f6020820190508181035f83015261507b81615042565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f6150dc603483614536565b91506150e782615082565b604082019050919050565b5f6020820190508181035f830152615109816150d0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61516a602683614536565b915061517582615110565b604082019050919050565b5f6020820190508181035f8301526151978161515e565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973685f82015250565b5f6151d2602083614536565b91506151dd8261519e565b602082019050919050565b5f6020820190508181035f8301526151ff816151c6565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f5f8201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b5f615260602a83614536565b915061526b82615206565b604082019050919050565b5f6020820190508181035f83015261528d81615254565b9050919050565b5f815190506152a28161463d565b92915050565b5f602082840312156152bd576152bc6145d6565b5b5f6152ca84828501615294565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61532d602483614536565b9150615338826152d3565b604082019050919050565b5f6020820190508181035f83015261535a81615321565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6153bb602283614536565b91506153c682615361565b604082019050919050565b5f6020820190508181035f8301526153e8816153af565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f615449602583614536565b9150615454826153ef565b604082019050919050565b5f6020820190508181035f8301526154768161543d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6154d7602383614536565b91506154e28261547d565b604082019050919050565b5f6020820190508181035f830152615504816154cb565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f61553f601683614536565b915061554a8261550b565b602082019050919050565b5f6020820190508181035f83015261556c81615533565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f6155f3604983614536565b91506155fe82615573565b606082019050919050565b5f6020820190508181035f830152615620816155e7565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f615681603583614536565b915061568c82615627565b604082019050919050565b5f6020820190508181035f8301526156ae81615675565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6156e9601383614536565b91506156f4826156b5565b602082019050919050565b5f6020820190508181035f830152615716816156dd565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615777603683614536565b91506157828261571d565b604082019050919050565b5f6020820190508181035f8301526157a48161576b565b9050919050565b5f6157b582614634565b91506157c083614634565b92508282039050818111156157d8576157d7614aac565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f615812601f83614536565b915061581d826157de565b602082019050919050565b5f6020820190508181035f83015261583f81615806565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6158a0602683614536565b91506158ab82615846565b604082019050919050565b5f6020820190508181035f8301526158cd81615894565b9050919050565b5f81905092915050565b50565b5f6158ec5f836158d4565b91506158f7826158de565b5f82019050919050565b5f61590b826158e1565b9150819050919050565b5f6060820190506159285f830186614777565b6159356020830185614777565b6159426040830184614777565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506159b28161460a565b92915050565b5f602082840312156159cd576159cc6145d6565b5b5f6159da848285016159a4565b91505092915050565b5f819050919050565b5f615a06615a016159fc846159e3565b614703565b614634565b9050919050565b615a16816159ec565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b615a4e816145f9565b82525050565b5f615a5f8383615a45565b60208301905092915050565b5f602082019050919050565b5f615a8182615a1c565b615a8b8185615a26565b9350615a9683615a36565b805f5b83811015615ac6578151615aad8882615a54565b9750615ab883615a6b565b925050600181019050615a99565b5085935050505092915050565b5f60a082019050615ae65f830188614777565b615af36020830187615a0d565b8181036040830152615b058186615a77565b9050615b14606083018561481a565b615b216080830184614777565b9695505050505050565b5f60c082019050615b3e5f83018961481a565b615b4b6020830188614777565b615b586040830187615a0d565b615b656060830186615a0d565b615b72608083018561481a565b615b7f60a0830184614777565b979650505050505050565b5f805f60608486031215615ba157615ba06145d6565b5b5f615bae86828701615294565b9350506020615bbf86828701615294565b9250506040615bd086828701615294565b915050925092509256fea2646970667358221220c372ce3feb9f0052547b7176292da22703606a38cf51744051a1e173e9c3662b64736f6c63430008140033

Deployed Bytecode Sourcemap

30118:19519:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6946:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9113:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31744:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30193:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8066:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38868:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30758:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30573:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31528:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31488;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36180:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9764:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30296:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30668:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30629:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7908:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10665:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48479:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30251:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30856:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39033:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31343:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30936:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8237:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1966:103;;;;;;;;;;;;;:::i;:::-;;47122:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35288:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36727:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30388:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31236;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37098:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35081:155;;;;;;;;;;;;;:::i;:::-;;1315:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30425:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31378:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36990:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7165:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38121:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31310:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30812:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31568:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31454:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11383:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30720:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8577:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38629:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31965:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30896:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37931:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37510:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36463:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31154:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30458:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35675:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31202:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8815:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30500:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35470:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31273:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2224:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31416:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30540:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48578:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6946:100;7000:13;7033:5;7026:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6946:100;:::o;9113:169::-;9196:4;9213:39;9222:12;:10;:12::i;:::-;9236:7;9245:6;9213:8;:39::i;:::-;9270:4;9263:11;;9113:169;;;;:::o;31744:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;30193:51::-;;;:::o;8066:108::-;8127:7;8154:12;;8147:19;;8066:108;:::o;38868:157::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38975:9:::1;;;;;;;;;;;38947:38;;38964:9;38947:38;;;;;;;;;;;;39008:9;38996;;:21;;;;;;;;;;;;;;;;;;38868:157:::0;:::o;30758:47::-;;;;:::o;30573:36::-;;;;:::o;31528:33::-;;;;:::o;31488:::-;;;;:::o;36180:275::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36317:4:::1;36309;36304:1;36288:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36287:26;;;;:::i;:::-;36286:35;;;;:::i;:::-;36276:6;:45;;36254:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;36440:6;36430;:17;;;;:::i;:::-;36407:20;:40;;;;36180:275:::0;:::o;9764:492::-;9904:4;9921:36;9931:6;9939:9;9950:6;9921:9;:36::i;:::-;9970:24;9997:11;:19;10009:6;9997:19;;;;;;;;;;;;;;;:33;10017:12;:10;:12::i;:::-;9997:33;;;;;;;;;;;;;;;;9970:60;;10069:6;10049:16;:26;;10041:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;10156:57;10165:6;10173:12;:10;:12::i;:::-;10206:6;10187:16;:25;10156:8;:57::i;:::-;10244:4;10237:11;;;9764:492;;;;;:::o;30296:53::-;30342:6;30296:53;:::o;30668:45::-;;;;:::o;30629:32::-;;;;;;;;;;;;;:::o;7908:93::-;7966:5;7991:2;7984:9;;7908:93;:::o;10665:215::-;10753:4;10770:80;10779:12;:10;:12::i;:::-;10793:7;10839:10;10802:11;:25;10814:12;:10;:12::i;:::-;10802:25;;;;;;;;;;;;;;;:34;10828:7;10802:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10770:8;:80::i;:::-;10868:4;10861:11;;10665:215;;;;:::o;48479:89::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48547:17:::1;48553:2;48557:6;48547:5;:17::i;:::-;48479:89:::0;;:::o;30251:38::-;;;:::o;30856:33::-;;;;;;;;;;;;;:::o;39033:126::-;39099:4;39123:19;:28;39143:7;39123:28;;;;;;;;;;;;;;;;;;;;;;;;;39116:35;;39033:126;;;:::o;31343:28::-;;;;:::o;30936:31::-;;;;;;;;;;;;;:::o;8237:127::-;8311:7;8338:9;:18;8348:7;8338:18;;;;;;;;;;;;;;;;8331:25;;8237:127;;;:::o;1966:103::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2031:30:::1;2058:1;2031:18;:30::i;:::-;1966:103::o:0;47122:555::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47324:3:::1;47301:19;:26;;47279:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;47451:4;47439:8;:16;;:33;;;;;47471:1;47459:8;:13;;47439:33;47417:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;47577:19;47559:15;:37;;;;47626:8;47607:16;:27;;;;47661:8;47645:13;;:24;;;;;;;;;;;;;;;;;;47122:555:::0;;;:::o;35288:121::-;35340:4;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35374:5:::1;35357:14;;:22;;;;;;;;;;;;;;;;;;35397:4;35390:11;;35288:121:::0;:::o;36727:167::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36882:4:::1;36840:31;:39;36872:6;36840:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36727:167:::0;;:::o;30388:30::-;;;;;;;;;;;;;:::o;31236:::-;;;;:::o;37098:404::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37266:13:::1;37248:15;:31;;;;37308:13;37290:15;:31;;;;37344:7;37332:9;:19;;;;37413:9;;37395:15;;37377;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;37362:12;:60;;;;37457:3;37441:12;;:19;;37433:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;37098:404:::0;;;:::o;35081:155::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35152:4:::1;35136:13;;:20;;;;;;;;;;;;;;;;;;35181:4;35167:11;;:18;;;;;;;;;;;;;;;;;;35213:15;35196:14;:32;;;;35081:155::o:0;1315:87::-;1361:7;1388:6;;;;;;;;;;;1381:13;;1315:87;:::o;30425:24::-;;;;;;;;;;;;;:::o;31378:31::-;;;;:::o;36990:100::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37075:7:::1;37061:11;;:21;;;;;;;;;;;;;;;;;;36990:100:::0;:::o;7165:104::-;7221:13;7254:7;7247:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7165:104;:::o;38121:304::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38265:13:::1;38257:21;;:4;:21;;::::0;38235:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38376:41;38405:4;38411:5;38376:28;:41::i;:::-;38121:304:::0;;:::o;31310:24::-;;;;:::o;30812:35::-;;;;:::o;31568:27::-;;;;:::o;31454:25::-;;;;:::o;11383:413::-;11476:4;11493:24;11520:11;:25;11532:12;:10;:12::i;:::-;11520:25;;;;;;;;;;;;;;;:34;11546:7;11520:34;;;;;;;;;;;;;;;;11493:61;;11593:15;11573:16;:35;;11565:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11686:67;11695:12;:10;:12::i;:::-;11709:7;11737:15;11718:16;:34;11686:8;:67::i;:::-;11784:4;11777:11;;;11383:413;;;;:::o;30720:29::-;;;;:::o;8577:175::-;8663:4;8680:42;8690:12;:10;:12::i;:::-;8704:9;8715:6;8680:9;:42::i;:::-;8740:4;8733:11;;8577:175;;;;:::o;38629:231::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38789:15:::1;;;;;;;;;;;38746:59;;38769:18;38746:59;;;;;;;;;;;;38834:18;38816:15;;:36;;;;;;;;;;;;;;;;;;38629:231:::0;:::o;31965:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;30896:33::-;;;;;;;;;;;;;:::o;37931:182::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38047:8:::1;38016:19;:28;38036:7;38016:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38087:7;38071:34;;;38096:8;38071:34;;;;;;:::i;:::-;;;;;;;;37931:182:::0;;:::o;37510:413::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37680:13:::1;37661:16;:32;;;;37723:13;37704:16;:32;;;;37760:7;37747:10;:20;;;;37832:10;;37813:16;;37794;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;37778:13;:64;;;;37878:3;37861:13;;:20;;37853:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;37510:413:::0;;;:::o;36463:256::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36603:4:::1;36595;36590:1;36574:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36573:26;;;;:::i;:::-;36572:35;;;;:::i;:::-;36562:6;:45;;36540:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;36704:6;36694;:17;;;;:::i;:::-;36682:9;:29;;;;36463:256:::0;:::o;31154:39::-;;;;;;;;;;;;;:::o;30458:35::-;;;;:::o;35675:497::-;35783:4;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35862:6:::1;35857:1;35841:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35840:28;;;;:::i;:::-;35827:9;:41;;35805:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;36017:4;36012:1;35996:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35995:26;;;;:::i;:::-;35982:9;:39;;35960:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;36133:9;36112:18;:30;;;;36160:4;36153:11;;35675:497:::0;;;:::o;31202:27::-;;;;:::o;8815:151::-;8904:7;8931:11;:18;8943:5;8931:18;;;;;;;;;;;;;;;:27;8950:7;8931:27;;;;;;;;;;;;;;;;8924:34;;8815:151;;;;:::o;30500:33::-;;;;:::o;35470:135::-;35530:4;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35570:5:::1;35547:20;;:28;;;;;;;;;;;;;;;;;;35593:4;35586:11;;35470:135:::0;:::o;31273:30::-;;;;:::o;2224:201::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2333:1:::1;2313:22;;:8;:22;;::::0;2305:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2389:28;2408:8;2389:18;:28::i;:::-;2224:201:::0;:::o;31416:31::-;;;;:::o;30540:24::-;;;;:::o;48578:1056::-;48689:4;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48774:19:::1;;48751:20;;:42;;;;:::i;:::-;48733:15;:60;48711:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;48883:4;48872:7;:15;;48864:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;48968:15;48945:20;:38;;;;49038:28;49069:4;:14;;;49084:13;49069:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49038:60;;49148:20;49171:44;49209:5;49171:33;49196:7;49171:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;49148:67;;49335:1;49320:12;:16;49316:110;;;49353:61;49369:13;49392:6;49401:12;49353:15;:61::i;:::-;49316:110;49501:19;49538:13;49501:51;;49563:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;49590:14;;;;;;;;;;49622:4;49615:11;;;;;48578:1056:::0;;;:::o;493:98::-;546:7;573:10;566:17;;493:98;:::o;15067:380::-;15220:1;15203:19;;:5;:19;;;15195:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15301:1;15282:21;;:7;:21;;;15274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15385:6;15355:11;:18;15367:5;15355:18;;;;;;;;;;;;;;;:27;15374:7;15355:27;;;;;;;;;;;;;;;:36;;;;15423:7;15407:32;;15416:5;15407:32;;;15432:6;15407:32;;;;;;:::i;:::-;;;;;;;;15067:380;;;:::o;39217:5011::-;39365:1;39349:18;;:4;:18;;;39341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39442:1;39428:16;;:2;:16;;;39420:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39511:1;39501:6;:11;39497:93;;39529:28;39545:4;39551:2;39555:1;39529:15;:28::i;:::-;39572:7;;39497:93;39606:14;;;;;;;;;;;39602:2487;;;39667:7;:5;:7::i;:::-;39659:15;;:4;:15;;;;:49;;;;;39701:7;:5;:7::i;:::-;39695:13;;:2;:13;;;;39659:49;:86;;;;;39743:1;39729:16;;:2;:16;;;;39659:86;:128;;;;;39780:6;39766:21;;:2;:21;;;;39659:128;:158;;;;;39809:8;;;;;;;;;;;39808:9;39659:158;39637:2441;;;39857:13;;;;;;;;;;;39852:223;;39929:19;:25;39949:4;39929:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39958:19;:23;39978:2;39958:23;;;;;;;;;;;;;;;;;;;;;;;;;39929:52;39895:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;39852:223;40231:20;;;;;;;;;;;40227:641;;;40312:7;:5;:7::i;:::-;40306:13;;:2;:13;;;;:72;;;;;40362:15;40348:30;;:2;:30;;;;40306:72;:129;;;;;40421:13;40407:28;;:2;:28;;;;40306:129;40276:573;;;40599:12;40524:28;:39;40553:9;40524:39;;;;;;;;;;;;;;;;:87;40486:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;40813:12;40771:28;:39;40800:9;40771:39;;;;;;;;;;;;;;;:54;;;;40276:573;40227:641;40942:25;:31;40968:4;40942:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40999:31;:35;41031:2;40999:35;;;;;;;;;;;;;;;;;;;;;;;;;40998:36;40942:92;40916:1147;;;41121:20;;41111:6;:30;;41077:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;41329:9;;41312:13;41322:2;41312:9;:13::i;:::-;41303:6;:22;;;;:::i;:::-;:35;;41269:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40916:1147;;;41507:25;:29;41533:2;41507:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;41562:31;:37;41594:4;41562:37;;;;;;;;;;;;;;;;;;;;;;;;;41561:38;41507:92;41481:582;;;41686:20;;41676:6;:30;;41642:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;41481:582;;;41843:31;:35;41875:2;41843:35;;;;;;;;;;;;;;;;;;;;;;;;;41838:225;;41963:9;;41946:13;41956:2;41946:9;:13::i;:::-;41937:6;:22;;;;:::i;:::-;:35;;41903:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41838:225;41481:582;40916:1147;39637:2441;39602:2487;42101:28;42132:24;42150:4;42132:9;:24::i;:::-;42101:55;;42169:12;42208:18;;42184:20;:42;;42169:57;;42257:7;:35;;;;;42281:11;;;;;;;;;;;42257:35;:61;;;;;42310:8;;;;;;;;;;;42309:9;42257:61;:110;;;;;42336:25;:31;42362:4;42336:31;;;;;;;;;;;;;;;;;;;;;;;;;42335:32;42257:110;:153;;;;;42385:19;:25;42405:4;42385:25;;;;;;;;;;;;;;;;;;;;;;;;;42384:26;42257:153;:194;;;;;42428:19;:23;42448:2;42428:23;;;;;;;;;;;;;;;;;;;;;;;;;42427:24;42257:194;42239:326;;;42489:4;42478:8;;:15;;;;;;;;;;;;;;;;;;42510:10;:8;:10::i;:::-;42548:5;42537:8;;:16;;;;;;;;;;;;;;;;;;42239:326;42596:8;;;;;;;;;;;42595:9;:55;;;;;42621:25;:29;42647:2;42621:29;;;;;;;;;;;;;;;;;;;;;;;;;42595:55;:85;;;;;42667:13;;;;;;;;;;;42595:85;:153;;;;;42733:15;;42716:14;;:32;;;;:::i;:::-;42697:15;:51;;42595:153;:196;;;;;42766:19;:25;42786:4;42766:25;;;;;;;;;;;;;;;;;;;;;;;;;42765:26;42595:196;42577:282;;;42818:29;:27;:29::i;:::-;;42577:282;42871:12;42887:8;;;;;;;;;;;42886:9;42871:24;;42997:19;:25;43017:4;42997:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43026:19;:23;43046:2;43026:23;;;;;;;;;;;;;;;;;;;;;;;;;42997:52;42993:100;;;43076:5;43066:15;;42993:100;43105:12;43210:7;43206:969;;;43262:25;:29;43288:2;43262:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;43311:1;43295:13;;:17;43262:50;43258:768;;;43340:34;43370:3;43340:25;43351:13;;43340:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;43333:41;;43443:13;;43423:16;;43416:4;:23;;;;:::i;:::-;43415:41;;;;:::i;:::-;43393:18;;:63;;;;;;;:::i;:::-;;;;;;;;43513:13;;43499:10;;43492:4;:17;;;;:::i;:::-;43491:35;;;;:::i;:::-;43475:12;;:51;;;;;;;:::i;:::-;;;;;;;;43595:13;;43575:16;;43568:4;:23;;;;:::i;:::-;43567:41;;;;:::i;:::-;43545:18;;:63;;;;;;;:::i;:::-;;;;;;;;43258:768;;;43670:25;:31;43696:4;43670:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;43720:1;43705:12;;:16;43670:51;43666:360;;;43749:33;43778:3;43749:24;43760:12;;43749:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;43742:40;;43850:12;;43831:15;;43824:4;:22;;;;:::i;:::-;43823:39;;;;:::i;:::-;43801:18;;:61;;;;;;;:::i;:::-;;;;;;;;43918:12;;43905:9;;43898:4;:16;;;;:::i;:::-;43897:33;;;;:::i;:::-;43881:12;;:49;;;;;;;:::i;:::-;;;;;;;;43998:12;;43979:15;;43972:4;:22;;;;:::i;:::-;43971:39;;;;:::i;:::-;43949:18;;:61;;;;;;;:::i;:::-;;;;;;;;43666:360;43258:768;44053:1;44046:4;:8;44042:91;;;44075:42;44091:4;44105;44112;44075:15;:42::i;:::-;44042:91;44159:4;44149:14;;;;;:::i;:::-;;;43206:969;44187:33;44203:4;44209:2;44213:6;44187:15;:33::i;:::-;39330:4898;;;;39217:5011;;;;:::o;13306:399::-;13409:1;13390:21;;:7;:21;;;13382:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13460:49;13489:1;13493:7;13502:6;13460:20;:49::i;:::-;13538:6;13522:12;;:22;;;;;;;:::i;:::-;;;;;;;;13577:6;13555:9;:18;13565:7;13555:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13620:7;13599:37;;13616:1;13599:37;;;13629:6;13599:37;;;;;;:::i;:::-;;;;;;;;13649:48;13677:1;13681:7;13690:6;13649:19;:48::i;:::-;13306:399;;:::o;2585:191::-;2659:16;2678:6;;;;;;;;;;;2659:25;;2704:8;2695:6;;:17;;;;;;;;;;;;;;;;;;2759:8;2728:40;;2749:8;2728:40;;;;;;;;;;;;2648:128;2585:191;:::o;38433:188::-;38550:5;38516:25;:31;38542:4;38516:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38607:5;38573:40;;38601:4;38573:40;;;;;;;;;;;;38433:188;;:::o;20520:98::-;20578:7;20609:1;20605;:5;;;;:::i;:::-;20598:12;;20520:98;;;;:::o;20919:::-;20977:7;21008:1;21004;:5;;;;:::i;:::-;20997:12;;20919:98;;;;:::o;12286:733::-;12444:1;12426:20;;:6;:20;;;12418:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12528:1;12507:23;;:9;:23;;;12499:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12583:47;12604:6;12612:9;12623:6;12583:20;:47::i;:::-;12643:21;12667:9;:17;12677:6;12667:17;;;;;;;;;;;;;;;;12643:41;;12720:6;12703:13;:23;;12695:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12841:6;12825:13;:22;12805:9;:17;12815:6;12805:17;;;;;;;;;;;;;;;:42;;;;12893:6;12869:9;:20;12879:9;12869:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12934:9;12917:35;;12926:6;12917:35;;;12945:6;12917:35;;;;;;:::i;:::-;;;;;;;;12965:46;12985:6;12993:9;13004:6;12965:19;:46::i;:::-;12407:612;12286:733;;;:::o;45358:1756::-;45397:23;45423:24;45441:4;45423:9;:24::i;:::-;45397:50;;45458:25;45554:12;;45520:18;;45486;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;45458:108;;45577:12;45625:1;45606:15;:20;:46;;;;45651:1;45630:17;:22;45606:46;45602:85;;;45669:7;;;;;45602:85;45742:2;45721:18;;:23;;;;:::i;:::-;45703:15;:41;45699:115;;;45800:2;45779:18;;:23;;;;:::i;:::-;45761:41;;45699:115;45875:23;45988:1;45955:17;45920:18;;45902:15;:36;;;;:::i;:::-;45901:71;;;;:::i;:::-;:88;;;;:::i;:::-;45875:114;;46000:26;46029:36;46049:15;46029;:19;;:36;;;;:::i;:::-;46000:65;;46078:25;46106:21;46078:49;;46140:36;46157:18;46140:16;:36::i;:::-;46189:18;46210:44;46236:17;46210:21;:25;;:44;;;;:::i;:::-;46189:65;;46267:23;46293:81;46346:17;46293:34;46308:18;;46293:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;46267:107;;46385:17;46405:51;46438:17;46405:28;46420:12;;46405:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;46385:71;;46469:23;46526:9;46508:15;46495:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;46469:66;;46569:1;46548:18;:22;;;;46602:1;46581:18;:22;;;;46629:1;46614:12;:16;;;;46665:9;;;;;;;;;;;46657:23;;46688:9;46657:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46643:59;;;;;46737:1;46719:15;:19;:42;;;;;46760:1;46742:15;:19;46719:42;46715:278;;;46778:46;46791:15;46808;46778:12;:46::i;:::-;46844:137;46877:18;46914:15;46948:18;;46844:137;;;;;;;;:::i;:::-;;;;;;;;46715:278;47027:15;;;;;;;;;;;47019:29;;47070:21;47019:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47005:101;;;;;45386:1728;;;;;;;;;;45358:1756;:::o;47685:788::-;47742:4;47776:15;47759:14;:32;;;;47846:28;47877:4;:14;;;47892:13;47877:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47846:60;;47956:20;47979:77;48040:5;47979:42;48004:16;;47979:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;47956:100;;48176:1;48161:12;:16;48157:110;;;48194:61;48210:13;48233:6;48242:12;48194:15;:61::i;:::-;48157:110;48342:19;48379:13;48342:51;;48404:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48431:12;;;;;;;;;;48461:4;48454:11;;;;;47685:788;:::o;16047:125::-;;;;:::o;16776:124::-;;;;:::o;20163:98::-;20221:7;20252:1;20248;:5;;;;:::i;:::-;20241:12;;20163:98;;;;:::o;44236:589::-;44362:21;44400:1;44386:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44362:40;;44431:4;44413;44418:1;44413:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44457:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44447:4;44452:1;44447:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;44492:62;44509:4;44524:15;44542:11;44492:8;:62::i;:::-;44593:15;:66;;;44674:11;44700:1;44744:4;44771;44791:15;44593:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44291:534;44236:589;:::o;44833:517::-;44981:62;44998:4;45013:15;45031:11;44981:8;:62::i;:::-;45086:15;:31;;;45125:9;45158:4;45178:11;45204:1;45247;30342:6;45316:15;45086:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44833:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:613::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:50;7702:7;7693:6;7682:9;7678:22;7660:50;:::i;:::-;7650:60;;7605:115;7114:613;;;;;:::o;7733:468::-;7798:6;7806;7855:2;7843:9;7834:7;7830:23;7826:32;7823:119;;;7861:79;;:::i;:::-;7823:119;7981:1;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7952:117;8108:2;8134:50;8176:7;8167:6;8156:9;8152:22;8134:50;:::i;:::-;8124:60;;8079:115;7733:468;;;;;:::o;8207:619::-;8284:6;8292;8300;8349:2;8337:9;8328:7;8324:23;8320:32;8317:119;;;8355:79;;:::i;:::-;8317:119;8475:1;8500:53;8545:7;8536:6;8525:9;8521:22;8500:53;:::i;:::-;8490:63;;8446:117;8602:2;8628:53;8673:7;8664:6;8653:9;8649:22;8628:53;:::i;:::-;8618:63;;8573:118;8730:2;8756:53;8801:7;8792:6;8781:9;8777:22;8756:53;:::i;:::-;8746:63;;8701:118;8207:619;;;;;:::o;8832:323::-;8888:6;8937:2;8925:9;8916:7;8912:23;8908:32;8905:119;;;8943:79;;:::i;:::-;8905:119;9063:1;9088:50;9130:7;9121:6;9110:9;9106:22;9088:50;:::i;:::-;9078:60;;9034:114;8832:323;;;;:::o;9161:474::-;9229:6;9237;9286:2;9274:9;9265:7;9261:23;9257:32;9254:119;;;9292:79;;:::i;:::-;9254:119;9412:1;9437:53;9482:7;9473:6;9462:9;9458:22;9437:53;:::i;:::-;9427:63;;9383:117;9539:2;9565:53;9610:7;9601:6;9590:9;9586:22;9565:53;:::i;:::-;9555:63;;9510:118;9161:474;;;;;:::o;9641:180::-;9689:77;9686:1;9679:88;9786:4;9783:1;9776:15;9810:4;9807:1;9800:15;9827:320;9871:6;9908:1;9902:4;9898:12;9888:22;;9955:1;9949:4;9945:12;9976:18;9966:81;;10032:4;10024:6;10020:17;10010:27;;9966:81;10094:2;10086:6;10083:14;10063:18;10060:38;10057:84;;10113:18;;:::i;:::-;10057:84;9878:269;9827:320;;;:::o;10153:182::-;10293:34;10289:1;10281:6;10277:14;10270:58;10153:182;:::o;10341:366::-;10483:3;10504:67;10568:2;10563:3;10504:67;:::i;:::-;10497:74;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10341:366;;;:::o;10713:419::-;10879:4;10917:2;10906:9;10902:18;10894:26;;10966:9;10960:4;10956:20;10952:1;10941:9;10937:17;10930:47;10994:131;11120:4;10994:131;:::i;:::-;10986:139;;10713:419;;;:::o;11138:180::-;11186:77;11183:1;11176:88;11283:4;11280:1;11273:15;11307:4;11304:1;11297:15;11324:410;11364:7;11387:20;11405:1;11387:20;:::i;:::-;11382:25;;11421:20;11439:1;11421:20;:::i;:::-;11416:25;;11476:1;11473;11469:9;11498:30;11516:11;11498:30;:::i;:::-;11487:41;;11677:1;11668:7;11664:15;11661:1;11658:22;11638:1;11631:9;11611:83;11588:139;;11707:18;;:::i;:::-;11588:139;11372:362;11324:410;;;;:::o;11740:180::-;11788:77;11785:1;11778:88;11885:4;11882:1;11875:15;11909:4;11906:1;11899:15;11926:185;11966:1;11983:20;12001:1;11983:20;:::i;:::-;11978:25;;12017:20;12035:1;12017:20;:::i;:::-;12012:25;;12056:1;12046:35;;12061:18;;:::i;:::-;12046:35;12103:1;12100;12096:9;12091:14;;11926:185;;;;:::o;12117:234::-;12257:34;12253:1;12245:6;12241:14;12234:58;12326:17;12321:2;12313:6;12309:15;12302:42;12117:234;:::o;12357:366::-;12499:3;12520:67;12584:2;12579:3;12520:67;:::i;:::-;12513:74;;12596:93;12685:3;12596:93;:::i;:::-;12714:2;12709:3;12705:12;12698:19;;12357:366;;;:::o;12729:419::-;12895:4;12933:2;12922:9;12918:18;12910:26;;12982:9;12976:4;12972:20;12968:1;12957:9;12953:17;12946:47;13010:131;13136:4;13010:131;:::i;:::-;13002:139;;12729:419;;;:::o;13154:227::-;13294:34;13290:1;13282:6;13278:14;13271:58;13363:10;13358:2;13350:6;13346:15;13339:35;13154:227;:::o;13387:366::-;13529:3;13550:67;13614:2;13609:3;13550:67;:::i;:::-;13543:74;;13626:93;13715:3;13626:93;:::i;:::-;13744:2;13739:3;13735:12;13728:19;;13387:366;;;:::o;13759:419::-;13925:4;13963:2;13952:9;13948:18;13940:26;;14012:9;14006:4;14002:20;13998:1;13987:9;13983:17;13976:47;14040:131;14166:4;14040:131;:::i;:::-;14032:139;;13759:419;;;:::o;14184:191::-;14224:3;14243:20;14261:1;14243:20;:::i;:::-;14238:25;;14277:20;14295:1;14277:20;:::i;:::-;14272:25;;14320:1;14317;14313:9;14306:16;;14341:3;14338:1;14335:10;14332:36;;;14348:18;;:::i;:::-;14332:36;14184:191;;;;:::o;14381:238::-;14521:34;14517:1;14509:6;14505:14;14498:58;14590:21;14585:2;14577:6;14573:15;14566:46;14381:238;:::o;14625:366::-;14767:3;14788:67;14852:2;14847:3;14788:67;:::i;:::-;14781:74;;14864:93;14953:3;14864:93;:::i;:::-;14982:2;14977:3;14973:12;14966:19;;14625:366;;;:::o;14997:419::-;15163:4;15201:2;15190:9;15186:18;15178:26;;15250:9;15244:4;15240:20;15236:1;15225:9;15221:17;15214:47;15278:131;15404:4;15278:131;:::i;:::-;15270:139;;14997:419;;;:::o;15422:235::-;15562:34;15558:1;15550:6;15546:14;15539:58;15631:18;15626:2;15618:6;15614:15;15607:43;15422:235;:::o;15663:366::-;15805:3;15826:67;15890:2;15885:3;15826:67;:::i;:::-;15819:74;;15902:93;15991:3;15902:93;:::i;:::-;16020:2;16015:3;16011:12;16004:19;;15663:366;;;:::o;16035:419::-;16201:4;16239:2;16228:9;16224:18;16216:26;;16288:9;16282:4;16278:20;16274:1;16263:9;16259:17;16252:47;16316:131;16442:4;16316:131;:::i;:::-;16308:139;;16035:419;;;:::o;16460:179::-;16600:31;16596:1;16588:6;16584:14;16577:55;16460:179;:::o;16645:366::-;16787:3;16808:67;16872:2;16867:3;16808:67;:::i;:::-;16801:74;;16884:93;16973:3;16884:93;:::i;:::-;17002:2;16997:3;16993:12;16986:19;;16645:366;;;:::o;17017:419::-;17183:4;17221:2;17210:9;17206:18;17198:26;;17270:9;17264:4;17260:20;17256:1;17245:9;17241:17;17234:47;17298:131;17424:4;17298:131;:::i;:::-;17290:139;;17017:419;;;:::o;17442:244::-;17582:34;17578:1;17570:6;17566:14;17559:58;17651:27;17646:2;17638:6;17634:15;17627:52;17442:244;:::o;17692:366::-;17834:3;17855:67;17919:2;17914:3;17855:67;:::i;:::-;17848:74;;17931:93;18020:3;17931:93;:::i;:::-;18049:2;18044:3;18040:12;18033:19;;17692:366;;;:::o;18064:419::-;18230:4;18268:2;18257:9;18253:18;18245:26;;18317:9;18311:4;18307:20;18303:1;18292:9;18288:17;18281:47;18345:131;18471:4;18345:131;:::i;:::-;18337:139;;18064:419;;;:::o;18489:224::-;18629:34;18625:1;18617:6;18613:14;18606:58;18698:7;18693:2;18685:6;18681:15;18674:32;18489:224;:::o;18719:366::-;18861:3;18882:67;18946:2;18941:3;18882:67;:::i;:::-;18875:74;;18958:93;19047:3;18958:93;:::i;:::-;19076:2;19071:3;19067:12;19060:19;;18719:366;;;:::o;19091:419::-;19257:4;19295:2;19284:9;19280:18;19272:26;;19344:9;19338:4;19334:20;19330:1;19319:9;19315:17;19308:47;19372:131;19498:4;19372:131;:::i;:::-;19364:139;;19091:419;;;:::o;19516:223::-;19656:34;19652:1;19644:6;19640:14;19633:58;19725:6;19720:2;19712:6;19708:15;19701:31;19516:223;:::o;19745:366::-;19887:3;19908:67;19972:2;19967:3;19908:67;:::i;:::-;19901:74;;19984:93;20073:3;19984:93;:::i;:::-;20102:2;20097:3;20093:12;20086:19;;19745:366;;;:::o;20117:419::-;20283:4;20321:2;20310:9;20306:18;20298:26;;20370:9;20364:4;20360:20;20356:1;20345:9;20341:17;20334:47;20398:131;20524:4;20398:131;:::i;:::-;20390:139;;20117:419;;;:::o;20542:240::-;20682:34;20678:1;20670:6;20666:14;20659:58;20751:23;20746:2;20738:6;20734:15;20727:48;20542:240;:::o;20788:366::-;20930:3;20951:67;21015:2;21010:3;20951:67;:::i;:::-;20944:74;;21027:93;21116:3;21027:93;:::i;:::-;21145:2;21140:3;21136:12;21129:19;;20788:366;;;:::o;21160:419::-;21326:4;21364:2;21353:9;21349:18;21341:26;;21413:9;21407:4;21403:20;21399:1;21388:9;21384:17;21377:47;21441:131;21567:4;21441:131;:::i;:::-;21433:139;;21160:419;;;:::o;21585:239::-;21725:34;21721:1;21713:6;21709:14;21702:58;21794:22;21789:2;21781:6;21777:15;21770:47;21585:239;:::o;21830:366::-;21972:3;21993:67;22057:2;22052:3;21993:67;:::i;:::-;21986:74;;22069:93;22158:3;22069:93;:::i;:::-;22187:2;22182:3;22178:12;22171:19;;21830:366;;;:::o;22202:419::-;22368:4;22406:2;22395:9;22391:18;22383:26;;22455:9;22449:4;22445:20;22441:1;22430:9;22426:17;22419:47;22483:131;22609:4;22483:131;:::i;:::-;22475:139;;22202:419;;;:::o;22627:225::-;22767:34;22763:1;22755:6;22751:14;22744:58;22836:8;22831:2;22823:6;22819:15;22812:33;22627:225;:::o;22858:366::-;23000:3;23021:67;23085:2;23080:3;23021:67;:::i;:::-;23014:74;;23097:93;23186:3;23097:93;:::i;:::-;23215:2;23210:3;23206:12;23199:19;;22858:366;;;:::o;23230:419::-;23396:4;23434:2;23423:9;23419:18;23411:26;;23483:9;23477:4;23473:20;23469:1;23458:9;23454:17;23447:47;23511:131;23637:4;23511:131;:::i;:::-;23503:139;;23230:419;;;:::o;23655:182::-;23795:34;23791:1;23783:6;23779:14;23772:58;23655:182;:::o;23843:366::-;23985:3;24006:67;24070:2;24065:3;24006:67;:::i;:::-;23999:74;;24082:93;24171:3;24082:93;:::i;:::-;24200:2;24195:3;24191:12;24184:19;;23843:366;;;:::o;24215:419::-;24381:4;24419:2;24408:9;24404:18;24396:26;;24468:9;24462:4;24458:20;24454:1;24443:9;24439:17;24432:47;24496:131;24622:4;24496:131;:::i;:::-;24488:139;;24215:419;;;:::o;24640:229::-;24780:34;24776:1;24768:6;24764:14;24757:58;24849:12;24844:2;24836:6;24832:15;24825:37;24640:229;:::o;24875:366::-;25017:3;25038:67;25102:2;25097:3;25038:67;:::i;:::-;25031:74;;25114:93;25203:3;25114:93;:::i;:::-;25232:2;25227:3;25223:12;25216:19;;24875:366;;;:::o;25247:419::-;25413:4;25451:2;25440:9;25436:18;25428:26;;25500:9;25494:4;25490:20;25486:1;25475:9;25471:17;25464:47;25528:131;25654:4;25528:131;:::i;:::-;25520:139;;25247:419;;;:::o;25672:143::-;25729:5;25760:6;25754:13;25745:22;;25776:33;25803:5;25776:33;:::i;:::-;25672:143;;;;:::o;25821:351::-;25891:6;25940:2;25928:9;25919:7;25915:23;25911:32;25908:119;;;25946:79;;:::i;:::-;25908:119;26066:1;26091:64;26147:7;26138:6;26127:9;26123:22;26091:64;:::i;:::-;26081:74;;26037:128;25821:351;;;;:::o;26178:223::-;26318:34;26314:1;26306:6;26302:14;26295:58;26387:6;26382:2;26374:6;26370:15;26363:31;26178:223;:::o;26407:366::-;26549:3;26570:67;26634:2;26629:3;26570:67;:::i;:::-;26563:74;;26646:93;26735:3;26646:93;:::i;:::-;26764:2;26759:3;26755:12;26748:19;;26407:366;;;:::o;26779:419::-;26945:4;26983:2;26972:9;26968:18;26960:26;;27032:9;27026:4;27022:20;27018:1;27007:9;27003:17;26996:47;27060:131;27186:4;27060:131;:::i;:::-;27052:139;;26779:419;;;:::o;27204:221::-;27344:34;27340:1;27332:6;27328:14;27321:58;27413:4;27408:2;27400:6;27396:15;27389:29;27204:221;:::o;27431:366::-;27573:3;27594:67;27658:2;27653:3;27594:67;:::i;:::-;27587:74;;27670:93;27759:3;27670:93;:::i;:::-;27788:2;27783:3;27779:12;27772:19;;27431:366;;;:::o;27803:419::-;27969:4;28007:2;27996:9;27992:18;27984:26;;28056:9;28050:4;28046:20;28042:1;28031:9;28027:17;28020:47;28084:131;28210:4;28084:131;:::i;:::-;28076:139;;27803:419;;;:::o;28228:224::-;28368:34;28364:1;28356:6;28352:14;28345:58;28437:7;28432:2;28424:6;28420:15;28413:32;28228:224;:::o;28458:366::-;28600:3;28621:67;28685:2;28680:3;28621:67;:::i;:::-;28614:74;;28697:93;28786:3;28697:93;:::i;:::-;28815:2;28810:3;28806:12;28799:19;;28458:366;;;:::o;28830:419::-;28996:4;29034:2;29023:9;29019:18;29011:26;;29083:9;29077:4;29073:20;29069:1;29058:9;29054:17;29047:47;29111:131;29237:4;29111:131;:::i;:::-;29103:139;;28830:419;;;:::o;29255:222::-;29395:34;29391:1;29383:6;29379:14;29372:58;29464:5;29459:2;29451:6;29447:15;29440:30;29255:222;:::o;29483:366::-;29625:3;29646:67;29710:2;29705:3;29646:67;:::i;:::-;29639:74;;29722:93;29811:3;29722:93;:::i;:::-;29840:2;29835:3;29831:12;29824:19;;29483:366;;;:::o;29855:419::-;30021:4;30059:2;30048:9;30044:18;30036:26;;30108:9;30102:4;30098:20;30094:1;30083:9;30079:17;30072:47;30136:131;30262:4;30136:131;:::i;:::-;30128:139;;29855:419;;;:::o;30280:172::-;30420:24;30416:1;30408:6;30404:14;30397:48;30280:172;:::o;30458:366::-;30600:3;30621:67;30685:2;30680:3;30621:67;:::i;:::-;30614:74;;30697:93;30786:3;30697:93;:::i;:::-;30815:2;30810:3;30806:12;30799:19;;30458:366;;;:::o;30830:419::-;30996:4;31034:2;31023:9;31019:18;31011:26;;31083:9;31077:4;31073:20;31069:1;31058:9;31054:17;31047:47;31111:131;31237:4;31111:131;:::i;:::-;31103:139;;30830:419;;;:::o;31255:297::-;31395:34;31391:1;31383:6;31379:14;31372:58;31464:34;31459:2;31451:6;31447:15;31440:59;31533:11;31528:2;31520:6;31516:15;31509:36;31255:297;:::o;31558:366::-;31700:3;31721:67;31785:2;31780:3;31721:67;:::i;:::-;31714:74;;31797:93;31886:3;31797:93;:::i;:::-;31915:2;31910:3;31906:12;31899:19;;31558:366;;;:::o;31930:419::-;32096:4;32134:2;32123:9;32119:18;32111:26;;32183:9;32177:4;32173:20;32169:1;32158:9;32154:17;32147:47;32211:131;32337:4;32211:131;:::i;:::-;32203:139;;31930:419;;;:::o;32355:240::-;32495:34;32491:1;32483:6;32479:14;32472:58;32564:23;32559:2;32551:6;32547:15;32540:48;32355:240;:::o;32601:366::-;32743:3;32764:67;32828:2;32823:3;32764:67;:::i;:::-;32757:74;;32840:93;32929:3;32840:93;:::i;:::-;32958:2;32953:3;32949:12;32942:19;;32601:366;;;:::o;32973:419::-;33139:4;33177:2;33166:9;33162:18;33154:26;;33226:9;33220:4;33216:20;33212:1;33201:9;33197:17;33190:47;33254:131;33380:4;33254:131;:::i;:::-;33246:139;;32973:419;;;:::o;33398:169::-;33538:21;33534:1;33526:6;33522:14;33515:45;33398:169;:::o;33573:366::-;33715:3;33736:67;33800:2;33795:3;33736:67;:::i;:::-;33729:74;;33812:93;33901:3;33812:93;:::i;:::-;33930:2;33925:3;33921:12;33914:19;;33573:366;;;:::o;33945:419::-;34111:4;34149:2;34138:9;34134:18;34126:26;;34198:9;34192:4;34188:20;34184:1;34173:9;34169:17;34162:47;34226:131;34352:4;34226:131;:::i;:::-;34218:139;;33945:419;;;:::o;34370:241::-;34510:34;34506:1;34498:6;34494:14;34487:58;34579:24;34574:2;34566:6;34562:15;34555:49;34370:241;:::o;34617:366::-;34759:3;34780:67;34844:2;34839:3;34780:67;:::i;:::-;34773:74;;34856:93;34945:3;34856:93;:::i;:::-;34974:2;34969:3;34965:12;34958:19;;34617:366;;;:::o;34989:419::-;35155:4;35193:2;35182:9;35178:18;35170:26;;35242:9;35236:4;35232:20;35228:1;35217:9;35213:17;35206:47;35270:131;35396:4;35270:131;:::i;:::-;35262:139;;34989:419;;;:::o;35414:194::-;35454:4;35474:20;35492:1;35474:20;:::i;:::-;35469:25;;35508:20;35526:1;35508:20;:::i;:::-;35503:25;;35552:1;35549;35545:9;35537:17;;35576:1;35570:4;35567:11;35564:37;;;35581:18;;:::i;:::-;35564:37;35414:194;;;;:::o;35614:181::-;35754:33;35750:1;35742:6;35738:14;35731:57;35614:181;:::o;35801:366::-;35943:3;35964:67;36028:2;36023:3;35964:67;:::i;:::-;35957:74;;36040:93;36129:3;36040:93;:::i;:::-;36158:2;36153:3;36149:12;36142:19;;35801:366;;;:::o;36173:419::-;36339:4;36377:2;36366:9;36362:18;36354:26;;36426:9;36420:4;36416:20;36412:1;36401:9;36397:17;36390:47;36454:131;36580:4;36454:131;:::i;:::-;36446:139;;36173:419;;;:::o;36598:225::-;36738:34;36734:1;36726:6;36722:14;36715:58;36807:8;36802:2;36794:6;36790:15;36783:33;36598:225;:::o;36829:366::-;36971:3;36992:67;37056:2;37051:3;36992:67;:::i;:::-;36985:74;;37068:93;37157:3;37068:93;:::i;:::-;37186:2;37181:3;37177:12;37170:19;;36829:366;;;:::o;37201:419::-;37367:4;37405:2;37394:9;37390:18;37382:26;;37454:9;37448:4;37444:20;37440:1;37429:9;37425:17;37418:47;37482:131;37608:4;37482:131;:::i;:::-;37474:139;;37201:419;;;:::o;37626:147::-;37727:11;37764:3;37749:18;;37626:147;;;;:::o;37779:114::-;;:::o;37899:398::-;38058:3;38079:83;38160:1;38155:3;38079:83;:::i;:::-;38072:90;;38171:93;38260:3;38171:93;:::i;:::-;38289:1;38284:3;38280:11;38273:18;;37899:398;;;:::o;38303:379::-;38487:3;38509:147;38652:3;38509:147;:::i;:::-;38502:154;;38673:3;38666:10;;38303:379;;;:::o;38688:442::-;38837:4;38875:2;38864:9;38860:18;38852:26;;38888:71;38956:1;38945:9;38941:17;38932:6;38888:71;:::i;:::-;38969:72;39037:2;39026:9;39022:18;39013:6;38969:72;:::i;:::-;39051;39119:2;39108:9;39104:18;39095:6;39051:72;:::i;:::-;38688:442;;;;;;:::o;39136:180::-;39184:77;39181:1;39174:88;39281:4;39278:1;39271:15;39305:4;39302:1;39295:15;39322:180;39370:77;39367:1;39360:88;39467:4;39464:1;39457:15;39491:4;39488:1;39481:15;39508:143;39565:5;39596:6;39590:13;39581:22;;39612:33;39639:5;39612:33;:::i;:::-;39508:143;;;;:::o;39657:351::-;39727:6;39776:2;39764:9;39755:7;39751:23;39747:32;39744:119;;;39782:79;;:::i;:::-;39744:119;39902:1;39927:64;39983:7;39974:6;39963:9;39959:22;39927:64;:::i;:::-;39917:74;;39873:128;39657:351;;;;:::o;40014:85::-;40059:7;40088:5;40077:16;;40014:85;;;:::o;40105:158::-;40163:9;40196:61;40214:42;40223:32;40249:5;40223:32;:::i;:::-;40214:42;:::i;:::-;40196:61;:::i;:::-;40183:74;;40105:158;;;:::o;40269:147::-;40364:45;40403:5;40364:45;:::i;:::-;40359:3;40352:58;40269:147;;:::o;40422:114::-;40489:6;40523:5;40517:12;40507:22;;40422:114;;;:::o;40542:184::-;40641:11;40675:6;40670:3;40663:19;40715:4;40710:3;40706:14;40691:29;;40542:184;;;;:::o;40732:132::-;40799:4;40822:3;40814:11;;40852:4;40847:3;40843:14;40835:22;;40732:132;;;:::o;40870:108::-;40947:24;40965:5;40947:24;:::i;:::-;40942:3;40935:37;40870:108;;:::o;40984:179::-;41053:10;41074:46;41116:3;41108:6;41074:46;:::i;:::-;41152:4;41147:3;41143:14;41129:28;;40984:179;;;;:::o;41169:113::-;41239:4;41271;41266:3;41262:14;41254:22;;41169:113;;;:::o;41318:732::-;41437:3;41466:54;41514:5;41466:54;:::i;:::-;41536:86;41615:6;41610:3;41536:86;:::i;:::-;41529:93;;41646:56;41696:5;41646:56;:::i;:::-;41725:7;41756:1;41741:284;41766:6;41763:1;41760:13;41741:284;;;41842:6;41836:13;41869:63;41928:3;41913:13;41869:63;:::i;:::-;41862:70;;41955:60;42008:6;41955:60;:::i;:::-;41945:70;;41801:224;41788:1;41785;41781:9;41776:14;;41741:284;;;41745:14;42041:3;42034:10;;41442:608;;;41318:732;;;;:::o;42056:831::-;42319:4;42357:3;42346:9;42342:19;42334:27;;42371:71;42439:1;42428:9;42424:17;42415:6;42371:71;:::i;:::-;42452:80;42528:2;42517:9;42513:18;42504:6;42452:80;:::i;:::-;42579:9;42573:4;42569:20;42564:2;42553:9;42549:18;42542:48;42607:108;42710:4;42701:6;42607:108;:::i;:::-;42599:116;;42725:72;42793:2;42782:9;42778:18;42769:6;42725:72;:::i;:::-;42807:73;42875:3;42864:9;42860:19;42851:6;42807:73;:::i;:::-;42056:831;;;;;;;;:::o;42893:807::-;43142:4;43180:3;43169:9;43165:19;43157:27;;43194:71;43262:1;43251:9;43247:17;43238:6;43194:71;:::i;:::-;43275:72;43343:2;43332:9;43328:18;43319:6;43275:72;:::i;:::-;43357:80;43433:2;43422:9;43418:18;43409:6;43357:80;:::i;:::-;43447;43523:2;43512:9;43508:18;43499:6;43447:80;:::i;:::-;43537:73;43605:3;43594:9;43590:19;43581:6;43537:73;:::i;:::-;43620;43688:3;43677:9;43673:19;43664:6;43620:73;:::i;:::-;42893:807;;;;;;;;;:::o;43706:663::-;43794:6;43802;43810;43859:2;43847:9;43838:7;43834:23;43830:32;43827:119;;;43865:79;;:::i;:::-;43827:119;43985:1;44010:64;44066:7;44057:6;44046:9;44042:22;44010:64;:::i;:::-;44000:74;;43956:128;44123:2;44149:64;44205:7;44196:6;44185:9;44181:22;44149:64;:::i;:::-;44139:74;;44094:129;44262:2;44288:64;44344:7;44335:6;44324:9;44320:22;44288:64;:::i;:::-;44278:74;;44233:129;43706:663;;;;;:::o

Swarm Source

ipfs://c372ce3feb9f0052547b7176292da22703606a38cf51744051a1e173e9c3662b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.