ETH Price: $2,357.41 (+1.17%)

Token

Tatsumaki Inu (TATSUMAKI)
 

Overview

Max Total Supply

10,000,000,000 TATSUMAKI

Holders

80

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
4,203,864.75148358 TATSUMAKI

Value
$0.00
0x53dbfcb334aa7e7e07bee9843297ba0f22261968
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:
Tastumaki

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-06
*/

pragma solidity ^0.6.12;
 
// SPDX-License-Identifier: Unlicensed
interface IERC20 {
    function totalSupply() external view returns (uint256);
 
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
 
    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);
 
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
 
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}
 
/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
 
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
 
        return c;
    }
 
    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
 
        return c;
    }
 
    /**
     * @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) {
        // 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 0;
        }
 
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
 
        return c;
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
 
        return c;
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
 
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
 
/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }
 
    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );
 
        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }
 
    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }
 
    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }
 
    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }
 
    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        return _functionCallWithValue(target, data, value, errorMessage);
    }
 
    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");
 
        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
 
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
 
/**
 * @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.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;
 
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
 
    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }
 
    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }
 
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(
            _previousOwner == msg.sender,
            "You don't have permission to unlock"
        );
        require(now > _lockTime, "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}
 
// 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 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;
}
 
contract Tastumaki is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;
 
    mapping(address => uint256) private _rOwned;
    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) private _allowances;
 
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) public _isExcludedFromMax;
    mapping(address => bool) private _isExcluded;
    address[] private _excluded;
 
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 10 * 10**9 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
 
    address private _devAddress = 0x3aD5062f82BDB336c316E2c67829FE7FfaDd7424;
 
    string private _name = "Tatsumaki Inu";
    string private _symbol = "TATSUMAKI";
    uint8 private _decimals = 9;
 
    uint256 public _taxFee = 1;
    uint256 private _previousTaxFee = _taxFee;
 
    uint256 public _sellTaxFee = 1;
    uint256 private _previousSellTaxFee = _taxFee;
 
    uint256 public _liquidityFee = 0;
    uint256 private _previousLiquidityFee = _liquidityFee;
 
    uint256 public _sellLiquidityFee = 0;
    uint256 private _previousSellLiquidityFee = _liquidityFee;
 
    uint256 public _devFee = 5;
    uint256 private _previousDevFee = _devFee;
 
    uint256 public _sellDevFee = 5;
    uint256 private _previousSellDevFee = _devFee;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
 
    uint256 public _maxTxAmount = 1 * 10**8 * 10**9;
    uint256 public _maxWalletToken = 2 * 10**8 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 50 * 10**7 * 10**9;
 
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
 
    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
 
    constructor() public {
        _rOwned[_msgSender()] = _rTotal;
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
 
        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
 
        // exclude owner, dev wallet, and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_devAddress] = true;
 
        _isExcludedFromMax[owner()] = true;
        _isExcludedFromMax[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true;
 
        emit Transfer(address(0), _msgSender(), _tTotal);
    }
 
    function name() public view returns (string memory) {
        return _name;
    }
 
    function symbol() public view returns (string memory) {
        return _symbol;
    }
 
    function decimals() public view returns (uint8) {
        return _decimals;
    }
 
    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }
 
    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }
 
    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    function allowance(address owner, address spender)
        public
        view
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }
 
    function approve(address spender, uint256 amount)
        public
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }
 
    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }
 
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }
 
    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }
 
    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
 
    function devAddress() public view returns (address) {
        return _devAddress;
    }
 
    function reflectionFromToken(uint256 tAmount, bool deductTransferFee)
        public
        view
        returns (uint256)
    {
        require(tAmount <= _tTotal, "Amount must be less than supply");
 
        (, uint256 tFee, uint256 tLiquidity, uint256 tDev) = _getTValues(
            tAmount,
            false
        );
        (uint256 rAmount, uint256 rTransferAmount, ) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tDev,
            _getRate()
        );
 
        if (!deductTransferFee) {
            return rAmount;
        } else {
            return rTransferAmount;
        }
    }
 
    function tokenFromReflection(uint256 rAmount)
        public
        view
        returns (uint256)
    {
        require(
            rAmount <= _rTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }
 
    function excludeFromReward(address account) public onlyOwner {
        require(!_isExcluded[account], "Account is already excluded");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }
 
    function includeInReward(address account) external onlyOwner {
        require(_isExcluded[account], "Account is not excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
 
    function _transferBothExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tDev
        ) = _getTValues(tAmount, recipient == uniswapV2Pair);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tDev,
            _getRate()
        );
 
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeDevFee(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
 
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
 
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
 
    function excludeFromMax(address account) public onlyOwner {
        _isExcludedFromMax[account] = true;
    }
 
    function includeInMax(address account) public onlyOwner {
        _isExcludedFromMax[account] = false;
    }
 
    function setTheTaxFeePercent(uint256 taxFee) external onlyOwner {
        _taxFee = taxFee;
    }
 
    function setTheSellTaxFeePercent(uint256 taxFee) external onlyOwner {
        _sellTaxFee = taxFee;
    }
 
    function setTheLiquidityFeePercent(uint256 liquidityFee)
        external
        onlyOwner
    {
        _liquidityFee = liquidityFee;
    }
 
    function setTheSellLiquidityFeePercent(uint256 liquidityFee)
        external
        onlyOwner
    {
        _sellLiquidityFee = liquidityFee;
    }
 
    function setTheDevFeePercent(uint256 devFee) external onlyOwner {
        _devFee = devFee;
    }
 
    function setTheSellDevFeePercent(uint256 devFee) external onlyOwner {
        _sellDevFee = devFee;
    }
 
    function setMultipleFeePercent(
        uint256 taxFee,
        uint256 liquidityFee,
        uint256 devFee
    ) external onlyOwner {
        _taxFee = taxFee;
        _liquidityFee = liquidityFee;
        _devFee = devFee;
    }
 
    function setMultipleExtFeePercent(
        uint256 taxFee,
        uint256 liquidityFee,
        uint256 devFee
    ) external onlyOwner {
        _sellTaxFee = taxFee;
        _sellLiquidityFee = liquidityFee;
        _sellDevFee = devFee;
    }
 
    function setTheMaxTrans(uint256 maxTxPercent) external onlyOwner {
        require(maxTxPercent > 0, "Cannot set to 0");
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**2);
    }
 
    function setTheMaxWal(uint256 maxWalletPercent) external onlyOwner {
        require(maxWalletPercent > 0, "Cannot set to 0");
        _maxWalletToken = _tTotal.mul(maxWalletPercent).div(10**2);
    }
 
    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
 
    //to recieve ETH from uniswapV2Router when swapping
    receive() external payable {}
 
    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }
 
    function _getTValues(uint256 tAmount, bool selling)
        public
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tFee = calculateTaxFee(tAmount, selling);
        uint256 tLiquidity = calculateLiquidityFee(tAmount, selling);
        uint256 tDev = calculateDevFee(tAmount, selling);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        tTransferAmount = tTransferAmount.sub(tDev);
 
        return (tTransferAmount, tFee, tLiquidity, tDev);
    }
 
    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tLiquidity,
        uint256 tDev,
        uint256 currentRate
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rDev = tDev.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub(rDev);
        return (rAmount, rTransferAmount, rFee);
    }
 
    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }
 
    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (
                _rOwned[_excluded[i]] > rSupply ||
                _tOwned[_excluded[i]] > tSupply
            ) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
 
    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate = _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }
 
    function _takeDevFee(uint256 tDev) private {
        uint256 currentRate = _getRate();
        uint256 rDev = tDev.mul(currentRate);
        _rOwned[_devAddress] = _rOwned[_devAddress].add(rDev);
        if (_isExcluded[_devAddress])
            _tOwned[_devAddress] = _tOwned[_devAddress].add(tDev);
    }
 
    function calculateTaxFee(uint256 _amount, bool selling)
        private
        view
        returns (uint256)
    {
        uint256 tFee = selling ? _sellTaxFee : _taxFee;
        return _amount.mul(tFee).div(10**2);
    }
 
    function calculateLiquidityFee(uint256 _amount, bool selling)
        private
        view
        returns (uint256)
    {
        uint256 lFee = selling ? _sellLiquidityFee : _liquidityFee;
        return _amount.mul(lFee).div(10**2);
    }
 
    function calculateDevFee(uint256 _amount, bool selling)
        private
        view
        returns (uint256)
    {
        uint256 dFee = selling ? _sellDevFee : _devFee;
        return _amount.mul(dFee).div(10**2);
    }
 
    function removeAllFee() private {
        if (_taxFee == 0 && _liquidityFee == 0) return;
 
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousDevFee = _devFee;
 
        _previousSellTaxFee = _sellTaxFee;
        _previousSellLiquidityFee = _sellLiquidityFee;
        _previousSellDevFee = _sellDevFee;
 
        _taxFee = 0;
        _liquidityFee = 0;
        _devFee = 0;
 
        _sellTaxFee = 0;
        _sellLiquidityFee = 0;
        _sellDevFee = 0;
    }
 
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _devFee = _previousDevFee;
 
        _sellTaxFee = _previousSellTaxFee;
        _sellLiquidityFee = _previousSellLiquidityFee;
        _sellDevFee = _previousSellDevFee;
    }
 
    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }
 
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if (!_isExcludedFromMax[from] && !_isExcludedFromMax[to])
            require(
                amount <= _maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );
 
        if (!_isExcludedFromMax[to] && to != uniswapV2Pair) {
            uint256 heldTokens = balanceOf(to);
            require(
                (heldTokens + amount) <= _maxWalletToken,
                "Total Holding is currently limited, you can not buy that much."
            );
        }
 
        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
 
        if (contractTokenBalance >= _maxTxAmount) {
            contractTokenBalance = _maxTxAmount;
        }
 
        bool overMinTokenBalance = contractTokenBalance >=
            numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
 
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
 
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }
 
        _tokenTransfer(from, to, amount, takeFee);
    }
 
    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);
 
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;
 
        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered
 
        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);
 
        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
 
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }
 
    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
 
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }
 
    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (!takeFee) removeAllFee();
 
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
 
        if (!takeFee) restoreAllFee();
    }
 
    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tDev
        ) = _getTValues(tAmount, recipient == uniswapV2Pair);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tDev,
            _getRate()
        );
 
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeDevFee(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
 
    function _transferToExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tDev
        ) = _getTValues(tAmount, recipient == uniswapV2Pair);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tDev,
            _getRate()
        );
 
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeDevFee(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
 
    function _transferFromExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tDev
        ) = _getTValues(tAmount, recipient == uniswapV2Pair);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tDev,
            _getRate()
        );
 
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeDevFee(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":"_devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"selling","type":"bool"}],"name":"_getTValues","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromMax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"setMultipleExtFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"setMultipleFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"setTheDevFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setTheLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setTheMaxTrans","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletPercent","type":"uint256"}],"name":"setTheMaxWal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"setTheSellDevFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setTheSellLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTheSellTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTheTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

678ac7230489e80000600a5567693fcf03e3d7ffff19600b55600d80546001600160a01b031916733ad5062f82bdb336c316e2c67829fe7ffadd742417815561010060405260c08190526c54617473756d616b6920496e7560981b60e09081526200006e91600e9190620004a7565b506040805180820190915260098082526854415453554d414b4960b81b6020909201918252620000a191600f91620004a7565b506010805460ff191660091790556001601181905560128190556013819055601455600060158190556016819055601781905560185560056019819055601a819055601b819055601c55601d805461ff00191661010017905567016345785d8a0000601e556702c68af0bb140000601f556706f05b59d3b200006020553480156200012b57600080fd5b5060006200013862000494565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600b54600360006200019362000494565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200020a57600080fd5b505afa1580156200021f573d6000803e3d6000fd5b505050506040513d60208110156200023657600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200028757600080fd5b505afa1580156200029c573d6000803e3d6000fd5b505050506040513d6020811015620002b357600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200030657600080fd5b505af11580156200031b573d6000803e3d6000fd5b505050506040513d60208110156200033257600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200035f62000498565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526006909352818320805485166001908117909155600d54909116835290822080549093168117909255600790620003c662000498565b6001600160a01b031681526020808201929092526040016000908120805493151560ff19948516179055737a250d5630b4cf539739df2c5dacb4c659f2488d9052600790527ffd21a1ac9a14dff647460ce8ad2ccecb794a59a4cfbb8678b1f9900a6a99551f805490911660011790556200044062000494565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040518082815260200191505060405180910390a35062000543565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004ea57805160ff19168380011785556200051a565b828001600101855582156200051a579182015b828111156200051a578251825591602001919060010190620004fd565b50620005289291506200052c565b5090565b5b808211156200052857600081556001016200052d565b60805160601c60a05160601c61345f620005a46000398061118f528061213b52806122025280612cbb5280612e305280612f205280612fab525080610d2452806129b25280612a6a5280612a915280612b775280612bde525061345f6000f3fe60806040526004361061031e5760003560e01c806378109e54116101ab578063aa45026b116100f7578063c9ea304c11610095578063ea2f0b371161006f578063ea2f0b3714610b48578063f2fde38b14610b7b578063f4b8c14d14610bae578063fddf33af14610be157610325565b8063c9ea304c14610aad578063dd46706414610ae3578063dd62ed3e14610b0d57610325565b8063b6cee10e116100d1578063b6cee10e14610a0f578063c49b9a8014610a39578063c5495c0014610a65578063c9cf778914610a9857610325565b8063aa45026b146109bb578063ad85cd98146109d0578063b6c52324146109fa57610325565b80638da5cb5b11610164578063a114f9241161013e578063a114f92414610901578063a457c2d714610934578063a69df4b51461096d578063a9059cbb1461098257610325565b80638da5cb5b146108ad57806395d89b41146108c25780639944a998146108d757610325565b806378109e54146107b95780637d1db4a5146107ce5780637e89ad4c146107e357806388790a681461080d57806388e9b5ac1461082257806388f820201461087a57610325565b80633b124fe71161026a57806352390c021161022357806362042091116101fd57806362042091146107325780636bc87c3a1461075c57806370a0823114610771578063715018a6146107a457610325565b806352390c02146106965780635342acb4146106c957806361e134b2146106fc57610325565b80633b124fe7146105c8578063437823ec146105dd5780634549b0391461061057806349bd5a5e146106425780634a74bb02146106575780634ae738501461066c57610325565b8063200a692d116102d7578063313ce567116102b1578063313ce5671461051c5780633685d41914610547578063395093511461057a5780633ad10ef6146105b357610325565b8063200a692d1461049a57806323b872dd146104af5780632d838119146104f257610325565b806306fdde031461032a578063095b207f146103b4578063095ea7b3146103e057806313114a9d1461042d5780631694505e1461045457806318160ddd1461048557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610c0b565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610379578181015183820152602001610361565b50505050905090810190601f1680156103a65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103c057600080fd5b506103de600480360360208110156103d757600080fd5b5035610ca1565b005b3480156103ec57600080fd5b506104196004803603604081101561040357600080fd5b506001600160a01b038135169060200135610cfe565b604080519115158252519081900360200190f35b34801561043957600080fd5b50610442610d1c565b60408051918252519081900360200190f35b34801561046057600080fd5b50610469610d22565b604080516001600160a01b039092168252519081900360200190f35b34801561049157600080fd5b50610442610d46565b3480156104a657600080fd5b50610442610d4c565b3480156104bb57600080fd5b50610419600480360360608110156104d257600080fd5b506001600160a01b03813581169160208101359091169060400135610d52565b3480156104fe57600080fd5b506104426004803603602081101561051557600080fd5b5035610dd9565b34801561052857600080fd5b50610531610e3b565b6040805160ff9092168252519081900360200190f35b34801561055357600080fd5b506103de6004803603602081101561056a57600080fd5b50356001600160a01b0316610e44565b34801561058657600080fd5b506104196004803603604081101561059d57600080fd5b506001600160a01b038135169060200135611005565b3480156105bf57600080fd5b50610469611053565b3480156105d457600080fd5b50610442611062565b3480156105e957600080fd5b506103de6004803603602081101561060057600080fd5b50356001600160a01b0316611068565b34801561061c57600080fd5b506104426004803603604081101561063357600080fd5b508035906020013515156110e4565b34801561064e57600080fd5b5061046961118d565b34801561066357600080fd5b506104196111b1565b34801561067857600080fd5b506103de6004803603602081101561068f57600080fd5b50356111bf565b3480156106a257600080fd5b506103de600480360360208110156106b957600080fd5b50356001600160a01b031661121c565b3480156106d557600080fd5b50610419600480360360208110156106ec57600080fd5b50356001600160a01b03166113a2565b34801561070857600080fd5b506103de6004803603606081101561071f57600080fd5b50803590602081013590604001356113c0565b34801561073e57600080fd5b506103de6004803603602081101561075557600080fd5b5035611426565b34801561076857600080fd5b50610442611483565b34801561077d57600080fd5b506104426004803603602081101561079457600080fd5b50356001600160a01b0316611489565b3480156107b057600080fd5b506103de6114eb565b3480156107c557600080fd5b5061044261157b565b3480156107da57600080fd5b50610442611581565b3480156107ef57600080fd5b506103de6004803603602081101561080657600080fd5b5035611587565b34801561081957600080fd5b5061044261164c565b34801561082e57600080fd5b506108546004803603604081101561084557600080fd5b50803590602001351515611652565b604080519485526020850193909352838301919091526060830152519081900360800190f35b34801561088657600080fd5b506104196004803603602081101561089d57600080fd5b50356001600160a01b03166116b5565b3480156108b957600080fd5b506104696116d3565b3480156108ce57600080fd5b5061033f6116e2565b3480156108e357600080fd5b506103de600480360360208110156108fa57600080fd5b5035611743565b34801561090d57600080fd5b506103de6004803603602081101561092457600080fd5b50356001600160a01b03166117a0565b34801561094057600080fd5b506104196004803603604081101561095757600080fd5b506001600160a01b038135169060200135611819565b34801561097957600080fd5b506103de611881565b34801561098e57600080fd5b50610419600480360360408110156109a557600080fd5b506001600160a01b03813516906020013561196f565b3480156109c757600080fd5b50610442611983565b3480156109dc57600080fd5b506103de600480360360208110156109f357600080fd5b5035611989565b348015610a0657600080fd5b506104426119e6565b348015610a1b57600080fd5b506103de60048036036020811015610a3257600080fd5b50356119ec565b348015610a4557600080fd5b506103de60048036036020811015610a5c57600080fd5b50351515611a49565b348015610a7157600080fd5b5061041960048036036020811015610a8857600080fd5b50356001600160a01b0316611af0565b348015610aa457600080fd5b50610442611b05565b348015610ab957600080fd5b506103de60048036036060811015610ad057600080fd5b5080359060208101359060400135611b0b565b348015610aef57600080fd5b506103de60048036036020811015610b0657600080fd5b5035611b71565b348015610b1957600080fd5b5061044260048036036040811015610b3057600080fd5b506001600160a01b0381358116916020013516611c0f565b348015610b5457600080fd5b506103de60048036036020811015610b6b57600080fd5b50356001600160a01b0316611c3a565b348015610b8757600080fd5b506103de60048036036020811015610b9e57600080fd5b50356001600160a01b0316611cb3565b348015610bba57600080fd5b506103de60048036036020811015610bd157600080fd5b50356001600160a01b0316611d99565b348015610bed57600080fd5b506103de60048036036020811015610c0457600080fd5b5035611e15565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c975780601f10610c6c57610100808354040283529160200191610c97565b820191906000526020600020905b815481529060010190602001808311610c7a57829003601f168201915b5050505050905090565b610ca9611ed4565b6000546001600160a01b03908116911614610cf9576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601355565b6000610d12610d0b611ed4565b8484611ed8565b5060015b92915050565b600c5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a5490565b60135481565b6000610d5f848484611fc4565b610dcf84610d6b611ed4565b610dca856040518060600160405280602881526020016132ca602891396001600160a01b038a16600090815260056020526040812090610da9611ed4565b6001600160a01b0316815260208101919091526040016000205491906122bc565b611ed8565b5060019392505050565b6000600b54821115610e1c5760405162461bcd60e51b815260040180806020018281038252602a81526020018061320f602a913960400191505060405180910390fd5b6000610e26612353565b9050610e328382612376565b9150505b919050565b60105460ff1690565b610e4c611ed4565b6000546001600160a01b03908116911614610e9c576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff16610f09576040805162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c75646564000000000000000000604482015290519081900360640190fd5b60005b60095481101561100157816001600160a01b031660098281548110610f2d57fe5b6000918252602090912001546001600160a01b03161415610ff957600980546000198101908110610f5a57fe5b600091825260209091200154600980546001600160a01b039092169183908110610f8057fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600890925220805460ff191690556009805480610fd257fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611001565b600101610f0c565b5050565b6000610d12611012611ed4565b84610dca8560056000611023611ed4565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906123bf565b600d546001600160a01b031690565b60115481565b611070611ed4565b6000546001600160a01b039081169116146110c0576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600a5483111561113d576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b600080600061114d866000611652565b9350935093505060008061116b88868686611166612353565b612419565b50915091508661118157509350610d1692505050565b9450610d169350505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601d54610100900460ff1681565b6111c7611ed4565b6000546001600160a01b03908116911614611217576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601555565b611224611ed4565b6000546001600160a01b03908116911614611274576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff16156112e2576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561133c576001600160a01b03811660009081526003602052604090205461132290610dd9565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b6113c8611ed4565b6000546001600160a01b03908116911614611418576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601392909255601755601b55565b61142e611ed4565b6000546001600160a01b0390811691161461147e576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601955565b60155481565b6001600160a01b03811660009081526008602052604081205460ff16156114c957506001600160a01b038116600090815260046020526040902054610e36565b6001600160a01b038216600090815260036020526040902054610d1690610dd9565b6114f3611ed4565b6000546001600160a01b03908116911614611543576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613312833981519152908390a3600080546001600160a01b0319169055565b601f5481565b601e5481565b61158f611ed4565b6000546001600160a01b039081169116146115df576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b60008111611626576040805162461bcd60e51b815260206004820152600f60248201526e043616e6e6f742073657420746f203608c1b604482015290519081900360640190fd5b611646606461164083600a5461247b90919063ffffffff16565b90612376565b601f5550565b60175481565b600080600080600061166487876124d4565b905060006116728888612501565b905060006116808989612524565b90506000611698836116928c87612547565b90612547565b90506116a48183612547565b9a9399509197509550909350505050565b6001600160a01b031660009081526008602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c975780601f10610c6c57610100808354040283529160200191610c97565b61174b611ed4565b6000546001600160a01b0390811691161461179b576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601b55565b6117a8611ed4565b6000546001600160a01b039081169116146117f8576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b6000610d12611826611ed4565b84610dca856040518060600160405280602581526020016134056025913960056000611850611ed4565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906122bc565b6001546001600160a01b031633146118ca5760405162461bcd60e51b81526004018080602001828103825260238152602001806133e26023913960400191505060405180910390fd5b6002544211611920576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061331283398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610d1261197c611ed4565b8484611fc4565b60195481565b611991611ed4565b6000546001600160a01b039081169116146119e1576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601155565b60025490565b6119f4611ed4565b6000546001600160a01b03908116911614611a44576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601755565b611a51611ed4565b6000546001600160a01b03908116911614611aa1576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601d8054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60076020526000908152604090205460ff1681565b601b5481565b611b13611ed4565b6000546001600160a01b03908116911614611b63576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601192909255601555601955565b611b79611ed4565b6000546001600160a01b03908116911614611bc9576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613312833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611c42611ed4565b6000546001600160a01b03908116911614611c92576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611cbb611ed4565b6000546001600160a01b03908116911614611d0b576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b038116611d505760405162461bcd60e51b81526004018080602001828103825260268152602001806132396026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061331283398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611da1611ed4565b6000546001600160a01b03908116911614611df1576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b611e1d611ed4565b6000546001600160a01b03908116911614611e6d576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b60008111611eb4576040805162461bcd60e51b815260206004820152600f60248201526e043616e6e6f742073657420746f203608c1b604482015290519081900360640190fd5b611ece606461164083600a5461247b90919063ffffffff16565b601e5550565b3390565b6001600160a01b038316611f1d5760405162461bcd60e51b81526004018080602001828103825260248152602001806133be6024913960400191505060405180910390fd5b6001600160a01b038216611f625760405162461bcd60e51b815260040180806020018281038252602281526020018061325f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166120095760405162461bcd60e51b81526004018080602001828103825260258152602001806133996025913960400191505060405180910390fd5b6001600160a01b03821661204e5760405162461bcd60e51b81526004018080602001828103825260238152602001806131ec6023913960400191505060405180910390fd5b6000811161208d5760405162461bcd60e51b81526004018080602001828103825260298152602001806133326029913960400191505060405180910390fd5b6001600160a01b03831660009081526007602052604090205460ff161580156120cf57506001600160a01b03821660009081526007602052604090205460ff16155b1561211557601e548111156121155760405162461bcd60e51b81526004018080602001828103825260288152602001806132816028913960400191505060405180910390fd5b6001600160a01b03821660009081526007602052604090205460ff1615801561217057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156121c757600061218083611489565b9050601f5482820111156121c55760405162461bcd60e51b815260040180806020018281038252603e81526020018061335b603e913960400191505060405180910390fd5b505b60006121d230611489565b9050601e5481106121e25750601e545b602054811080159081906121f95750601d5460ff16155b801561223757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b801561224a5750601d54610100900460ff165b1561225d57602054915061225d82612589565b6001600160a01b03851660009081526006602052604090205460019060ff168061229f57506001600160a01b03851660009081526006602052604090205460ff165b156122a8575060005b6122b486868684612626565b505050505050565b6000818484111561234b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123105781810151838201526020016122f8565b50505050905090810190601f16801561233d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061236061279a565b909250905061236f8282612376565b9250505090565b60006123b883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506128fd565b9392505050565b6000828201838110156123b8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000808080612428898661247b565b90506000612436898761247b565b90506000612444898861247b565b90506000612452898961247b565b905060006124668261169285818989612547565b949d949c50929a509298505050505050505050565b60008261248a57506000610d16565b8282028284828161249757fe5b04146123b85760405162461bcd60e51b81526004018080602001828103825260218152602001806132a96021913960400191505060405180910390fd5b600080826124e4576011546124e8565b6013545b90506124f96064611640868461247b565b949350505050565b60008082612511576015546124e8565b506017546124f96064611640868461247b565b60008082612534576019546124e8565b50601b546124f96064611640868461247b565b60006123b883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506122bc565b601d805460ff1916600117905560006125a3826002612376565b905060006125b18383612547565b9050476125bd83612962565b60006125c94783612547565b90506125d58382612b71565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050601d805460ff19169055505050565b8061263357612633612c53565b6001600160a01b03841660009081526008602052604090205460ff16801561267457506001600160a01b03831660009081526008602052604090205460ff16155b1561268957612684848484612caf565b612787565b6001600160a01b03841660009081526008602052604090205460ff161580156126ca57506001600160a01b03831660009081526008602052604090205460ff165b156126da57612684848484612e24565b6001600160a01b03841660009081526008602052604090205460ff1615801561271c57506001600160a01b03831660009081526008602052604090205460ff16155b1561272c57612684848484612f14565b6001600160a01b03841660009081526008602052604090205460ff16801561276c57506001600160a01b03831660009081526008602052604090205460ff165b1561277c57612684848484612f9f565b612787848484612f14565b8061279457612794613059565b50505050565b600b54600a546000918291825b6009548110156128cb578260036000600984815481106127c357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612828575081600460006009848154811061280157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561283f57600b54600a54945094505050506128f9565b61287f600360006009848154811061285357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612547565b92506128c1600460006009848154811061289557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612547565b91506001016127a7565b50600a54600b546128db91612376565b8210156128f357600b54600a549350935050506128f9565b90925090505b9091565b6000818361294c5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156123105781810151838201526020016122f8565b50600083858161295857fe5b0495945050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061299057fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612a0957600080fd5b505afa158015612a1d573d6000803e3d6000fd5b505050506040513d6020811015612a3357600080fd5b5051815182906001908110612a4457fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612a8f307f000000000000000000000000000000000000000000000000000000000000000084611ed8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612b34578181015183820152602001612b1c565b505050509050019650505050505050600060405180830381600087803b158015612b5d57600080fd5b505af11580156122b4573d6000803e3d6000fd5b612b9c307f000000000000000000000000000000000000000000000000000000000000000084611ed8565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163f305d71991849160c48082019260609290919082900301818588803b158015612c2857600080fd5b505af1158015612c3c573d6000803e3d6000fd5b50505050506040513d606081101561279457600080fd5b601154158015612c635750601554155b15612c6d57612cad565b601180546012556015805460165560198054601a556013805460145560178054601855601b8054601c556000958690559385905591849055839055829055555b565b600080600080612cf3857f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614611652565b93509350935093506000806000612d0f88878787611166612353565b6001600160a01b038d166000908152600460205260409020549295509093509150612d3a9089612547565b6001600160a01b038b16600090815260046020908152604080832093909355600390522054612d699084612547565b6001600160a01b03808c1660009081526003602052604080822093909355908b1681522054612d9890836123bf565b6001600160a01b038a16600090815260036020526040902055612dba8561307f565b612dc384613108565b612dcd81876131c7565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef896040518082815260200191505060405180910390a350505050505050505050565b600080600080612e68857f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614611652565b93509350935093506000806000612e8488878787611166612353565b6001600160a01b038d166000908152600360205260409020549295509093509150612eaf9084612547565b6001600160a01b03808c16600090815260036020908152604080832094909455918c16815260049091522054612ee590886123bf565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612d9890836123bf565b600080600080612f58857f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614611652565b93509350935093506000806000612f7488878787611166612353565b6001600160a01b038d166000908152600360205260409020549295509093509150612d699084612547565b600080600080612fe3857f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614611652565b93509350935093506000806000612fff88878787611166612353565b6001600160a01b038d16600090815260046020526040902054929550909350915061302a9089612547565b6001600160a01b038b16600090815260046020908152604080832093909355600390522054612eaf9084612547565b601254601155601654601555601a54601955601454601355601854601755601c54601b55565b6000613089612353565b90506000613097838361247b565b306000908152600360205260409020549091506130b490826123bf565b3060009081526003602090815260408083209390935560089052205460ff161561310357306000908152600460205260409020546130f290846123bf565b306000908152600460205260409020555b505050565b6000613112612353565b90506000613120838361247b565b600d546001600160a01b031660009081526003602052604090205490915061314890826123bf565b600d80546001600160a01b03908116600090815260036020908152604080832095909555925490911681526008909152205460ff161561310357600d546001600160a01b03166000908152600460205260409020546131a790846123bf565b600d546001600160a01b0316600090815260046020526040902055505050565b600b546131d49083612547565b600b55600c546131e490826123bf565b600c55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f546f74616c20486f6c64696e672069732063757272656e746c79206c696d697465642c20796f752063616e206e6f74206275792074686174206d7563682e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ff0e8ad1242c9b7863bc56e4cda929b4c7369c2ba714e474b753881cce1375bf64736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061031e5760003560e01c806378109e54116101ab578063aa45026b116100f7578063c9ea304c11610095578063ea2f0b371161006f578063ea2f0b3714610b48578063f2fde38b14610b7b578063f4b8c14d14610bae578063fddf33af14610be157610325565b8063c9ea304c14610aad578063dd46706414610ae3578063dd62ed3e14610b0d57610325565b8063b6cee10e116100d1578063b6cee10e14610a0f578063c49b9a8014610a39578063c5495c0014610a65578063c9cf778914610a9857610325565b8063aa45026b146109bb578063ad85cd98146109d0578063b6c52324146109fa57610325565b80638da5cb5b11610164578063a114f9241161013e578063a114f92414610901578063a457c2d714610934578063a69df4b51461096d578063a9059cbb1461098257610325565b80638da5cb5b146108ad57806395d89b41146108c25780639944a998146108d757610325565b806378109e54146107b95780637d1db4a5146107ce5780637e89ad4c146107e357806388790a681461080d57806388e9b5ac1461082257806388f820201461087a57610325565b80633b124fe71161026a57806352390c021161022357806362042091116101fd57806362042091146107325780636bc87c3a1461075c57806370a0823114610771578063715018a6146107a457610325565b806352390c02146106965780635342acb4146106c957806361e134b2146106fc57610325565b80633b124fe7146105c8578063437823ec146105dd5780634549b0391461061057806349bd5a5e146106425780634a74bb02146106575780634ae738501461066c57610325565b8063200a692d116102d7578063313ce567116102b1578063313ce5671461051c5780633685d41914610547578063395093511461057a5780633ad10ef6146105b357610325565b8063200a692d1461049a57806323b872dd146104af5780632d838119146104f257610325565b806306fdde031461032a578063095b207f146103b4578063095ea7b3146103e057806313114a9d1461042d5780631694505e1461045457806318160ddd1461048557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610c0b565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610379578181015183820152602001610361565b50505050905090810190601f1680156103a65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103c057600080fd5b506103de600480360360208110156103d757600080fd5b5035610ca1565b005b3480156103ec57600080fd5b506104196004803603604081101561040357600080fd5b506001600160a01b038135169060200135610cfe565b604080519115158252519081900360200190f35b34801561043957600080fd5b50610442610d1c565b60408051918252519081900360200190f35b34801561046057600080fd5b50610469610d22565b604080516001600160a01b039092168252519081900360200190f35b34801561049157600080fd5b50610442610d46565b3480156104a657600080fd5b50610442610d4c565b3480156104bb57600080fd5b50610419600480360360608110156104d257600080fd5b506001600160a01b03813581169160208101359091169060400135610d52565b3480156104fe57600080fd5b506104426004803603602081101561051557600080fd5b5035610dd9565b34801561052857600080fd5b50610531610e3b565b6040805160ff9092168252519081900360200190f35b34801561055357600080fd5b506103de6004803603602081101561056a57600080fd5b50356001600160a01b0316610e44565b34801561058657600080fd5b506104196004803603604081101561059d57600080fd5b506001600160a01b038135169060200135611005565b3480156105bf57600080fd5b50610469611053565b3480156105d457600080fd5b50610442611062565b3480156105e957600080fd5b506103de6004803603602081101561060057600080fd5b50356001600160a01b0316611068565b34801561061c57600080fd5b506104426004803603604081101561063357600080fd5b508035906020013515156110e4565b34801561064e57600080fd5b5061046961118d565b34801561066357600080fd5b506104196111b1565b34801561067857600080fd5b506103de6004803603602081101561068f57600080fd5b50356111bf565b3480156106a257600080fd5b506103de600480360360208110156106b957600080fd5b50356001600160a01b031661121c565b3480156106d557600080fd5b50610419600480360360208110156106ec57600080fd5b50356001600160a01b03166113a2565b34801561070857600080fd5b506103de6004803603606081101561071f57600080fd5b50803590602081013590604001356113c0565b34801561073e57600080fd5b506103de6004803603602081101561075557600080fd5b5035611426565b34801561076857600080fd5b50610442611483565b34801561077d57600080fd5b506104426004803603602081101561079457600080fd5b50356001600160a01b0316611489565b3480156107b057600080fd5b506103de6114eb565b3480156107c557600080fd5b5061044261157b565b3480156107da57600080fd5b50610442611581565b3480156107ef57600080fd5b506103de6004803603602081101561080657600080fd5b5035611587565b34801561081957600080fd5b5061044261164c565b34801561082e57600080fd5b506108546004803603604081101561084557600080fd5b50803590602001351515611652565b604080519485526020850193909352838301919091526060830152519081900360800190f35b34801561088657600080fd5b506104196004803603602081101561089d57600080fd5b50356001600160a01b03166116b5565b3480156108b957600080fd5b506104696116d3565b3480156108ce57600080fd5b5061033f6116e2565b3480156108e357600080fd5b506103de600480360360208110156108fa57600080fd5b5035611743565b34801561090d57600080fd5b506103de6004803603602081101561092457600080fd5b50356001600160a01b03166117a0565b34801561094057600080fd5b506104196004803603604081101561095757600080fd5b506001600160a01b038135169060200135611819565b34801561097957600080fd5b506103de611881565b34801561098e57600080fd5b50610419600480360360408110156109a557600080fd5b506001600160a01b03813516906020013561196f565b3480156109c757600080fd5b50610442611983565b3480156109dc57600080fd5b506103de600480360360208110156109f357600080fd5b5035611989565b348015610a0657600080fd5b506104426119e6565b348015610a1b57600080fd5b506103de60048036036020811015610a3257600080fd5b50356119ec565b348015610a4557600080fd5b506103de60048036036020811015610a5c57600080fd5b50351515611a49565b348015610a7157600080fd5b5061041960048036036020811015610a8857600080fd5b50356001600160a01b0316611af0565b348015610aa457600080fd5b50610442611b05565b348015610ab957600080fd5b506103de60048036036060811015610ad057600080fd5b5080359060208101359060400135611b0b565b348015610aef57600080fd5b506103de60048036036020811015610b0657600080fd5b5035611b71565b348015610b1957600080fd5b5061044260048036036040811015610b3057600080fd5b506001600160a01b0381358116916020013516611c0f565b348015610b5457600080fd5b506103de60048036036020811015610b6b57600080fd5b50356001600160a01b0316611c3a565b348015610b8757600080fd5b506103de60048036036020811015610b9e57600080fd5b50356001600160a01b0316611cb3565b348015610bba57600080fd5b506103de60048036036020811015610bd157600080fd5b50356001600160a01b0316611d99565b348015610bed57600080fd5b506103de60048036036020811015610c0457600080fd5b5035611e15565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c975780601f10610c6c57610100808354040283529160200191610c97565b820191906000526020600020905b815481529060010190602001808311610c7a57829003601f168201915b5050505050905090565b610ca9611ed4565b6000546001600160a01b03908116911614610cf9576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601355565b6000610d12610d0b611ed4565b8484611ed8565b5060015b92915050565b600c5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600a5490565b60135481565b6000610d5f848484611fc4565b610dcf84610d6b611ed4565b610dca856040518060600160405280602881526020016132ca602891396001600160a01b038a16600090815260056020526040812090610da9611ed4565b6001600160a01b0316815260208101919091526040016000205491906122bc565b611ed8565b5060019392505050565b6000600b54821115610e1c5760405162461bcd60e51b815260040180806020018281038252602a81526020018061320f602a913960400191505060405180910390fd5b6000610e26612353565b9050610e328382612376565b9150505b919050565b60105460ff1690565b610e4c611ed4565b6000546001600160a01b03908116911614610e9c576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff16610f09576040805162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c75646564000000000000000000604482015290519081900360640190fd5b60005b60095481101561100157816001600160a01b031660098281548110610f2d57fe5b6000918252602090912001546001600160a01b03161415610ff957600980546000198101908110610f5a57fe5b600091825260209091200154600980546001600160a01b039092169183908110610f8057fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600890925220805460ff191690556009805480610fd257fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611001565b600101610f0c565b5050565b6000610d12611012611ed4565b84610dca8560056000611023611ed4565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906123bf565b600d546001600160a01b031690565b60115481565b611070611ed4565b6000546001600160a01b039081169116146110c0576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600a5483111561113d576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b600080600061114d866000611652565b9350935093505060008061116b88868686611166612353565b612419565b50915091508661118157509350610d1692505050565b9450610d169350505050565b7f000000000000000000000000002e2aaa6648f5e154050caf2b2c67af41c4d45581565b601d54610100900460ff1681565b6111c7611ed4565b6000546001600160a01b03908116911614611217576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601555565b611224611ed4565b6000546001600160a01b03908116911614611274576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff16156112e2576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561133c576001600160a01b03811660009081526003602052604090205461132290610dd9565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b6113c8611ed4565b6000546001600160a01b03908116911614611418576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601392909255601755601b55565b61142e611ed4565b6000546001600160a01b0390811691161461147e576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601955565b60155481565b6001600160a01b03811660009081526008602052604081205460ff16156114c957506001600160a01b038116600090815260046020526040902054610e36565b6001600160a01b038216600090815260036020526040902054610d1690610dd9565b6114f3611ed4565b6000546001600160a01b03908116911614611543576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613312833981519152908390a3600080546001600160a01b0319169055565b601f5481565b601e5481565b61158f611ed4565b6000546001600160a01b039081169116146115df576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b60008111611626576040805162461bcd60e51b815260206004820152600f60248201526e043616e6e6f742073657420746f203608c1b604482015290519081900360640190fd5b611646606461164083600a5461247b90919063ffffffff16565b90612376565b601f5550565b60175481565b600080600080600061166487876124d4565b905060006116728888612501565b905060006116808989612524565b90506000611698836116928c87612547565b90612547565b90506116a48183612547565b9a9399509197509550909350505050565b6001600160a01b031660009081526008602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c975780601f10610c6c57610100808354040283529160200191610c97565b61174b611ed4565b6000546001600160a01b0390811691161461179b576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601b55565b6117a8611ed4565b6000546001600160a01b039081169116146117f8576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b6000610d12611826611ed4565b84610dca856040518060600160405280602581526020016134056025913960056000611850611ed4565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906122bc565b6001546001600160a01b031633146118ca5760405162461bcd60e51b81526004018080602001828103825260238152602001806133e26023913960400191505060405180910390fd5b6002544211611920576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061331283398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610d1261197c611ed4565b8484611fc4565b60195481565b611991611ed4565b6000546001600160a01b039081169116146119e1576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601155565b60025490565b6119f4611ed4565b6000546001600160a01b03908116911614611a44576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601755565b611a51611ed4565b6000546001600160a01b03908116911614611aa1576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601d8054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60076020526000908152604090205460ff1681565b601b5481565b611b13611ed4565b6000546001600160a01b03908116911614611b63576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b601192909255601555601955565b611b79611ed4565b6000546001600160a01b03908116911614611bc9576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613312833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611c42611ed4565b6000546001600160a01b03908116911614611c92576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611cbb611ed4565b6000546001600160a01b03908116911614611d0b576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b038116611d505760405162461bcd60e51b81526004018080602001828103825260268152602001806132396026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061331283398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611da1611ed4565b6000546001600160a01b03908116911614611df1576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b611e1d611ed4565b6000546001600160a01b03908116911614611e6d576040805162461bcd60e51b815260206004820181905260248201526000805160206132f2833981519152604482015290519081900360640190fd5b60008111611eb4576040805162461bcd60e51b815260206004820152600f60248201526e043616e6e6f742073657420746f203608c1b604482015290519081900360640190fd5b611ece606461164083600a5461247b90919063ffffffff16565b601e5550565b3390565b6001600160a01b038316611f1d5760405162461bcd60e51b81526004018080602001828103825260248152602001806133be6024913960400191505060405180910390fd5b6001600160a01b038216611f625760405162461bcd60e51b815260040180806020018281038252602281526020018061325f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166120095760405162461bcd60e51b81526004018080602001828103825260258152602001806133996025913960400191505060405180910390fd5b6001600160a01b03821661204e5760405162461bcd60e51b81526004018080602001828103825260238152602001806131ec6023913960400191505060405180910390fd5b6000811161208d5760405162461bcd60e51b81526004018080602001828103825260298152602001806133326029913960400191505060405180910390fd5b6001600160a01b03831660009081526007602052604090205460ff161580156120cf57506001600160a01b03821660009081526007602052604090205460ff16155b1561211557601e548111156121155760405162461bcd60e51b81526004018080602001828103825260288152602001806132816028913960400191505060405180910390fd5b6001600160a01b03821660009081526007602052604090205460ff1615801561217057507f000000000000000000000000002e2aaa6648f5e154050caf2b2c67af41c4d4556001600160a01b0316826001600160a01b031614155b156121c757600061218083611489565b9050601f5482820111156121c55760405162461bcd60e51b815260040180806020018281038252603e81526020018061335b603e913960400191505060405180910390fd5b505b60006121d230611489565b9050601e5481106121e25750601e545b602054811080159081906121f95750601d5460ff16155b801561223757507f000000000000000000000000002e2aaa6648f5e154050caf2b2c67af41c4d4556001600160a01b0316856001600160a01b031614155b801561224a5750601d54610100900460ff165b1561225d57602054915061225d82612589565b6001600160a01b03851660009081526006602052604090205460019060ff168061229f57506001600160a01b03851660009081526006602052604090205460ff165b156122a8575060005b6122b486868684612626565b505050505050565b6000818484111561234b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123105781810151838201526020016122f8565b50505050905090810190601f16801561233d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061236061279a565b909250905061236f8282612376565b9250505090565b60006123b883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506128fd565b9392505050565b6000828201838110156123b8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000808080612428898661247b565b90506000612436898761247b565b90506000612444898861247b565b90506000612452898961247b565b905060006124668261169285818989612547565b949d949c50929a509298505050505050505050565b60008261248a57506000610d16565b8282028284828161249757fe5b04146123b85760405162461bcd60e51b81526004018080602001828103825260218152602001806132a96021913960400191505060405180910390fd5b600080826124e4576011546124e8565b6013545b90506124f96064611640868461247b565b949350505050565b60008082612511576015546124e8565b506017546124f96064611640868461247b565b60008082612534576019546124e8565b50601b546124f96064611640868461247b565b60006123b883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506122bc565b601d805460ff1916600117905560006125a3826002612376565b905060006125b18383612547565b9050476125bd83612962565b60006125c94783612547565b90506125d58382612b71565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050601d805460ff19169055505050565b8061263357612633612c53565b6001600160a01b03841660009081526008602052604090205460ff16801561267457506001600160a01b03831660009081526008602052604090205460ff16155b1561268957612684848484612caf565b612787565b6001600160a01b03841660009081526008602052604090205460ff161580156126ca57506001600160a01b03831660009081526008602052604090205460ff165b156126da57612684848484612e24565b6001600160a01b03841660009081526008602052604090205460ff1615801561271c57506001600160a01b03831660009081526008602052604090205460ff16155b1561272c57612684848484612f14565b6001600160a01b03841660009081526008602052604090205460ff16801561276c57506001600160a01b03831660009081526008602052604090205460ff165b1561277c57612684848484612f9f565b612787848484612f14565b8061279457612794613059565b50505050565b600b54600a546000918291825b6009548110156128cb578260036000600984815481106127c357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612828575081600460006009848154811061280157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561283f57600b54600a54945094505050506128f9565b61287f600360006009848154811061285357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612547565b92506128c1600460006009848154811061289557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612547565b91506001016127a7565b50600a54600b546128db91612376565b8210156128f357600b54600a549350935050506128f9565b90925090505b9091565b6000818361294c5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156123105781810151838201526020016122f8565b50600083858161295857fe5b0495945050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061299057fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612a0957600080fd5b505afa158015612a1d573d6000803e3d6000fd5b505050506040513d6020811015612a3357600080fd5b5051815182906001908110612a4457fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612a8f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ed8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612b34578181015183820152602001612b1c565b505050509050019650505050505050600060405180830381600087803b158015612b5d57600080fd5b505af11580156122b4573d6000803e3d6000fd5b612b9c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ed8565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163f305d71991849160c48082019260609290919082900301818588803b158015612c2857600080fd5b505af1158015612c3c573d6000803e3d6000fd5b50505050506040513d606081101561279457600080fd5b601154158015612c635750601554155b15612c6d57612cad565b601180546012556015805460165560198054601a556013805460145560178054601855601b8054601c556000958690559385905591849055839055829055555b565b600080600080612cf3857f000000000000000000000000002e2aaa6648f5e154050caf2b2c67af41c4d4556001600160a01b0316886001600160a01b031614611652565b93509350935093506000806000612d0f88878787611166612353565b6001600160a01b038d166000908152600460205260409020549295509093509150612d3a9089612547565b6001600160a01b038b16600090815260046020908152604080832093909355600390522054612d699084612547565b6001600160a01b03808c1660009081526003602052604080822093909355908b1681522054612d9890836123bf565b6001600160a01b038a16600090815260036020526040902055612dba8561307f565b612dc384613108565b612dcd81876131c7565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef896040518082815260200191505060405180910390a350505050505050505050565b600080600080612e68857f000000000000000000000000002e2aaa6648f5e154050caf2b2c67af41c4d4556001600160a01b0316886001600160a01b031614611652565b93509350935093506000806000612e8488878787611166612353565b6001600160a01b038d166000908152600360205260409020549295509093509150612eaf9084612547565b6001600160a01b03808c16600090815260036020908152604080832094909455918c16815260049091522054612ee590886123bf565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612d9890836123bf565b600080600080612f58857f000000000000000000000000002e2aaa6648f5e154050caf2b2c67af41c4d4556001600160a01b0316886001600160a01b031614611652565b93509350935093506000806000612f7488878787611166612353565b6001600160a01b038d166000908152600360205260409020549295509093509150612d699084612547565b600080600080612fe3857f000000000000000000000000002e2aaa6648f5e154050caf2b2c67af41c4d4556001600160a01b0316886001600160a01b031614611652565b93509350935093506000806000612fff88878787611166612353565b6001600160a01b038d16600090815260046020526040902054929550909350915061302a9089612547565b6001600160a01b038b16600090815260046020908152604080832093909355600390522054612eaf9084612547565b601254601155601654601555601a54601955601454601355601854601755601c54601b55565b6000613089612353565b90506000613097838361247b565b306000908152600360205260409020549091506130b490826123bf565b3060009081526003602090815260408083209390935560089052205460ff161561310357306000908152600460205260409020546130f290846123bf565b306000908152600460205260409020555b505050565b6000613112612353565b90506000613120838361247b565b600d546001600160a01b031660009081526003602052604090205490915061314890826123bf565b600d80546001600160a01b03908116600090815260036020908152604080832095909555925490911681526008909152205460ff161561310357600d546001600160a01b03166000908152600460205260409020546131a790846123bf565b600d546001600160a01b0316600090815260046020526040902055505050565b600b546131d49083612547565b600b55600c546131e490826123bf565b600c55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f546f74616c20486f6c64696e672069732063757272656e746c79206c696d697465642c20796f752063616e206e6f74206275792074686174206d7563682e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ff0e8ad1242c9b7863bc56e4cda929b4c7369c2ba714e474b753881cce1375bf64736f6c634300060c0033

Deployed Bytecode Sourcemap

27686:23780:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30813:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36879:107;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36879:107:0;;:::i;:::-;;31805:193;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31805:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;33309:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;29151:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;29151:51:0;;;;;;;;;;;;;;31093:95;;;;;;;;;;;;;:::i;28671:30::-;;;;;;;;;;;;;:::i;32007:446::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32007:446:0;;;;;;;;;;;;;;;;;:::i;34179:322::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34179:322:0;;:::i;31001:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34851:473;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34851:473:0;-1:-1:-1;;;;;34851:473:0;;:::i;32462:300::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32462:300:0;;;;;;;;:::i;33405:89::-;;;;;;;;;;;;;:::i;28587:26::-;;;;;;;;;;;;;:::i;36293:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36293:111:0;-1:-1:-1;;;;;36293:111:0;;:::i;33503:667::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33503:667:0;;;;;;;;;:::i;29209:38::-;;;;;;;;;;;;;:::i;29285:40::-;;;;;;;;;;;;;:::i;36995:146::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36995:146:0;;:::i;34510:332::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34510:332:0;-1:-1:-1;;;;;34510:332:0;;:::i;43191:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43191:124:0;-1:-1:-1;;;;;43191:124:0;;:::i;37785:254::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37785:254:0;;;;;;;;;;;;:::i;37313:99::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37313:99:0;;:::i;28763:32::-;;;;;;;;;;;;;:::i;31197:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31197:198:0;-1:-1:-1;;;;;31197:198:0;;:::i;16907:148::-;;;;;;;;;;;;;:::i;29389:50::-;;;;;;;;;;;;;:::i;29335:47::-;;;;;;;;;;;;;:::i;38247:203::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38247:203:0;;:::i;28865:36::-;;;;;;;;;;;;;:::i;38890:587::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38890:587:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33180:120;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33180:120:0;-1:-1:-1;;;;;33180:120:0;;:::i;16263:79::-;;;;;;;;;;;;;:::i;30905:87::-;;;;;;;;;;;;;:::i;37421:107::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37421:107:0;;:::i;36652:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36652:110:0;-1:-1:-1;;;;;36652:110:0;;:::i;32771:400::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32771:400:0;;;;;;;;:::i;17954:329::-;;;;;;;;;;;;;:::i;31404:199::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31404:199:0;;;;;;;;:::i;28975:26::-;;;;;;;;;;;;;:::i;36771:99::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36771:99:0;;:::i;17501:89::-;;;;;;;;;;;;;:::i;37150:154::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37150:154:0;;:::i;38459:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38459:171:0;;;;:::i;28043:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28043:50:0;-1:-1:-1;;;;;28043:50:0;;:::i;29059:30::-;;;;;;;;;;;;;:::i;37537:239::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37537:239:0;;;;;;;;;;;;:::i;17667:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17667:214:0;;:::i;31612:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31612:184:0;;;;;;;;;;:::i;36413:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36413:110:0;-1:-1:-1;;;;;36413:110:0;;:::i;17211:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17211:281:0;-1:-1:-1;;;;;17211:281:0;;:::i;36532:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36532:111:0;-1:-1:-1;;;;;36532:111:0;;:::i;38048:190::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38048:190:0;;:::i;30813:83::-;30883:5;30876:12;;;;;;;;-1:-1:-1;;30876:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30850:13;;30876:12;;30883:5;;30876:12;;30883:5;30876:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30813:83;:::o;36879:107::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;36958:11:::1;:20:::0;36879:107::o;31805:193::-;31907:4;31929:39;31938:12;:10;:12::i;:::-;31952:7;31961:6;31929:8;:39::i;:::-;-1:-1:-1;31986:4:0;31805:193;;;;;:::o;33309:87::-;33378:10;;33309:87;:::o;29151:51::-;;;:::o;31093:95::-;31173:7;;31093:95;:::o;28671:30::-;;;;:::o;32007:446::-;32139:4;32156:36;32166:6;32174:9;32185:6;32156:9;:36::i;:::-;32203:220;32226:6;32247:12;:10;:12::i;:::-;32274:138;32330:6;32274:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32274:19:0;;;;;;:11;:19;;;;;;32294:12;:10;:12::i;:::-;-1:-1:-1;;;;;32274:33:0;;;;;;;;;;;;-1:-1:-1;32274:33:0;;;:138;:37;:138::i;:::-;32203:8;:220::i;:::-;-1:-1:-1;32441:4:0;32007:446;;;;;:::o;34179:322::-;34273:7;34331;;34320;:18;;34298:110;;;;-1:-1:-1;;;34298:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34419:19;34441:10;:8;:10::i;:::-;34419:32;-1:-1:-1;34469:24:0;:7;34419:32;34469:11;:24::i;:::-;34462:31;;;34179:322;;;;:::o;31001:83::-;31067:9;;;;31001:83;:::o;34851:473::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34931:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;34923:56;;;::::0;;-1:-1:-1;;;34923:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;34995:9;34990:327;35014:9;:16:::0;35010:20;::::1;34990:327;;;35072:7;-1:-1:-1::0;;;;;35056:23:0::1;:9;35066:1;35056:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;35056:12:0::1;:23;35052:254;;;35115:9;35125:16:::0;;-1:-1:-1;;35125:20:0;;;35115:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;35100:9:::1;:12:::0;;-1:-1:-1;;;;;35115:31:0;;::::1;::::0;35110:1;;35100:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;35100:46:0::1;-1:-1:-1::0;;;;;35100:46:0;;::::1;;::::0;;35165:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;35204:11:::1;:20:::0;;;;:28;;-1:-1:-1;;35204:28:0::1;::::0;;35251:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;35251:15:0;;;;;-1:-1:-1;;;;;;35251:15:0::1;::::0;;;;;35285:5:::1;;35052:254;35032:3;;34990:327;;;;34851:473:::0;:::o;32462:300::-;32577:4;32599:133;32622:12;:10;:12::i;:::-;32649:7;32671:50;32710:10;32671:11;:25;32683:12;:10;:12::i;:::-;-1:-1:-1;;;;;32671:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32671:25:0;;;:34;;;;;;;;;;;:38;:50::i;33405:89::-;33475:11;;-1:-1:-1;;;;;33475:11:0;33405:89;:::o;28587:26::-;;;;:::o;36293:111::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36362:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;36362:34:0::1;36392:4;36362:34;::::0;;36293:111::o;33503:667::-;33621:7;33665;;33654;:18;;33646:62;;;;;-1:-1:-1;;;33646:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33725:12;33739:18;33759:12;33775:64;33801:7;33823:5;33775:11;:64::i;:::-;33722:117;;;;;;;33851:15;33868:23;33897:132;33923:7;33945:4;33964:10;33989:4;34008:10;:8;:10::i;:::-;33897:11;:132::i;:::-;33850:179;;;;;34048:17;34043:120;;-1:-1:-1;34089:7:0;-1:-1:-1;34082:14:0;;-1:-1:-1;;;34082:14:0;34043:120;34136:15;-1:-1:-1;34129:22:0;;-1:-1:-1;;;;34129:22:0;29209:38;;;:::o;29285:40::-;;;;;;;;;:::o;36995:146::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;37105:13:::1;:28:::0;36995:146::o;34510:332::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34591:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;34590:21;34582:61;;;::::0;;-1:-1:-1;;;34582:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;34658:16:0;::::1;34677:1;34658:16:::0;;;:7:::1;:16;::::0;;;;;:20;34654:109:::1;;-1:-1:-1::0;;;;;34734:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;34714:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;34695:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;34654:109:::1;-1:-1:-1::0;;;;;34773:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;34773:27:0::1;34796:4;34773:27:::0;;::::1;::::0;;;34811:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;34811:23:0::1;::::0;;::::1;::::0;;34510:332::o;43191:124::-;-1:-1:-1;;;;;43280:27:0;43256:4;43280:27;;;:18;:27;;;;;;;;;43191:124::o;37785:254::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;37937:11:::1;:20:::0;;;;37968:17:::1;:32:::0;38011:11:::1;:20:::0;37785:254::o;37313:99::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;37388:7:::1;:16:::0;37313:99::o;28763:32::-;;;;:::o;31197:198::-;-1:-1:-1;;;;;31287:20:0;;31263:7;31287:20;;;:11;:20;;;;;;;;31283:49;;;-1:-1:-1;;;;;;31316:16:0;;;;;;:7;:16;;;;;;31309:23;;31283:49;-1:-1:-1;;;;;31370:16:0;;;;;;:7;:16;;;;;;31350:37;;:19;:37::i;16907:148::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;17014:1:::1;16998:6:::0;;16977:40:::1;::::0;-1:-1:-1;;;;;16998:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16977:40:0;17014:1;;16977:40:::1;17045:1;17028:19:::0;;-1:-1:-1;;;;;;17028:19:0::1;::::0;;16907:148::o;29389:50::-;;;;:::o;29335:47::-;;;;:::o;38247:203::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;38352:1:::1;38333:16;:20;38325:48;;;::::0;;-1:-1:-1;;;38325:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38325:48:0;;;;;;;;;;;;;::::1;;38402:40;38436:5;38402:29;38414:16;38402:7;;:11;;:29;;;;:::i;:::-;:33:::0;::::1;:40::i;:::-;38384:15;:58:::0;-1:-1:-1;38247:203:0:o;28865:36::-;;;;:::o;38890:587::-;39004:7;39026;39048;39070;39105:12;39120:33;39136:7;39145;39120:15;:33::i;:::-;39105:48;;39164:18;39185:39;39207:7;39216;39185:21;:39::i;:::-;39164:60;;39235:12;39250:33;39266:7;39275;39250:15;:33::i;:::-;39235:48;-1:-1:-1;39294:23:0;39320:33;39342:10;39320:17;:7;39332:4;39320:11;:17::i;:::-;:21;;:33::i;:::-;39294:59;-1:-1:-1;39382:25:0;39294:59;39402:4;39382:19;:25::i;:::-;39364:43;39446:4;;-1:-1:-1;39452:10:0;;-1:-1:-1;39452:10:0;-1:-1:-1;38890:587:0;;-1:-1:-1;;;;38890:587:0:o;33180:120::-;-1:-1:-1;;;;;33272:20:0;33248:4;33272:20;;;:11;:20;;;;;;;;;33180:120::o;16263:79::-;16301:7;16328:6;-1:-1:-1;;;;;16328:6:0;16263:79;:::o;30905:87::-;30977:7;30970:14;;;;;;;;-1:-1:-1;;30970:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30944:13;;30970:14;;30977:7;;30970:14;;30977:7;30970:14;;;;;;;;;;;;;;;;;;;;;;;;37421:107;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;37500:11:::1;:20:::0;37421:107::o;36652:110::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36719:27:0::1;36749:5;36719:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;36719:35:0::1;::::0;;36652:110::o;32771:400::-;32891:4;32913:228;32936:12;:10;:12::i;:::-;32963:7;32985:145;33042:15;32985:145;;;;;;;;;;;;;;;;;:11;:25;32997:12;:10;:12::i;:::-;-1:-1:-1;;;;;32985:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32985:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;17954:329::-;18020:14;;-1:-1:-1;;;;;18020:14:0;18038:10;18020:28;17998:113;;;;-1:-1:-1;;;17998:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18136:9;;18130:3;:15;18122:59;;;;;-1:-1:-1;;;18122:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18226:14;;;18218:6;;18197:44;;-1:-1:-1;;;;;18226:14:0;;;;18218:6;;;;-1:-1:-1;;;;;;;;;;;18197:44:0;;18261:14;;;18252:23;;-1:-1:-1;;;;;;18252:23:0;-1:-1:-1;;;;;18261:14:0;;;18252:23;;;;;;17954:329::o;31404:199::-;31509:4;31531:42;31541:12;:10;:12::i;:::-;31555:9;31566:6;31531:9;:42::i;28975:26::-;;;;:::o;36771:99::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;36846:7:::1;:16:::0;36771:99::o;17501:89::-;17573:9;;17501:89;:::o;37150:154::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;37264:17:::1;:32:::0;37150:154::o;38459:171::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;38536:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;38536:32:0;;::::1;::::0;;;::::1;::::0;;;38584:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;38459:171:::0;:::o;28043:50::-;;;;;;;;;;;;;;;:::o;29059:30::-;;;;:::o;37537:239::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;37686:7:::1;:16:::0;;;;37713:13:::1;:28:::0;37752:7:::1;:16:::0;37537:239::o;17667:214::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;17748:6:::1;::::0;;;17731:23;;-1:-1:-1;;;;;;17731:23:0;;::::1;-1:-1:-1::0;;;;;17748:6:0;::::1;17731:23;::::0;;;17765:19:::1;::::0;;17807:3:::1;:10:::0;::::1;17795:9;:22:::0;17833:40:::1;::::0;17748:6;;-1:-1:-1;;;;;;;;;;;17833:40:0;17748:6;;17833:40:::1;17667:214:::0;:::o;31612:184::-;-1:-1:-1;;;;;31761:18:0;;;31729:7;31761:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;31612:184::o;36413:110::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36480:27:0::1;36510:5;36480:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;36480:35:0::1;::::0;;36413:110::o;17211:281::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17314:22:0;::::1;17292:110;;;;-1:-1:-1::0;;;17292:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17439:6;::::0;;17418:38:::1;::::0;-1:-1:-1;;;;;17418:38:0;;::::1;::::0;17439:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17418:38:0;::::1;17467:6;:17:::0;;-1:-1:-1;;;;;;17467:17:0::1;-1:-1:-1::0;;;;;17467:17:0;;;::::1;::::0;;;::::1;::::0;;17211:281::o;36532:111::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36601:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;36601:34:0::1;36631:4;36601:34;::::0;;36532:111::o;38048:190::-;16486:12;:10;:12::i;:::-;16476:6;;-1:-1:-1;;;;;16476:6:0;;;:22;;;16468:67;;;;;-1:-1:-1;;;16468:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16468:67:0;;;;;;;;;;;;;;;38147:1:::1;38132:12;:16;38124:44;;;::::0;;-1:-1:-1;;;38124:44:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38124:44:0;;;;;;;;;;;;;::::1;;38194:36;38224:5;38194:25;38206:12;38194:7;;:11;;:25;;;;:::i;:36::-;38179:12;:51:::0;-1:-1:-1;38048:190:0:o;8206:106::-;8294:10;8206:106;:::o;43324:372::-;-1:-1:-1;;;;;43451:19:0;;43443:68;;;;-1:-1:-1;;;43443:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43530:21:0;;43522:68;;;;-1:-1:-1;;;43522:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43604:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;43656:32;;;;;;;;;;;;;;;;;43324:372;;;:::o;43705:2098::-;-1:-1:-1;;;;;43827:18:0;;43819:68;;;;-1:-1:-1;;;43819:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43906:16:0;;43898:64;;;;-1:-1:-1;;;43898:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43990:1;43981:6;:10;43973:64;;;;-1:-1:-1;;;43973:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44053:24:0;;;;;;:18;:24;;;;;;;;44052:25;:52;;;;-1:-1:-1;;;;;;44082:22:0;;;;;;:18;:22;;;;;;;;44081:23;44052:52;44048:195;;;44155:12;;44145:6;:22;;44119:124;;;;-1:-1:-1;;;44119:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44262:22:0;;;;;;:18;:22;;;;;;;;44261:23;:46;;;;;44294:13;-1:-1:-1;;;;;44288:19:0;:2;-1:-1:-1;;;;;44288:19:0;;;44261:46;44257:292;;;44324:18;44345:13;44355:2;44345:9;:13::i;:::-;44324:34;;44424:15;;44413:6;44400:10;:19;44399:40;;44373:164;;;;-1:-1:-1;;;44373:164:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44257:292;;44844:28;44875:24;44893:4;44875:9;:24::i;:::-;44844:55;;44941:12;;44917:20;:36;44913:104;;-1:-1:-1;44993:12:0;;44913:104;45094:29;;45057:66;;;;;;;45152:53;;-1:-1:-1;45189:16:0;;;;45188:17;45152:53;:91;;;;;45230:13;-1:-1:-1;;;;;45222:21:0;:4;-1:-1:-1;;;;;45222:21:0;;;45152:91;:129;;;;-1:-1:-1;45260:21:0;;;;;;;45152:129;45134:318;;;45331:29;;45308:52;;45404:36;45419:20;45404:14;:36::i;:::-;-1:-1:-1;;;;;45647:24:0;;45526:12;45647:24;;;:18;:24;;;;;;45541:4;;45647:24;;;:50;;-1:-1:-1;;;;;;45675:22:0;;;;;;:18;:22;;;;;;;;45647:50;45643:98;;;-1:-1:-1;45724:5:0;45643:98;45754:41;45769:4;45775:2;45779:6;45787:7;45754:14;:41::i;:::-;43705:2098;;;;;;:::o;4504:227::-;4624:7;4660:12;4652:6;;;;4644:29;;;;-1:-1:-1;;;4644:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4696:5:0;;;4504:227::o;40129:164::-;40171:7;40192:15;40209;40228:19;:17;:19::i;:::-;40191:56;;-1:-1:-1;40191:56:0;-1:-1:-1;40265:20:0;40191:56;;40265:11;:20::i;:::-;40258:27;;;;40129:164;:::o;5941:132::-;5999:7;6026:39;6030:1;6033;6026:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6019:46;5941:132;-1:-1:-1;;;5941:132:0:o;3598:182::-;3656:7;3688:5;;;3712:6;;;;3704:46;;;;;-1:-1:-1;;;3704:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;39486:634;39708:7;;;;39805:24;:7;39817:11;39805;:24::i;:::-;39787:42;-1:-1:-1;39840:12:0;39855:21;:4;39864:11;39855:8;:21::i;:::-;39840:36;-1:-1:-1;39887:18:0;39908:27;:10;39923:11;39908:14;:27::i;:::-;39887:48;-1:-1:-1;39946:12:0;39961:21;:4;39970:11;39961:8;:21::i;:::-;39946:36;-1:-1:-1;39993:23:0;40019:43;39946:36;40019:33;40041:10;40019:33;:7;40031:4;40019:11;:17::i;:43::-;40081:7;;;;-1:-1:-1;40107:4:0;;-1:-1:-1;39486:634:0;;-1:-1:-1;;;;;;;;;39486:634:0:o;4991:473::-;5049:7;5294:6;5290:47;;-1:-1:-1;5324:1:0;5317:8;;5290:47;5362:5;;;5366:1;5362;:5;:1;5386:5;;;;;:10;5378:56;;;;-1:-1:-1;;;5378:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41601:230;41706:7;41731:12;41746:7;:31;;41770:7;;41746:31;;;41756:11;;41746:31;41731:46;-1:-1:-1;41795:28:0;41817:5;41795:17;:7;41731:46;41795:11;:17::i;:28::-;41788:35;41601:230;-1:-1:-1;;;;41601:230:0:o;41840:248::-;41951:7;41976:12;41991:7;:43;;42021:13;;41991:43;;;-1:-1:-1;42001:17:0;;42052:28;42074:5;42052:17;:7;42001:17;42052:11;:17::i;42097:230::-;42202:7;42227:12;42242:7;:31;;42266:7;;42242:31;;;-1:-1:-1;42252:11:0;;42291:28;42313:5;42291:17;:7;42252:11;42291;:17::i;4064:136::-;4122:7;4149:43;4153:1;4156;4149:43;;;;;;;;;;;;;;;;;:3;:43::i;45812:982::-;29815:16;:23;;-1:-1:-1;;29815:23:0;29834:4;29815:23;;;:16;45963:27:::1;:20:::0;45988:1:::1;45963:24;:27::i;:::-;45948:42:::0;-1:-1:-1;46001:17:0::1;46021:30;:20:::0;45948:42;46021:24:::1;:30::i;:::-;46001:50:::0;-1:-1:-1;46355:21:0::1;46422:22;46439:4:::0;46422:16:::1;:22::i;:::-;46576:18;46597:41;:21;46623:14:::0;46597:25:::1;:41::i;:::-;46576:62;;46689:35;46702:9;46713:10;46689:12;:35::i;:::-;46743:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;29861:16:0;:24;;-1:-1:-1;;29861:24:0;;;-1:-1:-1;;;45812:982:0:o;48005:840::-;48161:7;48156:28;;48170:14;:12;:14::i;:::-;-1:-1:-1;;;;;48202:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;48226:22:0;;;;;;:11;:22;;;;;;;;48225:23;48202:46;48198:597;;;48265:48;48287:6;48295:9;48306:6;48265:21;:48::i;:::-;48198:597;;;-1:-1:-1;;;;;48336:19:0;;;;;;:11;:19;;;;;;;;48335:20;:46;;;;-1:-1:-1;;;;;;48359:22:0;;;;;;:11;:22;;;;;;;;48335:46;48331:464;;;48398:46;48418:6;48426:9;48437:6;48398:19;:46::i;48331:464::-;-1:-1:-1;;;;;48467:19:0;;;;;;:11;:19;;;;;;;;48466:20;:47;;;;-1:-1:-1;;;;;;48491:22:0;;;;;;:11;:22;;;;;;;;48490:23;48466:47;48462:333;;;48530:44;48548:6;48556:9;48567:6;48530:17;:44::i;48462:333::-;-1:-1:-1;;;;;48596:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;48619:22:0;;;;;;:11;:22;;;;;;;;48596:45;48592:203;;;48658:48;48680:6;48688:9;48699:6;48658:21;:48::i;48592:203::-;48739:44;48757:6;48765:9;48776:6;48739:17;:44::i;:::-;48813:7;48808:29;;48822:15;:13;:15::i;:::-;48005:840;;;;:::o;40302:605::-;40400:7;;40436;;40353;;;;;40454:338;40478:9;:16;40474:20;;40454:338;;;40562:7;40538;:21;40546:9;40556:1;40546:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40546:12:0;40538:21;;;;;;;;;;;;;:31;;:83;;;40614:7;40590;:21;40598:9;40608:1;40598:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40598:12:0;40590:21;;;;;;;;;;;;;:31;40538:83;40516:146;;;40645:7;;40654;;40637:25;;;;;;;;;40516:146;40687:34;40699:7;:21;40707:9;40717:1;40707:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40707:12:0;40699:21;;;;;;;;;;;;;40687:7;;:11;:34::i;:::-;40677:44;;40746:34;40758:7;:21;40766:9;40776:1;40766:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40766:12:0;40758:21;;;;;;;;;;;;;40746:7;;:11;:34::i;:::-;40736:44;-1:-1:-1;40496:3:0;;40454:338;;;-1:-1:-1;40828:7:0;;40816;;:20;;:11;:20::i;:::-;40806:7;:30;40802:61;;;40846:7;;40855;;40838:25;;;;;;;;40802:61;40882:7;;-1:-1:-1;40891:7:0;-1:-1:-1;40302:605:0;;;:::o;6570:313::-;6690:7;6725:12;6718:5;6710:28;;;;-1:-1:-1;;;6710:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6749:9;6765:1;6761;:5;;;;;;;6570:313;-1:-1:-1;;;;;6570:313:0:o;46803:591::-;46953:16;;;46967:1;46953:16;;;46929:21;46953:16;;;;;46929:21;46953:16;;;;;;;;;;-1:-1:-1;46953:16:0;46929:40;;46998:4;46980;46985:1;46980:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;46980:23:0;;;-1:-1:-1;;;;;46980:23:0;;;;;47024:15;-1:-1:-1;;;;;47024:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47024:22:0;47014:7;;:4;;47019:1;;47014:7;;;;;;;;;;;:32;-1:-1:-1;;;;;47014:32:0;;;-1:-1:-1;;;;;47014:32:0;;;;;47060:62;47077:4;47092:15;47110:11;47060:8;:62::i;:::-;47162:15;-1:-1:-1;;;;;47162:66:0;;47243:11;47269:1;47313:4;47340;47360:15;47162:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47162:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47403:520;47551:62;47568:4;47583:15;47601:11;47551:8;:62::i;:::-;47657:258;;;-1:-1:-1;;;47657:258:0;;47729:4;47657:258;;;;;;;;;;;;47775:1;47657:258;;;;;;;;;;;;;;47889:15;47657:258;;;;;;-1:-1:-1;;;;;47657:15:0;:31;;;;47696:9;;47657:258;;;;;;;;;;;;;;;47696:9;47657:31;:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42336:529;42383:7;;:12;:34;;;;-1:-1:-1;42399:13:0;;:18;42383:34;42379:47;;;42419:7;;42379:47;42457:7;;;42439:15;:25;42499:13;;;42475:21;:37;42541:7;;;42523:15;:25;42584:11;;;42562:19;:33;42634:17;;;42606:25;:45;42684:11;;;42662:19;:33;-1:-1:-1;42709:11:0;;;;42731:17;;;;42759:11;;;;42784:15;;;42810:21;;;42842:15;42336:529;:::o;50583:880::-;50734:23;50772:12;50799:18;50832:12;50858:48;50870:7;50892:13;-1:-1:-1;;;;;50879:26:0;:9;-1:-1:-1;;;;;50879:26:0;;50858:11;:48::i;:::-;50719:187;;;;;;;;50918:15;50935:23;50960:12;50976:132;51002:7;51024:4;51043:10;51068:4;51087:10;:8;:10::i;50976:132::-;-1:-1:-1;;;;;51140:15:0;;;;;;:7;:15;;;;;;50917:191;;-1:-1:-1;50917:191:0;;-1:-1:-1;50917:191:0;-1:-1:-1;51140:28:0;;51160:7;51140:19;:28::i;:::-;-1:-1:-1;;;;;51122:15:0;;;;;;:7;:15;;;;;;;;:46;;;;51197:7;:15;;;;:28;;51217:7;51197:19;:28::i;:::-;-1:-1:-1;;;;;51179:15:0;;;;;;;:7;:15;;;;;;:46;;;;51257:18;;;;;;;:39;;51280:15;51257:22;:39::i;:::-;-1:-1:-1;;;;;51236:18:0;;;;;;:7;:18;;;;;:60;51307:26;51322:10;51307:14;:26::i;:::-;51344:17;51356:4;51344:11;:17::i;:::-;51372:23;51384:4;51390;51372:11;:23::i;:::-;51428:9;-1:-1:-1;;;;;51411:44:0;51420:6;-1:-1:-1;;;;;51411:44:0;;51439:15;51411:44;;;;;;;;;;;;;;;;;;50583:880;;;;;;;;;;:::o;49682:892::-;49831:23;49869:12;49896:18;49929:12;49955:48;49967:7;49989:13;-1:-1:-1;;;;;49976:26:0;:9;-1:-1:-1;;;;;49976:26:0;;49955:11;:48::i;:::-;49816:187;;;;;;;;50015:15;50032:23;50057:12;50073:132;50099:7;50121:4;50140:10;50165:4;50184:10;:8;:10::i;50073:132::-;-1:-1:-1;;;;;50237:15:0;;;;;;:7;:15;;;;;;50014:191;;-1:-1:-1;50014:191:0;;-1:-1:-1;50014:191:0;-1:-1:-1;50237:28:0;;50014:191;50237:19;:28::i;:::-;-1:-1:-1;;;;;50219:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;50297:18;;;;;:7;:18;;;;;:39;;50320:15;50297:22;:39::i;:::-;-1:-1:-1;;;;;50276:18:0;;;;;;:7;:18;;;;;;;;:60;;;;50368:7;:18;;;;:39;;50391:15;50368:22;:39::i;48854:819::-;49001:23;49039:12;49066:18;49099:12;49125:48;49137:7;49159:13;-1:-1:-1;;;;;49146:26:0;:9;-1:-1:-1;;;;;49146:26:0;;49125:11;:48::i;:::-;48986:187;;;;;;;;49185:15;49202:23;49227:12;49243:132;49269:7;49291:4;49310:10;49335:4;49354:10;:8;:10::i;49243:132::-;-1:-1:-1;;;;;49407:15:0;;;;;;:7;:15;;;;;;49184:191;;-1:-1:-1;49184:191:0;;-1:-1:-1;49184:191:0;-1:-1:-1;49407:28:0;;49184:191;49407:19;:28::i;35333:951::-;35484:23;35522:12;35549:18;35582:12;35608:48;35620:7;35642:13;-1:-1:-1;;;;;35629:26:0;:9;-1:-1:-1;;;;;35629:26:0;;35608:11;:48::i;:::-;35469:187;;;;;;;;35668:15;35685:23;35710:12;35726:132;35752:7;35774:4;35793:10;35818:4;35837:10;:8;:10::i;35726:132::-;-1:-1:-1;;;;;35890:15:0;;;;;;:7;:15;;;;;;35667:191;;-1:-1:-1;35667:191:0;;-1:-1:-1;35667:191:0;-1:-1:-1;35890:28:0;;35910:7;35890:19;:28::i;:::-;-1:-1:-1;;;;;35872:15:0;;;;;;:7;:15;;;;;;;;:46;;;;35947:7;:15;;;;:28;;35967:7;35947:19;:28::i;42874:308::-;42928:15;;42918:7;:25;42970:21;;42954:13;:37;43012:15;;43002:7;:25;43055:19;;43041:11;:33;43105:25;;43085:17;:45;43155:19;;43141:11;:33;42874:308::o;40916:355::-;40979:19;41001:10;:8;:10::i;:::-;40979:32;-1:-1:-1;41022:18:0;41043:27;:10;40979:32;41043:14;:27::i;:::-;41122:4;41106:22;;;;:7;:22;;;;;;41022:48;;-1:-1:-1;41106:38:0;;41022:48;41106:26;:38::i;:::-;41097:4;41081:22;;;;:7;:22;;;;;;;;:63;;;;41159:11;:26;;;;;;41155:108;;;41241:4;41225:22;;;;:7;:22;;;;;;:38;;41252:10;41225:26;:38::i;:::-;41216:4;41200:22;;;;:7;:22;;;;;:63;41155:108;40916:355;;;:::o;41280:312::-;41334:19;41356:10;:8;:10::i;:::-;41334:32;-1:-1:-1;41377:12:0;41392:21;:4;41334:32;41392:8;:21::i;:::-;41455:11;;-1:-1:-1;;;;;41455:11:0;41447:20;;;;:7;:20;;;;;;41377:36;;-1:-1:-1;41447:30:0;;41377:36;41447:24;:30::i;:::-;41432:11;;;-1:-1:-1;;;;;41432:11:0;;;41424:20;;;;:7;:20;;;;;;;;:53;;;;41504:11;;;;;41492:24;;:11;:24;;;;;;;41488:96;;;41562:11;;-1:-1:-1;;;;;41562:11:0;41554:20;;;;:7;:20;;;;;;:30;;41579:4;41554:24;:30::i;:::-;41539:11;;-1:-1:-1;;;;;41539:11:0;41531:20;;;;:7;:20;;;;;:53;41280:312;;;:::o;38734:147::-;38812:7;;:17;;38824:4;38812:11;:17::i;:::-;38802:7;:27;38853:10;;:20;;38868:4;38853:14;:20::i;:::-;38840:10;:33;-1:-1:-1;;38734:147:0:o

Swarm Source

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