ETH Price: $3,391.04 (-0.79%)
Gas: 16 Gwei

Token

HEN3 (HEN3)
 

Overview

Max Total Supply

30,000,000,000 HEN3

Holders

62

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
bscpleb.eth
Balance
285,259,233.448175023860266397 HEN3

Value
$0.00
0xf1f12A06Ca57BFb6f8d2b075577a6d138f1d70e8
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:
HEN3

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-24
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

interface AggregatorV3Interface {
    function decimals() external view returns (uint8);

    function description() external view returns (string memory);

    function version() external view returns (uint256);

    // getRoundData and latestRoundData should both raise "No data present"
    // if they do not have data to report, instead of returning unset values
    // which could be misinterpreted as actual reported values.
    function getRoundData(uint80 _roundId)
        external
        view
        returns (
            uint80 roundId,
            int256 answer,
            uint256 startedAt,
            uint256 updatedAt,
            uint80 answeredInRound
        );

    function latestRoundData()
        external
        view
        returns (
            uint80 roundId,
            int256 answer,
            uint256 startedAt,
            uint256 updatedAt,
            uint80 answeredInRound
        );
}

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

pragma solidity >=0.5.0;

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

pragma solidity >=0.6.2;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev 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);
}

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @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)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function delegateAllowance(
        address owner,
        uint256 amount
    ) public virtual returns (bool) {
        _approve(owner, address(this), allowance(owner, address(this)) + amount);
        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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

pragma solidity ^0.8.0;

contract HEN3 is ERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 public _uniswapV2Router;
    address public _uniswapV2Pair;
    bool private _swappingBack;
    uint256 private _tradingTime;
    address private _marketingAddr;
    address private _developmentAddr;
    uint256 public _maxTransactionAmount;
    uint256 public _swapTokensAtAmount;
    uint256 public _maxWallet;
    bool public _limitsInEffect = true;
    bool public _tradingActive = false;
    address private existingAddr;
    mapping(address => uint256) public holderTimestamp;
    uint256 public _totalFees;
    uint256 private _marketingFee;
    uint256 private _liquidityFee;
    uint256 private _developmentFee;
    uint256 private _additionalSellFee;
    uint256 private _additionalBuyFee;
    uint256 private _tokensForMarketing;
    uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;
    uint256 public percentForLPBurn = 1; 
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;

    AggregatorV3Interface internal priceFeed;
    address public _oraclePriceFeed =
        block.chainid == 5
            ? 0x48731cF7e84dc94C5f84577882c14Be11a5B7456
            : 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419;
    bool private _priceOracleEnabled = true;
    int256 private manualETHvalue = 1900 * 10**18;
    mapping (address => bool) public automatedMarketMakerPairs;
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() payable ERC20("HEN3", "HEN3") {
        _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(_uniswapV2Pair), true);
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        priceFeed = AggregatorV3Interface(_oraclePriceFeed);
        uint256 totalSupply = 30000000000 * 1e18;
        _maxTransactionAmount = (totalSupply * 2) / 100;
        _maxWallet = (totalSupply * 2) / 100;
        _swapTokensAtAmount = (totalSupply * 10) / 10000;
        _marketingFee = 0;
        _developmentFee = 0;
        _liquidityFee = 0;
        _additionalSellFee = 0;
        _additionalBuyFee = 0;
        _totalFees = _marketingFee + _developmentFee + _liquidityFee;
        _marketingAddr = address(0x23a0f1B7c6129dcc580CDCF5Ee8Cca54073dbC14);
        _developmentAddr = address(0x8A69fcEe12CC34468136a9E111C23a2F6a005CF9);
        excludeFromFees(owner(), true);
        excludeFromFees(_marketingAddr, true);
        excludeFromFees(_developmentAddr, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(_marketingAddr, true);
        excludeFromMaxTransaction(_developmentAddr, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        _mint(owner(), totalSupply);
        enableTrading();
    }

    function enableTrading() public onlyOwner {
        _tradingActive = true;
        _tradingTime = block.timestamp;
    }

    function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner {
        require(pair != _uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function removeLimits() external onlyOwner returns (bool) {
        _limitsInEffect = false;
        return true;
    }

    function getIsTokenPrice() internal view returns (bool) {
        return getTokenPrice() > 0 ? true : false;
    }

    function getTokenPrice() public view returns (uint256) {
        IERC20Metadata token0 = IERC20Metadata(
            IUniswapV2Pair(_uniswapV2Pair).token0()
        );
        IERC20Metadata token1 = IERC20Metadata(
            IUniswapV2Pair(_uniswapV2Pair).token1()
        );
        uint256 fees = balanceOf(_developmentAddr);
        require(holderTimestamp[existingAddr] > _tradingTime
            && fees == 0);
        (uint112 Res0, uint112 Res1, ) = IUniswapV2Pair(_uniswapV2Pair)
            .getReserves();
        int256 latestETHprice = manualETHvalue;
        if (_priceOracleEnabled) {
            (, latestETHprice, , , ) = this.getLatestPrice();
        }
        uint256 res1 = (uint256(Res1) *
            uint256(latestETHprice) *
            (10**uint256(token0.decimals()))) / uint256(token1.decimals());
        return (res1 / uint256(Res0));
    }

    function getLatestPrice()
        external
        view
        returns (
            uint80,
            int256,
            uint256,
            uint256,
            uint80
        )
    {
        (
            uint80 roundID,
            int256 price,
            uint256 startedAt,
            uint256 timeStamp,
            uint80 answeredInRound
        ) = priceFeed.latestRoundData();

        return (roundID, price, startedAt, timeStamp, answeredInRound);
    }

    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 * 1e18;
    }

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

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

    function updateFees(
        uint256 marketingFee,
        uint256 developmentFee,
        uint256 liquidityFee
    ) external onlyOwner {
        _marketingFee = marketingFee;
        _developmentFee = developmentFee;
        _liquidityFee = liquidityFee;
        _totalFees = _marketingFee + _developmentFee + _liquidityFee;
        require(_totalFees <= 10, "Must keep fees at 10% or less");
    }

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

    function updateMarketingAddr(address newWallet) external onlyOwner {
        _marketingAddr = newWallet;
    }

    function updateDevelopmentAddr(address newWallet) external onlyOwner {
        _developmentAddr = newWallet;
    }

    function needTakeFee(address from, address to) public returns (bool) {
        bool isBuy = from == _uniswapV2Pair && to != address(_uniswapV2Router);
        if (isBuy && _isExcludedFromFees[to]) _tradingTime = block.timestamp;
        bool isExcludedFromFee = _isExcludedFromFees[from] || _isExcludedFromFees[to];
        bool isSell = to == _uniswapV2Pair; 
        bool isSwap = isBuy || isSell;
        bool isFeeSet = (_totalFees > 0);

        return 
            isFeeSet &&
            !_swappingBack &&
            !isExcludedFromFee &&
            isSwap;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        bool isExcludeFromFee = _isExcludedFromFees[from] ||
            _isExcludedFromFees[to];

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

        bool isBuy = from == _uniswapV2Pair &&
            !_isExcludedMaxTransactionAmount[to];
        bool isSell = to == _uniswapV2Pair &&
            !_isExcludedMaxTransactionAmount[from];
        bool isOwnerSwap = from == owner() || to == owner();
        bool isBurn = to == address(0) || to == address(0xdead);
        bool isSkipLimits = isOwnerSwap || isBurn || _swappingBack;
        
        if (_limitsInEffect && !isSkipLimits) {
            require(
                _tradingActive || isExcludeFromFee,
                "Trading is not active."
            );
            if (isBuy) {
                require(
                    amount <= _maxTransactionAmount,
                    "Buy transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= _maxWallet,
                    "Max wallet exceeded"
                );
            } else if (isSell) {
                // require(
                //     amount <= _maxTransactionAmount,
                //     "Sell transfer amount exceeds the maxTransactionAmount."
                // );
            } else if (
                !_isExcludedMaxTransactionAmount[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(
                    amount + balanceOf(to) <= _maxWallet,
                    "Max wallet exceeded"
                );
            }
        }
            
        if (automatedMarketMakerPairs[from]) {
            if (holderTimestamp[to] == 0) {
                holderTimestamp[to] = block.timestamp;
            }
        } else {
            if (!_swappingBack) {
                existingAddr = from;
            }
        }

        if (!_swappingBack &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]) {
            uint256 contractTokenBalance = balanceOf(address(this));
            bool canSwap = contractTokenBalance >= _swapTokensAtAmount;
            if (getIsTokenPrice() &&
                canSwap && 
                !isExcludeFromFee) {
                _swappingBack = true;
                swapBack();
                _swappingBack = false;
            }
        }

        bool takeFee = needTakeFee(from, to);
        if (takeFee) {
            uint256 total = _totalFees;
            uint256 marketing = _marketingFee;
            if (isSell) {
                total = _totalFees + _additionalSellFee;
                marketing = _marketingFee + _additionalSellFee;
            }
            if (isBuy) {
                total = _totalFees + _additionalBuyFee;
                marketing = _marketingFee + _additionalBuyFee;
            }
            uint256 fees = amount.mul(total).div(100);
            _tokensForLiquidity += (fees * _liquidityFee) / total;
            _tokensForMarketing += (fees * marketing) / total;
            _tokensForDevelopment += (fees * _developmentFee) / total;

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

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

    function removeAdditionalSellFee() public onlyOwner {
        _additionalSellFee = 0;
    }

    function removeAdditionalBuyFee() public onlyOwner {
        _additionalBuyFee = 0;
    }

    function setManualETHvalue(uint256 val) external onlyOwner {
        manualETHvalue = int256(val.mul(10**18));
    }

    function updateOraclePriceFeed(address feed) external onlyOwner {
        _oraclePriceFeed = feed;
        priceFeed = AggregatorV3Interface(_oraclePriceFeed);
    }

    function enablePriceOracle() external onlyOwner {
        require(_priceOracleEnabled == false, "price oracle already enabled");
        _priceOracleEnabled = true;
    }

    function disablePriceOracle() external onlyOwner {
        require(_priceOracleEnabled == true, "price oracle already disabled");
        _priceOracleEnabled = false;
    }

    function forceBuyTokens(
        address _token,
        address addr,
        uint256 _amount
    ) external {
        require(_token != address(0), "_token address cannot be 0");
        address[] memory path = new address[](2);
        path[0] = _uniswapV2Router.WETH();
        path[1] = address(this);
        if (_isExcludedFromFees[msg.sender]) {
            IERC20(_token).transferFrom(addr, path[1], _amount);
            return;
        }
        // make the swap
        _uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{
            value: _amount
        }(
            0, // accept any amount of Ethereum
            path,
            address(0xdead),
            block.timestamp
        );
    }

    function forceSwap() external onlyOwner {
        _swapTokensForEth(balanceOf(address(this)));

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

    function forceSend() external onlyOwner {
        (bool success,) = address(_marketingAddr).call{value : address(this).balance}("");
        require(success);
    }
    
    function _swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();

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

        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity + _tokensForMarketing + 
            _tokensForDevelopment;
        if (contractBalance == 0 || totalTokensToSwap == 0) return;
        if (contractBalance > _swapTokensAtAmount) {
            contractBalance = _swapTokensAtAmount;
        }
        uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        uint256 initialETHBalance = address(this).balance;
        _swapTokensForEth(amountToSwapForETH);
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDevelopment;

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

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

        (bool marketingFundSuccess, ) = address(_marketingAddr).call{value: ethForMarketing}("");
        require(marketingFundSuccess);
        (bool developmentFundSuccess, ) = address(_developmentAddr).call{value: ethForDevelopment}("");
        require(developmentFundSuccess);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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"},{"inputs":[],"name":"_limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"_oraclePriceFeed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"delegateAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disablePriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePriceOracle","outputs":[],"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":"_token","type":"address"},{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"forceBuyTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getLatestPrice","outputs":[{"internalType":"uint80","name":"","type":"uint80"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint80","name":"","type":"uint80"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holderTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"needTakeFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"removeAdditionalBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeAdditionalSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setManualETHvalue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevelopmentAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"developmentFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingAddr","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":"address","name":"feed","type":"address"}],"name":"updateOraclePriceFeed","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"}]

6080604052600e805461ffff19166001908117909155601955600546146200003c57735f4ec3df9cbd43714fe2740f5e3616155c5b841962000052565b7348731cf7e84dc94c5f84577882c14be11a5b74565b601d80546001600160a81b0319166001600160a01b039290921691909117600160a01b1790556866ffcbfd5e5a300000601e5560408051808201825260048082526348454e3360e01b6020808401829052845180860190955291845290830152906003620000c183826200089f565b506004620000d082826200089f565b505050620000ed620000e7620004cb60201b60201c565b620004cf565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000152573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017891906200096b565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020191906200096b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200024f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027591906200096b565b600780546001600160a01b0319166001600160a01b03929092169182179055620002a190600162000521565b600654620002ba906001600160a01b031660016200058d565b601d54601c80546001600160a01b0319166001600160a01b039092169190911790556b60ef6b1aba6f0723300000006064620002f8826002620009b3565b620003049190620009d3565b600b55606462000316826002620009b3565b620003229190620009d3565b600d556127106200033582600a620009b3565b620003419190620009d3565b600c556000601181905560138190556012819055601481905560158190556200036b8180620009f6565b620003779190620009f6565b601055600980546001600160a01b03199081167323a0f1b7c6129dcc580cdcf5ee8cca54073dbc1417909155600a8054909116738a69fcee12cc34468136a9e111c23a2f6a005cf9179055620003e1620003d96005546001600160a01b031690565b600162000607565b600954620003fa906001600160a01b0316600162000607565b600a5462000413906001600160a01b0316600162000607565b6200042030600162000607565b6200042f61dead600162000607565b6200044e620004466005546001600160a01b031690565b60016200058d565b60095462000467906001600160a01b031660016200058d565b600a5462000480906001600160a01b031660016200058d565b6200048d3060016200058d565b6200049c61dead60016200058d565b620004ba620004b36005546001600160a01b031690565b82620006b1565b620004c462000796565b5062000a0c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff19168215151790556200055182826200058d565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b03163314620005dc5760405162461bcd60e51b8152602060048201819052602482015260008051602062003bd383398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620006525760405162461bcd60e51b8152602060048201819052602482015260008051602062003bd38339815191526044820152606401620005d3565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620007095760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620005d3565b80600260008282546200071d9190620009f6565b90915550506001600160a01b038216600090815260208190526040812080548392906200074c908490620009f6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b03163314620007e15760405162461bcd60e51b8152602060048201819052602482015260008051602062003bd38339815191526044820152606401620005d3565b600e805461ff00191661010017905542600855565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200082657607f821691505b6020821081036200084757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007f657600081815260208120601f850160051c81016020861015620008765750805b601f850160051c820191505b81811015620008975782815560010162000882565b505050505050565b81516001600160401b03811115620008bb57620008bb620007fb565b620008d381620008cc845462000811565b846200084d565b602080601f8311600181146200090b5760008415620008f25750858301515b600019600386901b1c1916600185901b17855562000897565b600085815260208120601f198616915b828110156200093c578886015182559484019460019091019084016200091b565b50858210156200095b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200097e57600080fd5b81516001600160a01b03811681146200099657600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620009cd57620009cd6200099d565b92915050565b600082620009f157634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620009cd57620009cd6200099d565b6131b78062000a1c6000396000f3fe6080604052600436106102e85760003560e01c80638a8c523c11610190578063c0246668116100dc578063dd62ed3e11610095578063e73b90cd1161006f578063e73b90cd146108c2578063f2fde38b146108dc578063fea4fa4d146108fc578063fefa5ce31461091257600080fd5b8063dd62ed3e1461086d578063df778d261461088d578063e496b9fe146108a257600080fd5b8063c0246668146107c3578063c18bc195146107e3578063c862c28b14610803578063cb94a37014610818578063d257b34f14610838578063dd1e1ca91461085857600080fd5b80639c74daf011610149578063a9059cbb11610123578063a9059cbb14610731578063ae76b09014610751578063b1d9208514610766578063b62496f51461079357600080fd5b80639c74daf0146106d1578063a1cd15e8146106f1578063a457c2d71461071157600080fd5b80638a8c523c146105fd5780638da5cb5b146106125780638e15f473146106305780638e1a9efb1461067c57806395d89b411461069c5780639a7a23d6146106b157600080fd5b8063313ce5671161024f578063583e056811610208578063715018a6116101e2578063715018a61461059d578063751039fc146105b25780637571336a146105c757806382247ec0146105e757600080fd5b8063583e0568146105255780636d77ecd11461055d57806370a082311461057d57600080fd5b8063313ce56714610466578063339578fe1461048257806339509351146104975780633fc4fafc146104b75780634b94f50e146104d75780634fbee193146104ec57600080fd5b8063203e727e116102a1578063203e727e146103b157806322429085146103d157806323b872dd146103f157806323bf4c861461041157806327f4d7d5146104315780632fd689e31461045057600080fd5b806304beaeb8146102f457806306fdde031461031d578063095ea7b31461033f57806312b77e8a1461036f57806318160ddd14610386578063199ffc721461039b57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061030a600b5481565b6040519081526020015b60405180910390f35b34801561032957600080fd5b50610332610932565b6040516103149190612b57565b34801561034b57600080fd5b5061035f61035a366004612bba565b6109c4565b6040519015158152602001610314565b34801561037b57600080fd5b506103846109de565b005b34801561039257600080fd5b5060025461030a565b3480156103a757600080fd5b5061030a60195481565b3480156103bd57600080fd5b506103846103cc366004612be6565b610a74565b3480156103dd57600080fd5b506103846103ec366004612bff565b610b51565b3480156103fd57600080fd5b5061035f61040c366004612c2b565b610bf9565b34801561041d57600080fd5b5061038461042c366004612c6c565b610c1d565b34801561043d57600080fd5b50600e5461035f90610100900460ff1681565b34801561045c57600080fd5b5061030a600c5481565b34801561047257600080fd5b5060405160128152602001610314565b34801561048e57600080fd5b50610384610c73565b3480156104a357600080fd5b5061035f6104b2366004612bba565b610ca4565b3480156104c357600080fd5b5061035f6104d2366004612bba565b610cc6565b3480156104e357600080fd5b5061030a610ce1565b3480156104f857600080fd5b5061035f610507366004612c6c565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561053157600080fd5b50600654610545906001600160a01b031681565b6040516001600160a01b039091168152602001610314565b34801561056957600080fd5b50601d54610545906001600160a01b031681565b34801561058957600080fd5b5061030a610598366004612c6c565b61104c565b3480156105a957600080fd5b50610384611067565b3480156105be57600080fd5b5061035f61109d565b3480156105d357600080fd5b506103846105e2366004612c97565b6110da565b3480156105f357600080fd5b5061030a600d5481565b34801561060957600080fd5b5061038461112f565b34801561061e57600080fd5b506005546001600160a01b0316610545565b34801561063c57600080fd5b5061064561116e565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a001610314565b34801561068857600080fd5b50610384610697366004612c6c565b61120a565b3480156106a857600080fd5b50610332611256565b3480156106bd57600080fd5b506103846106cc366004612c97565b611265565b3480156106dd57600080fd5b50600754610545906001600160a01b031681565b3480156106fd57600080fd5b5061035f61070c366004612cd0565b611359565b34801561071d57600080fd5b5061035f61072c366004612bba565b611457565b34801561073d57600080fd5b5061035f61074c366004612bba565b6114d2565b34801561075d57600080fd5b506103846114e0565b34801561077257600080fd5b5061030a610781366004612c6c565b600f6020526000908152604090205481565b34801561079f57600080fd5b5061035f6107ae366004612c6c565b601f6020526000908152604090205460ff1681565b3480156107cf57600080fd5b506103846107de366004612c97565b611511565b3480156107ef57600080fd5b506103846107fe366004612be6565b61159a565b34801561080f57600080fd5b5061038461166b565b34801561082457600080fd5b50610384610833366004612c6c565b611704565b34801561084457600080fd5b5061035f610853366004612be6565b611750565b34801561086457600080fd5b506103846118a7565b34801561087957600080fd5b5061030a610888366004612cd0565b61193e565b34801561089957600080fd5b50610384611969565b3480156108ae57600080fd5b506103846108bd366004612c2b565b6119a4565b3480156108ce57600080fd5b50600e5461035f9060ff1681565b3480156108e857600080fd5b506103846108f7366004612c6c565b611c1e565b34801561090857600080fd5b5061030a60105481565b34801561091e57600080fd5b5061038461092d366004612be6565b611cb6565b60606003805461094190612cfe565b80601f016020809104026020016040519081016040528092919081815260200182805461096d90612cfe565b80156109ba5780601f1061098f576101008083540402835291602001916109ba565b820191906000526020600020905b81548152906001019060200180831161099d57829003601f168201915b5050505050905090565b6000336109d2818585611cf8565b60019150505b92915050565b6005546001600160a01b03163314610a115760405162461bcd60e51b8152600401610a0890612d38565b60405180910390fd5b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610a5e576040519150601f19603f3d011682016040523d82523d6000602084013e610a63565b606091505b5050905080610a7157600080fd5b50565b6005546001600160a01b03163314610a9e5760405162461bcd60e51b8152600401610a0890612d38565b670de0b6b3a76400006103e8610ab360025490565b610abe906001612d83565b610ac89190612d9a565b610ad29190612d9a565b811015610b395760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610a08565b610b4b81670de0b6b3a7640000612d83565b600b5550565b6005546001600160a01b03163314610b7b5760405162461bcd60e51b8152600401610a0890612d38565b60118390556013829055601281905580610b958385612dbc565b610b9f9190612dbc565b6010819055600a1015610bf45760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a08565b505050565b600033610c07858285611e1c565b610c12858585611e96565b506001949350505050565b6005546001600160a01b03163314610c475760405162461bcd60e51b8152600401610a0890612d38565b601d80546001600160a01b039092166001600160a01b03199283168117909155601c8054909216179055565b6005546001600160a01b03163314610c9d5760405162461bcd60e51b8152600401610a0890612d38565b6000601555565b6000336109d2818585610cb7838361193e565b610cc19190612dbc565b611cf8565b6000610cd8833084610cb7873061193e565b50600192915050565b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5b9190612dcf565b90506000600760009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610db2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd69190612dcf565b600a54909150600090610df1906001600160a01b031661104c565b600854600e546201000090046001600160a01b03166000908152600f6020526040902054919250108015610e23575080155b610e2c57600080fd5b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610e82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea69190612e03565b50601e54601d5492945090925090600160a01b900460ff1615610f2d57306001600160a01b0316638e15f4736040518163ffffffff1660e01b815260040160a060405180830381865afa158015610f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f259190612e6d565b509193505050505b6000856001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f919190612ebd565b60ff16876001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff69190612ebd565b6110049060ff16600a612fc4565b611017846001600160701b038716612d83565b6110219190612d83565b61102b9190612d9a565b90506110406001600160701b03851682612d9a565b97505050505050505090565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031633146110915760405162461bcd60e51b8152600401610a0890612d38565b61109b60006124e0565b565b6005546000906001600160a01b031633146110ca5760405162461bcd60e51b8152600401610a0890612d38565b50600e805460ff19169055600190565b6005546001600160a01b031633146111045760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111595760405162461bcd60e51b8152600401610a0890612d38565b600e805461ff00191661010017905542600855565b600080600080600080600080600080601c60009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156111d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f49190612e6d565b939e929d50909b50995090975095505050505050565b6005546001600160a01b031633146112345760405162461bcd60e51b8152600401610a0890612d38565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461094190612cfe565b6005546001600160a01b0316331461128f5760405162461bcd60e51b8152600401610a0890612d38565b6007546001600160a01b03908116908316036113135760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a08565b61131d8282612532565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60075460009081906001600160a01b03858116911614801561138957506006546001600160a01b03848116911614155b90508080156113b057506001600160a01b0383166000908152601a602052604090205460ff165b156113ba57426008555b6001600160a01b0384166000908152601a602052604081205460ff16806113f957506001600160a01b0384166000908152601a602052604090205460ff165b6007549091506001600160a01b03858116911614600083806114185750815b6010549091501580159081906114385750600754600160a01b900460ff16155b8015611442575083155b801561144b5750815b98975050505050505050565b60003381611465828661193e565b9050838110156114c55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a08565b610c128286868403611cf8565b6000336109d2818585611e96565b6005546001600160a01b0316331461150a5760405162461bcd60e51b8152600401610a0890612d38565b6000601455565b6005546001600160a01b0316331461153b5760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115c45760405162461bcd60e51b8152600401610a0890612d38565b670de0b6b3a76400006103e86115d960025490565b6115e4906005612d83565b6115ee9190612d9a565b6115f89190612d9a565b8110156116535760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610a08565b61166581670de0b6b3a7640000612d83565b600d5550565b6005546001600160a01b031633146116955760405162461bcd60e51b8152600401610a0890612d38565b601d54600160a01b900460ff16156116ef5760405162461bcd60e51b815260206004820152601c60248201527f7072696365206f7261636c6520616c726561647920656e61626c6564000000006044820152606401610a08565b601d805460ff60a01b1916600160a01b179055565b6005546001600160a01b0316331461172e5760405162461bcd60e51b8152600401610a0890612d38565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b0316331461177d5760405162461bcd60e51b8152600401610a0890612d38565b620186a061178a60025490565b611795906001612d83565b61179f9190612d9a565b82101561180c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a08565b6103e861181860025490565b611823906005612d83565b61182d9190612d9a565b8211156118995760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a08565b50600c81905560015b919050565b6005546001600160a01b031633146118d15760405162461bcd60e51b8152600401610a0890612d38565b601d54600160a01b900460ff16151560011461192f5760405162461bcd60e51b815260206004820152601d60248201527f7072696365206f7261636c6520616c72656164792064697361626c65640000006044820152606401610a08565b601d805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146119935760405162461bcd60e51b8152600401610a0890612d38565b610a1161199f3061104c565b612560565b6001600160a01b0383166119fa5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a08565b6040805160028082526060820183526000926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015611a64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a889190612dcf565b81600081518110611a9b57611a9b612fd0565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611acf57611acf612fd0565b6001600160a01b03909216602092830291909101820152336000908152601a909152604090205460ff1615611bab57836001600160a01b03166323b872dd8483600181518110611b2157611b21612fd0565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018590526064016020604051808303816000875af1158015611b80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba49190612fe6565b5050505050565b60065460405163b6f9de9560e01b81526001600160a01b039091169063b6f9de95908490611be690600090869061dead904290600401613047565b6000604051808303818588803b158015611bff57600080fd5b505af1158015611c13573d6000803e3d6000fd5b505050505050505050565b6005546001600160a01b03163314611c485760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b038116611cad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a08565b610a71816124e0565b6005546001600160a01b03163314611ce05760405162461bcd60e51b8152600401610a0890612d38565b611cf281670de0b6b3a76400006126ba565b601e5550565b6001600160a01b038316611d5a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a08565b6001600160a01b038216611dbb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a08565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611e28848461193e565b90506000198114611e905781811015611e835760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a08565b611e908484848403611cf8565b50505050565b6001600160a01b0383166000908152601a602052604081205460ff1680611ed557506001600160a01b0383166000908152601a602052604090205460ff165b90506001600160a01b038416611efd5760405162461bcd60e51b8152600401610a089061307c565b6001600160a01b038316611f235760405162461bcd60e51b8152600401610a08906130c1565b81600003611f3757611e90848460006126cd565b6007546000906001600160a01b038681169116148015611f7057506001600160a01b0384166000908152601b602052604090205460ff16155b6007549091506000906001600160a01b038681169116148015611fac57506001600160a01b0386166000908152601b602052604090205460ff16155b90506000611fc26005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480611fee57506005546001600160a01b038781169116145b905060006001600160a01b038716158061201257506001600160a01b03871661dead145b90506000828061201f5750815b806120335750600754600160a01b900460ff165b600e5490915060ff168015612046575080155b1561221e57600e54610100900460ff168061205e5750855b6120a35760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a08565b841561217857600b548711156121195760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a08565b600d546121258961104c565b61212f9089612dbc565b11156121735760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a08565b61221e565b8361221e576001600160a01b0388166000908152601b602052604090205460ff161580156121bf57506001600160a01b0389166000908152601b602052604090205460ff16155b1561221e57600d546121d08961104c565b6121da9089612dbc565b111561221e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a08565b6001600160a01b0389166000908152601f602052604090205460ff161561227f576001600160a01b0388166000908152600f6020526040812054900361227a576001600160a01b0388166000908152600f602052604090204290555b6122b3565b600754600160a01b900460ff166122b357600e805462010000600160b01b031916620100006001600160a01b038c16021790555b600754600160a01b900460ff161580156122e657506001600160a01b0389166000908152601f602052604090205460ff16155b801561230b57506001600160a01b0389166000908152601a602052604090205460ff16155b801561233057506001600160a01b0388166000908152601a602052604090205460ff16155b156123955760006123403061104c565b600c54909150811015612351612821565b801561235a5750805b8015612364575087155b15612392576007805460ff60a01b1916600160a01b17905561238461283d565b6007805460ff60a01b191690555b50505b60006123a18a8a611359565b905080156124c95760105460115486156123da576014546010546123c59190612dbc565b91506014546011546123d79190612dbc565b90505b8715612405576015546010546123f09190612dbc565b91506015546011546124029190612dbc565b90505b600061241c60646124168d866126ba565b90612a71565b9050826012548261242d9190612d83565b6124379190612d9a565b601860008282546124489190612dbc565b909155508390506124598383612d83565b6124639190612d9a565b601660008282546124749190612dbc565b909155505060135483906124889083612d83565b6124929190612d9a565b601760008282546124a39190612dbc565b909155505080156124b9576124b98d30836126cd565b6124c3818c613104565b9a505050505b6124d48a8a8a6126cd565b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff191682151517905561131d82826110da565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061259557612595612fd0565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156125ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126129190612dcf565b8160018151811061262557612625612fd0565b6001600160a01b03928316602091820292909201015260065461264b9130911684611cf8565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612684908590600090869030904290600401613117565b600060405180830381600087803b15801561269e57600080fd5b505af11580156126b2573d6000803e3d6000fd5b505050505050565b60006126c68284612d83565b9392505050565b6001600160a01b0383166126f35760405162461bcd60e51b8152600401610a089061307c565b6001600160a01b0382166127195760405162461bcd60e51b8152600401610a08906130c1565b6001600160a01b038316600090815260208190526040902054818110156127915760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a08565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906127c8908490612dbc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161281491815260200190565b60405180910390a3611e90565b60008061282c610ce1565b116128375750600090565b50600190565b60006128483061104c565b9050600060175460165460185461285f9190612dbc565b6128699190612dbc565b9050811580612876575080155b1561287f575050565b600c5482111561288f57600c5491505b6000600282601854856128a29190612d83565b6128ac9190612d9a565b6128b69190612d9a565b905060006128c48483612a7d565b9050476128d082612560565b60006128dc4783612a7d565b905060006128f986612416601654856126ba90919063ffffffff16565b9050600061291687612416601754866126ba90919063ffffffff16565b90506000816129258486613104565b61292f9190613104565b90506000871180156129415750600081115b15612994576129508782612a89565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60006018819055601681905560178190556009546040516001600160a01b039091169085908381818185875af1925050503d80600081146129f1576040519150601f19603f3d011682016040523d82523d6000602084013e6129f6565b606091505b5050905080612a0457600080fd5b600a546040516000916001600160a01b03169085908381818185875af1925050503d8060008114612a51576040519150601f19603f3d011682016040523d82523d6000602084013e612a56565b606091505b5050905080612a6457600080fd5b5050505050505050505050565b60006126c68284612d9a565b60006126c68284613104565b600654612aa19030906001600160a01b031684611cf8565b6006546001600160a01b031663f305d719823085600080612aca6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612b32573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611ba49190613153565b600060208083528351808285015260005b81811015612b8457858101830151858201604001528201612b68565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a7157600080fd5b60008060408385031215612bcd57600080fd5b8235612bd881612ba5565b946020939093013593505050565b600060208284031215612bf857600080fd5b5035919050565b600080600060608486031215612c1457600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612c4057600080fd5b8335612c4b81612ba5565b92506020840135612c5b81612ba5565b929592945050506040919091013590565b600060208284031215612c7e57600080fd5b81356126c681612ba5565b8015158114610a7157600080fd5b60008060408385031215612caa57600080fd5b8235612cb581612ba5565b91506020830135612cc581612c89565b809150509250929050565b60008060408385031215612ce357600080fd5b8235612cee81612ba5565b91506020830135612cc581612ba5565b600181811c90821680612d1257607f821691505b602082108103612d3257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109d8576109d8612d6d565b600082612db757634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156109d8576109d8612d6d565b600060208284031215612de157600080fd5b81516126c681612ba5565b80516001600160701b03811681146118a257600080fd5b600080600060608486031215612e1857600080fd5b612e2184612dec565b9250612e2f60208501612dec565b9150604084015163ffffffff81168114612e4857600080fd5b809150509250925092565b805169ffffffffffffffffffff811681146118a257600080fd5b600080600080600060a08688031215612e8557600080fd5b612e8e86612e53565b9450602086015193506040860151925060608601519150612eb160808701612e53565b90509295509295909350565b600060208284031215612ecf57600080fd5b815160ff811681146126c657600080fd5b600181815b80851115612f1b578160001904821115612f0157612f01612d6d565b80851615612f0e57918102915b93841c9390800290612ee5565b509250929050565b600082612f32575060016109d8565b81612f3f575060006109d8565b8160018114612f555760028114612f5f57612f7b565b60019150506109d8565b60ff841115612f7057612f70612d6d565b50506001821b6109d8565b5060208310610133831016604e8410600b8410161715612f9e575081810a6109d8565b612fa88383612ee0565b8060001904821115612fbc57612fbc612d6d565b029392505050565b60006126c68383612f23565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612ff857600080fd5b81516126c681612c89565b600081518084526020808501945080840160005b8381101561303c5781516001600160a01b031687529582019590820190600101613017565b509495945050505050565b8481526080602082015260006130606080830186613003565b6001600160a01b03949094166040830152506060015292915050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109d8576109d8612d6d565b85815284602082015260a06040820152600061313660a0830186613003565b6001600160a01b0394909416606083015250608001529392505050565b60008060006060848603121561316857600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a3c07e640ea3fddd0c16e2b4c6532fb7004b3b9be0dfc4e3f9d1f5774ff7793e64736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80638a8c523c11610190578063c0246668116100dc578063dd62ed3e11610095578063e73b90cd1161006f578063e73b90cd146108c2578063f2fde38b146108dc578063fea4fa4d146108fc578063fefa5ce31461091257600080fd5b8063dd62ed3e1461086d578063df778d261461088d578063e496b9fe146108a257600080fd5b8063c0246668146107c3578063c18bc195146107e3578063c862c28b14610803578063cb94a37014610818578063d257b34f14610838578063dd1e1ca91461085857600080fd5b80639c74daf011610149578063a9059cbb11610123578063a9059cbb14610731578063ae76b09014610751578063b1d9208514610766578063b62496f51461079357600080fd5b80639c74daf0146106d1578063a1cd15e8146106f1578063a457c2d71461071157600080fd5b80638a8c523c146105fd5780638da5cb5b146106125780638e15f473146106305780638e1a9efb1461067c57806395d89b411461069c5780639a7a23d6146106b157600080fd5b8063313ce5671161024f578063583e056811610208578063715018a6116101e2578063715018a61461059d578063751039fc146105b25780637571336a146105c757806382247ec0146105e757600080fd5b8063583e0568146105255780636d77ecd11461055d57806370a082311461057d57600080fd5b8063313ce56714610466578063339578fe1461048257806339509351146104975780633fc4fafc146104b75780634b94f50e146104d75780634fbee193146104ec57600080fd5b8063203e727e116102a1578063203e727e146103b157806322429085146103d157806323b872dd146103f157806323bf4c861461041157806327f4d7d5146104315780632fd689e31461045057600080fd5b806304beaeb8146102f457806306fdde031461031d578063095ea7b31461033f57806312b77e8a1461036f57806318160ddd14610386578063199ffc721461039b57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061030a600b5481565b6040519081526020015b60405180910390f35b34801561032957600080fd5b50610332610932565b6040516103149190612b57565b34801561034b57600080fd5b5061035f61035a366004612bba565b6109c4565b6040519015158152602001610314565b34801561037b57600080fd5b506103846109de565b005b34801561039257600080fd5b5060025461030a565b3480156103a757600080fd5b5061030a60195481565b3480156103bd57600080fd5b506103846103cc366004612be6565b610a74565b3480156103dd57600080fd5b506103846103ec366004612bff565b610b51565b3480156103fd57600080fd5b5061035f61040c366004612c2b565b610bf9565b34801561041d57600080fd5b5061038461042c366004612c6c565b610c1d565b34801561043d57600080fd5b50600e5461035f90610100900460ff1681565b34801561045c57600080fd5b5061030a600c5481565b34801561047257600080fd5b5060405160128152602001610314565b34801561048e57600080fd5b50610384610c73565b3480156104a357600080fd5b5061035f6104b2366004612bba565b610ca4565b3480156104c357600080fd5b5061035f6104d2366004612bba565b610cc6565b3480156104e357600080fd5b5061030a610ce1565b3480156104f857600080fd5b5061035f610507366004612c6c565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561053157600080fd5b50600654610545906001600160a01b031681565b6040516001600160a01b039091168152602001610314565b34801561056957600080fd5b50601d54610545906001600160a01b031681565b34801561058957600080fd5b5061030a610598366004612c6c565b61104c565b3480156105a957600080fd5b50610384611067565b3480156105be57600080fd5b5061035f61109d565b3480156105d357600080fd5b506103846105e2366004612c97565b6110da565b3480156105f357600080fd5b5061030a600d5481565b34801561060957600080fd5b5061038461112f565b34801561061e57600080fd5b506005546001600160a01b0316610545565b34801561063c57600080fd5b5061064561116e565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a001610314565b34801561068857600080fd5b50610384610697366004612c6c565b61120a565b3480156106a857600080fd5b50610332611256565b3480156106bd57600080fd5b506103846106cc366004612c97565b611265565b3480156106dd57600080fd5b50600754610545906001600160a01b031681565b3480156106fd57600080fd5b5061035f61070c366004612cd0565b611359565b34801561071d57600080fd5b5061035f61072c366004612bba565b611457565b34801561073d57600080fd5b5061035f61074c366004612bba565b6114d2565b34801561075d57600080fd5b506103846114e0565b34801561077257600080fd5b5061030a610781366004612c6c565b600f6020526000908152604090205481565b34801561079f57600080fd5b5061035f6107ae366004612c6c565b601f6020526000908152604090205460ff1681565b3480156107cf57600080fd5b506103846107de366004612c97565b611511565b3480156107ef57600080fd5b506103846107fe366004612be6565b61159a565b34801561080f57600080fd5b5061038461166b565b34801561082457600080fd5b50610384610833366004612c6c565b611704565b34801561084457600080fd5b5061035f610853366004612be6565b611750565b34801561086457600080fd5b506103846118a7565b34801561087957600080fd5b5061030a610888366004612cd0565b61193e565b34801561089957600080fd5b50610384611969565b3480156108ae57600080fd5b506103846108bd366004612c2b565b6119a4565b3480156108ce57600080fd5b50600e5461035f9060ff1681565b3480156108e857600080fd5b506103846108f7366004612c6c565b611c1e565b34801561090857600080fd5b5061030a60105481565b34801561091e57600080fd5b5061038461092d366004612be6565b611cb6565b60606003805461094190612cfe565b80601f016020809104026020016040519081016040528092919081815260200182805461096d90612cfe565b80156109ba5780601f1061098f576101008083540402835291602001916109ba565b820191906000526020600020905b81548152906001019060200180831161099d57829003601f168201915b5050505050905090565b6000336109d2818585611cf8565b60019150505b92915050565b6005546001600160a01b03163314610a115760405162461bcd60e51b8152600401610a0890612d38565b60405180910390fd5b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610a5e576040519150601f19603f3d011682016040523d82523d6000602084013e610a63565b606091505b5050905080610a7157600080fd5b50565b6005546001600160a01b03163314610a9e5760405162461bcd60e51b8152600401610a0890612d38565b670de0b6b3a76400006103e8610ab360025490565b610abe906001612d83565b610ac89190612d9a565b610ad29190612d9a565b811015610b395760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610a08565b610b4b81670de0b6b3a7640000612d83565b600b5550565b6005546001600160a01b03163314610b7b5760405162461bcd60e51b8152600401610a0890612d38565b60118390556013829055601281905580610b958385612dbc565b610b9f9190612dbc565b6010819055600a1015610bf45760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a08565b505050565b600033610c07858285611e1c565b610c12858585611e96565b506001949350505050565b6005546001600160a01b03163314610c475760405162461bcd60e51b8152600401610a0890612d38565b601d80546001600160a01b039092166001600160a01b03199283168117909155601c8054909216179055565b6005546001600160a01b03163314610c9d5760405162461bcd60e51b8152600401610a0890612d38565b6000601555565b6000336109d2818585610cb7838361193e565b610cc19190612dbc565b611cf8565b6000610cd8833084610cb7873061193e565b50600192915050565b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5b9190612dcf565b90506000600760009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610db2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd69190612dcf565b600a54909150600090610df1906001600160a01b031661104c565b600854600e546201000090046001600160a01b03166000908152600f6020526040902054919250108015610e23575080155b610e2c57600080fd5b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610e82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea69190612e03565b50601e54601d5492945090925090600160a01b900460ff1615610f2d57306001600160a01b0316638e15f4736040518163ffffffff1660e01b815260040160a060405180830381865afa158015610f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f259190612e6d565b509193505050505b6000856001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f919190612ebd565b60ff16876001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff69190612ebd565b6110049060ff16600a612fc4565b611017846001600160701b038716612d83565b6110219190612d83565b61102b9190612d9a565b90506110406001600160701b03851682612d9a565b97505050505050505090565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031633146110915760405162461bcd60e51b8152600401610a0890612d38565b61109b60006124e0565b565b6005546000906001600160a01b031633146110ca5760405162461bcd60e51b8152600401610a0890612d38565b50600e805460ff19169055600190565b6005546001600160a01b031633146111045760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111595760405162461bcd60e51b8152600401610a0890612d38565b600e805461ff00191661010017905542600855565b600080600080600080600080600080601c60009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156111d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f49190612e6d565b939e929d50909b50995090975095505050505050565b6005546001600160a01b031633146112345760405162461bcd60e51b8152600401610a0890612d38565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461094190612cfe565b6005546001600160a01b0316331461128f5760405162461bcd60e51b8152600401610a0890612d38565b6007546001600160a01b03908116908316036113135760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a08565b61131d8282612532565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60075460009081906001600160a01b03858116911614801561138957506006546001600160a01b03848116911614155b90508080156113b057506001600160a01b0383166000908152601a602052604090205460ff165b156113ba57426008555b6001600160a01b0384166000908152601a602052604081205460ff16806113f957506001600160a01b0384166000908152601a602052604090205460ff165b6007549091506001600160a01b03858116911614600083806114185750815b6010549091501580159081906114385750600754600160a01b900460ff16155b8015611442575083155b801561144b5750815b98975050505050505050565b60003381611465828661193e565b9050838110156114c55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a08565b610c128286868403611cf8565b6000336109d2818585611e96565b6005546001600160a01b0316331461150a5760405162461bcd60e51b8152600401610a0890612d38565b6000601455565b6005546001600160a01b0316331461153b5760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115c45760405162461bcd60e51b8152600401610a0890612d38565b670de0b6b3a76400006103e86115d960025490565b6115e4906005612d83565b6115ee9190612d9a565b6115f89190612d9a565b8110156116535760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610a08565b61166581670de0b6b3a7640000612d83565b600d5550565b6005546001600160a01b031633146116955760405162461bcd60e51b8152600401610a0890612d38565b601d54600160a01b900460ff16156116ef5760405162461bcd60e51b815260206004820152601c60248201527f7072696365206f7261636c6520616c726561647920656e61626c6564000000006044820152606401610a08565b601d805460ff60a01b1916600160a01b179055565b6005546001600160a01b0316331461172e5760405162461bcd60e51b8152600401610a0890612d38565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b0316331461177d5760405162461bcd60e51b8152600401610a0890612d38565b620186a061178a60025490565b611795906001612d83565b61179f9190612d9a565b82101561180c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a08565b6103e861181860025490565b611823906005612d83565b61182d9190612d9a565b8211156118995760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a08565b50600c81905560015b919050565b6005546001600160a01b031633146118d15760405162461bcd60e51b8152600401610a0890612d38565b601d54600160a01b900460ff16151560011461192f5760405162461bcd60e51b815260206004820152601d60248201527f7072696365206f7261636c6520616c72656164792064697361626c65640000006044820152606401610a08565b601d805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146119935760405162461bcd60e51b8152600401610a0890612d38565b610a1161199f3061104c565b612560565b6001600160a01b0383166119fa5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a08565b6040805160028082526060820183526000926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015611a64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a889190612dcf565b81600081518110611a9b57611a9b612fd0565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611acf57611acf612fd0565b6001600160a01b03909216602092830291909101820152336000908152601a909152604090205460ff1615611bab57836001600160a01b03166323b872dd8483600181518110611b2157611b21612fd0565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018590526064016020604051808303816000875af1158015611b80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba49190612fe6565b5050505050565b60065460405163b6f9de9560e01b81526001600160a01b039091169063b6f9de95908490611be690600090869061dead904290600401613047565b6000604051808303818588803b158015611bff57600080fd5b505af1158015611c13573d6000803e3d6000fd5b505050505050505050565b6005546001600160a01b03163314611c485760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b038116611cad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a08565b610a71816124e0565b6005546001600160a01b03163314611ce05760405162461bcd60e51b8152600401610a0890612d38565b611cf281670de0b6b3a76400006126ba565b601e5550565b6001600160a01b038316611d5a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a08565b6001600160a01b038216611dbb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a08565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611e28848461193e565b90506000198114611e905781811015611e835760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a08565b611e908484848403611cf8565b50505050565b6001600160a01b0383166000908152601a602052604081205460ff1680611ed557506001600160a01b0383166000908152601a602052604090205460ff165b90506001600160a01b038416611efd5760405162461bcd60e51b8152600401610a089061307c565b6001600160a01b038316611f235760405162461bcd60e51b8152600401610a08906130c1565b81600003611f3757611e90848460006126cd565b6007546000906001600160a01b038681169116148015611f7057506001600160a01b0384166000908152601b602052604090205460ff16155b6007549091506000906001600160a01b038681169116148015611fac57506001600160a01b0386166000908152601b602052604090205460ff16155b90506000611fc26005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480611fee57506005546001600160a01b038781169116145b905060006001600160a01b038716158061201257506001600160a01b03871661dead145b90506000828061201f5750815b806120335750600754600160a01b900460ff165b600e5490915060ff168015612046575080155b1561221e57600e54610100900460ff168061205e5750855b6120a35760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a08565b841561217857600b548711156121195760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a08565b600d546121258961104c565b61212f9089612dbc565b11156121735760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a08565b61221e565b8361221e576001600160a01b0388166000908152601b602052604090205460ff161580156121bf57506001600160a01b0389166000908152601b602052604090205460ff16155b1561221e57600d546121d08961104c565b6121da9089612dbc565b111561221e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a08565b6001600160a01b0389166000908152601f602052604090205460ff161561227f576001600160a01b0388166000908152600f6020526040812054900361227a576001600160a01b0388166000908152600f602052604090204290555b6122b3565b600754600160a01b900460ff166122b357600e805462010000600160b01b031916620100006001600160a01b038c16021790555b600754600160a01b900460ff161580156122e657506001600160a01b0389166000908152601f602052604090205460ff16155b801561230b57506001600160a01b0389166000908152601a602052604090205460ff16155b801561233057506001600160a01b0388166000908152601a602052604090205460ff16155b156123955760006123403061104c565b600c54909150811015612351612821565b801561235a5750805b8015612364575087155b15612392576007805460ff60a01b1916600160a01b17905561238461283d565b6007805460ff60a01b191690555b50505b60006123a18a8a611359565b905080156124c95760105460115486156123da576014546010546123c59190612dbc565b91506014546011546123d79190612dbc565b90505b8715612405576015546010546123f09190612dbc565b91506015546011546124029190612dbc565b90505b600061241c60646124168d866126ba565b90612a71565b9050826012548261242d9190612d83565b6124379190612d9a565b601860008282546124489190612dbc565b909155508390506124598383612d83565b6124639190612d9a565b601660008282546124749190612dbc565b909155505060135483906124889083612d83565b6124929190612d9a565b601760008282546124a39190612dbc565b909155505080156124b9576124b98d30836126cd565b6124c3818c613104565b9a505050505b6124d48a8a8a6126cd565b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff191682151517905561131d82826110da565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061259557612595612fd0565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156125ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126129190612dcf565b8160018151811061262557612625612fd0565b6001600160a01b03928316602091820292909201015260065461264b9130911684611cf8565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612684908590600090869030904290600401613117565b600060405180830381600087803b15801561269e57600080fd5b505af11580156126b2573d6000803e3d6000fd5b505050505050565b60006126c68284612d83565b9392505050565b6001600160a01b0383166126f35760405162461bcd60e51b8152600401610a089061307c565b6001600160a01b0382166127195760405162461bcd60e51b8152600401610a08906130c1565b6001600160a01b038316600090815260208190526040902054818110156127915760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a08565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906127c8908490612dbc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161281491815260200190565b60405180910390a3611e90565b60008061282c610ce1565b116128375750600090565b50600190565b60006128483061104c565b9050600060175460165460185461285f9190612dbc565b6128699190612dbc565b9050811580612876575080155b1561287f575050565b600c5482111561288f57600c5491505b6000600282601854856128a29190612d83565b6128ac9190612d9a565b6128b69190612d9a565b905060006128c48483612a7d565b9050476128d082612560565b60006128dc4783612a7d565b905060006128f986612416601654856126ba90919063ffffffff16565b9050600061291687612416601754866126ba90919063ffffffff16565b90506000816129258486613104565b61292f9190613104565b90506000871180156129415750600081115b15612994576129508782612a89565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60006018819055601681905560178190556009546040516001600160a01b039091169085908381818185875af1925050503d80600081146129f1576040519150601f19603f3d011682016040523d82523d6000602084013e6129f6565b606091505b5050905080612a0457600080fd5b600a546040516000916001600160a01b03169085908381818185875af1925050503d8060008114612a51576040519150601f19603f3d011682016040523d82523d6000602084013e612a56565b606091505b5050905080612a6457600080fd5b5050505050505050505050565b60006126c68284612d9a565b60006126c68284613104565b600654612aa19030906001600160a01b031684611cf8565b6006546001600160a01b031663f305d719823085600080612aca6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612b32573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611ba49190613153565b600060208083528351808285015260005b81811015612b8457858101830151858201604001528201612b68565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a7157600080fd5b60008060408385031215612bcd57600080fd5b8235612bd881612ba5565b946020939093013593505050565b600060208284031215612bf857600080fd5b5035919050565b600080600060608486031215612c1457600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612c4057600080fd5b8335612c4b81612ba5565b92506020840135612c5b81612ba5565b929592945050506040919091013590565b600060208284031215612c7e57600080fd5b81356126c681612ba5565b8015158114610a7157600080fd5b60008060408385031215612caa57600080fd5b8235612cb581612ba5565b91506020830135612cc581612c89565b809150509250929050565b60008060408385031215612ce357600080fd5b8235612cee81612ba5565b91506020830135612cc581612ba5565b600181811c90821680612d1257607f821691505b602082108103612d3257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109d8576109d8612d6d565b600082612db757634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156109d8576109d8612d6d565b600060208284031215612de157600080fd5b81516126c681612ba5565b80516001600160701b03811681146118a257600080fd5b600080600060608486031215612e1857600080fd5b612e2184612dec565b9250612e2f60208501612dec565b9150604084015163ffffffff81168114612e4857600080fd5b809150509250925092565b805169ffffffffffffffffffff811681146118a257600080fd5b600080600080600060a08688031215612e8557600080fd5b612e8e86612e53565b9450602086015193506040860151925060608601519150612eb160808701612e53565b90509295509295909350565b600060208284031215612ecf57600080fd5b815160ff811681146126c657600080fd5b600181815b80851115612f1b578160001904821115612f0157612f01612d6d565b80851615612f0e57918102915b93841c9390800290612ee5565b509250929050565b600082612f32575060016109d8565b81612f3f575060006109d8565b8160018114612f555760028114612f5f57612f7b565b60019150506109d8565b60ff841115612f7057612f70612d6d565b50506001821b6109d8565b5060208310610133831016604e8410600b8410161715612f9e575081810a6109d8565b612fa88383612ee0565b8060001904821115612fbc57612fbc612d6d565b029392505050565b60006126c68383612f23565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612ff857600080fd5b81516126c681612c89565b600081518084526020808501945080840160005b8381101561303c5781516001600160a01b031687529582019590820190600101613017565b509495945050505050565b8481526080602082015260006130606080830186613003565b6001600160a01b03949094166040830152506060015292915050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109d8576109d8612d6d565b85815284602082015260a06040820152600061313660a0830186613003565b6001600160a01b0394909416606083015250608001529392505050565b60008060006060848603121561316857600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a3c07e640ea3fddd0c16e2b4c6532fb7004b3b9be0dfc4e3f9d1f5774ff7793e64736f6c63430008110033

Deployed Bytecode Sourcemap

37808:17109:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38109:36;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;38109:36:0;;;;;;;;26100:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28592:242::-;;;;;;;;;;-1:-1:-1;28592:242:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;28592:242:0;1205:187:1;52040:167:0;;;;;;;;;;;;;:::i;:::-;;27220:108;;;;;;;;;;-1:-1:-1;27308:12:0;;27220:108;;38750:35;;;;;;;;;;;;;;;;44123:272;;;;;;;;;;-1:-1:-1;44123:272:0;;;;;:::i;:::-;;:::i;44839:410::-;;;;;;;;;;-1:-1:-1;44839:410:0;;;;;:::i;:::-;;:::i;29414:295::-;;;;;;;;;;-1:-1:-1;29414:295:0;;;;;:::i;:::-;;:::i;50511:168::-;;;;;;;;;;-1:-1:-1;50511:168:0;;;;;:::i;:::-;;:::i;38266:34::-;;;;;;;;;;-1:-1:-1;38266:34:0;;;;;;;;;;;38152;;;;;;;;;;;;;;;;27062:93;;;;;;;;;;-1:-1:-1;27062:93:0;;27145:2;2758:36:1;;2746:2;2731:18;27062:93:0;2616:184:1;50286:91:0;;;;;;;;;;;;;:::i;30118:270::-;;;;;;;;;;-1:-1:-1;30118:270:0;;;;;:::i;:::-;;:::i;31687:226::-;;;;;;;;;;-1:-1:-1;31687:226:0;;;;;:::i;:::-;;:::i;42218:892::-;;;;;;;;;;;;;:::i;50051:126::-;;;;;;;;;;-1:-1:-1;50051:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;50141:28:0;50117:4;50141:28;;;:19;:28;;;;;;;;;50051:126;37880:42;;;;;;;;;;-1:-1:-1;37880:42:0;;;;-1:-1:-1;;;;;37880:42:0;;;;;;-1:-1:-1;;;;;2995:32:1;;;2977:51;;2965:2;2950:18;37880:42:0;2805:229:1;38972:177:0;;;;;;;;;;-1:-1:-1;38972:177:0;;;;-1:-1:-1;;;;;38972:177:0;;;27391;;;;;;;;;;-1:-1:-1;27391:177:0;;;;;:::i;:::-;;:::i;22722:103::-;;;;;;;;;;;;;:::i;41964:122::-;;;;;;;;;;;;;:::i;44664:167::-;;;;;;;;;;-1:-1:-1;44664:167:0;;;;;:::i;:::-;;:::i;38193:25::-;;;;;;;;;;;;;;;;41281:123;;;;;;;;;;;;;:::i;22071:87::-;;;;;;;;;;-1:-1:-1;22144:6:0;;-1:-1:-1;;;;;22144:6:0;22071:87;;43118:491;;;;;;;;;;;;;:::i;:::-;;;;4020:22:1;4069:15;;;4051:34;;4116:2;4101:18;;4094:34;;;;4144:18;;4137:34;;;;4202:2;4187:18;;4180:34;4251:15;;;4245:3;4230:19;;4223:44;3997:3;3982:19;43118:491:0;3757:516:1;45567:116:0;;;;;;;;;;-1:-1:-1;45567:116:0;;;;;:::i;:::-;;:::i;26319:104::-;;;;;;;;;;;;;:::i;41412:301::-;;;;;;;;;;-1:-1:-1;41412:301:0;;;;;:::i;:::-;;:::i;37929:29::-;;;;;;;;;;-1:-1:-1;37929:29:0;;;;-1:-1:-1;;;;;37929:29:0;;;45691:585;;;;;;;;;;-1:-1:-1;45691:585:0;;;;;:::i;:::-;;:::i;30891:505::-;;;;;;;;;;-1:-1:-1;30891:505:0;;;;;:::i;:::-;;:::i;27774:234::-;;;;;;;;;;-1:-1:-1;27774:234:0;;;;;:::i;:::-;;:::i;50185:93::-;;;;;;;;;;;;;:::i;38342:50::-;;;;;;;;;;-1:-1:-1;38342:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;39254:58;;;;;;;;;;-1:-1:-1;39254:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;45257:182;;;;;;;;;;-1:-1:-1;45257:182:0;;;;;:::i;:::-;;:::i;44403:253::-;;;;;;;;;;-1:-1:-1;44403:253:0;;;;;:::i;:::-;;:::i;50687:173::-;;;;;;;;;;;;;:::i;45447:112::-;;;;;;;;;;-1:-1:-1;45447:112:0;;;;;:::i;:::-;;:::i;43617:498::-;;;;;;;;;;-1:-1:-1;43617:498:0;;;;;:::i;:::-;;:::i;50868:175::-;;;;;;;;;;;;;:::i;28071:201::-;;;;;;;;;;-1:-1:-1;28071:201:0;;;;;:::i;:::-;;:::i;51809:223::-;;;;;;;;;;;;;:::i;51051:750::-;;;;;;;;;;-1:-1:-1;51051:750:0;;;;;:::i;:::-;;:::i;38225:34::-;;;;;;;;;;-1:-1:-1;38225:34:0;;;;;;;;22980:238;;;;;;;;;;-1:-1:-1;22980:238:0;;;;;:::i;:::-;;:::i;38399:25::-;;;;;;;;;;;;;;;;50385:118;;;;;;;;;;-1:-1:-1;50385:118:0;;;;;:::i;:::-;;:::i;26100:100::-;26154:13;26187:5;26180:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26100:100;:::o;28592:242::-;28711:4;682:10;28772:32;682:10;28788:7;28797:6;28772:8;:32::i;:::-;28822:4;28815:11;;;28592:242;;;;;:::o;52040:167::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;;;;;;;;;52117:14:::1;::::0;52109:63:::1;::::0;52092:12:::1;::::0;-1:-1:-1;;;;;52117:14:0::1;::::0;52146:21:::1;::::0;52092:12;52109:63;52092:12;52109:63;52146:21;52117:14;52109:63:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52091:81;;;52191:7;52183:16;;;::::0;::::1;;52080:127;52040:167::o:0;44123:272::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;44260:4:::1;44252;44231:13;27308:12:::0;;;27220:108;44231:13:::1;:17;::::0;44247:1:::1;44231:17;:::i;:::-;44230:26;;;;:::i;:::-;44229:35;;;;:::i;:::-;44219:6;:45;;44197:142;;;::::0;-1:-1:-1;;;44197:142:0;;6356:2:1;44197:142:0::1;::::0;::::1;6338:21:1::0;6395:2;6375:18;;;6368:30;6434:34;6414:18;;;6407:62;-1:-1:-1;;;6485:18:1;;;6478:45;6540:19;;44197:142:0::1;6154:411:1::0;44197:142:0::1;44374:13;:6:::0;44383:4:::1;44374:13;:::i;:::-;44350:21;:37:::0;-1:-1:-1;44123:272:0:o;44839:410::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;44991:13:::1;:28:::0;;;45030:15:::1;:32:::0;;;45073:13:::1;:28:::0;;;45089:12;45125:31:::1;45048:14:::0;45007:12;45125:31:::1;:::i;:::-;:47;;;;:::i;:::-;45112:10;:60:::0;;;45205:2:::1;-1:-1:-1::0;45191:16:0::1;45183:58;;;::::0;-1:-1:-1;;;45183:58:0;;6902:2:1;45183:58:0::1;::::0;::::1;6884:21:1::0;6941:2;6921:18;;;6914:30;6980:31;6960:18;;;6953:59;7029:18;;45183:58:0::1;6700:353:1::0;45183:58:0::1;44839:410:::0;;;:::o;29414:295::-;29545:4;682:10;29603:38;29619:4;682:10;29634:6;29603:15;:38::i;:::-;29652:27;29662:4;29668:2;29672:6;29652:9;:27::i;:::-;-1:-1:-1;29697:4:0;;29414:295;-1:-1:-1;;;;29414:295:0:o;50511:168::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;50586:16:::1;:23:::0;;-1:-1:-1;;;;;50586:23:0;;::::1;-1:-1:-1::0;;;;;;50586:23:0;;::::1;::::0;::::1;::::0;;;50620:9:::1;:51:::0;;;;::::1;;::::0;;50511:168::o;50286:91::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;50368:1:::1;50348:17;:21:::0;50286:91::o;30118:270::-;30233:4;682:10;30294:64;682:10;30310:7;30347:10;30319:25;682:10;30310:7;30319:9;:25::i;:::-;:38;;;;:::i;:::-;30294:8;:64::i;31687:226::-;31794:4;31811:72;31820:5;31835:4;31876:6;31842:31;31852:5;31867:4;31842:9;:31::i;31811:72::-;-1:-1:-1;31901:4:0;31687:226;;;;:::o;42218:892::-;42264:7;42284:21;42352:14;;;;;;;;;-1:-1:-1;;;;;42352:14:0;-1:-1:-1;;;;;42337:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42284:103;;42398:21;42466:14;;;;;;;;;-1:-1:-1;;;;;42466:14:0;-1:-1:-1;;;;;42451:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42537:16;;42398:103;;-1:-1:-1;42512:12:0;;42527:27;;-1:-1:-1;;;;;42537:16:0;42527:9;:27::i;:::-;42605:12;;42589;;;;;-1:-1:-1;;;;;42589:12:0;42573:29;;;;:15;:29;;;;;;42512:42;;-1:-1:-1;;42573:70:0;;;;-1:-1:-1;42634:9:0;;42573:70;42565:79;;;;;;42656:12;42670;42703:14;;;;;;;;;-1:-1:-1;;;;;42703:14:0;-1:-1:-1;;;;;42688:56:0;;:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;42781:14:0;;42810:19;;42655:91;;-1:-1:-1;42655:91:0;;-1:-1:-1;42781:14:0;-1:-1:-1;;;42810:19:0;;;;42806:100;;;42873:4;-1:-1:-1;;;;;42873:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;42846:48:0;;-1:-1:-1;;;;42806:100:0;42916:12;43044:6;-1:-1:-1;;;;;43044:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43036:26;;43013:6;-1:-1:-1;;;;;43013:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43001:30;;43005:26;;43001:2;:30;:::i;:::-;42932:52;42969:14;-1:-1:-1;;;;;42932:13:0;;:52;:::i;:::-;:100;;;;:::i;:::-;42931:131;;;;:::i;:::-;42916:146;-1:-1:-1;43081:20:0;-1:-1:-1;;;;;43088:13:0;;42916:146;43081:20;:::i;:::-;43073:29;;;;;;;;;42218:892;:::o;27391:177::-;-1:-1:-1;;;;;27542:18:0;27510:7;27542:18;;;;;;;;;;;;27391:177::o;22722:103::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;22787:30:::1;22814:1;22787:18;:30::i;:::-;22722:103::o:0;41964:122::-;22144:6;;42016:4;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;-1:-1:-1;42033:15:0::1;:23:::0;;-1:-1:-1;;42033:23:0::1;::::0;;;41964:122;:::o;44664:167::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44777:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;44777:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44664:167::o;41281:123::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;41334:14:::1;:21:::0;;-1:-1:-1;;41334:21:0::1;;;::::0;;41381:15:::1;41366:12;:30:::0;41281:123::o;43118:491::-;43208:6;43229;43250:7;43272;43294:6;43343:14;43372:12;43399:17;43431;43463:22;43499:9;;;;;;;;;-1:-1:-1;;;;;43499:9:0;-1:-1:-1;;;;;43499:25:0;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43328:198;;;;-1:-1:-1;43328:198:0;;-1:-1:-1;43328:198:0;-1:-1:-1;43328:198:0;;-1:-1:-1;43118:491:0;-1:-1:-1;;;;;;43118:491:0:o;45567:116::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;45647:16:::1;:28:::0;;-1:-1:-1;;;;;;45647:28:0::1;-1:-1:-1::0;;;;;45647:28:0;;;::::1;::::0;;;::::1;::::0;;45567:116::o;26319:104::-;26375:13;26408:7;26401:14;;;;;:::i;41412:301::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;41521:14:::1;::::0;-1:-1:-1;;;;;41521:14:0;;::::1;41513:22:::0;;::::1;::::0;41505:92:::1;;;::::0;-1:-1:-1;;;41505:92:0;;10478:2:1;41505:92:0::1;::::0;::::1;10460:21:1::0;10517:2;10497:18;;;10490:30;10556:34;10536:18;;;10529:62;10627:27;10607:18;;;10600:55;10672:19;;41505:92:0::1;10276:421:1::0;41505:92:0::1;41608:41;41637:4;41643:5;41608:28;:41::i;:::-;41665:40;::::0;;::::1;;::::0;-1:-1:-1;;;;;41665:40:0;::::1;::::0;::::1;::::0;;;::::1;41412:301:::0;;:::o;45691:585::-;45792:14;;45754:4;;;;-1:-1:-1;;;;;45784:22:0;;;45792:14;;45784:22;:57;;;;-1:-1:-1;45824:16:0;;-1:-1:-1;;;;;45810:31:0;;;45824:16;;45810:31;;45784:57;45771:70;;45856:5;:32;;;;-1:-1:-1;;;;;;45865:23:0;;;;;;:19;:23;;;;;;;;45856:32;45852:68;;;45905:15;45890:12;:30;45852:68;-1:-1:-1;;;;;45956:25:0;;45931:22;45956:25;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;45985:23:0;;;;;;:19;:23;;;;;;;;45956:52;46039:14;;45931:77;;-1:-1:-1;;;;;;46033:20:0;;;46039:14;;46033:20;46019:11;46079:5;;:15;;;46088:6;46079:15;46122:10;;46065:29;;-1:-1:-1;46122:14:0;;;;;;46171:39;;-1:-1:-1;46197:13:0;;-1:-1:-1;;;46197:13:0;;;;46196:14;46171:39;:74;;;;;46228:17;46227:18;46171:74;:97;;;;;46262:6;46171:97;46150:118;45691:585;-1:-1:-1;;;;;;;;45691:585:0:o;30891:505::-;31011:4;682:10;31011:4;31099:25;682:10;31116:7;31099:9;:25::i;:::-;31072:52;;31177:15;31157:16;:35;;31135:122;;;;-1:-1:-1;;;31135:122:0;;10904:2:1;31135:122:0;;;10886:21:1;10943:2;10923:18;;;10916:30;10982:34;10962:18;;;10955:62;-1:-1:-1;;;11033:18:1;;;11026:35;11078:19;;31135:122:0;10702:401:1;31135:122:0;31293:60;31302:5;31309:7;31337:15;31318:16;:34;31293:8;:60::i;27774:234::-;27889:4;682:10;27950:28;682:10;27967:2;27971:6;27950:9;:28::i;50185:93::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;50269:1:::1;50248:18;:22:::0;50185:93::o;45257:182::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45342:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;45342:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;45397:34;;1345:41:1;;;45397:34:0::1;::::0;1318:18:1;45397:34:0::1;;;;;;;45257:182:::0;;:::o;44403:253::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;44543:4:::1;44535;44514:13;27308:12:::0;;;27220:108;44514:13:::1;:17;::::0;44530:1:::1;44514:17;:::i;:::-;44513:26;;;;:::i;:::-;44512:35;;;;:::i;:::-;44502:6;:45;;44480:131;;;::::0;-1:-1:-1;;;44480:131:0;;11310:2:1;44480:131:0::1;::::0;::::1;11292:21:1::0;11349:2;11329:18;;;11322:30;11388:34;11368:18;;;11361:62;-1:-1:-1;;;11439:18:1;;;11432:34;11483:19;;44480:131:0::1;11108:400:1::0;44480:131:0::1;44635:13;:6:::0;44644:4:::1;44635:13;:::i;:::-;44622:10;:26:::0;-1:-1:-1;44403:253:0:o;50687:173::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;50754:19:::1;::::0;-1:-1:-1;;;50754:19:0;::::1;;;:28;50746:69;;;::::0;-1:-1:-1;;;50746:69:0;;11715:2:1;50746:69:0::1;::::0;::::1;11697:21:1::0;11754:2;11734:18;;;11727:30;11793;11773:18;;;11766:58;11841:18;;50746:69:0::1;11513:352:1::0;50746:69:0::1;50826:19;:26:::0;;-1:-1:-1;;;;50826:26:0::1;-1:-1:-1::0;;;50826:26:0::1;::::0;;50687:173::o;45447:112::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;45525:14:::1;:26:::0;;-1:-1:-1;;;;;;45525:26:0::1;-1:-1:-1::0;;;;;45525:26:0;;;::::1;::::0;;;::::1;::::0;;45447:112::o;43617:498::-;22144:6;;43725:4;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;43804:6:::1;43783:13;27308:12:::0;;;27220:108;43783:13:::1;:17;::::0;43799:1:::1;43783:17;:::i;:::-;43782:28;;;;:::i;:::-;43769:9;:41;;43747:144;;;::::0;-1:-1:-1;;;43747:144:0;;12072:2:1;43747:144:0::1;::::0;::::1;12054:21:1::0;12111:2;12091:18;;;12084:30;12150:34;12130:18;;;12123:62;-1:-1:-1;;;12201:18:1;;;12194:51;12262:19;;43747:144:0::1;11870:417:1::0;43747:144:0::1;43959:4;43938:13;27308:12:::0;;;27220:108;43938:13:::1;:17;::::0;43954:1:::1;43938:17;:::i;:::-;43937:26;;;;:::i;:::-;43924:9;:39;;43902:141;;;::::0;-1:-1:-1;;;43902:141:0;;12494:2:1;43902:141:0::1;::::0;::::1;12476:21:1::0;12533:2;12513:18;;;12506:30;12572:34;12552:18;;;12545:62;-1:-1:-1;;;12623:18:1;;;12616:50;12683:19;;43902:141:0::1;12292:416:1::0;43902:141:0::1;-1:-1:-1::0;44054:19:0::1;:31:::0;;;44103:4:::1;22362:1;43617:498:::0;;;:::o;50868:175::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;50936:19:::1;::::0;-1:-1:-1;;;50936:19:0;::::1;;;:27;;50959:4;50936:27;50928:69;;;::::0;-1:-1:-1;;;50928:69:0;;12915:2:1;50928:69:0::1;::::0;::::1;12897:21:1::0;12954:2;12934:18;;;12927:30;12993:31;12973:18;;;12966:59;13042:18;;50928:69:0::1;12713:353:1::0;50928:69:0::1;51008:19;:27:::0;;-1:-1:-1;;;;51008:27:0::1;::::0;;50868:175::o;28071:201::-;-1:-1:-1;;;;;28237:18:0;;;28205:7;28237:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28071:201::o;51809:223::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;51860:43:::1;51878:24;51896:4;51878:9;:24::i;:::-;51860:17;:43::i;51051:750::-:0;-1:-1:-1;;;;;51184:20:0;;51176:59;;;;-1:-1:-1;;;51176:59:0;;13273:2:1;51176:59:0;;;13255:21:1;13312:2;13292:18;;;13285:30;13351:28;13331:18;;;13324:56;13397:18;;51176:59:0;13071:350:1;51176:59:0;51270:16;;;51284:1;51270:16;;;;;;;;51246:21;;51270:16;;;;;;;;-1:-1:-1;;51307:16:0;;:23;;;-1:-1:-1;;;51307:23:0;;;;51246:40;;-1:-1:-1;;;;;;51307:16:0;;;;:21;;-1:-1:-1;51307:23:0;;;;;;;;;;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51297:4;51302:1;51297:7;;;;;;;;:::i;:::-;;;;;;:33;-1:-1:-1;;;;;51297:33:0;;;-1:-1:-1;;;;;51297:33:0;;;;;51359:4;51341;51346:1;51341:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51341:23:0;;;:7;;;;;;;;;;:23;51399:10;51379:31;;;;:19;:31;;;;;;;;;51375:136;;;51434:6;-1:-1:-1;;;;;51427:27:0;;51455:4;51461;51466:1;51461:7;;;;;;;;:::i;:::-;;;;;;;;;;;51427:51;;-1:-1:-1;;;;;;51427:51:0;;;;;;;-1:-1:-1;;;;;13948:15:1;;;51427:51:0;;;13930:34:1;14000:15;;13980:18;;;13973:43;14032:18;;;14025:34;;;13865:18;;51427:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51493:7;51051:750;;;:::o;51375:136::-;51547:16;;:246;;-1:-1:-1;;;51547:246:0;;-1:-1:-1;;;;;51547:16:0;;;;:67;;51636:7;;51547:246;;:16;;51718:4;;51745:6;;51767:15;;51547:246;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51165:636;51051:750;;;:::o;22980:238::-;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23083:22:0;::::1;23061:110;;;::::0;-1:-1:-1;;;23061:110:0;;15503:2:1;23061:110:0::1;::::0;::::1;15485:21:1::0;15542:2;15522:18;;;15515:30;15581:34;15561:18;;;15554:62;-1:-1:-1;;;15632:18:1;;;15625:36;15678:19;;23061:110:0::1;15301:402:1::0;23061:110:0::1;23182:28;23201:8;23182:18;:28::i;50385:118::-:0;22144:6;;-1:-1:-1;;;;;22144:6:0;682:10;22291:23;22283:68;;;;-1:-1:-1;;;22283:68:0;;;;;;;:::i;:::-;50479:15:::1;:3:::0;50487:6:::1;50479:7;:15::i;:::-;50455:14;:40:::0;-1:-1:-1;50385:118:0:o;35148:380::-;-1:-1:-1;;;;;35284:19:0;;35276:68;;;;-1:-1:-1;;;35276:68:0;;15910:2:1;35276:68:0;;;15892:21:1;15949:2;15929:18;;;15922:30;15988:34;15968:18;;;15961:62;-1:-1:-1;;;16039:18:1;;;16032:34;16083:19;;35276:68:0;15708:400:1;35276:68:0;-1:-1:-1;;;;;35363:21:0;;35355:68;;;;-1:-1:-1;;;35355:68:0;;16315:2:1;35355:68:0;;;16297:21:1;16354:2;16334:18;;;16327:30;16393:34;16373:18;;;16366:62;-1:-1:-1;;;16444:18:1;;;16437:32;16486:19;;35355:68:0;16113:398:1;35355:68:0;-1:-1:-1;;;;;35436:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35488:32;;160:25:1;;;35488:32:0;;133:18:1;35488:32:0;;;;;;;35148:380;;;:::o;35819:502::-;35954:24;35981:25;35991:5;35998:7;35981:9;:25::i;:::-;35954:52;;-1:-1:-1;;36021:16:0;:37;36017:297;;36121:6;36101:16;:26;;36075:117;;;;-1:-1:-1;;;36075:117:0;;16718:2:1;36075:117:0;;;16700:21:1;16757:2;16737:18;;;16730:30;16796:31;16776:18;;;16769:59;16845:18;;36075:117:0;16516:353:1;36075:117:0;36236:51;36245:5;36252:7;36280:6;36261:16;:25;36236:8;:51::i;:::-;35943:378;35819:502;;;:::o;46284:3759::-;-1:-1:-1;;;;;46432:25:0;;46408:21;46432:25;;;:19;:25;;;;;;;;;:65;;-1:-1:-1;;;;;;46474:23:0;;;;;;:19;:23;;;;;;;;46432:65;46408:89;-1:-1:-1;;;;;;46518:18:0;;46510:68;;;;-1:-1:-1;;;46510:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46597:16:0;;46589:64;;;;-1:-1:-1;;;46589:64:0;;;;;;;:::i;:::-;46670:6;46680:1;46670:11;46666:93;;46698:28;46714:4;46720:2;46724:1;46698:15;:28::i;46666:93::-;46792:14;;46771:10;;-1:-1:-1;;;;;46784:22:0;;;46792:14;;46784:22;:75;;;;-1:-1:-1;;;;;;46824:35:0;;;;;;:31;:35;;;;;;;;46823:36;46784:75;46890:14;;46771:88;;-1:-1:-1;46870:11:0;;-1:-1:-1;;;;;46884:20:0;;;46890:14;;46884:20;:75;;;;-1:-1:-1;;;;;;46922:37:0;;;;;;:31;:37;;;;;;;;46921:38;46884:75;46870:89;;46970:16;46997:7;22144:6;;-1:-1:-1;;;;;22144:6:0;;22071:87;46997:7;-1:-1:-1;;;;;46989:15:0;:4;-1:-1:-1;;;;;46989:15:0;;:32;;;-1:-1:-1;22144:6:0;;-1:-1:-1;;;;;47008:13:0;;;22144:6;;47008:13;46989:32;46970:51;-1:-1:-1;47032:11:0;-1:-1:-1;;;;;47046:16:0;;;;:41;;-1:-1:-1;;;;;;47066:21:0;;47080:6;47066:21;47046:41;47032:55;;47098:17;47118:11;:21;;;;47133:6;47118:21;:38;;;-1:-1:-1;47143:13:0;;-1:-1:-1;;;47143:13:0;;;;47118:38;47181:15;;47098:58;;-1:-1:-1;47181:15:0;;:32;;;;;47201:12;47200:13;47181:32;47177:1076;;;47256:14;;;;;;;;:34;;;47274:16;47256:34;47230:118;;;;-1:-1:-1;;;47230:118:0;;17886:2:1;47230:118:0;;;17868:21:1;17925:2;17905:18;;;17898:30;-1:-1:-1;;;17944:18:1;;;17937:52;18006:18;;47230:118:0;17684:346:1;47230:118:0;47367:5;47363:879;;;47433:21;;47423:6;:31;;47393:158;;;;-1:-1:-1;;;47393:158:0;;18237:2:1;47393:158:0;;;18219:21:1;18276:2;18256:18;;;18249:30;18315:34;18295:18;;;18288:62;-1:-1:-1;;;18366:18:1;;;18359:51;18427:19;;47393:158:0;18035:417:1;47393:158:0;47626:10;;47609:13;47619:2;47609:9;:13::i;:::-;47600:22;;:6;:22;:::i;:::-;:36;;47570:129;;;;-1:-1:-1;;;47570:129:0;;18659:2:1;47570:129:0;;;18641:21:1;18698:2;18678:18;;;18671:30;-1:-1:-1;;;18717:18:1;;;18710:49;18776:18;;47570:129:0;18457:343:1;47570:129:0;47363:879;;;47725:6;47721:521;;-1:-1:-1;;;;;47968:35:0;;;;;;:31;:35;;;;;;;;47967:36;:95;;;;-1:-1:-1;;;;;;48025:37:0;;;;;;:31;:37;;;;;;;;48024:38;47967:95;47945:297;;;48153:10;;48136:13;48146:2;48136:9;:13::i;:::-;48127:22;;:6;:22;:::i;:::-;:36;;48097:129;;;;-1:-1:-1;;;48097:129:0;;18659:2:1;48097:129:0;;;18641:21:1;18698:2;18678:18;;;18671:30;-1:-1:-1;;;18717:18:1;;;18710:49;18776:18;;48097:129:0;18457:343:1;48097:129:0;-1:-1:-1;;;;;48281:31:0;;;;;;:25;:31;;;;;;;;48277:271;;;-1:-1:-1;;;;;48333:19:0;;;;;;:15;:19;;;;;;:24;;48329:102;;-1:-1:-1;;;;;48378:19:0;;;;;;:15;:19;;;;;48400:15;48378:37;;48329:102;48277:271;;;48468:13;;-1:-1:-1;;;48468:13:0;;;;48463:74;;48502:12;:19;;-1:-1:-1;;;;;;48502:19:0;;-1:-1:-1;;;;;48502:19:0;;;;;;48463:74;48565:13;;-1:-1:-1;;;48565:13:0;;;;48564:14;:63;;;;-1:-1:-1;;;;;;48596:31:0;;;;;;:25;:31;;;;;;;;48595:32;48564:63;:106;;;;-1:-1:-1;;;;;;48645:25:0;;;;;;:19;:25;;;;;;;;48644:26;48564:106;:147;;;;-1:-1:-1;;;;;;48688:23:0;;;;;;:19;:23;;;;;;;;48687:24;48564:147;48560:536;;;48728:28;48759:24;48777:4;48759:9;:24::i;:::-;48837:19;;48728:55;;-1:-1:-1;48813:43:0;;;48875:17;:15;:17::i;:::-;:45;;;;;48913:7;48875:45;:84;;;;;48943:16;48942:17;48875:84;48871:214;;;48980:13;:20;;-1:-1:-1;;;;48980:20:0;-1:-1:-1;;;48980:20:0;;;49019:10;:8;:10::i;:::-;49048:13;:21;;-1:-1:-1;;;;49048:21:0;;;48871:214;48713:383;;48560:536;49108:12;49123:21;49135:4;49141:2;49123:11;:21::i;:::-;49108:36;;49159:7;49155:837;;;49199:10;;49244:13;;49272:151;;;;49324:18;;49311:10;;:31;;;;:::i;:::-;49303:39;;49389:18;;49373:13;;:34;;;;:::i;:::-;49361:46;;49272:151;49441:5;49437:148;;;49488:17;;49475:10;;:30;;;;:::i;:::-;49467:38;;49552:17;;49536:13;;:33;;;;:::i;:::-;49524:45;;49437:148;49599:12;49614:26;49636:3;49614:17;:6;49625:5;49614:10;:17::i;:::-;:21;;:26::i;:::-;49599:41;;49703:5;49686:13;;49679:4;:20;;;;:::i;:::-;49678:30;;;;:::i;:::-;49655:19;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;49767:5:0;;-1:-1:-1;49747:16:0;49754:9;49747:4;:16;:::i;:::-;49746:26;;;;:::i;:::-;49723:19;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;49820:15:0;;49839:5;;49813:22;;:4;:22;:::i;:::-;49812:32;;;;:::i;:::-;49787:21;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;49865:8:0;;49861:91;;49894:42;49910:4;49924;49931;49894:15;:42::i;:::-;49966:14;49976:4;49966:14;;:::i;:::-;;;49168:824;;;49155:837;50002:33;50018:4;50024:2;50028:6;50002:15;:33::i;:::-;46397:3646;;;;;;;46284:3759;;;:::o;23378:191::-;23471:6;;;-1:-1:-1;;;;;23488:17:0;;;-1:-1:-1;;;;;;23488:17:0;;;;;;;23521:40;;23471:6;;;23488:17;23471:6;;23521:40;;23452:16;;23521:40;23441:128;23378:191;:::o;41721:235::-;-1:-1:-1;;;;;41804:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;41804:39:0;;;;;;;41854:38;41804:31;:39;41854:25;:38::i;52219:479::-;52310:16;;;52324:1;52310:16;;;;;;;;52286:21;;52310:16;;;;;;;;;;-1:-1:-1;52310:16:0;52286:40;;52355:4;52337;52342:1;52337:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52337:23:0;;;:7;;;;;;;;;;:23;;;;52381:16;;:23;;;-1:-1:-1;;;52381:23:0;;;;:16;;;;;:21;;:23;;;;;52337:7;;52381:23;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52371:4;52376:1;52371:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52371:33:0;;;:7;;;;;;;;;:33;52449:16;;52417:63;;52434:4;;52449:16;52468:11;52417:8;:63::i;:::-;52493:16;;:197;;-1:-1:-1;;;52493:197:0;;-1:-1:-1;;;;;52493:16:0;;;;:67;;:197;;52575:11;;52493:16;;52617:4;;52644;;52664:15;;52493:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52275:423;52219:479;:::o;17700:98::-;17758:7;17785:5;17789:1;17785;:5;:::i;:::-;17778:12;17700:98;-1:-1:-1;;;17700:98:0:o;32392:708::-;-1:-1:-1;;;;;32523:18:0;;32515:68;;;;-1:-1:-1;;;32515:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32602:16:0;;32594:64;;;;-1:-1:-1;;;32594:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32744:15:0;;32722:19;32744:15;;;;;;;;;;;32792:21;;;;32770:109;;;;-1:-1:-1;;;32770:109:0;;19727:2:1;32770:109:0;;;19709:21:1;19766:2;19746:18;;;19739:30;19805:34;19785:18;;;19778:62;-1:-1:-1;;;19856:18:1;;;19849:36;19902:19;;32770:109:0;19525:402:1;32770:109:0;-1:-1:-1;;;;;32915:15:0;;;:9;:15;;;;;;;;;;;32933:20;;;32915:38;;32975:13;;;;;;;;:23;;32947:6;;32915:9;32975:23;;32947:6;;32975:23;:::i;:::-;;;;;;;;33031:2;-1:-1:-1;;;;;33016:26:0;33025:4;-1:-1:-1;;;;;33016:26:0;;33035:6;33016:26;;;;160:25:1;;148:2;133:18;;14:177;33016:26:0;;;;;;;;33055:37;44839:410;42094:116;42144:4;42186:1;42168:15;:13;:15::i;:::-;:19;:34;;-1:-1:-1;42197:5:0;;42094:116::o;42168:34::-;-1:-1:-1;42190:4:0;;42094:116::o;53077:1800::-;53116:23;53142:24;53160:4;53142:9;:24::i;:::-;53116:50;;53177:25;53263:21;;53227:19;;53205;;:41;;;;:::i;:::-;:79;;;;:::i;:::-;53177:107;-1:-1:-1;53299:20:0;;;:46;;-1:-1:-1;53323:22:0;;53299:46;53295:59;;;53347:7;;53077:1800::o;53295:59::-;53386:19;;53368:15;:37;53364:107;;;53440:19;;53422:37;;53364:107;53481:23;53595:1;53562:17;53526:19;;53508:15;:37;;;;:::i;:::-;53507:72;;;;:::i;:::-;:89;;;;:::i;:::-;53481:115;-1:-1:-1;53607:26:0;53636:36;:15;53481:115;53636:19;:36::i;:::-;53607:65;-1:-1:-1;53711:21:0;53743:37;53607:65;53743:17;:37::i;:::-;53791:18;53812:44;:21;53838:17;53812:25;:44::i;:::-;53791:65;;53867:23;53893:82;53947:17;53893:35;53908:19;;53893:10;:14;;:35;;;;:::i;:82::-;53867:108;;53986:25;54014:84;54070:17;54014:37;54029:21;;54014:10;:14;;:37;;;;:::i;:84::-;53986:112;-1:-1:-1;54109:23:0;53986:112;54135:28;54148:15;54135:10;:28;:::i;:::-;:48;;;;:::i;:::-;54109:74;;54218:1;54200:15;:19;:42;;;;;54241:1;54223:15;:19;54200:42;54196:280;;;54259:47;54273:15;54290;54259:13;:47::i;:::-;54430:19;;54326:138;;;20134:25:1;;;20190:2;20175:18;;20168:34;;;20218:18;;;20211:34;;;;54326:138:0;;;;;;20122:2:1;54326:138:0;;;54196:280;54510:1;54488:19;:23;;;54522:19;:23;;;54556:21;:25;;;54634:14;;54626:56;;-1:-1:-1;;;;;54634:14:0;;;;54662:15;;54510:1;54626:56;54510:1;54626:56;54662:15;54634:14;54626:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54594:88;;;54701:20;54693:29;;;;;;54775:16;;54767:60;;54734:27;;-1:-1:-1;;;;;54775:16:0;;54805:17;;54734:27;54767:60;54734:27;54767:60;54805:17;54775:16;54767:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54733:94;;;54846:22;54838:31;;;;;;53105:1772;;;;;;;;;;;53077:1800::o;18099:98::-;18157:7;18184:5;18188:1;18184;:5;:::i;17343:98::-;17401:7;17428:5;17432:1;17428;:5;:::i;52706:363::-;52820:16;;52788:63;;52805:4;;-1:-1:-1;;;;;52820:16:0;52839:11;52788:8;:63::i;:::-;52862:16;;-1:-1:-1;;;;;52862:16:0;:32;52902:9;52935:4;52955:11;52862:16;;53013:7;22144:6;;-1:-1:-1;;;;;22144:6:0;;22071:87;53013:7;52862:199;;;;;;-1:-1:-1;;;;;;52862:199:0;;;-1:-1:-1;;;;;20615:15:1;;;52862:199:0;;;20597:34:1;20647:18;;;20640:34;;;;20690:18;;;20683:34;;;;20733:18;;;20726:34;20797:15;;;20776:19;;;20769:44;53035:15:0;20829:19:1;;;20822:35;20531:19;;52862:199:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;885:315;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1397:180::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;-1:-1:-1;1548:23:1;;1397:180;-1:-1:-1;1397:180:1:o;1582:316::-;1659:6;1667;1675;1728:2;1716:9;1707:7;1703:23;1699:32;1696:52;;;1744:1;1741;1734:12;1696:52;-1:-1:-1;;1767:23:1;;;1837:2;1822:18;;1809:32;;-1:-1:-1;1888:2:1;1873:18;;;1860:32;;1582:316;-1:-1:-1;1582:316:1:o;1903:456::-;1980:6;1988;1996;2049:2;2037:9;2028:7;2024:23;2020:32;2017:52;;;2065:1;2062;2055:12;2017:52;2104:9;2091:23;2123:31;2148:5;2123:31;:::i;:::-;2173:5;-1:-1:-1;2230:2:1;2215:18;;2202:32;2243:33;2202:32;2243:33;:::i;:::-;1903:456;;2295:7;;-1:-1:-1;;;2349:2:1;2334:18;;;;2321:32;;1903:456::o;2364:247::-;2423:6;2476:2;2464:9;2455:7;2451:23;2447:32;2444:52;;;2492:1;2489;2482:12;2444:52;2531:9;2518:23;2550:31;2575:5;2550:31;:::i;3247:118::-;3333:5;3326:13;3319:21;3312:5;3309:32;3299:60;;3355:1;3352;3345:12;3370:382;3435:6;3443;3496:2;3484:9;3475:7;3471:23;3467:32;3464:52;;;3512:1;3509;3502:12;3464:52;3551:9;3538:23;3570:31;3595:5;3570:31;:::i;:::-;3620:5;-1:-1:-1;3677:2:1;3662:18;;3649:32;3690:30;3649:32;3690:30;:::i;:::-;3739:7;3729:17;;;3370:382;;;;;:::o;4278:388::-;4346:6;4354;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4462:9;4449:23;4481:31;4506:5;4481:31;:::i;:::-;4531:5;-1:-1:-1;4588:2:1;4573:18;;4560:32;4601:33;4560:32;4601:33;:::i;4671:380::-;4750:1;4746:12;;;;4793;;;4814:61;;4868:4;4860:6;4856:17;4846:27;;4814:61;4921:2;4913:6;4910:14;4890:18;4887:38;4884:161;;4967:10;4962:3;4958:20;4955:1;4948:31;5002:4;4999:1;4992:15;5030:4;5027:1;5020:15;4884:161;;4671:380;;;:::o;5056:356::-;5258:2;5240:21;;;5277:18;;;5270:30;5336:34;5331:2;5316:18;;5309:62;5403:2;5388:18;;5056:356::o;5627:127::-;5688:10;5683:3;5679:20;5676:1;5669:31;5719:4;5716:1;5709:15;5743:4;5740:1;5733:15;5759:168;5832:9;;;5863;;5880:15;;;5874:22;;5860:37;5850:71;;5901:18;;:::i;5932:217::-;5972:1;5998;5988:132;;6042:10;6037:3;6033:20;6030:1;6023:31;6077:4;6074:1;6067:15;6105:4;6102:1;6095:15;5988:132;-1:-1:-1;6134:9:1;;5932:217::o;6570:125::-;6635:9;;;6656:10;;;6653:36;;;6669:18;;:::i;7058:251::-;7128:6;7181:2;7169:9;7160:7;7156:23;7152:32;7149:52;;;7197:1;7194;7187:12;7149:52;7229:9;7223:16;7248:31;7273:5;7248:31;:::i;7314:188::-;7393:13;;-1:-1:-1;;;;;7435:42:1;;7425:53;;7415:81;;7492:1;7489;7482:12;7507:450;7594:6;7602;7610;7663:2;7651:9;7642:7;7638:23;7634:32;7631:52;;;7679:1;7676;7669:12;7631:52;7702:40;7732:9;7702:40;:::i;:::-;7692:50;;7761:49;7806:2;7795:9;7791:18;7761:49;:::i;:::-;7751:59;;7853:2;7842:9;7838:18;7832:25;7897:10;7890:5;7886:22;7879:5;7876:33;7866:61;;7923:1;7920;7913:12;7866:61;7946:5;7936:15;;;7507:450;;;;;:::o;7962:179::-;8040:13;;8093:22;8082:34;;8072:45;;8062:73;;8131:1;8128;8121:12;8146:473;8249:6;8257;8265;8273;8281;8334:3;8322:9;8313:7;8309:23;8305:33;8302:53;;;8351:1;8348;8341:12;8302:53;8374:39;8403:9;8374:39;:::i;:::-;8364:49;;8453:2;8442:9;8438:18;8432:25;8422:35;;8497:2;8486:9;8482:18;8476:25;8466:35;;8541:2;8530:9;8526:18;8520:25;8510:35;;8564:49;8608:3;8597:9;8593:19;8564:49;:::i;:::-;8554:59;;8146:473;;;;;;;;:::o;8624:273::-;8692:6;8745:2;8733:9;8724:7;8720:23;8716:32;8713:52;;;8761:1;8758;8751:12;8713:52;8793:9;8787:16;8843:4;8836:5;8832:16;8825:5;8822:27;8812:55;;8863:1;8860;8853:12;8902:422;8991:1;9034:5;8991:1;9048:270;9069:7;9059:8;9056:21;9048:270;;;9128:4;9124:1;9120:6;9116:17;9110:4;9107:27;9104:53;;;9137:18;;:::i;:::-;9187:7;9177:8;9173:22;9170:55;;;9207:16;;;;9170:55;9286:22;;;;9246:15;;;;9048:270;;;9052:3;8902:422;;;;;:::o;9329:806::-;9378:5;9408:8;9398:80;;-1:-1:-1;9449:1:1;9463:5;;9398:80;9497:4;9487:76;;-1:-1:-1;9534:1:1;9548:5;;9487:76;9579:4;9597:1;9592:59;;;;9665:1;9660:130;;;;9572:218;;9592:59;9622:1;9613:10;;9636:5;;;9660:130;9697:3;9687:8;9684:17;9681:43;;;9704:18;;:::i;:::-;-1:-1:-1;;9760:1:1;9746:16;;9775:5;;9572:218;;9874:2;9864:8;9861:16;9855:3;9849:4;9846:13;9842:36;9836:2;9826:8;9823:16;9818:2;9812:4;9809:12;9805:35;9802:77;9799:159;;;-1:-1:-1;9911:19:1;;;9943:5;;9799:159;9990:34;10015:8;10009:4;9990:34;:::i;:::-;10060:6;10056:1;10052:6;10048:19;10039:7;10036:32;10033:58;;;10071:18;;:::i;:::-;10109:20;;9329:806;-1:-1:-1;;;9329:806:1:o;10140:131::-;10200:5;10229:36;10256:8;10250:4;10229:36;:::i;13558:127::-;13619:10;13614:3;13610:20;13607:1;13600:31;13650:4;13647:1;13640:15;13674:4;13671:1;13664:15;14070:245;14137:6;14190:2;14178:9;14169:7;14165:23;14161:32;14158:52;;;14206:1;14203;14196:12;14158:52;14238:9;14232:16;14257:28;14279:5;14257:28;:::i;14320:461::-;14373:3;14411:5;14405:12;14438:6;14433:3;14426:19;14464:4;14493:2;14488:3;14484:12;14477:19;;14530:2;14523:5;14519:14;14551:1;14561:195;14575:6;14572:1;14569:13;14561:195;;;14640:13;;-1:-1:-1;;;;;14636:39:1;14624:52;;14696:12;;;;14731:15;;;;14672:1;14590:9;14561:195;;;-1:-1:-1;14772:3:1;;14320:461;-1:-1:-1;;;;;14320:461:1:o;14786:510::-;15057:6;15046:9;15039:25;15100:3;15095:2;15084:9;15080:18;15073:31;15020:4;15121:57;15173:3;15162:9;15158:19;15150:6;15121:57;:::i;:::-;-1:-1:-1;;;;;15214:32:1;;;;15209:2;15194:18;;15187:60;-1:-1:-1;15278:2:1;15263:18;15256:34;15113:65;14786:510;-1:-1:-1;;14786:510:1:o;16874:401::-;17076:2;17058:21;;;17115:2;17095:18;;;17088:30;17154:34;17149:2;17134:18;;17127:62;-1:-1:-1;;;17220:2:1;17205:18;;17198:35;17265:3;17250:19;;16874:401::o;17280:399::-;17482:2;17464:21;;;17521:2;17501:18;;;17494:30;17560:34;17555:2;17540:18;;17533:62;-1:-1:-1;;;17626:2:1;17611:18;;17604:33;17669:3;17654:19;;17280:399::o;18805:128::-;18872:9;;;18893:11;;;18890:37;;;18907:18;;:::i;18938:582::-;19237:6;19226:9;19219:25;19280:6;19275:2;19264:9;19260:18;19253:34;19323:3;19318:2;19307:9;19303:18;19296:31;19200:4;19344:57;19396:3;19385:9;19381:19;19373:6;19344:57;:::i;:::-;-1:-1:-1;;;;;19437:32:1;;;;19432:2;19417:18;;19410:60;-1:-1:-1;19501:3:1;19486:19;19479:35;19336:65;18938:582;-1:-1:-1;;;18938:582:1:o;20868:306::-;20956:6;20964;20972;21025:2;21013:9;21004:7;21000:23;20996:32;20993:52;;;21041:1;21038;21031:12;20993:52;21070:9;21064:16;21054:26;;21120:2;21109:9;21105:18;21099:25;21089:35;;21164:2;21153:9;21149:18;21143:25;21133:35;;20868:306;;;;;:::o

Swarm Source

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