ETH Price: $3,102.51 (+1.18%)
Gas: 2 Gwei

Token

Gerald Broflovski Inu [RELOADED] (x💯)
 

Overview

Max Total Supply

100,000,000,000,000 x💯

Holders

333

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
lilmoonboi.eth
Balance
267,453,460,431.57546412 x💯

Value
$0.00
0x6d03b24dd5afaa866a1fc852125b851155cebd80
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:
GeraldBroflovskiInuRELOADED

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 2021-06-09
*/

/**
 *Submitted for verification at Etherscan.io on 2021-06-07
*/
//https://t.me/geraldinu
//SPDX-License-Identifier: GPL-3.0-or-later

pragma solidity ^0.6.12;

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

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

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

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

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

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

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

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

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

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

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

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

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
    external
    payable
    returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
    external
    returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
    external
    returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
    external
    payable
    returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// Contract implementation
contract GeraldBroflovskiInuRELOADED 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) private _isExcluded; // excluded from reward
    address[] private _excluded;
    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 100_000_000_000_000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = 'Gerald Broflovski Inu [RELOADED]';
    string private _symbol = 'x💯';
    uint8 private _decimals = 9;

    // Tax and project development fees will start at 0 so we don't have a big impact when deploying to Uniswap
    // project development wallet address is null but the method to set the address is exposed
    uint256 private _taxFee = 2; // 2% reflection fee for every holder
    uint256 private _projectDevelopmentFee = 10; // 7% project development
    uint256 private _previousTaxFee = _taxFee;
    uint256 private _previousProjectDevelopmentFee = _projectDevelopmentFee;

    address payable public _projectDevelopmentWalletAddress = payable(0x94f345bd57FcB293D18F13722AE40C17207a20aE);

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwap = false;
    bool public swapEnabled = true;

    uint256 private _maxTxAmount = _tTotal;
    // We will set a minimum amount of tokens to be swapped => 1000000000
    uint256 private _numOfTokensToExchangeForProjectDevelopment = 1000000000 * 10**9;

    event SwapEnabledUpdated(bool enabled);

    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // UniswapV2 for Ethereum network
        // 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 and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        _isBlackListedBot[address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)] = true;
        _blackListedBots.push(address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b));

        _isBlackListedBot[address(0x27F9Adb26D532a41D97e00206114e429ad58c679)] = true;
        _blackListedBots.push(address(0x27F9Adb26D532a41D97e00206114e429ad58c679));

        _isBlackListedBot[address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7)] = true;
        _blackListedBots.push(address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7));

        _isBlackListedBot[address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533)] = true;
        _blackListedBots.push(address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533));

        _isBlackListedBot[address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F)] = true;
        _blackListedBots.push(address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F));

        _isBlackListedBot[address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7)] = true;
        _blackListedBots.push(address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7));

        _isBlackListedBot[address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5)] = true;
        _blackListedBots.push(address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5));

        _isBlackListedBot[address(0xf1CA09CE745bfa38258b26cd839ef0E8DE062A40)] = true;
        _blackListedBots.push(address(0xf1CA09CE745bfa38258b26cd839ef0E8DE062A40));

        _isBlackListedBot[address(0x8719c2829944150F59E3428CA24f6Fc018E43890)] = true;
        _blackListedBots.push(address(0x8719c2829944150F59E3428CA24f6Fc018E43890));

        _isBlackListedBot[address(0xa8E0771582EA33A9d8e6d2Ccb65A8D10Bd0Ea517)] = true;
        _blackListedBots.push(address(0xa8E0771582EA33A9d8e6d2Ccb65A8D10Bd0Ea517));

        _isBlackListedBot[address(0xF3DaA7465273587aec8b2d2706335e06068ccce4)] = true;
        _blackListedBots.push(address(0xF3DaA7465273587aec8b2d2706335e06068ccce4));

        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 setExcludeFromFee(address account, bool excluded) external onlyOwner() {
        _isExcludedFromFee[account] = excluded;
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            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) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        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 already 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 removeAllFee() private {
        if(_taxFee == 0 && _projectDevelopmentFee == 0) return;

        _previousTaxFee = _taxFee;
        _previousProjectDevelopmentFee = _projectDevelopmentFee;

        _taxFee = 0;
        _projectDevelopmentFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _projectDevelopmentFee = _previousProjectDevelopmentFee;
    }

    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 sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isBlackListedBot[sender], "You have no power here!");
        require(!_isBlackListedBot[recipient], "You have no power here!");
        require(!_isBlackListedBot[tx.origin], "You have no power here!");

        if(sender != owner() && recipient != owner()) {
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            // sorry about that, but sniper bots nowadays are buying multiple times, hope I have something more robust to prevent them to nuke the launch :-(
            if (sender == uniswapV2Pair) {
                require(balanceOf(recipient) <= _maxTxAmount, "Already bought maxTxAmount, wait till check off");
                require(balanceOf(tx.origin) <= _maxTxAmount, "Already bought maxTxAmount, wait till check off");
            }
        }

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap?
        // also, don't get caught in a circular project development event.
        // also, don't swap if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }

        bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForProjectDevelopment;
        if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
            // We need to swap the current tokens to ETH and send to the project development wallet
            swapTokensForEth(contractTokenBalance);

            uint256 contractETHBalance = address(this).balance;
            if(contractETHBalance > 0) {
                sendETHToProjectDevelopment(address(this).balance);
            }
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

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

        //transfer amount, it will take tax and project development fee
        _tokenTransfer(sender,recipient,amount,takeFee);
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap{
        // 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 sendETHToProjectDevelopment(uint256 amount) private {
        _projectDevelopmentWalletAddress.transfer(amount);
    }

    // We are exposing these functions to be able to manual swap and send
    // in case the token is highly valued and 5M becomes too much
    function manualSwap() external onlyOwner() {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSwapAmount(uint256 amount) public onlyOwner() {
        uint256 contractBalance = balanceOf(address(this));
        require(contractBalance >= amount , 'contract balance should be greater then amount');

        swapTokensForEth(amount);
    }

    function manualSend() public onlyOwner() {
        uint256 contractETHBalance = address(this).balance;
        sendETHToProjectDevelopment(contractETHBalance);
    }

    function manualSwapAndSend(uint256 amount) external onlyOwner() {
        manualSwapAmount(amount);
        manualSend();
    }

    function setSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    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 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tProjectDevelopment) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeProjectDevelopment(tProjectDevelopment);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tProjectDevelopment) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeProjectDevelopment(tProjectDevelopment);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tProjectDevelopment) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeProjectDevelopment(tProjectDevelopment);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tProjectDevelopment) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeProjectDevelopment(tProjectDevelopment);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _takeProjectDevelopment(uint256 tProjectDevelopment) private {
        uint256 currentRate =  _getRate();
        uint256 rProjectDevelopment = tProjectDevelopment.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rProjectDevelopment);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tProjectDevelopment);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    //to recieve ETH from uniswapV2Router when swapping
    receive() external payable {}

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tProjectDevelopment) = _getTValues(tAmount, _taxFee, _projectDevelopmentFee);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tProjectDevelopment);
    }

    function _getTValues(uint256 tAmount, uint256 taxFee, uint256 projectDevelopmentFee) private pure returns (uint256, uint256, uint256) {
        uint256 tFee = tAmount.mul(taxFee).div(100);
        uint256 tProjectDevelopment = tAmount.mul(projectDevelopmentFee).div(100);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tProjectDevelopment);
        return (tTransferAmount, tFee, tProjectDevelopment);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee);
        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 _getTaxFee() private view returns(uint256) {
        return _taxFee;
    }

    function _getMaxTxAmount() private view returns(uint256) {
        return _maxTxAmount;
    }

    function _getETHBalance() public view returns(uint256 balance) {
        return address(this).balance;
    }

    function _setTaxFee(uint256 taxFee) external onlyOwner() {
        require(taxFee >= 0 && taxFee <= 10, 'taxFee should be in 0 - 10');
        _taxFee = taxFee;
    }

    function _setProjectDevelopmentFee(uint256 projectDevelopmentFee) external onlyOwner() {
        require(projectDevelopmentFee >= 0 && projectDevelopmentFee <= 11, 'projectDevelopmentFee should be in 0 - 11');
        _projectDevelopmentFee = projectDevelopmentFee;
    }

    function _setProjectDevelopmentWallet(address payable projectDevelopmentWalletAddress) external onlyOwner() {
        _projectDevelopmentWalletAddress = projectDevelopmentWalletAddress;
    }

    function _setNumOfTokensToExchangeForProjectDevelopment(uint256 numOfTokensToExchangeForProjectDevelopment) external onlyOwner() {
        require(numOfTokensToExchangeForProjectDevelopment >= 10**9 , 'numOfTokensToExchangeForProjectDevelopment should be greater than total 1e9');
        _numOfTokensToExchangeForProjectDevelopment = numOfTokensToExchangeForProjectDevelopment;
    }

    function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
        require(maxTxAmount >= 10**9 , 'maxTxAmount should be greater than total 1e9');
        _maxTxAmount = maxTxAmount;
    }

    function recoverTokens(uint256 tokenAmount) public virtual onlyOwner() {
        _approve(address(this), owner(), tokenAmount);
        _transfer(address(this), owner(), tokenAmount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","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":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_projectDevelopmentWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfTokensToExchangeForProjectDevelopment","type":"uint256"}],"name":"_setNumOfTokensToExchangeForProjectDevelopment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"projectDevelopmentFee","type":"uint256"}],"name":"_setProjectDevelopmentFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"projectDevelopmentWalletAddress","type":"address"}],"name":"_setProjectDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","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":"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":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwapAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwapAndSend","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":"tokenAmount","type":"uint256"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","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":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","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"}]

