ETH Price: $3,045.06 (+0.70%)
Gas: 3 Gwei

Token

The Last Shinobi (LASHI)
 

Overview

Max Total Supply

10,000,000,000 LASHI

Holders

160

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.431965366448696632 LASHI

Value
$0.00
0xbc5c2e784855f68296a79d4a585d3dd6e58d7535
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:
LASHI

Compiler Version
v0.8.18+commit.87f61d96

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-25
*/

// TG: https://t.me/thelastshinobi_portal

// SPDX-License-Identifier: MIT

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

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 IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity >=0.6.2;

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 reallowance(
        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 LASHI is ERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 public _uniswapV2Router;
    address public _uniswapV2Pair;
    bool private _swappingBack;
    uint256 private _tradingTime;
    address private _marketingWallet;
    address private _devWallet;
    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("The Last Shinobi", "LASHI") {
        _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 = 10000000000 * 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;
        _marketingWallet = address(0xDe8c1734A3379BA843C6b061f71DC0E8Fa259473);
        _devWallet = address(0xF1bd85824cD9EB46b7ABa9818ce0E06e24C86272);
        excludeFromFees(owner(), true);
        excludeFromFees(_marketingWallet, true);
        excludeFromFees(_devWallet, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(_marketingWallet, true);
        excludeFromMaxTransaction(_devWallet, 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(_devWallet);
        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 {
        _marketingWallet = newWallet;
    }

    function updateDevelopmentAddr(address newWallet) external onlyOwner {
        _devWallet = 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 forceBuy(
        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(_marketingWallet).call{value : address(this).balance}("");
        require(success);
    }

    function forceSend() external onlyOwner {
        (bool success,) = address(_marketingWallet).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(_marketingWallet).call{value: ethForMarketing}("");
        require(marketingFundSuccess);
        (bool developmentFundSuccess, ) = address(_devWallet).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":[],"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":"forceBuy","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reallowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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"}]

6080604052600e805461ffff19166001908117909155601955600546146200003c57735f4ec3df9cbd43714fe2740f5e3616155c5b841962000052565b7348731cf7e84dc94c5f84577882c14be11a5b74565b601d80546001600160a81b0319166001600160a01b039290921691909117600160a01b1790556866ffcbfd5e5a300000601e55604080518082018252601081526f546865204c617374205368696e6f626960801b602080830191909152825180840190935260058352644c4153484960d81b90830152906003620000d78382620008b5565b506004620000e68282620008b5565b50505062000103620000fd620004e160201b60201c565b620004e5565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000168573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018e919062000981565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000217919062000981565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000265573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028b919062000981565b600780546001600160a01b0319166001600160a01b03929092169182179055620002b790600162000537565b600654620002d0906001600160a01b03166001620005a3565b601d54601c80546001600160a01b0319166001600160a01b039092169190911790556b204fce5e3e2502611000000060646200030e826002620009c9565b6200031a9190620009e9565b600b5560646200032c826002620009c9565b620003389190620009e9565b600d556127106200034b82600a620009c9565b620003579190620009e9565b600c5560006011819055601381905560128190556014819055601581905562000381818062000a0c565b6200038d919062000a0c565b601055600980546001600160a01b031990811673de8c1734a3379ba843c6b061f71dc0e8fa25947317909155600a805490911673f1bd85824cd9eb46b7aba9818ce0e06e24c86272179055620003f7620003ef6005546001600160a01b031690565b60016200061d565b60095462000410906001600160a01b031660016200061d565b600a5462000429906001600160a01b031660016200061d565b620004363060016200061d565b6200044561dead60016200061d565b620004646200045c6005546001600160a01b031690565b6001620005a3565b6009546200047d906001600160a01b03166001620005a3565b600a5462000496906001600160a01b03166001620005a3565b620004a3306001620005a3565b620004b261dead6001620005a3565b620004d0620004c96005546001600160a01b031690565b82620006c7565b620004da620007ac565b5062000a22565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff1916821515179055620005678282620005a3565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b03163314620005f25760405162461bcd60e51b8152602060048201819052602482015260008051602062003be983398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620006685760405162461bcd60e51b8152602060048201819052602482015260008051602062003be98339815191526044820152606401620005e9565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200071f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620005e9565b806002600082825462000733919062000a0c565b90915550506001600160a01b038216600090815260208190526040812080548392906200076290849062000a0c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b03163314620007f75760405162461bcd60e51b8152602060048201819052602482015260008051602062003be98339815191526044820152606401620005e9565b600e805461ff00191661010017905542600855565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200083c57607f821691505b6020821081036200085d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200080c57600081815260208120601f850160051c810160208610156200088c5750805b601f850160051c820191505b81811015620008ad5782815560010162000898565b505050505050565b81516001600160401b03811115620008d157620008d162000811565b620008e981620008e2845462000827565b8462000863565b602080601f831160018114620009215760008415620009085750858301515b600019600386901b1c1916600185901b178555620008ad565b600085815260208120601f198616915b82811015620009525788860151825594840194600190910190840162000931565b5085821015620009715787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200099457600080fd5b81516001600160a01b0381168114620009ac57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620009e357620009e3620009b3565b92915050565b60008262000a0757634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620009e357620009e3620009b3565b6131b78062000a326000396000f3fe6080604052600436106102e85760003560e01c80638a8c523c11610190578063b62496f5116100dc578063dd1e1ca911610095578063e73b90cd1161006f578063e73b90cd146108c2578063f2fde38b146108dc578063fea4fa4d146108fc578063fefa5ce31461091257600080fd5b8063dd1e1ca914610878578063dd62ed3e1461088d578063df778d26146108ad57600080fd5b8063b62496f5146107b3578063c0246668146107e3578063c18bc19514610803578063c862c28b14610823578063cb94a37014610838578063d257b34f1461085857600080fd5b80639c74daf011610149578063a9059cbb11610123578063a9059cbb14610731578063ae76b09014610751578063b1d9208514610766578063b56d17171461079357600080fd5b80639c74daf0146106d1578063a1cd15e8146106f1578063a457c2d71461071157600080fd5b80638a8c523c146105fd5780638da5cb5b146106125780638e15f473146106305780638e1a9efb1461067c57806395d89b411461069c5780639a7a23d6146106b157600080fd5b8063313ce5671161024f5780636d77ecd111610208578063715018a6116101e2578063715018a61461059d578063751039fc146105b25780637571336a146105c757806382247ec0146105e757600080fd5b80636d77ecd11461053d5780636ebb4d621461055d57806370a082311461057d57600080fd5b8063313ce56714610466578063339578fe1461048257806339509351146104975780634b94f50e146104b75780634fbee193146104cc578063583e05681461050557600080fd5b8063203e727e116102a1578063203e727e146103b157806322429085146103d157806323b872dd146103f157806323bf4c861461041157806327f4d7d5146104315780632fd689e31461045057600080fd5b806304beaeb8146102f457806306fdde031461031d578063095ea7b31461033f57806312b77e8a1461036f57806318160ddd14610386578063199ffc721461039b57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061030a600b5481565b6040519081526020015b60405180910390f35b34801561032957600080fd5b50610332610932565b6040516103149190612b57565b34801561034b57600080fd5b5061035f61035a366004612bba565b6109c4565b6040519015158152602001610314565b34801561037b57600080fd5b506103846109de565b005b34801561039257600080fd5b5060025461030a565b3480156103a757600080fd5b5061030a60195481565b3480156103bd57600080fd5b506103846103cc366004612be6565b610a74565b3480156103dd57600080fd5b506103846103ec366004612bff565b610b51565b3480156103fd57600080fd5b5061035f61040c366004612c2b565b610bf9565b34801561041d57600080fd5b5061038461042c366004612c6c565b610c1d565b34801561043d57600080fd5b50600e5461035f90610100900460ff1681565b34801561045c57600080fd5b5061030a600c5481565b34801561047257600080fd5b5060405160128152602001610314565b34801561048e57600080fd5b50610384610c73565b3480156104a357600080fd5b5061035f6104b2366004612bba565b610ca4565b3480156104c357600080fd5b5061030a610cc6565b3480156104d857600080fd5b5061035f6104e7366004612c6c565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561051157600080fd5b50600654610525906001600160a01b031681565b6040516001600160a01b039091168152602001610314565b34801561054957600080fd5b50601d54610525906001600160a01b031681565b34801561056957600080fd5b5061035f610578366004612bba565b611031565b34801561058957600080fd5b5061030a610598366004612c6c565b61104c565b3480156105a957600080fd5b50610384611067565b3480156105be57600080fd5b5061035f61109d565b3480156105d357600080fd5b506103846105e2366004612c97565b6110da565b3480156105f357600080fd5b5061030a600d5481565b34801561060957600080fd5b5061038461112f565b34801561061e57600080fd5b506005546001600160a01b0316610525565b34801561063c57600080fd5b5061064561116e565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a001610314565b34801561068857600080fd5b50610384610697366004612c6c565b61120a565b3480156106a857600080fd5b50610332611256565b3480156106bd57600080fd5b506103846106cc366004612c97565b611265565b3480156106dd57600080fd5b50600754610525906001600160a01b031681565b3480156106fd57600080fd5b5061035f61070c366004612cd0565b611359565b34801561071d57600080fd5b5061035f61072c366004612bba565b611457565b34801561073d57600080fd5b5061035f61074c366004612bba565b6114d2565b34801561075d57600080fd5b506103846114e0565b34801561077257600080fd5b5061030a610781366004612c6c565b600f6020526000908152604090205481565b34801561079f57600080fd5b506103846107ae366004612c2b565b611511565b3480156107bf57600080fd5b5061035f6107ce366004612c6c565b601f6020526000908152604090205460ff1681565b3480156107ef57600080fd5b506103846107fe366004612c97565b61178b565b34801561080f57600080fd5b5061038461081e366004612be6565b611814565b34801561082f57600080fd5b506103846118e5565b34801561084457600080fd5b50610384610853366004612c6c565b61197e565b34801561086457600080fd5b5061035f610873366004612be6565b6119ca565b34801561088457600080fd5b50610384611b21565b34801561089957600080fd5b5061030a6108a8366004612cd0565b611bb8565b3480156108b957600080fd5b50610384611be3565b3480156108ce57600080fd5b50600e5461035f9060ff1681565b3480156108e857600080fd5b506103846108f7366004612c6c565b611c1e565b34801561090857600080fd5b5061030a60105481565b34801561091e57600080fd5b5061038461092d366004612be6565b611cb6565b60606003805461094190612cfe565b80601f016020809104026020016040519081016040528092919081815260200182805461096d90612cfe565b80156109ba5780601f1061098f576101008083540402835291602001916109ba565b820191906000526020600020905b81548152906001019060200180831161099d57829003601f168201915b5050505050905090565b6000336109d2818585611cf8565b60019150505b92915050565b6005546001600160a01b03163314610a115760405162461bcd60e51b8152600401610a0890612d38565b60405180910390fd5b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610a5e576040519150601f19603f3d011682016040523d82523d6000602084013e610a63565b606091505b5050905080610a7157600080fd5b50565b6005546001600160a01b03163314610a9e5760405162461bcd60e51b8152600401610a0890612d38565b670de0b6b3a76400006103e8610ab360025490565b610abe906001612d83565b610ac89190612d9a565b610ad29190612d9a565b811015610b395760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610a08565b610b4b81670de0b6b3a7640000612d83565b600b5550565b6005546001600160a01b03163314610b7b5760405162461bcd60e51b8152600401610a0890612d38565b60118390556013829055601281905580610b958385612dbc565b610b9f9190612dbc565b6010819055600a1015610bf45760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a08565b505050565b600033610c07858285611e1c565b610c12858585611e96565b506001949350505050565b6005546001600160a01b03163314610c475760405162461bcd60e51b8152600401610a0890612d38565b601d80546001600160a01b039092166001600160a01b03199283168117909155601c8054909216179055565b6005546001600160a01b03163314610c9d5760405162461bcd60e51b8152600401610a0890612d38565b6000601555565b6000336109d2818585610cb78383611bb8565b610cc19190612dbc565b611cf8565b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d409190612dcf565b90506000600760009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbb9190612dcf565b600a54909150600090610dd6906001600160a01b031661104c565b600854600e546201000090046001600160a01b03166000908152600f6020526040902054919250108015610e08575080155b610e1157600080fd5b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610e67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8b9190612e03565b50601e54601d5492945090925090600160a01b900460ff1615610f1257306001600160a01b0316638e15f4736040518163ffffffff1660e01b815260040160a060405180830381865afa158015610ee6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0a9190612e6d565b509193505050505b6000856001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f769190612ebd565b60ff16876001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fdb9190612ebd565b610fe99060ff16600a612fc4565b610ffc846001600160701b038716612d83565b6110069190612d83565b6110109190612d9a565b90506110256001600160701b03851682612d9a565b97505050505050505090565b6000611043833084610cb78730611bb8565b50600192915050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031633146110915760405162461bcd60e51b8152600401610a0890612d38565b61109b60006124e0565b565b6005546000906001600160a01b031633146110ca5760405162461bcd60e51b8152600401610a0890612d38565b50600e805460ff19169055600190565b6005546001600160a01b031633146111045760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111595760405162461bcd60e51b8152600401610a0890612d38565b600e805461ff00191661010017905542600855565b600080600080600080600080600080601c60009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156111d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f49190612e6d565b939e929d50909b50995090975095505050505050565b6005546001600160a01b031633146112345760405162461bcd60e51b8152600401610a0890612d38565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461094190612cfe565b6005546001600160a01b0316331461128f5760405162461bcd60e51b8152600401610a0890612d38565b6007546001600160a01b03908116908316036113135760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a08565b61131d8282612532565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60075460009081906001600160a01b03858116911614801561138957506006546001600160a01b03848116911614155b90508080156113b057506001600160a01b0383166000908152601a602052604090205460ff165b156113ba57426008555b6001600160a01b0384166000908152601a602052604081205460ff16806113f957506001600160a01b0384166000908152601a602052604090205460ff165b6007549091506001600160a01b03858116911614600083806114185750815b6010549091501580159081906114385750600754600160a01b900460ff16155b8015611442575083155b801561144b5750815b98975050505050505050565b600033816114658286611bb8565b9050838110156114c55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a08565b610c128286868403611cf8565b6000336109d2818585611e96565b6005546001600160a01b0316331461150a5760405162461bcd60e51b8152600401610a0890612d38565b6000601455565b6001600160a01b0383166115675760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a08565b6040805160028082526060820183526000926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa1580156115d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f59190612dcf565b8160008151811061160857611608612fd0565b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811061163c5761163c612fd0565b6001600160a01b03909216602092830291909101820152336000908152601a909152604090205460ff161561171857836001600160a01b03166323b872dd848360018151811061168e5761168e612fd0565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018590526064016020604051808303816000875af11580156116ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117119190612fe6565b5050505050565b60065460405163b6f9de9560e01b81526001600160a01b039091169063b6f9de9590849061175390600090869061dead904290600401613047565b6000604051808303818588803b15801561176c57600080fd5b505af1158015611780573d6000803e3d6000fd5b505050505050505050565b6005546001600160a01b031633146117b55760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461183e5760405162461bcd60e51b8152600401610a0890612d38565b670de0b6b3a76400006103e861185360025490565b61185e906005612d83565b6118689190612d9a565b6118729190612d9a565b8110156118cd5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610a08565b6118df81670de0b6b3a7640000612d83565b600d5550565b6005546001600160a01b0316331461190f5760405162461bcd60e51b8152600401610a0890612d38565b601d54600160a01b900460ff16156119695760405162461bcd60e51b815260206004820152601c60248201527f7072696365206f7261636c6520616c726561647920656e61626c6564000000006044820152606401610a08565b601d805460ff60a01b1916600160a01b179055565b6005546001600160a01b031633146119a85760405162461bcd60e51b8152600401610a0890612d38565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146119f75760405162461bcd60e51b8152600401610a0890612d38565b620186a0611a0460025490565b611a0f906001612d83565b611a199190612d9a565b821015611a865760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a08565b6103e8611a9260025490565b611a9d906005612d83565b611aa79190612d9a565b821115611b135760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a08565b50600c81905560015b919050565b6005546001600160a01b03163314611b4b5760405162461bcd60e51b8152600401610a0890612d38565b601d54600160a01b900460ff161515600114611ba95760405162461bcd60e51b815260206004820152601d60248201527f7072696365206f7261636c6520616c72656164792064697361626c65640000006044820152606401610a08565b601d805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03163314611c0d5760405162461bcd60e51b8152600401610a0890612d38565b610a11611c193061104c565b612560565b6005546001600160a01b03163314611c485760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b038116611cad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a08565b610a71816124e0565b6005546001600160a01b03163314611ce05760405162461bcd60e51b8152600401610a0890612d38565b611cf281670de0b6b3a76400006126ba565b601e5550565b6001600160a01b038316611d5a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a08565b6001600160a01b038216611dbb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a08565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611e288484611bb8565b90506000198114611e905781811015611e835760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a08565b611e908484848403611cf8565b50505050565b6001600160a01b0383166000908152601a602052604081205460ff1680611ed557506001600160a01b0383166000908152601a602052604090205460ff165b90506001600160a01b038416611efd5760405162461bcd60e51b8152600401610a089061307c565b6001600160a01b038316611f235760405162461bcd60e51b8152600401610a08906130c1565b81600003611f3757611e90848460006126cd565b6007546000906001600160a01b038681169116148015611f7057506001600160a01b0384166000908152601b602052604090205460ff16155b6007549091506000906001600160a01b038681169116148015611fac57506001600160a01b0386166000908152601b602052604090205460ff16155b90506000611fc26005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480611fee57506005546001600160a01b038781169116145b905060006001600160a01b038716158061201257506001600160a01b03871661dead145b90506000828061201f5750815b806120335750600754600160a01b900460ff165b600e5490915060ff168015612046575080155b1561221e57600e54610100900460ff168061205e5750855b6120a35760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a08565b841561217857600b548711156121195760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a08565b600d546121258961104c565b61212f9089612dbc565b11156121735760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a08565b61221e565b8361221e576001600160a01b0388166000908152601b602052604090205460ff161580156121bf57506001600160a01b0389166000908152601b602052604090205460ff16155b1561221e57600d546121d08961104c565b6121da9089612dbc565b111561221e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a08565b6001600160a01b0389166000908152601f602052604090205460ff161561227f576001600160a01b0388166000908152600f6020526040812054900361227a576001600160a01b0388166000908152600f602052604090204290555b6122b3565b600754600160a01b900460ff166122b357600e805462010000600160b01b031916620100006001600160a01b038c16021790555b600754600160a01b900460ff161580156122e657506001600160a01b0389166000908152601f602052604090205460ff16155b801561230b57506001600160a01b0389166000908152601a602052604090205460ff16155b801561233057506001600160a01b0388166000908152601a602052604090205460ff16155b156123955760006123403061104c565b600c54909150811015612351612821565b801561235a5750805b8015612364575087155b15612392576007805460ff60a01b1916600160a01b17905561238461283d565b6007805460ff60a01b191690555b50505b60006123a18a8a611359565b905080156124c95760105460115486156123da576014546010546123c59190612dbc565b91506014546011546123d79190612dbc565b90505b8715612405576015546010546123f09190612dbc565b91506015546011546124029190612dbc565b90505b600061241c60646124168d866126ba565b90612a71565b9050826012548261242d9190612d83565b6124379190612d9a565b601860008282546124489190612dbc565b909155508390506124598383612d83565b6124639190612d9a565b601660008282546124749190612dbc565b909155505060135483906124889083612d83565b6124929190612d9a565b601760008282546124a39190612dbc565b909155505080156124b9576124b98d30836126cd565b6124c3818c613104565b9a505050505b6124d48a8a8a6126cd565b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff191682151517905561131d82826110da565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061259557612595612fd0565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156125ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126129190612dcf565b8160018151811061262557612625612fd0565b6001600160a01b03928316602091820292909201015260065461264b9130911684611cf8565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612684908590600090869030904290600401613117565b600060405180830381600087803b15801561269e57600080fd5b505af11580156126b2573d6000803e3d6000fd5b505050505050565b60006126c68284612d83565b9392505050565b6001600160a01b0383166126f35760405162461bcd60e51b8152600401610a089061307c565b6001600160a01b0382166127195760405162461bcd60e51b8152600401610a08906130c1565b6001600160a01b038316600090815260208190526040902054818110156127915760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a08565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906127c8908490612dbc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161281491815260200190565b60405180910390a3611e90565b60008061282c610cc6565b116128375750600090565b50600190565b60006128483061104c565b9050600060175460165460185461285f9190612dbc565b6128699190612dbc565b9050811580612876575080155b1561287f575050565b600c5482111561288f57600c5491505b6000600282601854856128a29190612d83565b6128ac9190612d9a565b6128b69190612d9a565b905060006128c48483612a7d565b9050476128d082612560565b60006128dc4783612a7d565b905060006128f986612416601654856126ba90919063ffffffff16565b9050600061291687612416601754866126ba90919063ffffffff16565b90506000816129258486613104565b61292f9190613104565b90506000871180156129415750600081115b15612994576129508782612a89565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60006018819055601681905560178190556009546040516001600160a01b039091169085908381818185875af1925050503d80600081146129f1576040519150601f19603f3d011682016040523d82523d6000602084013e6129f6565b606091505b5050905080612a0457600080fd5b600a546040516000916001600160a01b03169085908381818185875af1925050503d8060008114612a51576040519150601f19603f3d011682016040523d82523d6000602084013e612a56565b606091505b5050905080612a6457600080fd5b5050505050505050505050565b60006126c68284612d9a565b60006126c68284613104565b600654612aa19030906001600160a01b031684611cf8565b6006546001600160a01b031663f305d719823085600080612aca6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612b32573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117119190613153565b600060208083528351808285015260005b81811015612b8457858101830151858201604001528201612b68565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a7157600080fd5b60008060408385031215612bcd57600080fd5b8235612bd881612ba5565b946020939093013593505050565b600060208284031215612bf857600080fd5b5035919050565b600080600060608486031215612c1457600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612c4057600080fd5b8335612c4b81612ba5565b92506020840135612c5b81612ba5565b929592945050506040919091013590565b600060208284031215612c7e57600080fd5b81356126c681612ba5565b8015158114610a7157600080fd5b60008060408385031215612caa57600080fd5b8235612cb581612ba5565b91506020830135612cc581612c89565b809150509250929050565b60008060408385031215612ce357600080fd5b8235612cee81612ba5565b91506020830135612cc581612ba5565b600181811c90821680612d1257607f821691505b602082108103612d3257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109d8576109d8612d6d565b600082612db757634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156109d8576109d8612d6d565b600060208284031215612de157600080fd5b81516126c681612ba5565b80516001600160701b0381168114611b1c57600080fd5b600080600060608486031215612e1857600080fd5b612e2184612dec565b9250612e2f60208501612dec565b9150604084015163ffffffff81168114612e4857600080fd5b809150509250925092565b805169ffffffffffffffffffff81168114611b1c57600080fd5b600080600080600060a08688031215612e8557600080fd5b612e8e86612e53565b9450602086015193506040860151925060608601519150612eb160808701612e53565b90509295509295909350565b600060208284031215612ecf57600080fd5b815160ff811681146126c657600080fd5b600181815b80851115612f1b578160001904821115612f0157612f01612d6d565b80851615612f0e57918102915b93841c9390800290612ee5565b509250929050565b600082612f32575060016109d8565b81612f3f575060006109d8565b8160018114612f555760028114612f5f57612f7b565b60019150506109d8565b60ff841115612f7057612f70612d6d565b50506001821b6109d8565b5060208310610133831016604e8410600b8410161715612f9e575081810a6109d8565b612fa88383612ee0565b8060001904821115612fbc57612fbc612d6d565b029392505050565b60006126c68383612f23565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612ff857600080fd5b81516126c681612c89565b600081518084526020808501945080840160005b8381101561303c5781516001600160a01b031687529582019590820190600101613017565b509495945050505050565b8481526080602082015260006130606080830186613003565b6001600160a01b03949094166040830152506060015292915050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109d8576109d8612d6d565b85815284602082015260a06040820152600061313660a0830186613003565b6001600160a01b0394909416606083015250608001529392505050565b60008060006060848603121561316857600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212209a75492bc3cd8b60d0a259fc794fd72a3fb8d823d3b1a8f1dd3f54be550a81ef64736f6c634300081200334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80638a8c523c11610190578063b62496f5116100dc578063dd1e1ca911610095578063e73b90cd1161006f578063e73b90cd146108c2578063f2fde38b146108dc578063fea4fa4d146108fc578063fefa5ce31461091257600080fd5b8063dd1e1ca914610878578063dd62ed3e1461088d578063df778d26146108ad57600080fd5b8063b62496f5146107b3578063c0246668146107e3578063c18bc19514610803578063c862c28b14610823578063cb94a37014610838578063d257b34f1461085857600080fd5b80639c74daf011610149578063a9059cbb11610123578063a9059cbb14610731578063ae76b09014610751578063b1d9208514610766578063b56d17171461079357600080fd5b80639c74daf0146106d1578063a1cd15e8146106f1578063a457c2d71461071157600080fd5b80638a8c523c146105fd5780638da5cb5b146106125780638e15f473146106305780638e1a9efb1461067c57806395d89b411461069c5780639a7a23d6146106b157600080fd5b8063313ce5671161024f5780636d77ecd111610208578063715018a6116101e2578063715018a61461059d578063751039fc146105b25780637571336a146105c757806382247ec0146105e757600080fd5b80636d77ecd11461053d5780636ebb4d621461055d57806370a082311461057d57600080fd5b8063313ce56714610466578063339578fe1461048257806339509351146104975780634b94f50e146104b75780634fbee193146104cc578063583e05681461050557600080fd5b8063203e727e116102a1578063203e727e146103b157806322429085146103d157806323b872dd146103f157806323bf4c861461041157806327f4d7d5146104315780632fd689e31461045057600080fd5b806304beaeb8146102f457806306fdde031461031d578063095ea7b31461033f57806312b77e8a1461036f57806318160ddd14610386578063199ffc721461039b57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061030a600b5481565b6040519081526020015b60405180910390f35b34801561032957600080fd5b50610332610932565b6040516103149190612b57565b34801561034b57600080fd5b5061035f61035a366004612bba565b6109c4565b6040519015158152602001610314565b34801561037b57600080fd5b506103846109de565b005b34801561039257600080fd5b5060025461030a565b3480156103a757600080fd5b5061030a60195481565b3480156103bd57600080fd5b506103846103cc366004612be6565b610a74565b3480156103dd57600080fd5b506103846103ec366004612bff565b610b51565b3480156103fd57600080fd5b5061035f61040c366004612c2b565b610bf9565b34801561041d57600080fd5b5061038461042c366004612c6c565b610c1d565b34801561043d57600080fd5b50600e5461035f90610100900460ff1681565b34801561045c57600080fd5b5061030a600c5481565b34801561047257600080fd5b5060405160128152602001610314565b34801561048e57600080fd5b50610384610c73565b3480156104a357600080fd5b5061035f6104b2366004612bba565b610ca4565b3480156104c357600080fd5b5061030a610cc6565b3480156104d857600080fd5b5061035f6104e7366004612c6c565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561051157600080fd5b50600654610525906001600160a01b031681565b6040516001600160a01b039091168152602001610314565b34801561054957600080fd5b50601d54610525906001600160a01b031681565b34801561056957600080fd5b5061035f610578366004612bba565b611031565b34801561058957600080fd5b5061030a610598366004612c6c565b61104c565b3480156105a957600080fd5b50610384611067565b3480156105be57600080fd5b5061035f61109d565b3480156105d357600080fd5b506103846105e2366004612c97565b6110da565b3480156105f357600080fd5b5061030a600d5481565b34801561060957600080fd5b5061038461112f565b34801561061e57600080fd5b506005546001600160a01b0316610525565b34801561063c57600080fd5b5061064561116e565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a001610314565b34801561068857600080fd5b50610384610697366004612c6c565b61120a565b3480156106a857600080fd5b50610332611256565b3480156106bd57600080fd5b506103846106cc366004612c97565b611265565b3480156106dd57600080fd5b50600754610525906001600160a01b031681565b3480156106fd57600080fd5b5061035f61070c366004612cd0565b611359565b34801561071d57600080fd5b5061035f61072c366004612bba565b611457565b34801561073d57600080fd5b5061035f61074c366004612bba565b6114d2565b34801561075d57600080fd5b506103846114e0565b34801561077257600080fd5b5061030a610781366004612c6c565b600f6020526000908152604090205481565b34801561079f57600080fd5b506103846107ae366004612c2b565b611511565b3480156107bf57600080fd5b5061035f6107ce366004612c6c565b601f6020526000908152604090205460ff1681565b3480156107ef57600080fd5b506103846107fe366004612c97565b61178b565b34801561080f57600080fd5b5061038461081e366004612be6565b611814565b34801561082f57600080fd5b506103846118e5565b34801561084457600080fd5b50610384610853366004612c6c565b61197e565b34801561086457600080fd5b5061035f610873366004612be6565b6119ca565b34801561088457600080fd5b50610384611b21565b34801561089957600080fd5b5061030a6108a8366004612cd0565b611bb8565b3480156108b957600080fd5b50610384611be3565b3480156108ce57600080fd5b50600e5461035f9060ff1681565b3480156108e857600080fd5b506103846108f7366004612c6c565b611c1e565b34801561090857600080fd5b5061030a60105481565b34801561091e57600080fd5b5061038461092d366004612be6565b611cb6565b60606003805461094190612cfe565b80601f016020809104026020016040519081016040528092919081815260200182805461096d90612cfe565b80156109ba5780601f1061098f576101008083540402835291602001916109ba565b820191906000526020600020905b81548152906001019060200180831161099d57829003601f168201915b5050505050905090565b6000336109d2818585611cf8565b60019150505b92915050565b6005546001600160a01b03163314610a115760405162461bcd60e51b8152600401610a0890612d38565b60405180910390fd5b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610a5e576040519150601f19603f3d011682016040523d82523d6000602084013e610a63565b606091505b5050905080610a7157600080fd5b50565b6005546001600160a01b03163314610a9e5760405162461bcd60e51b8152600401610a0890612d38565b670de0b6b3a76400006103e8610ab360025490565b610abe906001612d83565b610ac89190612d9a565b610ad29190612d9a565b811015610b395760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610a08565b610b4b81670de0b6b3a7640000612d83565b600b5550565b6005546001600160a01b03163314610b7b5760405162461bcd60e51b8152600401610a0890612d38565b60118390556013829055601281905580610b958385612dbc565b610b9f9190612dbc565b6010819055600a1015610bf45760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a08565b505050565b600033610c07858285611e1c565b610c12858585611e96565b506001949350505050565b6005546001600160a01b03163314610c475760405162461bcd60e51b8152600401610a0890612d38565b601d80546001600160a01b039092166001600160a01b03199283168117909155601c8054909216179055565b6005546001600160a01b03163314610c9d5760405162461bcd60e51b8152600401610a0890612d38565b6000601555565b6000336109d2818585610cb78383611bb8565b610cc19190612dbc565b611cf8565b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d409190612dcf565b90506000600760009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbb9190612dcf565b600a54909150600090610dd6906001600160a01b031661104c565b600854600e546201000090046001600160a01b03166000908152600f6020526040902054919250108015610e08575080155b610e1157600080fd5b600080600760009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610e67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8b9190612e03565b50601e54601d5492945090925090600160a01b900460ff1615610f1257306001600160a01b0316638e15f4736040518163ffffffff1660e01b815260040160a060405180830381865afa158015610ee6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0a9190612e6d565b509193505050505b6000856001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f769190612ebd565b60ff16876001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fdb9190612ebd565b610fe99060ff16600a612fc4565b610ffc846001600160701b038716612d83565b6110069190612d83565b6110109190612d9a565b90506110256001600160701b03851682612d9a565b97505050505050505090565b6000611043833084610cb78730611bb8565b50600192915050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031633146110915760405162461bcd60e51b8152600401610a0890612d38565b61109b60006124e0565b565b6005546000906001600160a01b031633146110ca5760405162461bcd60e51b8152600401610a0890612d38565b50600e805460ff19169055600190565b6005546001600160a01b031633146111045760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111595760405162461bcd60e51b8152600401610a0890612d38565b600e805461ff00191661010017905542600855565b600080600080600080600080600080601c60009054906101000a90046001600160a01b03166001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156111d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f49190612e6d565b939e929d50909b50995090975095505050505050565b6005546001600160a01b031633146112345760405162461bcd60e51b8152600401610a0890612d38565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461094190612cfe565b6005546001600160a01b0316331461128f5760405162461bcd60e51b8152600401610a0890612d38565b6007546001600160a01b03908116908316036113135760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a08565b61131d8282612532565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60075460009081906001600160a01b03858116911614801561138957506006546001600160a01b03848116911614155b90508080156113b057506001600160a01b0383166000908152601a602052604090205460ff165b156113ba57426008555b6001600160a01b0384166000908152601a602052604081205460ff16806113f957506001600160a01b0384166000908152601a602052604090205460ff165b6007549091506001600160a01b03858116911614600083806114185750815b6010549091501580159081906114385750600754600160a01b900460ff16155b8015611442575083155b801561144b5750815b98975050505050505050565b600033816114658286611bb8565b9050838110156114c55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a08565b610c128286868403611cf8565b6000336109d2818585611e96565b6005546001600160a01b0316331461150a5760405162461bcd60e51b8152600401610a0890612d38565b6000601455565b6001600160a01b0383166115675760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a08565b6040805160028082526060820183526000926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa1580156115d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f59190612dcf565b8160008151811061160857611608612fd0565b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811061163c5761163c612fd0565b6001600160a01b03909216602092830291909101820152336000908152601a909152604090205460ff161561171857836001600160a01b03166323b872dd848360018151811061168e5761168e612fd0565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018590526064016020604051808303816000875af11580156116ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117119190612fe6565b5050505050565b60065460405163b6f9de9560e01b81526001600160a01b039091169063b6f9de9590849061175390600090869061dead904290600401613047565b6000604051808303818588803b15801561176c57600080fd5b505af1158015611780573d6000803e3d6000fd5b505050505050505050565b6005546001600160a01b031633146117b55760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461183e5760405162461bcd60e51b8152600401610a0890612d38565b670de0b6b3a76400006103e861185360025490565b61185e906005612d83565b6118689190612d9a565b6118729190612d9a565b8110156118cd5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610a08565b6118df81670de0b6b3a7640000612d83565b600d5550565b6005546001600160a01b0316331461190f5760405162461bcd60e51b8152600401610a0890612d38565b601d54600160a01b900460ff16156119695760405162461bcd60e51b815260206004820152601c60248201527f7072696365206f7261636c6520616c726561647920656e61626c6564000000006044820152606401610a08565b601d805460ff60a01b1916600160a01b179055565b6005546001600160a01b031633146119a85760405162461bcd60e51b8152600401610a0890612d38565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146119f75760405162461bcd60e51b8152600401610a0890612d38565b620186a0611a0460025490565b611a0f906001612d83565b611a199190612d9a565b821015611a865760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a08565b6103e8611a9260025490565b611a9d906005612d83565b611aa79190612d9a565b821115611b135760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a08565b50600c81905560015b919050565b6005546001600160a01b03163314611b4b5760405162461bcd60e51b8152600401610a0890612d38565b601d54600160a01b900460ff161515600114611ba95760405162461bcd60e51b815260206004820152601d60248201527f7072696365206f7261636c6520616c72656164792064697361626c65640000006044820152606401610a08565b601d805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03163314611c0d5760405162461bcd60e51b8152600401610a0890612d38565b610a11611c193061104c565b612560565b6005546001600160a01b03163314611c485760405162461bcd60e51b8152600401610a0890612d38565b6001600160a01b038116611cad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a08565b610a71816124e0565b6005546001600160a01b03163314611ce05760405162461bcd60e51b8152600401610a0890612d38565b611cf281670de0b6b3a76400006126ba565b601e5550565b6001600160a01b038316611d5a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a08565b6001600160a01b038216611dbb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a08565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611e288484611bb8565b90506000198114611e905781811015611e835760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a08565b611e908484848403611cf8565b50505050565b6001600160a01b0383166000908152601a602052604081205460ff1680611ed557506001600160a01b0383166000908152601a602052604090205460ff165b90506001600160a01b038416611efd5760405162461bcd60e51b8152600401610a089061307c565b6001600160a01b038316611f235760405162461bcd60e51b8152600401610a08906130c1565b81600003611f3757611e90848460006126cd565b6007546000906001600160a01b038681169116148015611f7057506001600160a01b0384166000908152601b602052604090205460ff16155b6007549091506000906001600160a01b038681169116148015611fac57506001600160a01b0386166000908152601b602052604090205460ff16155b90506000611fc26005546001600160a01b031690565b6001600160a01b0316876001600160a01b03161480611fee57506005546001600160a01b038781169116145b905060006001600160a01b038716158061201257506001600160a01b03871661dead145b90506000828061201f5750815b806120335750600754600160a01b900460ff165b600e5490915060ff168015612046575080155b1561221e57600e54610100900460ff168061205e5750855b6120a35760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a08565b841561217857600b548711156121195760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a08565b600d546121258961104c565b61212f9089612dbc565b11156121735760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a08565b61221e565b8361221e576001600160a01b0388166000908152601b602052604090205460ff161580156121bf57506001600160a01b0389166000908152601b602052604090205460ff16155b1561221e57600d546121d08961104c565b6121da9089612dbc565b111561221e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a08565b6001600160a01b0389166000908152601f602052604090205460ff161561227f576001600160a01b0388166000908152600f6020526040812054900361227a576001600160a01b0388166000908152600f602052604090204290555b6122b3565b600754600160a01b900460ff166122b357600e805462010000600160b01b031916620100006001600160a01b038c16021790555b600754600160a01b900460ff161580156122e657506001600160a01b0389166000908152601f602052604090205460ff16155b801561230b57506001600160a01b0389166000908152601a602052604090205460ff16155b801561233057506001600160a01b0388166000908152601a602052604090205460ff16155b156123955760006123403061104c565b600c54909150811015612351612821565b801561235a5750805b8015612364575087155b15612392576007805460ff60a01b1916600160a01b17905561238461283d565b6007805460ff60a01b191690555b50505b60006123a18a8a611359565b905080156124c95760105460115486156123da576014546010546123c59190612dbc565b91506014546011546123d79190612dbc565b90505b8715612405576015546010546123f09190612dbc565b91506015546011546124029190612dbc565b90505b600061241c60646124168d866126ba565b90612a71565b9050826012548261242d9190612d83565b6124379190612d9a565b601860008282546124489190612dbc565b909155508390506124598383612d83565b6124639190612d9a565b601660008282546124749190612dbc565b909155505060135483906124889083612d83565b6124929190612d9a565b601760008282546124a39190612dbc565b909155505080156124b9576124b98d30836126cd565b6124c3818c613104565b9a505050505b6124d48a8a8a6126cd565b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601f60205260409020805460ff191682151517905561131d82826110da565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061259557612595612fd0565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156125ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126129190612dcf565b8160018151811061262557612625612fd0565b6001600160a01b03928316602091820292909201015260065461264b9130911684611cf8565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612684908590600090869030904290600401613117565b600060405180830381600087803b15801561269e57600080fd5b505af11580156126b2573d6000803e3d6000fd5b505050505050565b60006126c68284612d83565b9392505050565b6001600160a01b0383166126f35760405162461bcd60e51b8152600401610a089061307c565b6001600160a01b0382166127195760405162461bcd60e51b8152600401610a08906130c1565b6001600160a01b038316600090815260208190526040902054818110156127915760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a08565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906127c8908490612dbc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161281491815260200190565b60405180910390a3611e90565b60008061282c610cc6565b116128375750600090565b50600190565b60006128483061104c565b9050600060175460165460185461285f9190612dbc565b6128699190612dbc565b9050811580612876575080155b1561287f575050565b600c5482111561288f57600c5491505b6000600282601854856128a29190612d83565b6128ac9190612d9a565b6128b69190612d9a565b905060006128c48483612a7d565b9050476128d082612560565b60006128dc4783612a7d565b905060006128f986612416601654856126ba90919063ffffffff16565b9050600061291687612416601754866126ba90919063ffffffff16565b90506000816129258486613104565b61292f9190613104565b90506000871180156129415750600081115b15612994576129508782612a89565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60006018819055601681905560178190556009546040516001600160a01b039091169085908381818185875af1925050503d80600081146129f1576040519150601f19603f3d011682016040523d82523d6000602084013e6129f6565b606091505b5050905080612a0457600080fd5b600a546040516000916001600160a01b03169085908381818185875af1925050503d8060008114612a51576040519150601f19603f3d011682016040523d82523d6000602084013e612a56565b606091505b5050905080612a6457600080fd5b5050505050505050505050565b60006126c68284612d9a565b60006126c68284613104565b600654612aa19030906001600160a01b031684611cf8565b6006546001600160a01b031663f305d719823085600080612aca6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612b32573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117119190613153565b600060208083528351808285015260005b81811015612b8457858101830151858201604001528201612b68565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a7157600080fd5b60008060408385031215612bcd57600080fd5b8235612bd881612ba5565b946020939093013593505050565b600060208284031215612bf857600080fd5b5035919050565b600080600060608486031215612c1457600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612c4057600080fd5b8335612c4b81612ba5565b92506020840135612c5b81612ba5565b929592945050506040919091013590565b600060208284031215612c7e57600080fd5b81356126c681612ba5565b8015158114610a7157600080fd5b60008060408385031215612caa57600080fd5b8235612cb581612ba5565b91506020830135612cc581612c89565b809150509250929050565b60008060408385031215612ce357600080fd5b8235612cee81612ba5565b91506020830135612cc581612ba5565b600181811c90821680612d1257607f821691505b602082108103612d3257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109d8576109d8612d6d565b600082612db757634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156109d8576109d8612d6d565b600060208284031215612de157600080fd5b81516126c681612ba5565b80516001600160701b0381168114611b1c57600080fd5b600080600060608486031215612e1857600080fd5b612e2184612dec565b9250612e2f60208501612dec565b9150604084015163ffffffff81168114612e4857600080fd5b809150509250925092565b805169ffffffffffffffffffff81168114611b1c57600080fd5b600080600080600060a08688031215612e8557600080fd5b612e8e86612e53565b9450602086015193506040860151925060608601519150612eb160808701612e53565b90509295509295909350565b600060208284031215612ecf57600080fd5b815160ff811681146126c657600080fd5b600181815b80851115612f1b578160001904821115612f0157612f01612d6d565b80851615612f0e57918102915b93841c9390800290612ee5565b509250929050565b600082612f32575060016109d8565b81612f3f575060006109d8565b8160018114612f555760028114612f5f57612f7b565b60019150506109d8565b60ff841115612f7057612f70612d6d565b50506001821b6109d8565b5060208310610133831016604e8410600b8410161715612f9e575081810a6109d8565b612fa88383612ee0565b8060001904821115612fbc57612fbc612d6d565b029392505050565b60006126c68383612f23565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612ff857600080fd5b81516126c681612c89565b600081518084526020808501945080840160005b8381101561303c5781516001600160a01b031687529582019590820190600101613017565b509495945050505050565b8481526080602082015260006130606080830186613003565b6001600160a01b03949094166040830152506060015292915050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109d8576109d8612d6d565b85815284602082015260a06040820152600061313660a0830186613003565b6001600160a01b0394909416606083015250608001529392505050565b60008060006060848603121561316857600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212209a75492bc3cd8b60d0a259fc794fd72a3fb8d823d3b1a8f1dd3f54be550a81ef64736f6c63430008120033

Deployed Bytecode Sourcemap

37847:17091:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38145:36;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;38145:36:0;;;;;;;;26145:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28637:242::-;;;;;;;;;;-1:-1:-1;28637:242:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;28637:242:0;1205:187:1;52063:169:0;;;;;;;;;;;;;:::i;:::-;;27265:108;;;;;;;;;;-1:-1:-1;27353:12:0;;27265:108;;38786:35;;;;;;;;;;;;;;;;44154:272;;;;;;;;;;-1:-1:-1;44154:272:0;;;;;:::i;:::-;;:::i;44870:410::-;;;;;;;;;;-1:-1:-1;44870:410:0;;;;;:::i;:::-;;:::i;29459:295::-;;;;;;;;;;-1:-1:-1;29459:295:0;;;;;:::i;:::-;;:::i;50538:168::-;;;;;;;;;;-1:-1:-1;50538:168:0;;;;;:::i;:::-;;:::i;38302:34::-;;;;;;;;;;-1:-1:-1;38302:34:0;;;;;;;;;;;38188;;;;;;;;;;;;;;;;27107:93;;;;;;;;;;-1:-1:-1;27107:93:0;;27190:2;2758:36:1;;2746:2;2731:18;27107:93:0;2616:184:1;50313:91:0;;;;;;;;;;;;;:::i;30163:270::-;;;;;;;;;;-1:-1:-1;30163:270:0;;;;;:::i;:::-;;:::i;42255:886::-;;;;;;;;;;;;;:::i;50078:126::-;;;;;;;;;;-1:-1:-1;50078:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;50168:28:0;50144:4;50168:28;;;:19;:28;;;;;;;;;50078:126;37920:42;;;;;;;;;;-1:-1:-1;37920:42:0;;;;-1:-1:-1;;;;;37920:42:0;;;;;;-1:-1:-1;;;;;2995:32:1;;;2977:51;;2965:2;2950:18;37920:42:0;2805:229:1;39008:177:0;;;;;;;;;;-1:-1:-1;39008:177:0;;;;-1:-1:-1;;;;;39008:177:0;;;31732:220;;;;;;;;;;-1:-1:-1;31732:220:0;;;;;:::i;:::-;;:::i;27436:177::-;;;;;;;;;;-1:-1:-1;27436:177:0;;;;;:::i;:::-;;:::i;22767:103::-;;;;;;;;;;;;;:::i;42001:122::-;;;;;;;;;;;;;:::i;44695:167::-;;;;;;;;;;-1:-1:-1;44695:167:0;;;;;:::i;:::-;;:::i;38229:25::-;;;;;;;;;;;;;;;;41318:123;;;;;;;;;;;;;:::i;22116:87::-;;;;;;;;;;-1:-1:-1;22189:6:0;;-1:-1:-1;;;;;22189:6:0;22116:87;;43149: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;43149:491:0;3757:516:1;45600:110:0;;;;;;;;;;-1:-1:-1;45600:110:0;;;;;:::i;:::-;;:::i;26364:104::-;;;;;;;;;;;;;:::i;41449:301::-;;;;;;;;;;-1:-1:-1;41449:301:0;;;;;:::i;:::-;;:::i;37969:29::-;;;;;;;;;;-1:-1:-1;37969:29:0;;;;-1:-1:-1;;;;;37969:29:0;;;45718:585;;;;;;;;;;-1:-1:-1;45718:585:0;;;;;:::i;:::-;;:::i;30936:505::-;;;;;;;;;;-1:-1:-1;30936:505:0;;;;;:::i;:::-;;:::i;27819:234::-;;;;;;;;;;-1:-1:-1;27819:234:0;;;;;:::i;:::-;;:::i;50212:93::-;;;;;;;;;;;;;:::i;38378:50::-;;;;;;;;;;-1:-1:-1;38378:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;51078:744;;;;;;;;;;-1:-1:-1;51078:744:0;;;;;:::i;:::-;;:::i;39290:58::-;;;;;;;;;;-1:-1:-1;39290:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;45288:182;;;;;;;;;;-1:-1:-1;45288:182:0;;;;;:::i;:::-;;:::i;44434:253::-;;;;;;;;;;-1:-1:-1;44434:253:0;;;;;:::i;:::-;;:::i;50714:173::-;;;;;;;;;;;;;:::i;45478:114::-;;;;;;;;;;-1:-1:-1;45478:114:0;;;;;:::i;:::-;;:::i;43648:498::-;;;;;;;;;;-1:-1:-1;43648:498:0;;;;;:::i;:::-;;:::i;50895:175::-;;;;;;;;;;;;;:::i;28116:201::-;;;;;;;;;;-1:-1:-1;28116:201:0;;;;;:::i;:::-;;:::i;51830:225::-;;;;;;;;;;;;;:::i;38261:34::-;;;;;;;;;;-1:-1:-1;38261:34:0;;;;;;;;23025:238;;;;;;;;;;-1:-1:-1;23025:238:0;;;;;:::i;:::-;;:::i;38435:25::-;;;;;;;;;;;;;;;;50412:118;;;;;;;;;;-1:-1:-1;50412:118:0;;;;;:::i;:::-;;:::i;26145:100::-;26199:13;26232:5;26225:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26145:100;:::o;28637:242::-;28756:4;3530:10;28817:32;3530:10;28833:7;28842:6;28817:8;:32::i;:::-;28867:4;28860:11;;;28637:242;;;;;:::o;52063:169::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;;;;;;;;;52140:16:::1;::::0;52132:65:::1;::::0;52115:12:::1;::::0;-1:-1:-1;;;;;52140:16:0::1;::::0;52171:21:::1;::::0;52115:12;52132:65;52115:12;52132:65;52171:21;52140:16;52132:65:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52114:83;;;52216:7;52208:16;;;::::0;::::1;;52103:129;52063:169::o:0;44154:272::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;44291:4:::1;44283;44262:13;27353:12:::0;;;27265:108;44262:13:::1;:17;::::0;44278:1:::1;44262:17;:::i;:::-;44261:26;;;;:::i;:::-;44260:35;;;;:::i;:::-;44250:6;:45;;44228:142;;;::::0;-1:-1:-1;;;44228:142:0;;6356:2:1;44228: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;;44228:142:0::1;6154:411:1::0;44228:142:0::1;44405:13;:6:::0;44414:4:::1;44405:13;:::i;:::-;44381:21;:37:::0;-1:-1:-1;44154:272:0:o;44870:410::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;45022:13:::1;:28:::0;;;45061:15:::1;:32:::0;;;45104:13:::1;:28:::0;;;45120:12;45156:31:::1;45079:14:::0;45038:12;45156:31:::1;:::i;:::-;:47;;;;:::i;:::-;45143:10;:60:::0;;;45236:2:::1;-1:-1:-1::0;45222:16:0::1;45214:58;;;::::0;-1:-1:-1;;;45214:58:0;;6902:2:1;45214:58:0::1;::::0;::::1;6884:21:1::0;6941:2;6921:18;;;6914:30;6980:31;6960:18;;;6953:59;7029:18;;45214:58:0::1;6700:353:1::0;45214:58:0::1;44870:410:::0;;;:::o;29459:295::-;29590:4;3530:10;29648:38;29664:4;3530:10;29679:6;29648:15;:38::i;:::-;29697:27;29707:4;29713:2;29717:6;29697:9;:27::i;:::-;-1:-1:-1;29742:4:0;;29459:295;-1:-1:-1;;;;29459:295:0:o;50538:168::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;50613:16:::1;:23:::0;;-1:-1:-1;;;;;50613:23:0;;::::1;-1:-1:-1::0;;;;;;50613:23:0;;::::1;::::0;::::1;::::0;;;50647:9:::1;:51:::0;;;;::::1;;::::0;;50538:168::o;50313:91::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;50395:1:::1;50375:17;:21:::0;50313:91::o;30163:270::-;30278:4;3530:10;30339:64;3530:10;30355:7;30392:10;30364:25;3530:10;30355:7;30364:9;:25::i;:::-;:38;;;;:::i;:::-;30339:8;:64::i;42255:886::-;42301:7;42321:21;42389:14;;;;;;;;;-1:-1:-1;;;;;42389:14:0;-1:-1:-1;;;;;42374:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42321:103;;42435:21;42503:14;;;;;;;;;-1:-1:-1;;;;;42503:14:0;-1:-1:-1;;;;;42488:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42574:10;;42435:103;;-1:-1:-1;42549:12:0;;42564:21;;-1:-1:-1;;;;;42574:10:0;42564:9;:21::i;:::-;42636:12;;42620;;;;;-1:-1:-1;;;;;42620:12:0;42604:29;;;;:15;:29;;;;;;42549:36;;-1:-1:-1;;42604:70:0;;;;-1:-1:-1;42665:9:0;;42604:70;42596:79;;;;;;42687:12;42701;42734:14;;;;;;;;;-1:-1:-1;;;;;42734:14:0;-1:-1:-1;;;;;42719:56:0;;:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;42812:14:0;;42841:19;;42686:91;;-1:-1:-1;42686:91:0;;-1:-1:-1;42812:14:0;-1:-1:-1;;;42841:19:0;;;;42837:100;;;42904:4;-1:-1:-1;;;;;42904:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;42877:48:0;;-1:-1:-1;;;;42837:100:0;42947:12;43075:6;-1:-1:-1;;;;;43075:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43067:26;;43044:6;-1:-1:-1;;;;;43044:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43032:30;;43036:26;;43032:2;:30;:::i;:::-;42963:52;43000:14;-1:-1:-1;;;;;42963:13:0;;:52;:::i;:::-;:100;;;;:::i;:::-;42962:131;;;;:::i;:::-;42947:146;-1:-1:-1;43112:20:0;-1:-1:-1;;;;;43119:13:0;;42947:146;43112:20;:::i;:::-;43104:29;;;;;;;;;42255:886;:::o;31732:220::-;31833:4;31850:72;31859:5;31874:4;31915:6;31881:31;31891:5;31906:4;31881:9;:31::i;31850:72::-;-1:-1:-1;31940:4:0;31732:220;;;;:::o;27436:177::-;-1:-1:-1;;;;;27587:18:0;27555:7;27587:18;;;;;;;;;;;;27436:177::o;22767:103::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;22832:30:::1;22859:1;22832:18;:30::i;:::-;22767:103::o:0;42001:122::-;22189:6;;42053:4;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;-1:-1:-1;42070:15:0::1;:23:::0;;-1:-1:-1;;42070:23:0::1;::::0;;;42001:122;:::o;44695:167::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44808:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;44808:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44695:167::o;41318:123::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;41371:14:::1;:21:::0;;-1:-1:-1;;41371:21:0::1;;;::::0;;41418:15:::1;41403:12;:30:::0;41318:123::o;43149:491::-;43239:6;43260;43281:7;43303;43325:6;43374:14;43403:12;43430:17;43462;43494:22;43530:9;;;;;;;;;-1:-1:-1;;;;;43530:9:0;-1:-1:-1;;;;;43530:25:0;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43359:198;;;;-1:-1:-1;43359:198:0;;-1:-1:-1;43359:198:0;-1:-1:-1;43359:198:0;;-1:-1:-1;43149:491:0;-1:-1:-1;;;;;;43149:491:0:o;45600:110::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;45680:10:::1;:22:::0;;-1:-1:-1;;;;;;45680:22:0::1;-1:-1:-1::0;;;;;45680:22:0;;;::::1;::::0;;;::::1;::::0;;45600:110::o;26364:104::-;26420:13;26453:7;26446:14;;;;;:::i;41449:301::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;41558:14:::1;::::0;-1:-1:-1;;;;;41558:14:0;;::::1;41550:22:::0;;::::1;::::0;41542:92:::1;;;::::0;-1:-1:-1;;;41542:92:0;;10478:2:1;41542: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;;41542:92:0::1;10276:421:1::0;41542:92:0::1;41645:41;41674:4;41680:5;41645:28;:41::i;:::-;41702:40;::::0;;::::1;;::::0;-1:-1:-1;;;;;41702:40:0;::::1;::::0;::::1;::::0;;;::::1;41449:301:::0;;:::o;45718:585::-;45819:14;;45781:4;;;;-1:-1:-1;;;;;45811:22:0;;;45819:14;;45811:22;:57;;;;-1:-1:-1;45851:16:0;;-1:-1:-1;;;;;45837:31:0;;;45851:16;;45837:31;;45811:57;45798:70;;45883:5;:32;;;;-1:-1:-1;;;;;;45892:23:0;;;;;;:19;:23;;;;;;;;45883:32;45879:68;;;45932:15;45917:12;:30;45879:68;-1:-1:-1;;;;;45983:25:0;;45958:22;45983:25;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;46012:23:0;;;;;;:19;:23;;;;;;;;45983:52;46066:14;;45958:77;;-1:-1:-1;;;;;;46060:20:0;;;46066:14;;46060:20;46046:11;46106:5;;:15;;;46115:6;46106:15;46149:10;;46092:29;;-1:-1:-1;46149:14:0;;;;;;46198:39;;-1:-1:-1;46224:13:0;;-1:-1:-1;;;46224:13:0;;;;46223:14;46198:39;:74;;;;;46255:17;46254:18;46198:74;:97;;;;;46289:6;46198:97;46177:118;45718:585;-1:-1:-1;;;;;;;;45718:585:0:o;30936:505::-;31056:4;3530:10;31056:4;31144:25;3530:10;31161:7;31144:9;:25::i;:::-;31117:52;;31222:15;31202:16;:35;;31180:122;;;;-1:-1:-1;;;31180:122:0;;10904:2:1;31180: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;;31180:122:0;10702:401:1;31180:122:0;31338:60;31347:5;31354:7;31382:15;31363:16;:34;31338:8;:60::i;27819:234::-;27934:4;3530:10;27995:28;3530:10;28012:2;28016:6;27995:9;:28::i;50212:93::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;50296:1:::1;50275:18;:22:::0;50212:93::o;51078:744::-;-1:-1:-1;;;;;51205:20:0;;51197:59;;;;-1:-1:-1;;;51197:59:0;;11310:2:1;51197:59:0;;;11292:21:1;11349:2;11329:18;;;11322:30;11388:28;11368:18;;;11361:56;11434:18;;51197:59:0;11108:350:1;51197:59:0;51291:16;;;51305:1;51291:16;;;;;;;;51267:21;;51291:16;;;;;;;;-1:-1:-1;;51328:16:0;;:23;;;-1:-1:-1;;;51328:23:0;;;;51267:40;;-1:-1:-1;;;;;;51328:16:0;;;;:21;;-1:-1:-1;51328:23:0;;;;;;;;;;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51318:4;51323:1;51318:7;;;;;;;;:::i;:::-;;;;;;:33;-1:-1:-1;;;;;51318:33:0;;;-1:-1:-1;;;;;51318:33:0;;;;;51380:4;51362;51367:1;51362:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51362:23:0;;;:7;;;;;;;;;;:23;51420:10;51400:31;;;;:19;:31;;;;;;;;;51396:136;;;51455:6;-1:-1:-1;;;;;51448:27:0;;51476:4;51482;51487:1;51482:7;;;;;;;;:::i;:::-;;;;;;;;;;;51448:51;;-1:-1:-1;;;;;;51448:51:0;;;;;;;-1:-1:-1;;;;;11985:15:1;;;51448:51:0;;;11967:34:1;12037:15;;12017:18;;;12010:43;12069:18;;;12062:34;;;11902:18;;51448:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51514:7;51078:744;;;:::o;51396:136::-;51568:16;;:246;;-1:-1:-1;;;51568:246:0;;-1:-1:-1;;;;;51568:16:0;;;;:67;;51657:7;;51568:246;;:16;;51739:4;;51766:6;;51788:15;;51568:246;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51186:636;51078:744;;;:::o;45288:182::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45373:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;45373:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;45428:34;;1345:41:1;;;45428:34:0::1;::::0;1318:18:1;45428:34:0::1;;;;;;;45288:182:::0;;:::o;44434:253::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;44574:4:::1;44566;44545:13;27353:12:::0;;;27265:108;44545:13:::1;:17;::::0;44561:1:::1;44545:17;:::i;:::-;44544:26;;;;:::i;:::-;44543:35;;;;:::i;:::-;44533:6;:45;;44511:131;;;::::0;-1:-1:-1;;;44511:131:0;;13540:2:1;44511:131:0::1;::::0;::::1;13522:21:1::0;13579:2;13559:18;;;13552:30;13618:34;13598:18;;;13591:62;-1:-1:-1;;;13669:18:1;;;13662:34;13713:19;;44511:131:0::1;13338:400:1::0;44511:131:0::1;44666:13;:6:::0;44675:4:::1;44666:13;:::i;:::-;44653:10;:26:::0;-1:-1:-1;44434:253:0:o;50714:173::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;50781:19:::1;::::0;-1:-1:-1;;;50781:19:0;::::1;;;:28;50773:69;;;::::0;-1:-1:-1;;;50773:69:0;;13945:2:1;50773:69:0::1;::::0;::::1;13927:21:1::0;13984:2;13964:18;;;13957:30;14023;14003:18;;;13996:58;14071:18;;50773:69:0::1;13743:352:1::0;50773:69:0::1;50853:19;:26:::0;;-1:-1:-1;;;;50853:26:0::1;-1:-1:-1::0;;;50853:26:0::1;::::0;;50714:173::o;45478:114::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;45556:16:::1;:28:::0;;-1:-1:-1;;;;;;45556:28:0::1;-1:-1:-1::0;;;;;45556:28:0;;;::::1;::::0;;;::::1;::::0;;45478:114::o;43648:498::-;22189:6;;43756:4;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;43835:6:::1;43814:13;27353:12:::0;;;27265:108;43814:13:::1;:17;::::0;43830:1:::1;43814:17;:::i;:::-;43813:28;;;;:::i;:::-;43800:9;:41;;43778:144;;;::::0;-1:-1:-1;;;43778:144:0;;14302:2:1;43778:144:0::1;::::0;::::1;14284:21:1::0;14341:2;14321:18;;;14314:30;14380:34;14360:18;;;14353:62;-1:-1:-1;;;14431:18:1;;;14424:51;14492:19;;43778:144:0::1;14100:417:1::0;43778:144:0::1;43990:4;43969:13;27353:12:::0;;;27265:108;43969:13:::1;:17;::::0;43985:1:::1;43969:17;:::i;:::-;43968:26;;;;:::i;:::-;43955:9;:39;;43933:141;;;::::0;-1:-1:-1;;;43933:141:0;;14724:2:1;43933:141:0::1;::::0;::::1;14706:21:1::0;14763:2;14743:18;;;14736:30;14802:34;14782:18;;;14775:62;-1:-1:-1;;;14853:18:1;;;14846:50;14913:19;;43933:141:0::1;14522:416:1::0;43933:141:0::1;-1:-1:-1::0;44085:19:0::1;:31:::0;;;44134:4:::1;22407:1;43648:498:::0;;;:::o;50895:175::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;50963:19:::1;::::0;-1:-1:-1;;;50963:19:0;::::1;;;:27;;50986:4;50963:27;50955:69;;;::::0;-1:-1:-1;;;50955:69:0;;15145:2:1;50955:69:0::1;::::0;::::1;15127:21:1::0;15184:2;15164:18;;;15157:30;15223:31;15203:18;;;15196:59;15272:18;;50955:69:0::1;14943:353:1::0;50955:69:0::1;51035:19;:27:::0;;-1:-1:-1;;;;51035:27:0::1;::::0;;50895:175::o;28116:201::-;-1:-1:-1;;;;;28282:18:0;;;28250:7;28282:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28116:201::o;51830:225::-;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;51881:43:::1;51899:24;51917:4;51899:9;:24::i;:::-;51881:17;:43::i;23025:238::-:0;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23128:22:0;::::1;23106:110;;;::::0;-1:-1:-1;;;23106:110:0;;15503:2:1;23106: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;;23106:110:0::1;15301:402:1::0;23106:110:0::1;23227:28;23246:8;23227:18;:28::i;50412:118::-:0;22189:6;;-1:-1:-1;;;;;22189:6:0;3530:10;22336:23;22328:68;;;;-1:-1:-1;;;22328:68:0;;;;;;;:::i;:::-;50506:15:::1;:3:::0;50514:6:::1;50506:7;:15::i;:::-;50482:14;:40:::0;-1:-1:-1;50412:118:0:o;35187:380::-;-1:-1:-1;;;;;35323:19:0;;35315:68;;;;-1:-1:-1;;;35315:68:0;;15910:2:1;35315: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;;35315:68:0;15708:400:1;35315:68:0;-1:-1:-1;;;;;35402:21:0;;35394:68;;;;-1:-1:-1;;;35394:68:0;;16315:2:1;35394: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;;35394:68:0;16113:398:1;35394:68:0;-1:-1:-1;;;;;35475:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35527:32;;160:25:1;;;35527:32:0;;133:18:1;35527:32:0;;;;;;;35187:380;;;:::o;35858:502::-;35993:24;36020:25;36030:5;36037:7;36020:9;:25::i;:::-;35993:52;;-1:-1:-1;;36060:16:0;:37;36056:297;;36160:6;36140:16;:26;;36114:117;;;;-1:-1:-1;;;36114:117:0;;16718:2:1;36114:117:0;;;16700:21:1;16757:2;16737:18;;;16730:30;16796:31;16776:18;;;16769:59;16845:18;;36114:117:0;16516:353:1;36114:117:0;36275:51;36284:5;36291:7;36319:6;36300:16;:25;36275:8;:51::i;:::-;35982:378;35858:502;;;:::o;46311:3759::-;-1:-1:-1;;;;;46459:25:0;;46435:21;46459:25;;;:19;:25;;;;;;;;;:65;;-1:-1:-1;;;;;;46501:23:0;;;;;;:19;:23;;;;;;;;46459:65;46435:89;-1:-1:-1;;;;;;46545:18:0;;46537:68;;;;-1:-1:-1;;;46537:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46624:16:0;;46616:64;;;;-1:-1:-1;;;46616:64:0;;;;;;;:::i;:::-;46697:6;46707:1;46697:11;46693:93;;46725:28;46741:4;46747:2;46751:1;46725:15;:28::i;46693:93::-;46819:14;;46798:10;;-1:-1:-1;;;;;46811:22:0;;;46819:14;;46811:22;:75;;;;-1:-1:-1;;;;;;46851:35:0;;;;;;:31;:35;;;;;;;;46850:36;46811:75;46917:14;;46798:88;;-1:-1:-1;46897:11:0;;-1:-1:-1;;;;;46911:20:0;;;46917:14;;46911:20;:75;;;;-1:-1:-1;;;;;;46949:37:0;;;;;;:31;:37;;;;;;;;46948:38;46911:75;46897:89;;46997:16;47024:7;22189:6;;-1:-1:-1;;;;;22189:6:0;;22116:87;47024:7;-1:-1:-1;;;;;47016:15:0;:4;-1:-1:-1;;;;;47016:15:0;;:32;;;-1:-1:-1;22189:6:0;;-1:-1:-1;;;;;47035:13:0;;;22189:6;;47035:13;47016:32;46997:51;-1:-1:-1;47059:11:0;-1:-1:-1;;;;;47073:16:0;;;;:41;;-1:-1:-1;;;;;;47093:21:0;;47107:6;47093:21;47073:41;47059:55;;47125:17;47145:11;:21;;;;47160:6;47145:21;:38;;;-1:-1:-1;47170:13:0;;-1:-1:-1;;;47170:13:0;;;;47145:38;47208:15;;47125:58;;-1:-1:-1;47208:15:0;;:32;;;;;47228:12;47227:13;47208:32;47204:1076;;;47283:14;;;;;;;;:34;;;47301:16;47283:34;47257:118;;;;-1:-1:-1;;;47257:118:0;;17886:2:1;47257:118:0;;;17868:21:1;17925:2;17905:18;;;17898:30;-1:-1:-1;;;17944:18:1;;;17937:52;18006:18;;47257:118:0;17684:346:1;47257:118:0;47394:5;47390:879;;;47460:21;;47450:6;:31;;47420:158;;;;-1:-1:-1;;;47420:158:0;;18237:2:1;47420: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;;47420:158:0;18035:417:1;47420:158:0;47653:10;;47636:13;47646:2;47636:9;:13::i;:::-;47627:22;;:6;:22;:::i;:::-;:36;;47597:129;;;;-1:-1:-1;;;47597:129:0;;18659:2:1;47597:129:0;;;18641:21:1;18698:2;18678:18;;;18671:30;-1:-1:-1;;;18717:18:1;;;18710:49;18776:18;;47597:129:0;18457:343:1;47597:129:0;47390:879;;;47752:6;47748:521;;-1:-1:-1;;;;;47995:35:0;;;;;;:31;:35;;;;;;;;47994:36;:95;;;;-1:-1:-1;;;;;;48052:37:0;;;;;;:31;:37;;;;;;;;48051:38;47994:95;47972:297;;;48180:10;;48163:13;48173:2;48163:9;:13::i;:::-;48154:22;;:6;:22;:::i;:::-;:36;;48124:129;;;;-1:-1:-1;;;48124:129:0;;18659:2:1;48124:129:0;;;18641:21:1;18698:2;18678:18;;;18671:30;-1:-1:-1;;;18717:18:1;;;18710:49;18776:18;;48124:129:0;18457:343:1;48124:129:0;-1:-1:-1;;;;;48308:31:0;;;;;;:25;:31;;;;;;;;48304:271;;;-1:-1:-1;;;;;48360:19:0;;;;;;:15;:19;;;;;;:24;;48356:102;;-1:-1:-1;;;;;48405:19:0;;;;;;:15;:19;;;;;48427:15;48405:37;;48356:102;48304:271;;;48495:13;;-1:-1:-1;;;48495:13:0;;;;48490:74;;48529:12;:19;;-1:-1:-1;;;;;;48529:19:0;;-1:-1:-1;;;;;48529:19:0;;;;;;48490:74;48592:13;;-1:-1:-1;;;48592:13:0;;;;48591:14;:63;;;;-1:-1:-1;;;;;;48623:31:0;;;;;;:25;:31;;;;;;;;48622:32;48591:63;:106;;;;-1:-1:-1;;;;;;48672:25:0;;;;;;:19;:25;;;;;;;;48671:26;48591:106;:147;;;;-1:-1:-1;;;;;;48715:23:0;;;;;;:19;:23;;;;;;;;48714:24;48591:147;48587:536;;;48755:28;48786:24;48804:4;48786:9;:24::i;:::-;48864:19;;48755:55;;-1:-1:-1;48840:43:0;;;48902:17;:15;:17::i;:::-;:45;;;;;48940:7;48902:45;:84;;;;;48970:16;48969:17;48902:84;48898:214;;;49007:13;:20;;-1:-1:-1;;;;49007:20:0;-1:-1:-1;;;49007:20:0;;;49046:10;:8;:10::i;:::-;49075:13;:21;;-1:-1:-1;;;;49075:21:0;;;48898:214;48740:383;;48587:536;49135:12;49150:21;49162:4;49168:2;49150:11;:21::i;:::-;49135:36;;49186:7;49182:837;;;49226:10;;49271:13;;49299:151;;;;49351:18;;49338:10;;:31;;;;:::i;:::-;49330:39;;49416:18;;49400:13;;:34;;;;:::i;:::-;49388:46;;49299:151;49468:5;49464:148;;;49515:17;;49502:10;;:30;;;;:::i;:::-;49494:38;;49579:17;;49563:13;;:33;;;;:::i;:::-;49551:45;;49464:148;49626:12;49641:26;49663:3;49641:17;:6;49652:5;49641:10;:17::i;:::-;:21;;:26::i;:::-;49626:41;;49730:5;49713:13;;49706:4;:20;;;;:::i;:::-;49705:30;;;;:::i;:::-;49682:19;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;49794:5:0;;-1:-1:-1;49774:16:0;49781:9;49774:4;:16;:::i;:::-;49773:26;;;;:::i;:::-;49750:19;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;49847:15:0;;49866:5;;49840:22;;:4;:22;:::i;:::-;49839:32;;;;:::i;:::-;49814:21;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;49892:8:0;;49888:91;;49921:42;49937:4;49951;49958;49921:15;:42::i;:::-;49993:14;50003:4;49993:14;;:::i;:::-;;;49195:824;;;49182:837;50029:33;50045:4;50051:2;50055:6;50029:15;:33::i;:::-;46424:3646;;;;;;;46311:3759;;;:::o;23423:191::-;23516:6;;;-1:-1:-1;;;;;23533:17:0;;;-1:-1:-1;;;;;;23533:17:0;;;;;;;23566:40;;23516:6;;;23533:17;23516:6;;23566:40;;23497:16;;23566:40;23486:128;23423:191;:::o;41758:235::-;-1:-1:-1;;;;;41841:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;41841:39:0;;;;;;;41891:38;41841:31;:39;41891:25;:38::i;52244:479::-;52335:16;;;52349:1;52335:16;;;;;;;;52311:21;;52335:16;;;;;;;;;;-1:-1:-1;52335:16:0;52311:40;;52380:4;52362;52367:1;52362:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52362:23:0;;;:7;;;;;;;;;;:23;;;;52406:16;;:23;;;-1:-1:-1;;;52406:23:0;;;;:16;;;;;:21;;:23;;;;;52362:7;;52406:23;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52396:4;52401:1;52396:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52396:33:0;;;:7;;;;;;;;;:33;52474:16;;52442:63;;52459:4;;52474:16;52493:11;52442:8;:63::i;:::-;52518:16;;:197;;-1:-1:-1;;;52518:197:0;;-1:-1:-1;;;;;52518:16:0;;;;:67;;:197;;52600:11;;52518:16;;52642:4;;52669;;52689:15;;52518:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52300:423;52244:479;:::o;17745:98::-;17803:7;17830:5;17834:1;17830;:5;:::i;:::-;17823:12;17745:98;-1:-1:-1;;;17745:98:0:o;32431:708::-;-1:-1:-1;;;;;32562:18:0;;32554:68;;;;-1:-1:-1;;;32554:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32641:16:0;;32633:64;;;;-1:-1:-1;;;32633:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32783:15:0;;32761:19;32783:15;;;;;;;;;;;32831:21;;;;32809:109;;;;-1:-1:-1;;;32809:109:0;;19727:2:1;32809: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;;32809:109:0;19525:402:1;32809:109:0;-1:-1:-1;;;;;32954:15:0;;;:9;:15;;;;;;;;;;;32972:20;;;32954:38;;33014:13;;;;;;;;:23;;32986:6;;32954:9;33014:23;;32986:6;;33014:23;:::i;:::-;;;;;;;;33070:2;-1:-1:-1;;;;;33055:26:0;33064:4;-1:-1:-1;;;;;33055:26:0;;33074:6;33055:26;;;;160:25:1;;148:2;133:18;;14:177;33055:26:0;;;;;;;;33094:37;44870:410;42131:116;42181:4;42223:1;42205:15;:13;:15::i;:::-;:19;:34;;-1:-1:-1;42234:5:0;;42131:116::o;42205:34::-;-1:-1:-1;42227:4:0;;42131:116::o;53102:1796::-;53141:23;53167:24;53185:4;53167:9;:24::i;:::-;53141:50;;53202:25;53288:21;;53252:19;;53230;;:41;;;;:::i;:::-;:79;;;;:::i;:::-;53202:107;-1:-1:-1;53324:20:0;;;:46;;-1:-1:-1;53348:22:0;;53324:46;53320:59;;;53372:7;;53102:1796::o;53320:59::-;53411:19;;53393:15;:37;53389:107;;;53465:19;;53447:37;;53389:107;53506:23;53620:1;53587:17;53551:19;;53533:15;:37;;;;:::i;:::-;53532:72;;;;:::i;:::-;:89;;;;:::i;:::-;53506:115;-1:-1:-1;53632:26:0;53661:36;:15;53506:115;53661:19;:36::i;:::-;53632:65;-1:-1:-1;53736:21:0;53768:37;53632:65;53768:17;:37::i;:::-;53816:18;53837:44;:21;53863:17;53837:25;:44::i;:::-;53816:65;;53892:23;53918:82;53972:17;53918:35;53933:19;;53918:10;:14;;:35;;;;:::i;:82::-;53892:108;;54011:25;54039:84;54095:17;54039:37;54054:21;;54039:10;:14;;:37;;;;:::i;:84::-;54011:112;-1:-1:-1;54134:23:0;54011:112;54160:28;54173:15;54160:10;:28;:::i;:::-;:48;;;;:::i;:::-;54134:74;;54243:1;54225:15;:19;:42;;;;;54266:1;54248:15;:19;54225:42;54221:280;;;54284:47;54298:15;54315;54284:13;:47::i;:::-;54455:19;;54351:138;;;20134:25:1;;;20190:2;20175:18;;20168:34;;;20218:18;;;20211:34;;;;54351:138:0;;;;;;20122:2:1;54351:138:0;;;54221:280;54535:1;54513:19;:23;;;54547:19;:23;;;54581:21;:25;;;54659:16;;54651:58;;-1:-1:-1;;;;;54659:16:0;;;;54689:15;;54535:1;54651:58;54535:1;54651:58;54689:15;54659:16;54651:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54619:90;;;54728:20;54720:29;;;;;;54802:10;;54794:54;;54761:27;;-1:-1:-1;;;;;54802:10:0;;54826:17;;54761:27;54794:54;54761:27;54794:54;54826:17;54802:10;54794:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54760:88;;;54867:22;54859:31;;;;;;53130:1768;;;;;;;;;;;53102:1796::o;18144:98::-;18202:7;18229:5;18233:1;18229;:5;:::i;17388:98::-;17446:7;17473:5;17477:1;17473;:5;:::i;52731:363::-;52845:16;;52813:63;;52830:4;;-1:-1:-1;;;;;52845:16:0;52864:11;52813:8;:63::i;:::-;52887:16;;-1:-1:-1;;;;;52887:16:0;:32;52927:9;52960:4;52980:11;52887:16;;53038:7;22189:6;;-1:-1:-1;;;;;22189:6:0;;22116:87;53038:7;52887:199;;;;;;-1:-1:-1;;;;;;52887:199:0;;;-1:-1:-1;;;;;20615:15:1;;;52887:199:0;;;20597:34:1;20647:18;;;20640:34;;;;20690:18;;;20683:34;;;;20733:18;;;20726:34;20797:15;;;20776:19;;;20769:44;53060:15:0;20829:19:1;;;20822:35;20531:19;;52887: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;11595:127::-;11656:10;11651:3;11647:20;11644:1;11637:31;11687:4;11684:1;11677:15;11711:4;11708:1;11701:15;12107:245;12174:6;12227:2;12215:9;12206:7;12202:23;12198:32;12195:52;;;12243:1;12240;12233:12;12195:52;12275:9;12269:16;12294:28;12316:5;12294:28;:::i;12357:461::-;12410:3;12448:5;12442:12;12475:6;12470:3;12463:19;12501:4;12530:2;12525:3;12521:12;12514:19;;12567:2;12560:5;12556:14;12588:1;12598:195;12612:6;12609:1;12606:13;12598:195;;;12677:13;;-1:-1:-1;;;;;12673:39:1;12661:52;;12733:12;;;;12768:15;;;;12709:1;12627:9;12598:195;;;-1:-1:-1;12809:3:1;;12357:461;-1:-1:-1;;;;;12357:461:1:o;12823:510::-;13094:6;13083:9;13076:25;13137:3;13132:2;13121:9;13117:18;13110:31;13057:4;13158:57;13210:3;13199:9;13195:19;13187:6;13158:57;:::i;:::-;-1:-1:-1;;;;;13251:32:1;;;;13246:2;13231:18;;13224:60;-1:-1:-1;13315:2:1;13300:18;13293:34;13150:65;12823:510;-1:-1:-1;;12823: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://9a75492bc3cd8b60d0a259fc794fd72a3fb8d823d3b1a8f1dd3f54be550a81ef
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.