69152d02c7e14af6800000600b5569085afffa6ff50bffffff19600c55610100604052602060c08190527f476572616c642042726f666c6f76736b6920496e75205b52454c4f414445445d60e09081526200005e91600e919062000780565b506040805180820190915260058082526478f09f92af60d81b60209092019182526200008d91600f9162000780565b506010805460ff1916600917905560026011819055600a60128190556013919091556014556015805461ffff60a01b196001600160a01b03199091167394f345bd57fcb293d18f13722ae40c17207a20ae1716600160a81b179055600b54601655670de0b6b3a76400006017553480156200010757600080fd5b506000620001146200076d565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c54600360006200016f6200076d565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e657600080fd5b505afa158015620001fb573d6000803e3d6000fd5b505050506040513d60208110156200021257600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200026357600080fd5b505afa15801562000278573d6000803e3d6000fd5b505050506040513d60208110156200028f57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002e257600080fd5b505af1158015620002f7573d6000803e3d6000fd5b505050506040513d60208110156200030e57600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200033b62000771565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006835290812080548416600190811790915560099092527f404b5b762e8059f6055e90a7bf5e88e1e2f628911a8da7857df40bf26352e2128054841683179055600a805480840182557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a890810180546001600160a01b031990811673a1cec245c456dd1bd9f2815a6955fef44eb4191b179091557f82951a08c86bbc382122443ed556bc8073b7e0bdf3bbfb811f503389aad35bfc8054871686179055825480860184558201805482167327f9adb26d532a41d97e00206114e429ad58c6791790557f3ee2bfab112ce489483443731da982ac406a17d09137224e74d494a6037142ad805487168617905582548086018455820180548216739282dc5c422fa91ff2f6ff3a0b45b7bf97cf78e71790557fb7baecc9aa863a1182bccd59d3b8aaee484658aee9400a94283dad2dbafd9d1d80548716861790558254808601845582018054821673fad95b6089c53a0d1d861eabfaadd8901b0f85331790557fab5495752a9187414227aebaa8b39a4bffdb32802987cba6aff3f20498292a7180548716861790558254808601845582018054821673fe9d99ef02e905127239e85a611c29ad32c31c2f1790557f942ebcb2565846ab429e313119fc37882c100e43cc02a57b5525c115ad4f72998054871686179055825480860184558201805482167359341bc6b4f3ace878574b05914f43309dd678c71790557f11c8caefcbc9afecd5b2153811f415fe306a1f3884466a0ddf30ba3939464b1e80548716861790558254808601845582018054821673136f4b5b6a306091b280e3f251fa0e21b1280cd51790557f5285ca56d5238f5cab5f1f0e88c2f05725198ebf90836644148c3ad2ae4350dd80548716861790558254808601845582018054821673f1ca09ce745bfa38258b26cd839ef0e8de062a401790557f63311b9fe935901487e2709d823f9feaee35256550ebb1a20dea871df42b7600805487168617905582548086018455820180548216738719c2829944150f59e3428ca24f6fc018e438901790557ff1094c410968a21d81ae0bddb783a54ddd1d40925fb4944787cb37532e24c12380548716861790558254808601845582018054821673a8e0771582ea33a9d8e6d2ccb65a8d10bd0ea5171790557f1b4ff325b507f000c86886ba6b3c0ac86d817073e665a7d9d453685df18672128054909616851790955581549384018255915201805490911673f3daa7465273587aec8b2d2706335e06068ccce4179055620007196200076d565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a3506200081c565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007c357805160ff1916838001178555620007f3565b82800160010185558215620007f3579182015b82811115620007f3578251825591602001919060010190620007d6565b506200080192915062000805565b5090565b5b8082111562000801576000815560010162000806565b60805160601c60a05160601c6130ef6200085f600039806111cc5280611f9552806120b7525080610aef52806123c9528061248152806124a852506130ef6000f3fe6080604052600436106102555760003560e01c80635342acb411610139578063a69df4b5116100b6578063dd4670641161007a578063dd46706414610896578063dd62ed3e146108c0578063e01af92c146108fb578063f2fde38b14610927578063f42938901461095a578063f815a8421461096f5761025c565b8063a69df4b5146107ce578063a9059cbb146107e3578063af9549e01461081c578063b6c5232414610857578063d615a57b1461086c5761025c565b806388e0853e116100fd57806388e0853e1461070e57806388f82020146107385780638da5cb5b1461076b57806395d89b4114610780578063a457c2d7146107955761025c565b80635342acb4146106545780635880b873146106875780636ddd1713146106b157806370a08231146106c6578063715018a6146106f95761025c565b80632d838119116101d25780633bd5d173116101965780633bd5d173146105715780634549b0391461059b578063474fe03f146105cd57806349bd5a5e146105f757806351bc3c851461060c57806352390c02146106215761025c565b80632d8381191461048657806330599fc5146104b0578063313ce567146104da5780633685d4191461050557806339509351146105385761025c565b80631694505e116102195780631694505e146103bc57806318160ddd146103d15780631bbae6e0146103e657806320d44d9c1461041057806323b872dd146104435761025c565b806306fdde031461026157806307c5a349146102eb578063095ea7b314610317578063128f2ba21461036457806313114a9d146103955761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b50610276610984565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506103156004803603602081101561030e57600080fd5b5035610a1a565b005b34801561032357600080fd5b506103506004803603604081101561033a57600080fd5b506001600160a01b038135169060200135610aba565b604080519115158252519081900360200190f35b34801561037057600080fd5b50610379610ad8565b604080516001600160a01b039092168252519081900360200190f35b3480156103a157600080fd5b506103aa610ae7565b60408051918252519081900360200190f35b3480156103c857600080fd5b50610379610aed565b3480156103dd57600080fd5b506103aa610b11565b3480156103f257600080fd5b506103156004803603602081101561040957600080fd5b5035610b17565b34801561041c57600080fd5b506103156004803603602081101561043357600080fd5b50356001600160a01b0316610bb7565b34801561044f57600080fd5b506103506004803603606081101561046657600080fd5b506001600160a01b03813581169160208101359091169060400135610c31565b34801561049257600080fd5b506103aa600480360360208110156104a957600080fd5b5035610cb8565b3480156104bc57600080fd5b50610315600480360360208110156104d357600080fd5b5035610d1a565b3480156104e657600080fd5b506104ef610d99565b6040805160ff9092168252519081900360200190f35b34801561051157600080fd5b506103156004803603602081101561052857600080fd5b50356001600160a01b0316610da2565b34801561054457600080fd5b506103506004803603604081101561055b57600080fd5b506001600160a01b038135169060200135610f63565b34801561057d57600080fd5b506103156004803603602081101561059457600080fd5b5035610fb1565b3480156105a757600080fd5b506103aa600480360360408110156105be57600080fd5b5080359060200135151561108b565b3480156105d957600080fd5b50610315600480360360208110156105f057600080fd5b503561111d565b34801561060357600080fd5b506103796111ca565b34801561061857600080fd5b506103156111ee565b34801561062d57600080fd5b506103156004803603602081101561064457600080fd5b50356001600160a01b031661125c565b34801561066057600080fd5b506103506004803603602081101561067757600080fd5b50356001600160a01b031661143e565b34801561069357600080fd5b50610315600480360360208110156106aa57600080fd5b503561145c565b3480156106bd57600080fd5b5061035061150f565b3480156106d257600080fd5b506103aa600480360360208110156106e957600080fd5b50356001600160a01b031661151f565b34801561070557600080fd5b50610315611581565b34801561071a57600080fd5b506103156004803603602081101561073157600080fd5b5035611611565b34801561074457600080fd5b506103506004803603602081101561075b57600080fd5b50356001600160a01b031661167a565b34801561077757600080fd5b50610379611698565b34801561078c57600080fd5b506102766116a7565b3480156107a157600080fd5b50610350600480360360408110156107b857600080fd5b506001600160a01b038135169060200135611708565b3480156107da57600080fd5b50610315611770565b3480156107ef57600080fd5b506103506004803603604081101561080657600080fd5b506001600160a01b03813516906020013561185e565b34801561082857600080fd5b506103156004803603604081101561083f57600080fd5b506001600160a01b0381351690602001351515611872565b34801561086357600080fd5b506103aa6118f5565b34801561087857600080fd5b506103156004803603602081101561088f57600080fd5b50356118fb565b3480156108a257600080fd5b50610315600480360360208110156108b957600080fd5b5035611998565b3480156108cc57600080fd5b506103aa600480360360408110156108e357600080fd5b506001600160a01b0381358116916020013516611a36565b34801561090757600080fd5b506103156004803603602081101561091e57600080fd5b50351515611a61565b34801561093357600080fd5b506103156004803603602081101561094a57600080fd5b50356001600160a01b0316611ad7565b34801561096657600080fd5b50610315611bbd565b34801561097b57600080fd5b506103aa611c1f565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a105780601f106109e557610100808354040283529160200191610a10565b820191906000526020600020905b8154815290600101906020018083116109f357829003601f168201915b5050505050905090565b610a22611c23565b6000546001600160a01b03908116911614610a72576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b633b9aca00811015610ab55760405162461bcd60e51b815260040180806020018281038252604b815260200180612f90604b913960600191505060405180910390fd5b601755565b6000610ace610ac7611c23565b8484611c27565b5060015b92915050565b6015546001600160a01b031681565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b610b1f611c23565b6000546001600160a01b03908116911614610b6f576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b633b9aca00811015610bb25760405162461bcd60e51b815260040180806020018281038252602c815260200180612eb2602c913960400191505060405180910390fd5b601655565b610bbf611c23565b6000546001600160a01b03908116911614610c0f576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c3e848484611d13565b610cae84610c4a611c23565b610ca985604051806060016040528060288152602001612eff602891396001600160a01b038a16600090815260056020526040812090610c88611c23565b6001600160a01b03168152602081019190915260400160002054919061216b565b611c27565b5060019392505050565b6000600c54821115610cfb5760405162461bcd60e51b815260040180806020018281038252602a815260200180612dc0602a913960400191505060405180910390fd5b6000610d05612202565b9050610d118382612225565b9150505b919050565b610d22611c23565b6000546001600160a01b03908116911614610d72576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b610d8430610d7e611698565b83611c27565b610d9630610d90611698565b83611d13565b50565b60105460ff1690565b610daa611c23565b6000546001600160a01b03908116911614610dfa576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610e67576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610f5f57816001600160a01b031660088281548110610e8b57fe5b6000918252602090912001546001600160a01b03161415610f5757600880546000198101908110610eb857fe5b600091825260209091200154600880546001600160a01b039092169183908110610ede57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610f3057fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610f5f565b600101610e6a565b5050565b6000610ace610f70611c23565b84610ca98560056000610f81611c23565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061226e565b6000610fbb611c23565b6001600160a01b03811660009081526007602052604090205490915060ff16156110165760405162461bcd60e51b815260040180806020018281038252602c815260200180613046602c913960400191505060405180910390fd5b6000611021836122c8565b505050506001600160a01b03841660009081526003602052604090205491925061104d91905082612324565b6001600160a01b038316600090815260036020526040902055600c546110739082612324565b600c55600d54611083908461226e565b600d55505050565b6000600b548311156110e4576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816111035760006110f4846122c8565b50939550610ad2945050505050565b600061110e846122c8565b50929550610ad2945050505050565b611125611c23565b6000546001600160a01b03908116911614611175576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b60006111803061151f565b9050818110156111c15760405162461bcd60e51b815260040180806020018281038252602e815260200180612d92602e913960400191505060405180910390fd5b610f5f82612366565b7f000000000000000000000000000000000000000000000000000000000000000081565b6111f6611c23565b6000546001600160a01b03908116911614611246576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b60006112513061151f565b9050610d9681612366565b611264611c23565b6000546001600160a01b039081169116146112b4576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156113105760405162461bcd60e51b81526004018080602001828103825260228152602001806130246022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff161561137e576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156113d8576001600160a01b0381166000908152600360205260409020546113be90610cb8565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b611464611c23565b6000546001600160a01b039081169116146114b4576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b600a81111561150a576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2030202d203130000000000000604482015290519081900360640190fd5b601155565b601554600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff161561155f57506001600160a01b038116600090815260046020526040902054610d15565b6001600160a01b038216600090815260036020526040902054610ad290610cb8565b611589611c23565b6000546001600160a01b039081169116146115d9576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612f47833981519152908390a3600080546001600160a01b0319169055565b611619611c23565b6000546001600160a01b03908116911614611669576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b6116728161111d565b610d96611bbd565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a105780601f106109e557610100808354040283529160200191610a10565b6000610ace611715611c23565b84610ca985604051806060016040528060258152602001613095602591396005600061173f611c23565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061216b565b6001546001600160a01b031633146117b95760405162461bcd60e51b81526004018080602001828103825260238152602001806130726023913960400191505060405180910390fd5b600254421161180f576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612f4783398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610ace61186b611c23565b8484611d13565b61187a611c23565b6000546001600160a01b039081169116146118ca576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b611903611c23565b6000546001600160a01b03908116911614611953576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b600b8111156119935760405162461bcd60e51b8152600401808060200182810382526029815260200180612e896029913960400191505060405180910390fd5b601255565b6119a0611c23565b6000546001600160a01b039081169116146119f0576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612f47833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611a69611c23565b6000546001600160a01b03908116911614611ab9576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b60158054911515600160a81b0260ff60a81b19909216919091179055565b611adf611c23565b6000546001600160a01b03908116911614611b2f576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b6001600160a01b038116611b745760405162461bcd60e51b8152600401808060200182810382526026815260200180612dea6026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612f4783398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611bc5611c23565b6000546001600160a01b03908116911614611c15576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b47610d968161259d565b4790565b3390565b6001600160a01b038316611c6c5760405162461bcd60e51b81526004018080602001828103825260248152602001806130006024913960400191505060405180910390fd5b6001600160a01b038216611cb15760405162461bcd60e51b8152600401808060200182810382526022815260200180612e106022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611d585760405162461bcd60e51b8152600401808060200182810382526025815260200180612fdb6025913960400191505060405180910390fd5b6001600160a01b038216611d9d5760405162461bcd60e51b8152600401808060200182810382526023815260200180612d6f6023913960400191505060405180910390fd5b60008111611ddc5760405162461bcd60e51b8152600401808060200182810382526029815260200180612f676029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611e44576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b03821660009081526009602052604090205460ff1615611eac576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3260009081526009602052604090205460ff1615611f0b576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b611f13611698565b6001600160a01b0316836001600160a01b031614158015611f4d5750611f37611698565b6001600160a01b0316826001600160a01b031614155b1561205f57601654811115611f935760405162461bcd60e51b8152600401808060200182810382526028815260200180612e616028913960400191505060405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316141561205f57601654611fd98361151f565b11156120165760405162461bcd60e51b815260040180806020018281038252602f815260200180612e32602f913960400191505060405180910390fd5b6016546120223261151f565b111561205f5760405162461bcd60e51b815260040180806020018281038252602f815260200180612e32602f913960400191505060405180910390fd5b600061206a3061151f565b9050601654811061207a57506016545b6017546015549082101590600160a01b900460ff161580156120a55750601554600160a81b900460ff165b80156120ae5750805b80156120ec57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b1561210c576120fa82612366565b47801561210a5761210a4761259d565b505b6001600160a01b03851660009081526006602052604090205460019060ff168061214e57506001600160a01b03851660009081526006602052604090205460ff165b15612157575060005b612163868686846125d7565b505050505050565b600081848411156121fa5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121bf5781810151838201526020016121a7565b50505050905090810190601f1680156121ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061220f61274b565b909250905061221e8282612225565b9250505090565b600061226783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506128ae565b9392505050565b600082820183811015612267576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006122e58a601154601254612913565b92509250925060006122f5612202565b905060008060006123078e8786612968565b919e509c509a509598509396509194505050505091939550919395565b600061226783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061216b565b6015805460ff60a01b1916600160a01b179055604080516002808252606080830184529260208301908036833701905050905030816000815181106123a757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561242057600080fd5b505afa158015612434573d6000803e3d6000fd5b505050506040513d602081101561244a57600080fd5b505181518290600190811061245b57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506124a6307f000000000000000000000000000000000000000000000000000000000000000084611c27565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561254b578181015183820152602001612533565b505050509050019650505050505050600060405180830381600087803b15801561257457600080fd5b505af1158015612588573d6000803e3d6000fd5b50506015805460ff60a01b1916905550505050565b6015546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610f5f573d6000803e3d6000fd5b806125e4576125e46129a4565b6001600160a01b03841660009081526007602052604090205460ff16801561262557506001600160a01b03831660009081526007602052604090205460ff16155b1561263a576126358484846129d6565b612738565b6001600160a01b03841660009081526007602052604090205460ff1615801561267b57506001600160a01b03831660009081526007602052604090205460ff165b1561268b57612635848484612afa565b6001600160a01b03841660009081526007602052604090205460ff161580156126cd57506001600160a01b03831660009081526007602052604090205460ff16155b156126dd57612635848484612ba3565b6001600160a01b03841660009081526007602052604090205460ff16801561271d57506001600160a01b03831660009081526007602052604090205460ff165b1561272d57612635848484612be7565b612738848484612ba3565b8061274557612745612c5a565b50505050565b600c54600b546000918291825b60085481101561287c5782600360006008848154811061277457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806127d957508160046000600884815481106127b257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156127f057600c54600b54945094505050506128aa565b612830600360006008848154811061280457fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612324565b9250612872600460006008848154811061284657fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612324565b9150600101612758565b50600b54600c5461288c91612225565b8210156128a457600c54600b549350935050506128aa565b90925090505b9091565b600081836128fd5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156121bf5781810151838201526020016121a7565b50600083858161290957fe5b0495945050505050565b600080808061292d60646129278989612c68565b90612225565b9050600061294060646129278a89612c68565b90506000612958826129528b86612324565b90612324565b9992985090965090945050505050565b60008080806129778786612c68565b905060006129858787612c68565b905060006129938383612324565b929992985090965090945050505050565b6011541580156129b45750601254155b156129be576129d4565b6011805460135560128054601455600091829055555b565b6000806000806000806129e8876122c8565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612a1a9088612324565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612a499087612324565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612a78908661226e565b6001600160a01b038916600090815260036020526040902055612a9a81612cc1565b612aa48483612d4a565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612b0c876122c8565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612b3e9087612324565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612b74908461226e565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612a78908661226e565b600080600080600080612bb5876122c8565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612a499087612324565b600080600080600080612bf9876122c8565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612c2b9088612324565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612b3e9087612324565b601354601155601454601255565b600082612c7757506000610ad2565b82820282848281612c8457fe5b04146122675760405162461bcd60e51b8152600401808060200182810382526021815260200180612ede6021913960400191505060405180910390fd5b6000612ccb612202565b90506000612cd98383612c68565b30600090815260036020526040902054909150612cf6908261226e565b3060009081526003602090815260408083209390935560079052205460ff1615612d455730600090815260046020526040902054612d34908461226e565b306000908152600460205260409020555b505050565b600c54612d579083612324565b600c55600d54612d67908261226e565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373636f6e74726163742062616c616e63652073686f756c642062652067726561746572207468656e20616d6f756e74416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416c726561647920626f75676874206d61785478416d6f756e742c20776169742074696c6c20636865636b206f66665472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e70726f6a656374446576656c6f706d656e744665652073686f756c6420626520696e2030202d2031316d61785478416d6f756e742073686f756c642062652067726561746572207468616e20746f74616c20316539536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f6e756d4f66546f6b656e73546f45786368616e6765466f7250726f6a656374446576656c6f706d656e742073686f756c642062652067726561746572207468616e20746f74616c2031653945524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220be0cf5e1a145fbfc27552fa15e38992e4d3f86ff7755a964663298b99b57185f64736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102555760003560e01c80635342acb411610139578063a69df4b5116100b6578063dd4670641161007a578063dd46706414610896578063dd62ed3e146108c0578063e01af92c146108fb578063f2fde38b14610927578063f42938901461095a578063f815a8421461096f5761025c565b8063a69df4b5146107ce578063a9059cbb146107e3578063af9549e01461081c578063b6c5232414610857578063d615a57b1461086c5761025c565b806388e0853e116100fd57806388e0853e1461070e57806388f82020146107385780638da5cb5b1461076b57806395d89b4114610780578063a457c2d7146107955761025c565b80635342acb4146106545780635880b873146106875780636ddd1713146106b157806370a08231146106c6578063715018a6146106f95761025c565b80632d838119116101d25780633bd5d173116101965780633bd5d173146105715780634549b0391461059b578063474fe03f146105cd57806349bd5a5e146105f757806351bc3c851461060c57806352390c02146106215761025c565b80632d8381191461048657806330599fc5146104b0578063313ce567146104da5780633685d4191461050557806339509351146105385761025c565b80631694505e116102195780631694505e146103bc57806318160ddd146103d15780631bbae6e0146103e657806320d44d9c1461041057806323b872dd146104435761025c565b806306fdde031461026157806307c5a349146102eb578063095ea7b314610317578063128f2ba21461036457806313114a9d146103955761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b50610276610984565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506103156004803603602081101561030e57600080fd5b5035610a1a565b005b34801561032357600080fd5b506103506004803603604081101561033a57600080fd5b506001600160a01b038135169060200135610aba565b604080519115158252519081900360200190f35b34801561037057600080fd5b50610379610ad8565b604080516001600160a01b039092168252519081900360200190f35b3480156103a157600080fd5b506103aa610ae7565b60408051918252519081900360200190f35b3480156103c857600080fd5b50610379610aed565b3480156103dd57600080fd5b506103aa610b11565b3480156103f257600080fd5b506103156004803603602081101561040957600080fd5b5035610b17565b34801561041c57600080fd5b506103156004803603602081101561043357600080fd5b50356001600160a01b0316610bb7565b34801561044f57600080fd5b506103506004803603606081101561046657600080fd5b506001600160a01b03813581169160208101359091169060400135610c31565b34801561049257600080fd5b506103aa600480360360208110156104a957600080fd5b5035610cb8565b3480156104bc57600080fd5b50610315600480360360208110156104d357600080fd5b5035610d1a565b3480156104e657600080fd5b506104ef610d99565b6040805160ff9092168252519081900360200190f35b34801561051157600080fd5b506103156004803603602081101561052857600080fd5b50356001600160a01b0316610da2565b34801561054457600080fd5b506103506004803603604081101561055b57600080fd5b506001600160a01b038135169060200135610f63565b34801561057d57600080fd5b506103156004803603602081101561059457600080fd5b5035610fb1565b3480156105a757600080fd5b506103aa600480360360408110156105be57600080fd5b5080359060200135151561108b565b3480156105d957600080fd5b50610315600480360360208110156105f057600080fd5b503561111d565b34801561060357600080fd5b506103796111ca565b34801561061857600080fd5b506103156111ee565b34801561062d57600080fd5b506103156004803603602081101561064457600080fd5b50356001600160a01b031661125c565b34801561066057600080fd5b506103506004803603602081101561067757600080fd5b50356001600160a01b031661143e565b34801561069357600080fd5b50610315600480360360208110156106aa57600080fd5b503561145c565b3480156106bd57600080fd5b5061035061150f565b3480156106d257600080fd5b506103aa600480360360208110156106e957600080fd5b50356001600160a01b031661151f565b34801561070557600080fd5b50610315611581565b34801561071a57600080fd5b506103156004803603602081101561073157600080fd5b5035611611565b34801561074457600080fd5b506103506004803603602081101561075b57600080fd5b50356001600160a01b031661167a565b34801561077757600080fd5b50610379611698565b34801561078c57600080fd5b506102766116a7565b3480156107a157600080fd5b50610350600480360360408110156107b857600080fd5b506001600160a01b038135169060200135611708565b3480156107da57600080fd5b50610315611770565b3480156107ef57600080fd5b506103506004803603604081101561080657600080fd5b506001600160a01b03813516906020013561185e565b34801561082857600080fd5b506103156004803603604081101561083f57600080fd5b506001600160a01b0381351690602001351515611872565b34801561086357600080fd5b506103aa6118f5565b34801561087857600080fd5b506103156004803603602081101561088f57600080fd5b50356118fb565b3480156108a257600080fd5b50610315600480360360208110156108b957600080fd5b5035611998565b3480156108cc57600080fd5b506103aa600480360360408110156108e357600080fd5b506001600160a01b0381358116916020013516611a36565b34801561090757600080fd5b506103156004803603602081101561091e57600080fd5b50351515611a61565b34801561093357600080fd5b506103156004803603602081101561094a57600080fd5b50356001600160a01b0316611ad7565b34801561096657600080fd5b50610315611bbd565b34801561097b57600080fd5b506103aa611c1f565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a105780601f106109e557610100808354040283529160200191610a10565b820191906000526020600020905b8154815290600101906020018083116109f357829003601f168201915b5050505050905090565b610a22611c23565b6000546001600160a01b03908116911614610a72576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b633b9aca00811015610ab55760405162461bcd60e51b815260040180806020018281038252604b815260200180612f90604b913960600191505060405180910390fd5b601755565b6000610ace610ac7611c23565b8484611c27565b5060015b92915050565b6015546001600160a01b031681565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b610b1f611c23565b6000546001600160a01b03908116911614610b6f576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b633b9aca00811015610bb25760405162461bcd60e51b815260040180806020018281038252602c815260200180612eb2602c913960400191505060405180910390fd5b601655565b610bbf611c23565b6000546001600160a01b03908116911614610c0f576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c3e848484611d13565b610cae84610c4a611c23565b610ca985604051806060016040528060288152602001612eff602891396001600160a01b038a16600090815260056020526040812090610c88611c23565b6001600160a01b03168152602081019190915260400160002054919061216b565b611c27565b5060019392505050565b6000600c54821115610cfb5760405162461bcd60e51b815260040180806020018281038252602a815260200180612dc0602a913960400191505060405180910390fd5b6000610d05612202565b9050610d118382612225565b9150505b919050565b610d22611c23565b6000546001600160a01b03908116911614610d72576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b610d8430610d7e611698565b83611c27565b610d9630610d90611698565b83611d13565b50565b60105460ff1690565b610daa611c23565b6000546001600160a01b03908116911614610dfa576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610e67576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610f5f57816001600160a01b031660088281548110610e8b57fe5b6000918252602090912001546001600160a01b03161415610f5757600880546000198101908110610eb857fe5b600091825260209091200154600880546001600160a01b039092169183908110610ede57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610f3057fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610f5f565b600101610e6a565b5050565b6000610ace610f70611c23565b84610ca98560056000610f81611c23565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061226e565b6000610fbb611c23565b6001600160a01b03811660009081526007602052604090205490915060ff16156110165760405162461bcd60e51b815260040180806020018281038252602c815260200180613046602c913960400191505060405180910390fd5b6000611021836122c8565b505050506001600160a01b03841660009081526003602052604090205491925061104d91905082612324565b6001600160a01b038316600090815260036020526040902055600c546110739082612324565b600c55600d54611083908461226e565b600d55505050565b6000600b548311156110e4576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816111035760006110f4846122c8565b50939550610ad2945050505050565b600061110e846122c8565b50929550610ad2945050505050565b611125611c23565b6000546001600160a01b03908116911614611175576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b60006111803061151f565b9050818110156111c15760405162461bcd60e51b815260040180806020018281038252602e815260200180612d92602e913960400191505060405180910390fd5b610f5f82612366565b7f000000000000000000000000c4ade18116464cd9107b9a2d9a653d9f62a9326c81565b6111f6611c23565b6000546001600160a01b03908116911614611246576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b60006112513061151f565b9050610d9681612366565b611264611c23565b6000546001600160a01b039081169116146112b4576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156113105760405162461bcd60e51b81526004018080602001828103825260228152602001806130246022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff161561137e576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156113d8576001600160a01b0381166000908152600360205260409020546113be90610cb8565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b611464611c23565b6000546001600160a01b039081169116146114b4576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b600a81111561150a576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2030202d203130000000000000604482015290519081900360640190fd5b601155565b601554600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff161561155f57506001600160a01b038116600090815260046020526040902054610d15565b6001600160a01b038216600090815260036020526040902054610ad290610cb8565b611589611c23565b6000546001600160a01b039081169116146115d9576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612f47833981519152908390a3600080546001600160a01b0319169055565b611619611c23565b6000546001600160a01b03908116911614611669576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b6116728161111d565b610d96611bbd565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a105780601f106109e557610100808354040283529160200191610a10565b6000610ace611715611c23565b84610ca985604051806060016040528060258152602001613095602591396005600061173f611c23565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061216b565b6001546001600160a01b031633146117b95760405162461bcd60e51b81526004018080602001828103825260238152602001806130726023913960400191505060405180910390fd5b600254421161180f576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612f4783398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610ace61186b611c23565b8484611d13565b61187a611c23565b6000546001600160a01b039081169116146118ca576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b611903611c23565b6000546001600160a01b03908116911614611953576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b600b8111156119935760405162461bcd60e51b8152600401808060200182810382526029815260200180612e896029913960400191505060405180910390fd5b601255565b6119a0611c23565b6000546001600160a01b039081169116146119f0576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612f47833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611a69611c23565b6000546001600160a01b03908116911614611ab9576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b60158054911515600160a81b0260ff60a81b19909216919091179055565b611adf611c23565b6000546001600160a01b03908116911614611b2f576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b6001600160a01b038116611b745760405162461bcd60e51b8152600401808060200182810382526026815260200180612dea6026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612f4783398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611bc5611c23565b6000546001600160a01b03908116911614611c15576040805162461bcd60e51b81526020600482018190526024820152600080516020612f27833981519152604482015290519081900360640190fd5b47610d968161259d565b4790565b3390565b6001600160a01b038316611c6c5760405162461bcd60e51b81526004018080602001828103825260248152602001806130006024913960400191505060405180910390fd5b6001600160a01b038216611cb15760405162461bcd60e51b8152600401808060200182810382526022815260200180612e106022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611d585760405162461bcd60e51b8152600401808060200182810382526025815260200180612fdb6025913960400191505060405180910390fd5b6001600160a01b038216611d9d5760405162461bcd60e51b8152600401808060200182810382526023815260200180612d6f6023913960400191505060405180910390fd5b60008111611ddc5760405162461bcd60e51b8152600401808060200182810382526029815260200180612f676029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611e44576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b03821660009081526009602052604090205460ff1615611eac576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3260009081526009602052604090205460ff1615611f0b576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b611f13611698565b6001600160a01b0316836001600160a01b031614158015611f4d5750611f37611698565b6001600160a01b0316826001600160a01b031614155b1561205f57601654811115611f935760405162461bcd60e51b8152600401808060200182810382526028815260200180612e616028913960400191505060405180910390fd5b7f000000000000000000000000c4ade18116464cd9107b9a2d9a653d9f62a9326c6001600160a01b0316836001600160a01b0316141561205f57601654611fd98361151f565b11156120165760405162461bcd60e51b815260040180806020018281038252602f815260200180612e32602f913960400191505060405180910390fd5b6016546120223261151f565b111561205f5760405162461bcd60e51b815260040180806020018281038252602f815260200180612e32602f913960400191505060405180910390fd5b600061206a3061151f565b9050601654811061207a57506016545b6017546015549082101590600160a01b900460ff161580156120a55750601554600160a81b900460ff165b80156120ae5750805b80156120ec57507f000000000000000000000000c4ade18116464cd9107b9a2d9a653d9f62a9326c6001600160a01b0316856001600160a01b031614155b1561210c576120fa82612366565b47801561210a5761210a4761259d565b505b6001600160a01b03851660009081526006602052604090205460019060ff168061214e57506001600160a01b03851660009081526006602052604090205460ff165b15612157575060005b612163868686846125d7565b505050505050565b600081848411156121fa5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121bf5781810151838201526020016121a7565b50505050905090810190601f1680156121ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061220f61274b565b909250905061221e8282612225565b9250505090565b600061226783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506128ae565b9392505050565b600082820183811015612267576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006122e58a601154601254612913565b92509250925060006122f5612202565b905060008060006123078e8786612968565b919e509c509a509598509396509194505050505091939550919395565b600061226783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061216b565b6015805460ff60a01b1916600160a01b179055604080516002808252606080830184529260208301908036833701905050905030816000815181106123a757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561242057600080fd5b505afa158015612434573d6000803e3d6000fd5b505050506040513d602081101561244a57600080fd5b505181518290600190811061245b57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506124a6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c27565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561254b578181015183820152602001612533565b505050509050019650505050505050600060405180830381600087803b15801561257457600080fd5b505af1158015612588573d6000803e3d6000fd5b50506015805460ff60a01b1916905550505050565b6015546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610f5f573d6000803e3d6000fd5b806125e4576125e46129a4565b6001600160a01b03841660009081526007602052604090205460ff16801561262557506001600160a01b03831660009081526007602052604090205460ff16155b1561263a576126358484846129d6565b612738565b6001600160a01b03841660009081526007602052604090205460ff1615801561267b57506001600160a01b03831660009081526007602052604090205460ff165b1561268b57612635848484612afa565b6001600160a01b03841660009081526007602052604090205460ff161580156126cd57506001600160a01b03831660009081526007602052604090205460ff16155b156126dd57612635848484612ba3565b6001600160a01b03841660009081526007602052604090205460ff16801561271d57506001600160a01b03831660009081526007602052604090205460ff165b1561272d57612635848484612be7565b612738848484612ba3565b8061274557612745612c5a565b50505050565b600c54600b546000918291825b60085481101561287c5782600360006008848154811061277457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806127d957508160046000600884815481106127b257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156127f057600c54600b54945094505050506128aa565b612830600360006008848154811061280457fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612324565b9250612872600460006008848154811061284657fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612324565b9150600101612758565b50600b54600c5461288c91612225565b8210156128a457600c54600b549350935050506128aa565b90925090505b9091565b600081836128fd5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156121bf5781810151838201526020016121a7565b50600083858161290957fe5b0495945050505050565b600080808061292d60646129278989612c68565b90612225565b9050600061294060646129278a89612c68565b90506000612958826129528b86612324565b90612324565b9992985090965090945050505050565b60008080806129778786612c68565b905060006129858787612c68565b905060006129938383612324565b929992985090965090945050505050565b6011541580156129b45750601254155b156129be576129d4565b6011805460135560128054601455600091829055555b565b6000806000806000806129e8876122c8565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612a1a9088612324565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612a499087612324565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612a78908661226e565b6001600160a01b038916600090815260036020526040902055612a9a81612cc1565b612aa48483612d4a565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612b0c876122c8565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612b3e9087612324565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612b74908461226e565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612a78908661226e565b600080600080600080612bb5876122c8565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612a499087612324565b600080600080600080612bf9876122c8565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612c2b9088612324565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612b3e9087612324565b601354601155601454601255565b600082612c7757506000610ad2565b82820282848281612c8457fe5b04146122675760405162461bcd60e51b8152600401808060200182810382526021815260200180612ede6021913960400191505060405180910390fd5b6000612ccb612202565b90506000612cd98383612c68565b30600090815260036020526040902054909150612cf6908261226e565b3060009081526003602090815260408083209390935560079052205460ff1615612d455730600090815260046020526040902054612d34908461226e565b306000908152600460205260409020555b505050565b600c54612d579083612324565b600c55600d54612d67908261226e565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373636f6e74726163742062616c616e63652073686f756c642062652067726561746572207468656e20616d6f756e74416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416c726561647920626f75676874206d61785478416d6f756e742c20776169742074696c6c20636865636b206f66665472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e70726f6a656374446576656c6f706d656e744665652073686f756c6420626520696e2030202d2031316d61785478416d6f756e742073686f756c642062652067726561746572207468616e20746f74616c20316539536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f6e756d4f66546f6b656e73546f45786368616e6765466f7250726f6a656374446576656c6f706d656e742073686f756c642062652067726561746572207468616e20746f74616c2031653945524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220be0cf5e1a145fbfc27552fa15e38992e4d3f86ff7755a964663298b99b57185f64736f6c634300060c0033

Deployed Bytecode Sourcemap

24135:21955:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28840:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45291:387;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45291:387:0;;:::i;:::-;;29752:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29752:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;25550:109;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;25550:109:0;;;;;;;;;;;;;;31018:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;25668:51;;;;;;;;;;;;;:::i;29117:95::-;;;;;;;;;;;;;:::i;45686:201::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45686:201:0;;:::i;45090:193::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45090:193:0;-1:-1:-1;;;;;45090:193:0;;:::i;29921:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29921:313:0;;;;;;;;;;;;;;;;;:::i;31942:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31942:253:0;;:::i;45895:192::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45895:192:0;;:::i;29026:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32657:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32657:479:0;-1:-1:-1;;;;;32657:479:0;;:::i;30242:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30242:218:0;;;;;;;;:::i;31113:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31113:377:0;;:::i;31498:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31498:436:0;;;;;;;;;:::i;37703:263::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37703:263:0;;:::i;25726:38::-;;;;;;;;;;;;;:::i;37539:156::-;;;;;;;;;;;;;:::i;32203:446::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32203:446:0;-1:-1:-1;;;;;32203:446:0;;:::i;33573:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33573:123:0;-1:-1:-1;;;;;33573:123:0;;:::i;44631:169::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44631:169:0;;:::i;25799:30::-;;;;;;;;;;;;;:::i;29220:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29220:198:0;-1:-1:-1;;;;;29220:198:0;;:::i;15016:148::-;;;;;;;;;;;;;:::i;38150:130::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38150:130:0;;:::i;30745:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30745:120:0;-1:-1:-1;;;;;30745:120:0;;:::i;14382:79::-;;;;;;;;;;;;;:::i;28931:87::-;;;;;;;;;;;;;:::i;30468:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30468:269:0;;;;;;;;:::i;16019:293::-;;;;;;;;;;;;;:::i;29426:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29426:167:0;;;;;;;;:::i;30873:137::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30873:137:0;;;;;;;;;;:::i;15568:89::-;;;;;;;;;;;;;:::i;44808:274::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44808:274:0;;:::i;15733:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15733:214:0;;:::i;29601:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29601:143:0;;;;;;;;;;:::i;38288:98::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38288:98:0;;;;:::i;15316:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15316:244:0;-1:-1:-1;;;;;15316:244:0;;:::i;37974:168::-;;;;;;;;;;;;;:::i;44513:110::-;;;;;;;;;;;;;:::i;28840:83::-;28910:5;28903:12;;;;;;;;-1:-1:-1;;28903:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28877:13;;28903:12;;28910:5;;28903:12;;28910:5;28903:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28840:83;:::o;45291:387::-;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;45485:5:::1;45439:42;:51;;45431:140;;;;-1:-1:-1::0;;;45431:140:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45582:43;:88:::0;45291:387::o;29752:161::-;29827:4;29844:39;29853:12;:10;:12::i;:::-;29867:7;29876:6;29844:8;:39::i;:::-;-1:-1:-1;29901:4:0;29752:161;;;;;:::o;25550:109::-;;;-1:-1:-1;;;;;25550:109:0;;:::o;31018:87::-;31087:10;;31018:87;:::o;25668:51::-;;;:::o;29117:95::-;29197:7;;29117:95;:::o;45686:201::-;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;45787:5:::1;45772:11;:20;;45764:78;;;;-1:-1:-1::0;;;45764:78:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45853:12;:26:::0;45686:201::o;45090:193::-;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;45209:32:::1;:66:::0;;-1:-1:-1;;;;;;45209:66:0::1;-1:-1:-1::0;;;;;45209:66:0;;;::::1;::::0;;;::::1;::::0;;45090:193::o;29921:313::-;30019:4;30036:36;30046:6;30054:9;30065:6;30036:9;:36::i;:::-;30083:121;30092:6;30100:12;:10;:12::i;:::-;30114:89;30152:6;30114:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30114:19:0;;;;;;:11;:19;;;;;;30134:12;:10;:12::i;:::-;-1:-1:-1;;;;;30114:33:0;;;;;;;;;;;;-1:-1:-1;30114:33:0;;;:89;:37;:89::i;:::-;30083:8;:121::i;:::-;-1:-1:-1;30222:4:0;29921:313;;;;;:::o;31942:253::-;32008:7;32047;;32036;:18;;32028:73;;;;-1:-1:-1;;;32028:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32112:19;32135:10;:8;:10::i;:::-;32112:33;-1:-1:-1;32163:24:0;:7;32112:33;32163:11;:24::i;:::-;32156:31;;;31942:253;;;;:::o;45895:192::-;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;45977:45:::1;45994:4;46001:7;:5;:7::i;:::-;46010:11;45977:8;:45::i;:::-;46033:46;46051:4;46058:7;:5;:7::i;:::-;46067:11;46033:9;:46::i;:::-;45895:192:::0;:::o;29026:83::-;29092:9;;;;29026:83;:::o;32657:479::-;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32739:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32731:60;;;::::0;;-1:-1:-1;;;32731:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32807:9;32802:327;32826:9;:16:::0;32822:20;::::1;32802:327;;;32884:7;-1:-1:-1::0;;;;;32868:23:0::1;:9;32878:1;32868:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32868:12:0::1;:23;32864:254;;;32927:9;32937:16:::0;;-1:-1:-1;;32937:20:0;;;32927:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32912:9:::1;:12:::0;;-1:-1:-1;;;;;32927:31:0;;::::1;::::0;32922:1;;32912:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;32912:46:0::1;-1:-1:-1::0;;;;;32912:46:0;;::::1;;::::0;;32977:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33016:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33016:28:0::1;::::0;;33063:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33063:15:0;;;;;-1:-1:-1;;;;;;33063:15:0::1;::::0;;;;;33097:5:::1;;32864:254;32844:3;;32802:327;;;;32657:479:::0;:::o;30242:218::-;30330:4;30347:83;30356:12;:10;:12::i;:::-;30370:7;30379:50;30418:10;30379:11;:25;30391:12;:10;:12::i;:::-;-1:-1:-1;;;;;30379:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30379:25:0;;;:34;;;;;;;;;;;:38;:50::i;31113:377::-;31165:14;31182:12;:10;:12::i;:::-;-1:-1:-1;;;;;31214:19:0;;;;;;:11;:19;;;;;;31165:29;;-1:-1:-1;31214:19:0;;31213:20;31205:77;;;;-1:-1:-1;;;31205:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31294:15;31318:19;31329:7;31318:10;:19::i;:::-;-1:-1:-1;;;;;;;;;31366:15:0;;;;;;:7;:15;;;;;;31293:44;;-1:-1:-1;31366:28:0;;:15;-1:-1:-1;31293:44:0;31366:19;:28::i;:::-;-1:-1:-1;;;;;31348:15:0;;;;;;:7;:15;;;;;:46;31415:7;;:20;;31427:7;31415:11;:20::i;:::-;31405:7;:30;31459:10;;:23;;31474:7;31459:14;:23::i;:::-;31446:10;:36;-1:-1:-1;;;31113:377:0:o;31498:436::-;31588:7;31627;;31616;:18;;31608:62;;;;;-1:-1:-1;;;31608:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31686:17;31681:246;;31721:15;31745:19;31756:7;31745:10;:19::i;:::-;-1:-1:-1;31720:44:0;;-1:-1:-1;31779:14:0;;-1:-1:-1;;;;;31779:14:0;31681:246;31828:23;31859:19;31870:7;31859:10;:19::i;:::-;-1:-1:-1;31826:52:0;;-1:-1:-1;31893:22:0;;-1:-1:-1;;;;;31893:22:0;37703:263;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;37775:23:::1;37801:24;37819:4;37801:9;:24::i;:::-;37775:50;;37863:6;37844:15;:25;;37836:85;;;;-1:-1:-1::0;;;37836:85:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37934:24;37951:6;37934:16;:24::i;25726:38::-:0;;;:::o;37539:156::-;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;37593:23:::1;37619:24;37637:4;37619:9;:24::i;:::-;37593:50;;37654:33;37671:15;37654:16;:33::i;32203:446::-:0;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;32298:42:::1;-1:-1:-1::0;;;;;32287:53:0;::::1;;;32279:100;;;;-1:-1:-1::0;;;32279:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32399:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32398:21;32390:61;;;::::0;;-1:-1:-1;;;32390:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32465:16:0;::::1;32484:1;32465:16:::0;;;:7:::1;:16;::::0;;;;;:20;32462:108:::1;;-1:-1:-1::0;;;;;32541:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32521:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32502:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32462:108:::1;-1:-1:-1::0;;;;;32580:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32580:27:0::1;32603:4;32580:27:::0;;::::1;::::0;;;32618:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32618:23:0::1;::::0;;::::1;::::0;;32203:446::o;33573:123::-;-1:-1:-1;;;;;33661:27:0;33637:4;33661:27;;;:18;:27;;;;;;;;;33573:123::o;44631:169::-;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;44732:2:::1;44722:6;:12;;44699:66;;;::::0;;-1:-1:-1;;;44699:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;44776:7;:16:::0;44631:169::o;25799:30::-;;;-1:-1:-1;;;25799:30:0;;;;;:::o;29220:198::-;-1:-1:-1;;;;;29310:20:0;;29286:7;29310:20;;;:11;:20;;;;;;;;29306:49;;;-1:-1:-1;;;;;;29339:16:0;;;;;;:7;:16;;;;;;29332:23;;29306:49;-1:-1:-1;;;;;29393:16:0;;;;;;:7;:16;;;;;;29373:37;;:19;:37::i;15016:148::-;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;15123:1:::1;15107:6:::0;;15086:40:::1;::::0;-1:-1:-1;;;;;15107:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;15086:40:0;15123:1;;15086:40:::1;15154:1;15137:19:::0;;-1:-1:-1;;;;;;15137:19:0::1;::::0;;15016:148::o;38150:130::-;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;38225:24:::1;38242:6;38225:16;:24::i;:::-;38260:12;:10;:12::i;30745:120::-:0;-1:-1:-1;;;;;30837:20:0;30813:4;30837:20;;;:11;:20;;;;;;;;;30745:120::o;14382:79::-;14420:7;14447:6;-1:-1:-1;;;;;14447:6:0;14382:79;:::o;28931:87::-;29003:7;28996:14;;;;;;;;-1:-1:-1;;28996:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28970:13;;28996:14;;29003:7;;28996:14;;29003:7;28996:14;;;;;;;;;;;;;;;;;;;;;;;;30468:269;30561:4;30578:129;30587:12;:10;:12::i;:::-;30601:7;30610:96;30649:15;30610:96;;;;;;;;;;;;;;;;;:11;:25;30622:12;:10;:12::i;:::-;-1:-1:-1;;;;;30610:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30610:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;16019:293::-;16071:14;;-1:-1:-1;;;;;16071:14:0;16089:10;16071:28;16063:76;;;;-1:-1:-1;;;16063:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16164:9;;16158:3;:15;16150:60;;;;;-1:-1:-1;;;16150:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16255:14;;;16247:6;;16226:44;;-1:-1:-1;;;;;16255:14:0;;;;16247:6;;;;-1:-1:-1;;;;;;;;;;;16226:44:0;;16290:14;;;16281:23;;-1:-1:-1;;;;;;16281:23:0;-1:-1:-1;;;;;16290:14:0;;;16281:23;;;;;;16019:293::o;29426:167::-;29504:4;29521:42;29531:12;:10;:12::i;:::-;29545:9;29556:6;29521:9;:42::i;30873:137::-;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;30964:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;30964:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30873:137::o;15568:89::-;15640:9;;15568:89;:::o;44808:274::-;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;44969:2:::1;44944:21;:27;;44906:111;;;;-1:-1:-1::0;;;44906:111:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45028:22;:46:::0;44808:274::o;15733:214::-;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;15814:6:::1;::::0;;;15797:23;;-1:-1:-1;;;;;;15797:23:0;;::::1;-1:-1:-1::0;;;;;15814:6:0;::::1;15797:23;::::0;;;15831:19:::1;::::0;;15873:3:::1;:10:::0;::::1;15861:9;:22:::0;15899:40:::1;::::0;15814:6;;-1:-1:-1;;;;;;;;;;;15899:40:0;15814:6;;15899:40:::1;15733:214:::0;:::o;29601:143::-;-1:-1:-1;;;;;29709:18:0;;;29682:7;29709:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29601:143::o;38288:98::-;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;38357:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;38357:21:0::1;-1:-1:-1::0;;;;38357:21:0;;::::1;::::0;;;::::1;::::0;;38288:98::o;15316:244::-;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15405:22:0;::::1;15397:73;;;;-1:-1:-1::0;;;15397:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15507:6;::::0;;15486:38:::1;::::0;-1:-1:-1;;;;;15486:38:0;;::::1;::::0;15507:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;15486:38:0;::::1;15535:6;:17:::0;;-1:-1:-1;;;;;;15535:17:0::1;-1:-1:-1::0;;;;;15535:17:0;;;::::1;::::0;;;::::1;::::0;;15316:244::o;37974:168::-;14602:12;:10;:12::i;:::-;14592:6;;-1:-1:-1;;;;;14592:6:0;;;:22;;;14584:67;;;;;-1:-1:-1;;;14584:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14584:67:0;;;;;;;;;;;;;;;38055:21:::1;38087:47;38055:21:::0;38087:27:::1;:47::i;44513:110::-:0;44594:21;44513:110;:::o;203:106::-;291:10;203:106;:::o;33704:337::-;-1:-1:-1;;;;;33797:19:0;;33789:68;;;;-1:-1:-1;;;33789:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33876:21:0;;33868:68;;;;-1:-1:-1;;;33868:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33949:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;34001:32;;;;;;;;;;;;;;;;;33704:337;;;:::o;34049:2595::-;-1:-1:-1;;;;;34146:20:0;;34138:70;;;;-1:-1:-1;;;34138:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34227:23:0;;34219:71;;;;-1:-1:-1;;;34219:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34318:1;34309:6;:10;34301:64;;;;-1:-1:-1;;;34301:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34385:25:0;;;;;;:17;:25;;;;;;;;34384:26;34376:62;;;;;-1:-1:-1;;;34376:62:0;;;;;;;;;;;;-1:-1:-1;;;34376:62:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34458:28:0;;;;;;:17;:28;;;;;;;;34457:29;34449:65;;;;;-1:-1:-1;;;34449:65:0;;;;;;;;;;;;-1:-1:-1;;;34449:65:0;;;;;;;;;;;;;;;34552:9;34534:28;;;;:17;:28;;;;;;;;34533:29;34525:65;;;;;-1:-1:-1;;;34525:65:0;;;;;;;;;;;;-1:-1:-1;;;34525:65:0;;;;;;;;;;;;;;;34616:7;:5;:7::i;:::-;-1:-1:-1;;;;;34606:17:0;:6;-1:-1:-1;;;;;34606:17:0;;;:41;;;;;34640:7;:5;:7::i;:::-;-1:-1:-1;;;;;34627:20:0;:9;-1:-1:-1;;;;;34627:20:0;;;34606:41;34603:596;;;34682:12;;34672:6;:22;;34664:75;;;;-1:-1:-1;;;34664:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34927:13;-1:-1:-1;;;;;34917:23:0;:6;-1:-1:-1;;;;;34917:23:0;;34913:275;;;34993:12;;34969:20;34979:9;34969;:20::i;:::-;:36;;34961:96;;;;-1:-1:-1;;;34961:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35108:12;;35084:20;35094:9;35084;:20::i;:::-;:36;;35076:96;;;;-1:-1:-1;;;35076:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35476:28;35507:24;35525:4;35507:9;:24::i;:::-;35476:55;;35571:12;;35547:20;:36;35544:112;;-1:-1:-1;35632:12:0;;35544:112;35719:43;;35778:6;;35695:67;;;;;-1:-1:-1;;;35778:6:0;;;;35777:7;:22;;;;-1:-1:-1;35788:11:0;;-1:-1:-1;;;35788:11:0;;;;35777:22;:45;;;;;35803:19;35777:45;:72;;;;;35836:13;-1:-1:-1;;;;;35826:23:0;:6;-1:-1:-1;;;;;35826:23:0;;;35777:72;35773:437;;;35967:38;35984:20;35967:16;:38::i;:::-;36051:21;36090:22;;36087:112;;36133:50;36161:21;36133:27;:50::i;:::-;35773:437;;-1:-1:-1;;;;;36402:26:0;;36283:12;36402:26;;;:18;:26;;;;;;36298:4;;36402:26;;;:59;;-1:-1:-1;;;;;;36432:29:0;;;;;;:18;:29;;;;;;;;36402:59;36399:105;;;-1:-1:-1;36487:5:0;36399:105;36589:47;36604:6;36611:9;36621:6;36628:7;36589:14;:47::i;:::-;34049:2595;;;;;;:::o;4290:192::-;4376:7;4412:12;4404:6;;;;4396:29;;;;-1:-1:-1;;;4396:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4448:5:0;;;4290:192::o;43583:163::-;43624:7;43645:15;43662;43681:19;:17;:19::i;:::-;43644:56;;-1:-1:-1;43644:56:0;-1:-1:-1;43718:20:0;43644:56;;43718:11;:20::i;:::-;43711:27;;;;43583:163;:::o;5668:132::-;5726:7;5753:39;5757:1;5760;5753:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5746:46;5668:132;-1:-1:-1;;;5668:132:0:o;3405:181::-;3463:7;3495:5;;;3519:6;;;;3511:46;;;;;-1:-1:-1;;;3511:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;42301:503;42360:7;42369;42378;42387;42396;42405;42426:23;42451:12;42465:27;42496:53;42508:7;42517;;42526:22;;42496:11;:53::i;:::-;42425:124;;;;;;42560:19;42583:10;:8;:10::i;:::-;42560:33;;42605:15;42622:23;42647:12;42663:39;42675:7;42684:4;42690:11;42663;:39::i;:::-;42604:98;;-1:-1:-1;42604:98:0;-1:-1:-1;42604:98:0;-1:-1:-1;42753:15:0;;-1:-1:-1;42770:4:0;;-1:-1:-1;42776:19:0;;-1:-1:-1;;;;;42301:503:0;;;;;;;:::o;3860:136::-;3918:7;3945:43;3949:1;3952;3945:43;;;;;;;;;;;;;;;;;:3;:43::i;36652:600::-;26126:6;:13;;-1:-1:-1;;;;26126:13:0;-1:-1:-1;;;26126:13:0;;;36813:16:::1;::::0;;36827:1:::1;36813:16:::0;;;36789:21:::1;36813:16:::0;;::::1;::::0;;36789:21;36813:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;36813:16:0::1;36789:40;;36858:4;36840;36845:1;36840:7;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;36840:23:0::1;;;-1:-1:-1::0;;;;;36840:23:0::1;;;::::0;::::1;36884:15;-1:-1:-1::0;;;;;36884:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;36884:22:0;36874:7;;:4;;36879:1:::1;::::0;36874:7;::::1;;;;;;;;;;:32;-1:-1:-1::0;;;;;36874:32:0::1;;;-1:-1:-1::0;;;;;36874:32:0::1;;;::::0;::::1;36919:62;36936:4;36951:15;36969:11;36919:8;:62::i;:::-;37020:15;-1:-1:-1::0;;;;;37020:66:0::1;;37101:11;37127:1;37171:4;37198;37218:15;37020:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;37020:224:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;26162:6:0;:14;;-1:-1:-1;;;;26162:14:0;;;-1:-1:-1;;;;36652:600:0:o;37260:129::-;37332:32;;:49;;-1:-1:-1;;;;;37332:32:0;;;;:49;;;;;37374:6;;37332:32;:49;:32;:49;37374:6;37332:32;:49;;;;;;;;;;;;;;;;;;;38394:819;38506:7;38502:40;;38528:14;:12;:14::i;:::-;-1:-1:-1;;;;;38559:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;38583:22:0;;;;;;:11;:22;;;;;;;;38582:23;38559:46;38555:597;;;38622:48;38644:6;38652:9;38663:6;38622:21;:48::i;:::-;38555:597;;;-1:-1:-1;;;;;38693:19:0;;;;;;:11;:19;;;;;;;;38692:20;:46;;;;-1:-1:-1;;;;;;38716:22:0;;;;;;:11;:22;;;;;;;;38692:46;38688:464;;;38755:46;38775:6;38783:9;38794:6;38755:19;:46::i;38688:464::-;-1:-1:-1;;;;;38824:19:0;;;;;;:11;:19;;;;;;;;38823:20;:47;;;;-1:-1:-1;;;;;;38848:22:0;;;;;;:11;:22;;;;;;;;38847:23;38823:47;38819:333;;;38887:44;38905:6;38913:9;38924:6;38887:17;:44::i;38819:333::-;-1:-1:-1;;;;;38953:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;38976:22:0;;;;;;:11;:22;;;;;;;;38953:45;38949:203;;;39015:48;39037:6;39045:9;39056:6;39015:21;:48::i;38949:203::-;39096:44;39114:6;39122:9;39133:6;39096:17;:44::i;:::-;39168:7;39164:41;;39190:15;:13;:15::i;:::-;38394:819;;;;:::o;43754:555::-;43851:7;;43887;;43804;;;;;43905:289;43929:9;:16;43925:20;;43905:289;;;43995:7;43971;:21;43979:9;43989:1;43979:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43979:12:0;43971:21;;;;;;;;;;;;;:31;;:66;;;44030:7;44006;:21;44014:9;44024:1;44014:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44014:12:0;44006:21;;;;;;;;;;;;;:31;43971:66;43967:97;;;44047:7;;44056;;44039:25;;;;;;;;;43967:97;44089:34;44101:7;:21;44109:9;44119:1;44109:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44109:12:0;44101:21;;;;;;;;;;;;;44089:7;;:11;:34::i;:::-;44079:44;;44148:34;44160:7;:21;44168:9;44178:1;44168:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44168:12:0;44160:21;;;;;;;;;;;;;44148:7;;:11;:34::i;:::-;44138:44;-1:-1:-1;43947:3:0;;43905:289;;;-1:-1:-1;44230:7:0;;44218;;:20;;:11;:20::i;:::-;44208:7;:30;44204:61;;;44248:7;;44257;;44240:25;;;;;;;;44204:61;44284:7;;-1:-1:-1;44293:7:0;-1:-1:-1;43754:555:0;;;:::o;6285:278::-;6371:7;6406:12;6399:5;6391:28;;;;-1:-1:-1;;;6391:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6430:9;6446:1;6442;:5;;;;;;;6285:278;-1:-1:-1;;;;;6285:278:0:o;42812:421::-;42919:7;;;;42972:28;42996:3;42972:19;:7;42984:6;42972:11;:19::i;:::-;:23;;:28::i;:::-;42957:43;-1:-1:-1;43011:27:0;43041:43;43080:3;43041:34;:7;43053:21;43041:11;:34::i;:43::-;43011:73;-1:-1:-1;43095:23:0;43121:42;43011:73;43121:17;:7;43133:4;43121:11;:17::i;:::-;:21;;:42::i;:::-;43095:68;43199:4;;-1:-1:-1;43205:19:0;;-1:-1:-1;42812:421:0;;-1:-1:-1;;;;;42812:421:0:o;43241:334::-;43336:7;;;;43392:24;:7;43404:11;43392;:24::i;:::-;43374:42;-1:-1:-1;43427:12:0;43442:21;:4;43451:11;43442:8;:21::i;:::-;43427:36;-1:-1:-1;43474:23:0;43500:17;:7;43427:36;43500:11;:17::i;:::-;43536:7;;;;-1:-1:-1;43562:4:0;;-1:-1:-1;43241:334:0;;-1:-1:-1;;;;;43241:334:0:o;33144:270::-;33190:7;;:12;:43;;;;-1:-1:-1;33206:22:0;;:27;33190:43;33187:55;;;33235:7;;33187:55;33272:7;;;33254:15;:25;33323:22;;;33290:30;:55;-1:-1:-1;33358:11:0;;;;33380:26;33144:270;:::o;40368:590::-;40471:15;40488:23;40513:12;40527:23;40552:12;40566:27;40597:19;40608:7;40597:10;:19::i;:::-;-1:-1:-1;;;;;40645:15:0;;;;;;:7;:15;;;;;;40470:146;;-1:-1:-1;40470:146:0;;-1:-1:-1;40470:146:0;;-1:-1:-1;40470:146:0;-1:-1:-1;40470:146:0;-1:-1:-1;40470:146:0;-1:-1:-1;40645:28:0;;40665:7;40645:19;:28::i;:::-;-1:-1:-1;;;;;40627:15:0;;;;;;:7;:15;;;;;;;;:46;;;;40702:7;:15;;;;:28;;40722:7;40702:19;:28::i;:::-;-1:-1:-1;;;;;40684:15:0;;;;;;;:7;:15;;;;;;:46;;;;40762:18;;;;;;;:39;;40785:15;40762:22;:39::i;:::-;-1:-1:-1;;;;;40741:18:0;;;;;;:7;:18;;;;;:60;40812:44;40836:19;40812:23;:44::i;:::-;40867:23;40879:4;40885;40867:11;:23::i;:::-;40923:9;-1:-1:-1;;;;;40906:44:0;40915:6;-1:-1:-1;;;;;40906:44:0;;40934:15;40906:44;;;;;;;;;;;;;;;;;;40368:590;;;;;;;;;:::o;39758:602::-;39859:15;39876:23;39901:12;39915:23;39940:12;39954:27;39985:19;39996:7;39985:10;:19::i;:::-;-1:-1:-1;;;;;40033:15:0;;;;;;:7;:15;;;;;;39858:146;;-1:-1:-1;39858:146:0;;-1:-1:-1;39858:146:0;;-1:-1:-1;39858:146:0;-1:-1:-1;39858:146:0;-1:-1:-1;39858:146:0;-1:-1:-1;40033:28:0;;39858:146;40033:19;:28::i;:::-;-1:-1:-1;;;;;40015:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;40093:18;;;;;:7;:18;;;;;:39;;40116:15;40093:22;:39::i;:::-;-1:-1:-1;;;;;40072:18:0;;;;;;:7;:18;;;;;;;;:60;;;;40164:7;:18;;;;:39;;40187:15;40164:22;:39::i;39221:529::-;39320:15;39337:23;39362:12;39376:23;39401:12;39415:27;39446:19;39457:7;39446:10;:19::i;:::-;-1:-1:-1;;;;;39494:15:0;;;;;;:7;:15;;;;;;39319:146;;-1:-1:-1;39319:146:0;;-1:-1:-1;39319:146:0;;-1:-1:-1;39319:146:0;-1:-1:-1;39319:146:0;-1:-1:-1;39319:146:0;-1:-1:-1;39494:28:0;;39319:146;39494:19;:28::i;40966:661::-;41069:15;41086:23;41111:12;41125:23;41150:12;41164:27;41195:19;41206:7;41195:10;:19::i;:::-;-1:-1:-1;;;;;41243:15:0;;;;;;:7;:15;;;;;;41068:146;;-1:-1:-1;41068:146:0;;-1:-1:-1;41068:146:0;;-1:-1:-1;41068:146:0;-1:-1:-1;41068:146:0;-1:-1:-1;41068:146:0;-1:-1:-1;41243:28:0;;41263:7;41243:19;:28::i;:::-;-1:-1:-1;;;;;41225:15:0;;;;;;:7;:15;;;;;;;;:46;;;;41300:7;:15;;;;:28;;41320:7;41300:19;:28::i;33422:143::-;33476:15;;33466:7;:25;33527:30;;33502:22;:55;33422:143::o;4732:471::-;4790:7;5035:6;5031:47;;-1:-1:-1;5065:1:0;5058:8;;5031:47;5102:5;;;5106:1;5102;:5;:1;5126:5;;;;;:10;5118:56;;;;-1:-1:-1;;;5118:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41635:409;41716:19;41739:10;:8;:10::i;:::-;41716:33;-1:-1:-1;41760:27:0;41790:36;:19;41716:33;41790:23;:36::i;:::-;41878:4;41862:22;;;;:7;:22;;;;;;41760:66;;-1:-1:-1;41862:47:0;;41760:66;41862:26;:47::i;:::-;41853:4;41837:22;;;;:7;:22;;;;;;;;:72;;;;41923:11;:26;;;;;;41920:116;;;42005:4;41989:22;;;;:7;:22;;;;;;:47;;42016:19;41989:26;:47::i;:::-;41980:4;41964:22;;;;:7;:22;;;;;:72;41920:116;41635:409;;;:::o;42052:147::-;42130:7;;:17;;42142:4;42130:11;:17::i;:::-;42120:7;:27;42171:10;;:20;;42186:4;42171:14;:20::i;:::-;42158:10;:33;-1:-1:-1;;42052:147:0:o

Swarm Source

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