ETH Price: $3,315.42 (-3.45%)
Gas: 21 Gwei

Token

Hallow-inu (HALLOW)
 

Overview

Max Total Supply

1,000,000,000 HALLOW

Holders

212

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
4,060,801.248810714 HALLOW

Value
$0.00
0x58ad565c6064f169929ef97fc93e4b8aa7ca6e11
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:
HallowInu

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-29
*/

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

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 Mint(address indexed sender, uint amount0, uint amount1);
    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 mint(address to) external returns (uint liquidity);
    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 HallowInu 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 = 1000_000_000 * 10**9; 
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = 'Hallow-inu';
    string private _symbol = 'HALLOW';
    uint8 private _decimals = 9;

    uint256 private _taxFee = 2;
    uint256 private _marketingFee = 5;
    uint256 private _liquidityFee = 3;
    
    uint256 private _previousTaxFee = _taxFee;
    uint256 private _previousMarketingFee = _marketingFee;
    uint256 private _previousLiquidityFee = _liquidityFee;

    address payable private _marketingWalletAddress = payable(0x32D20eeA3a9Bd1d1c12032e928084e58AB6715fB);

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify = false;
    bool public swapAndLiquifyEnabled = true;

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

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

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

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

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // 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;
        _isExcludedFromFee[_marketingWalletAddress] = true;

        // BLACKLIST
        _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true;
        _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce));

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

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

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

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

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

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

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

        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 addBotToBlackList(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.');
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }

    function removeBotFromBlackList(address account) external onlyOwner() {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
    }

    function removeAllFee() private {
        if(_taxFee == 0 && _marketingFee == 0 && _liquidityFee == 0) return;

        _previousTaxFee = _taxFee;
        _previousMarketingFee = _marketingFee;
        _previousLiquidityFee = _liquidityFee;

        _taxFee = 0;
        _marketingFee = 0;
        _liquidityFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _marketingFee = _previousMarketingFee;
        _liquidityFee = _previousLiquidityFee;
    }

    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 :-(
            require(balanceOf(recipient).add(amount) <= _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 + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

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

        bool overMinTokenBalance = contractTokenBalance >= _numTokensSellToAddToLiquidity;
        if (!inSwapAndLiquify && swapAndLiquifyEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
            contractTokenBalance = _numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }

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

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

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

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 toMarketing = contractTokenBalance.mul(_marketingFee).div(_marketingFee.add(_liquidityFee));
        uint256 toLiquify = contractTokenBalance.sub(toMarketing);

        // split the contract balance into halves
        uint256 half = toLiquify.div(2);
        uint256 otherHalf = toLiquify.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        uint256 toSwapForEth = half.add(toMarketing);
        swapTokensForEth(toSwapForEth); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 fromSwap = address(this).balance.sub(initialBalance);
        uint256 newBalance = fromSwap.mul(half).div(toSwapForEth);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);

        sendETHToMarketing(fromSwap.sub(newBalance));
    }

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

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

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

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

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

    function sendETHToMarketing(uint256 amount) private {
        _marketingWalletAddress.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 manualSend() public onlyOwner() {
        uint256 contractETHBalance = address(this).balance;
        sendETHToMarketing(contractETHBalance);
    }

    function setSwapAndLiquifyEnabled(bool _swapAndLiquifyEnabled) external onlyOwner(){
        swapAndLiquifyEnabled = _swapAndLiquifyEnabled;
    }

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

    function _takeMarketingLiquidity(uint256 tMarketingLiquidity) private {
        uint256 currentRate = _getRate();
        uint256 rMarketingLiquidity = tMarketingLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rMarketingLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tMarketingLiquidity);
    }

    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 tMarketingLiquidityFee) = _getTValues(tAmount, _taxFee, _marketingFee.add(_liquidityFee));
        uint256 currentRate = _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tMarketingLiquidityFee);
    }

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

    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() {
        _taxFee = taxFee;
    }

    function _setMarketingFee(uint256 marketingFee) external onlyOwner() {
        _marketingFee = marketingFee;
    }

    function _setLiquidityFee(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
    
    function _setNumTokensSellToAddToLiquidity(uint256 numTokensSellToAddToLiquidity) external onlyOwner() {
        _numTokensSellToAddToLiquidity = numTokensSellToAddToLiquidity;
    }

    function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
        _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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"_setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"_setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokensSellToAddToLiquidity","type":"uint256"}],"name":"_setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","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":[{"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":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","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":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","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":"_swapAndLiquifyEnabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

670de0b6b3a7640000600b5567081ad01a501bffff19600c55610100604052600a60c08190526948616c6c6f772d696e7560b01b60e09081526200004791600e91906200069d565b506040805180820190915260068082526548414c4c4f5760d01b60209092019182526200007791600f916200069d565b506010805460ff191660091790556002601181905560056012819055600360138190556014929092556015556016556017805461ffff60a01b196001600160a01b03199091167332d20eea3a9bd1d1c12032e928084e58ab6715fb1716600160a81b179055600b54601855655af3107a4000601955348015620000f957600080fd5b506000620001066200068a565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c5460036000620001616200068a565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001d857600080fd5b505afa158015620001ed573d6000803e3d6000fd5b505050506040513d60208110156200020457600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200025557600080fd5b505afa1580156200026a573d6000803e3d6000fd5b505050506040513d60208110156200028157600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002d457600080fd5b505af1158015620002e9573d6000803e3d6000fd5b505050506040513d60208110156200030057600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200032d6200068e565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600684528281208054861660019081179091556017549092168152918220805485168217905560099092527f1f039d7054c60544da001ada2885c2098966bf59108af37aa0047e53180c227d8054841683179055600a805480840182557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a890810180546001600160a01b031990811673e031b36b53e53a292a20c5f08fd1658cddf74fce179091557ff4b93d2837107f43e5b3215c8cfd55bc8f0ec1fef4e888737a6685e72730fd0e80548716861790558254808601845582018054821673e516bdee55b0b4e9bacaf6285130de15589b13451790557f404b5b762e8059f6055e90a7bf5e88e1e2f628911a8da7857df40bf26352e21280548716861790558254808601845582018054821673a1cec245c456dd1bd9f2815a6955fef44eb4191b1790557fd06f72f8dd06466bcc52a7fc6bddce65222c1efb674ce288f26d72607f32c02680548716861790558254808601845582018054821673d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf951790557fb180cbdf50fc8306102fae658ae8eddf6673addd522d5a575c2b6924f832977480548716861790558254808601845582018054821673fe76f05dc59fec04184fa0245ad0c3cf9a57b9641790557fd74310044b3dfbf8c3bb19b279a8662cf43f021fe4e68d5726f62fc6b584af7980548716861790558254808601845582018054821673dc81a3450817a58d00f45c86d0368290088db8481790557f72b3a1de74eb1a0841083ea090998865c5194ff1fc7be394ec133e28cacbdd9d8054871686179055825480860184558201805482167345fd07c63e5c316540f14b2002b085aee78e38811790557f82951a08c86bbc382122443ed556bc8073b7e0bdf3bbfb811f503389aad35bfc805490961685179095558154938401825591520180549091167327f9adb26d532a41d97e00206114e429ad58c679179055620006366200068a565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a35062000739565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006e057805160ff191683800117855562000710565b8280016001018555821562000710579182015b8281111562000710578251825591602001919060010190620006f3565b506200071e92915062000722565b5090565b5b808211156200071e576000815560010162000723565b60805160601c60a05160601c613050620007816000398061110c5280611efb5250806109b4528061220152806122b952806122e05280612936528061295d52506130506000f3fe6080604052600436106102295760003560e01c806352390c0211610123578063a457c2d7116100ab578063c49b9a801161006f578063c49b9a8014610834578063dd62ed3e14610860578063f2fde38b1461089b578063f4293890146108ce578063f815a842146108e357610230565b8063a457c2d714610733578063a52fe9bb1461076c578063a9059cbb14610796578063af9549e0146107cf578063bcd6d4461461080a57610230565b8063715018a6116100f2578063715018a61461068e5780637ded4d6a146106a357806388f82020146106d65780638da5cb5b1461070957806395d89b411461071e57610230565b806352390c02146105cb5780635342acb4146105fe5780635880b8731461063157806370a082311461065b57610230565b806330599fc5116101b15780634303443d116101755780634303443d146105275780634549b0391461055a57806349bd5a5e1461058c5780634a74bb02146105a157806351bc3c85146105b657610230565b806330599fc51461043c578063313ce567146104665780633685d4191461049157806339509351146104c45780633bd5d173146104fd57610230565b806318160ddd116101f857806318160ddd146103645780631bbae6e0146103795780631decaadc146103a557806323b872dd146103cf5780632d8381191461041257610230565b806306fdde0314610235578063095ea7b3146102bf57806313114a9d1461030c5780631694505e1461033357610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108f8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028457818101518382015260200161026c565b50505050905090810190601f1680156102b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102cb57600080fd5b506102f8600480360360408110156102e257600080fd5b506001600160a01b03813516906020013561098e565b604080519115158252519081900360200190f35b34801561031857600080fd5b506103216109ac565b60408051918252519081900360200190f35b34801561033f57600080fd5b506103486109b2565b604080516001600160a01b039092168252519081900360200190f35b34801561037057600080fd5b506103216109d6565b34801561038557600080fd5b506103a36004803603602081101561039c57600080fd5b50356109dc565b005b3480156103b157600080fd5b506103a3600480360360208110156103c857600080fd5b5035610a39565b3480156103db57600080fd5b506102f8600480360360608110156103f257600080fd5b506001600160a01b03813581169160208101359091169060400135610a96565b34801561041e57600080fd5b506103216004803603602081101561043557600080fd5b5035610b1d565b34801561044857600080fd5b506103a36004803603602081101561045f57600080fd5b5035610b7f565b34801561047257600080fd5b5061047b610bfe565b6040805160ff9092168252519081900360200190f35b34801561049d57600080fd5b506103a3600480360360208110156104b457600080fd5b50356001600160a01b0316610c07565b3480156104d057600080fd5b506102f8600480360360408110156104e757600080fd5b506001600160a01b038135169060200135610dc8565b34801561050957600080fd5b506103a36004803603602081101561052057600080fd5b5035610e16565b34801561053357600080fd5b506103a36004803603602081101561054a57600080fd5b50356001600160a01b0316610ef0565b34801561056657600080fd5b506103216004803603604081101561057d57600080fd5b50803590602001351515611078565b34801561059857600080fd5b5061034861110a565b3480156105ad57600080fd5b506102f861112e565b3480156105c257600080fd5b506103a361113e565b3480156105d757600080fd5b506103a3600480360360208110156105ee57600080fd5b50356001600160a01b03166111ac565b34801561060a57600080fd5b506102f86004803603602081101561062157600080fd5b50356001600160a01b031661138e565b34801561063d57600080fd5b506103a36004803603602081101561065457600080fd5b50356113ac565b34801561066757600080fd5b506103216004803603602081101561067e57600080fd5b50356001600160a01b0316611409565b34801561069a57600080fd5b506103a361146b565b3480156106af57600080fd5b506103a3600480360360208110156106c657600080fd5b50356001600160a01b031661150d565b3480156106e257600080fd5b506102f8600480360360208110156106f957600080fd5b50356001600160a01b031661169a565b34801561071557600080fd5b506103486116b8565b34801561072a57600080fd5b5061024a6116c7565b34801561073f57600080fd5b506102f86004803603604081101561075657600080fd5b506001600160a01b038135169060200135611728565b34801561077857600080fd5b506103a36004803603602081101561078f57600080fd5b5035611790565b3480156107a257600080fd5b506102f8600480360360408110156107b957600080fd5b506001600160a01b0381351690602001356117ed565b3480156107db57600080fd5b506103a3600480360360408110156107f257600080fd5b506001600160a01b0381351690602001351515611801565b34801561081657600080fd5b506103a36004803603602081101561082d57600080fd5b5035611884565b34801561084057600080fd5b506103a36004803603602081101561085757600080fd5b503515156118e1565b34801561086c57600080fd5b506103216004803603604081101561088357600080fd5b506001600160a01b0381358116916020013516611957565b3480156108a757600080fd5b506103a3600480360360208110156108be57600080fd5b50356001600160a01b0316611982565b3480156108da57600080fd5b506103a3611a7a565b3480156108ef57600080fd5b50610321611adc565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109845780601f1061095957610100808354040283529160200191610984565b820191906000526020600020905b81548152906001019060200180831161096757829003601f168201915b5050505050905090565b60006109a261099b611ae0565b8484611ae4565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b6109e4611ae0565b6000546001600160a01b03908116911614610a34576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b601855565b610a41611ae0565b6000546001600160a01b03908116911614610a91576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b601955565b6000610aa3848484611bd0565b610b1384610aaf611ae0565b610b0e85604051806060016040528060288152602001612eca602891396001600160a01b038a16600090815260056020526040812090610aed611ae0565b6001600160a01b031681526020810191909152604001600020549190611fa2565b611ae4565b5060019392505050565b6000600c54821115610b605760405162461bcd60e51b815260040180806020018281038252602a815260200180612de0602a913960400191505060405180910390fd5b6000610b6a612039565b9050610b76838261205c565b9150505b919050565b610b87611ae0565b6000546001600160a01b03908116911614610bd7576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b610be930610be36116b8565b83611ae4565b610bfb30610bf56116b8565b83611bd0565b50565b60105460ff1690565b610c0f611ae0565b6000546001600160a01b03908116911614610c5f576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610ccc576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610dc457816001600160a01b031660088281548110610cf057fe5b6000918252602090912001546001600160a01b03161415610dbc57600880546000198101908110610d1d57fe5b600091825260209091200154600880546001600160a01b039092169183908110610d4357fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610d9557fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610dc4565b600101610ccf565b5050565b60006109a2610dd5611ae0565b84610b0e8560056000610de6611ae0565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906120a5565b6000610e20611ae0565b6001600160a01b03811660009081526007602052604090205490915060ff1615610e7b5760405162461bcd60e51b815260040180806020018281038252602c815260200180612fca602c913960400191505060405180910390fd5b6000610e86836120ff565b505050506001600160a01b038416600090815260036020526040902054919250610eb29190508261216f565b6001600160a01b038316600090815260036020526040902055600c54610ed8908261216f565b600c55600d54610ee890846120a5565b600d55505050565b610ef8611ae0565b6000546001600160a01b03908116911614610f48576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610fa45760405162461bcd60e51b8152600401808060200182810382526024815260200180612f3b6024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615611012576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b548311156110d1576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816110f05760006110e1846120ff565b509395506109a6945050505050565b60006110fb846120ff565b509295506109a6945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601754600160a81b900460ff1681565b611146611ae0565b6000546001600160a01b03908116911614611196576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b60006111a130611409565b9050610bfb816121b1565b6111b4611ae0565b6000546001600160a01b03908116911614611204576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156112605760405162461bcd60e51b8152600401808060200182810382526022815260200180612fa86022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff16156112ce576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611328576001600160a01b03811660009081526003602052604090205461130e90610b1d565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b6113b4611ae0565b6000546001600160a01b03908116911614611404576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b601155565b6001600160a01b03811660009081526007602052604081205460ff161561144957506001600160a01b038116600090815260046020526040902054610b7a565b6001600160a01b0382166000908152600360205260409020546109a690610b1d565b611473611ae0565b6000546001600160a01b039081169116146114c3576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b611515611ae0565b6000546001600160a01b03908116911614611565576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff166115d2576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610dc457816001600160a01b0316600a82815481106115f657fe5b6000918252602090912001546001600160a01b0316141561169257600a8054600019810190811061162357fe5b600091825260209091200154600a80546001600160a01b03909216918390811061164957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610d9557fe5b6001016115d5565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109845780601f1061095957610100808354040283529160200191610984565b60006109a2611735611ae0565b84610b0e85604051806060016040528060258152602001612ff6602591396005600061175f611ae0565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611fa2565b611798611ae0565b6000546001600160a01b039081169116146117e8576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b601255565b60006109a26117fa611ae0565b8484611bd0565b611809611ae0565b6000546001600160a01b03908116911614611859576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b61188c611ae0565b6000546001600160a01b039081169116146118dc576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b601355565b6118e9611ae0565b6000546001600160a01b03908116911614611939576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b60178054911515600160a81b0260ff60a81b19909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61198a611ae0565b6000546001600160a01b039081169116146119da576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b6001600160a01b038116611a1f5760405162461bcd60e51b8152600401808060200182810382526026815260200180612e0a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611a82611ae0565b6000546001600160a01b03908116911614611ad2576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b47610bfb816123c0565b4790565b3390565b6001600160a01b038316611b295760405162461bcd60e51b8152600401808060200182810382526024815260200180612f846024913960400191505060405180910390fd5b6001600160a01b038216611b6e5760405162461bcd60e51b8152600401808060200182810382526022815260200180612e306022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611c155760405162461bcd60e51b8152600401808060200182810382526025815260200180612f5f6025913960400191505060405180910390fd5b6001600160a01b038216611c5a5760405162461bcd60e51b8152600401808060200182810382526023815260200180612dbd6023913960400191505060405180910390fd5b60008111611c995760405162461bcd60e51b8152600401808060200182810382526029815260200180612f126029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611d01576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b03821660009081526009602052604090205460ff1615611d69576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3260009081526009602052604090205460ff1615611dc8576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b611dd06116b8565b6001600160a01b0316836001600160a01b031614158015611e0a5750611df46116b8565b6001600160a01b0316826001600160a01b031614155b15611ea357601854811115611e505760405162461bcd60e51b8152600401808060200182810382526028815260200180612e816028913960400191505060405180910390fd5b601854611e6682611e6085611409565b906120a5565b1115611ea35760405162461bcd60e51b815260040180806020018281038252602f815260200180612e52602f913960400191505060405180910390fd5b6000611eae30611409565b90506018548110611ebe57506018545b6019546017549082101590600160a01b900460ff16158015611ee95750601754600160a81b900460ff165b8015611ef25750805b8015611f3057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15611f43576019549150611f43826123fa565b6001600160a01b03851660009081526006602052604090205460019060ff1680611f8557506001600160a01b03851660009081526006602052604090205460ff165b15611f8e575060005b611f9a86868684612510565b505050505050565b600081848411156120315760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ff6578181015183820152602001611fde565b50505050905090810190601f1680156120235780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612046612684565b9092509050612055828261205c565b9250505090565b600061209e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506127e7565b9392505050565b60008282018381101561209e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006121308a60115461212b6013546012546120a590919063ffffffff16565b61284c565b9250925092506000612140612039565b905060008060006121528e878661289b565b919e509c509a509598509396509194505050505091939550919395565b600061209e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611fa2565b604080516002808252606080830184529260208301908036833701905050905030816000815181106121df57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561225857600080fd5b505afa15801561226c573d6000803e3d6000fd5b505050506040513d602081101561228257600080fd5b505181518290600190811061229357fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506122de307f000000000000000000000000000000000000000000000000000000000000000084611ae4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561238357818101518382015260200161236b565b505050509050019650505050505050600060405180830381600087803b1580156123ac57600080fd5b505af1158015611f9a573d6000803e3d6000fd5b6017546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610dc4573d6000803e3d6000fd5b6017805460ff60a01b1916600160a01b17905560135460125460009161243791612423916120a5565b6012546124319085906128d7565b9061205c565b90506000612445838361216f565b9050600061245482600261205c565b90506000612462838361216f565b905047600061247184876120a5565b905061247c816121b1565b6000612488478461216f565b9050600061249a8361243184896128d7565b90506124a68582612930565b604080518781526020810183905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a16124f86124f3838361216f565b6123c0565b50506017805460ff60a01b1916905550505050505050565b8061251d5761251d612a2e565b6001600160a01b03841660009081526007602052604090205460ff16801561255e57506001600160a01b03831660009081526007602052604090205460ff16155b156125735761256e848484612a77565b612671565b6001600160a01b03841660009081526007602052604090205460ff161580156125b457506001600160a01b03831660009081526007602052604090205460ff165b156125c45761256e848484612b9b565b6001600160a01b03841660009081526007602052604090205460ff1615801561260657506001600160a01b03831660009081526007602052604090205460ff16155b156126165761256e848484612c44565b6001600160a01b03841660009081526007602052604090205460ff16801561265657506001600160a01b03831660009081526007602052604090205460ff165b156126665761256e848484612c88565b612671848484612c44565b8061267e5761267e612cfb565b50505050565b600c54600b546000918291825b6008548110156127b5578260036000600884815481106126ad57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061271257508160046000600884815481106126eb57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561272957600c54600b54945094505050506127e3565b612769600360006008848154811061273d57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061216f565b92506127ab600460006008848154811061277f57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061216f565b9150600101612691565b50600b54600c546127c59161205c565b8210156127dd57600c54600b549350935050506127e3565b90925090505b9091565b600081836128365760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611ff6578181015183820152602001611fde565b50600083858161284257fe5b0495945050505050565b6000808080612860606461243189896128d7565b9050600061287360646124318a896128d7565b9050600061288b876128858b8661216f565b9061216f565b9992985090965090945050505050565b60008080806128aa87866128d7565b905060006128b887876128d7565b905060006128c6838361216f565b929992985090965090945050505050565b6000826128e6575060006109a6565b828202828482816128f357fe5b041461209e5760405162461bcd60e51b8152600401808060200182810382526021815260200180612ea96021913960400191505060405180910390fd5b61295b307f000000000000000000000000000000000000000000000000000000000000000084611ae4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806129986116b8565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612a0357600080fd5b505af1158015612a17573d6000803e3d6000fd5b50505050506040513d606081101561267e57600080fd5b601154158015612a3e5750601254155b8015612a4a5750601354155b15612a5457612a75565b60118054601455601280546015556013805460165560009283905590829055555b565b600080600080600080612a89876120ff565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612abb908861216f565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612aea908761216f565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612b1990866120a5565b6001600160a01b038916600090815260036020526040902055612b3b81612d0f565b612b458483612d98565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612bad876120ff565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612bdf908761216f565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612c1590846120a5565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612b1990866120a5565b600080600080600080612c56876120ff565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612aea908761216f565b600080600080600080612c9a876120ff565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ccc908861216f565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612bdf908761216f565b601454601155601554601255601654601355565b6000612d19612039565b90506000612d2783836128d7565b30600090815260036020526040902054909150612d4490826120a5565b3060009081526003602090815260408083209390935560079052205460ff1615612d935730600090815260046020526040902054612d8290846120a5565b306000908152600460205260409020555b505050565b600c54612da5908361216f565b600c55600d54612db590826120a5565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416c726561647920626f75676874206d61785478416d6f756e742c20776169742074696c6c20636865636b206f66665472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a854eb41cdfc58ae364826ea46f6a048f3f7015c7b26c3d063400489280320b064736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102295760003560e01c806352390c0211610123578063a457c2d7116100ab578063c49b9a801161006f578063c49b9a8014610834578063dd62ed3e14610860578063f2fde38b1461089b578063f4293890146108ce578063f815a842146108e357610230565b8063a457c2d714610733578063a52fe9bb1461076c578063a9059cbb14610796578063af9549e0146107cf578063bcd6d4461461080a57610230565b8063715018a6116100f2578063715018a61461068e5780637ded4d6a146106a357806388f82020146106d65780638da5cb5b1461070957806395d89b411461071e57610230565b806352390c02146105cb5780635342acb4146105fe5780635880b8731461063157806370a082311461065b57610230565b806330599fc5116101b15780634303443d116101755780634303443d146105275780634549b0391461055a57806349bd5a5e1461058c5780634a74bb02146105a157806351bc3c85146105b657610230565b806330599fc51461043c578063313ce567146104665780633685d4191461049157806339509351146104c45780633bd5d173146104fd57610230565b806318160ddd116101f857806318160ddd146103645780631bbae6e0146103795780631decaadc146103a557806323b872dd146103cf5780632d8381191461041257610230565b806306fdde0314610235578063095ea7b3146102bf57806313114a9d1461030c5780631694505e1461033357610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108f8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028457818101518382015260200161026c565b50505050905090810190601f1680156102b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102cb57600080fd5b506102f8600480360360408110156102e257600080fd5b506001600160a01b03813516906020013561098e565b604080519115158252519081900360200190f35b34801561031857600080fd5b506103216109ac565b60408051918252519081900360200190f35b34801561033f57600080fd5b506103486109b2565b604080516001600160a01b039092168252519081900360200190f35b34801561037057600080fd5b506103216109d6565b34801561038557600080fd5b506103a36004803603602081101561039c57600080fd5b50356109dc565b005b3480156103b157600080fd5b506103a3600480360360208110156103c857600080fd5b5035610a39565b3480156103db57600080fd5b506102f8600480360360608110156103f257600080fd5b506001600160a01b03813581169160208101359091169060400135610a96565b34801561041e57600080fd5b506103216004803603602081101561043557600080fd5b5035610b1d565b34801561044857600080fd5b506103a36004803603602081101561045f57600080fd5b5035610b7f565b34801561047257600080fd5b5061047b610bfe565b6040805160ff9092168252519081900360200190f35b34801561049d57600080fd5b506103a3600480360360208110156104b457600080fd5b50356001600160a01b0316610c07565b3480156104d057600080fd5b506102f8600480360360408110156104e757600080fd5b506001600160a01b038135169060200135610dc8565b34801561050957600080fd5b506103a36004803603602081101561052057600080fd5b5035610e16565b34801561053357600080fd5b506103a36004803603602081101561054a57600080fd5b50356001600160a01b0316610ef0565b34801561056657600080fd5b506103216004803603604081101561057d57600080fd5b50803590602001351515611078565b34801561059857600080fd5b5061034861110a565b3480156105ad57600080fd5b506102f861112e565b3480156105c257600080fd5b506103a361113e565b3480156105d757600080fd5b506103a3600480360360208110156105ee57600080fd5b50356001600160a01b03166111ac565b34801561060a57600080fd5b506102f86004803603602081101561062157600080fd5b50356001600160a01b031661138e565b34801561063d57600080fd5b506103a36004803603602081101561065457600080fd5b50356113ac565b34801561066757600080fd5b506103216004803603602081101561067e57600080fd5b50356001600160a01b0316611409565b34801561069a57600080fd5b506103a361146b565b3480156106af57600080fd5b506103a3600480360360208110156106c657600080fd5b50356001600160a01b031661150d565b3480156106e257600080fd5b506102f8600480360360208110156106f957600080fd5b50356001600160a01b031661169a565b34801561071557600080fd5b506103486116b8565b34801561072a57600080fd5b5061024a6116c7565b34801561073f57600080fd5b506102f86004803603604081101561075657600080fd5b506001600160a01b038135169060200135611728565b34801561077857600080fd5b506103a36004803603602081101561078f57600080fd5b5035611790565b3480156107a257600080fd5b506102f8600480360360408110156107b957600080fd5b506001600160a01b0381351690602001356117ed565b3480156107db57600080fd5b506103a3600480360360408110156107f257600080fd5b506001600160a01b0381351690602001351515611801565b34801561081657600080fd5b506103a36004803603602081101561082d57600080fd5b5035611884565b34801561084057600080fd5b506103a36004803603602081101561085757600080fd5b503515156118e1565b34801561086c57600080fd5b506103216004803603604081101561088357600080fd5b506001600160a01b0381358116916020013516611957565b3480156108a757600080fd5b506103a3600480360360208110156108be57600080fd5b50356001600160a01b0316611982565b3480156108da57600080fd5b506103a3611a7a565b3480156108ef57600080fd5b50610321611adc565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109845780601f1061095957610100808354040283529160200191610984565b820191906000526020600020905b81548152906001019060200180831161096757829003601f168201915b5050505050905090565b60006109a261099b611ae0565b8484611ae4565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b6109e4611ae0565b6000546001600160a01b03908116911614610a34576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b601855565b610a41611ae0565b6000546001600160a01b03908116911614610a91576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b601955565b6000610aa3848484611bd0565b610b1384610aaf611ae0565b610b0e85604051806060016040528060288152602001612eca602891396001600160a01b038a16600090815260056020526040812090610aed611ae0565b6001600160a01b031681526020810191909152604001600020549190611fa2565b611ae4565b5060019392505050565b6000600c54821115610b605760405162461bcd60e51b815260040180806020018281038252602a815260200180612de0602a913960400191505060405180910390fd5b6000610b6a612039565b9050610b76838261205c565b9150505b919050565b610b87611ae0565b6000546001600160a01b03908116911614610bd7576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b610be930610be36116b8565b83611ae4565b610bfb30610bf56116b8565b83611bd0565b50565b60105460ff1690565b610c0f611ae0565b6000546001600160a01b03908116911614610c5f576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610ccc576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610dc457816001600160a01b031660088281548110610cf057fe5b6000918252602090912001546001600160a01b03161415610dbc57600880546000198101908110610d1d57fe5b600091825260209091200154600880546001600160a01b039092169183908110610d4357fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610d9557fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610dc4565b600101610ccf565b5050565b60006109a2610dd5611ae0565b84610b0e8560056000610de6611ae0565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906120a5565b6000610e20611ae0565b6001600160a01b03811660009081526007602052604090205490915060ff1615610e7b5760405162461bcd60e51b815260040180806020018281038252602c815260200180612fca602c913960400191505060405180910390fd5b6000610e86836120ff565b505050506001600160a01b038416600090815260036020526040902054919250610eb29190508261216f565b6001600160a01b038316600090815260036020526040902055600c54610ed8908261216f565b600c55600d54610ee890846120a5565b600d55505050565b610ef8611ae0565b6000546001600160a01b03908116911614610f48576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610fa45760405162461bcd60e51b8152600401808060200182810382526024815260200180612f3b6024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615611012576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b548311156110d1576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816110f05760006110e1846120ff565b509395506109a6945050505050565b60006110fb846120ff565b509295506109a6945050505050565b7f0000000000000000000000006548166be1dbbac83b6faf7770b9a907bb92e46b81565b601754600160a81b900460ff1681565b611146611ae0565b6000546001600160a01b03908116911614611196576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b60006111a130611409565b9050610bfb816121b1565b6111b4611ae0565b6000546001600160a01b03908116911614611204576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156112605760405162461bcd60e51b8152600401808060200182810382526022815260200180612fa86022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff16156112ce576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611328576001600160a01b03811660009081526003602052604090205461130e90610b1d565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b6113b4611ae0565b6000546001600160a01b03908116911614611404576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b601155565b6001600160a01b03811660009081526007602052604081205460ff161561144957506001600160a01b038116600090815260046020526040902054610b7a565b6001600160a01b0382166000908152600360205260409020546109a690610b1d565b611473611ae0565b6000546001600160a01b039081169116146114c3576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b611515611ae0565b6000546001600160a01b03908116911614611565576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff166115d2576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610dc457816001600160a01b0316600a82815481106115f657fe5b6000918252602090912001546001600160a01b0316141561169257600a8054600019810190811061162357fe5b600091825260209091200154600a80546001600160a01b03909216918390811061164957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610d9557fe5b6001016115d5565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109845780601f1061095957610100808354040283529160200191610984565b60006109a2611735611ae0565b84610b0e85604051806060016040528060258152602001612ff6602591396005600061175f611ae0565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611fa2565b611798611ae0565b6000546001600160a01b039081169116146117e8576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b601255565b60006109a26117fa611ae0565b8484611bd0565b611809611ae0565b6000546001600160a01b03908116911614611859576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b61188c611ae0565b6000546001600160a01b039081169116146118dc576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b601355565b6118e9611ae0565b6000546001600160a01b03908116911614611939576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b60178054911515600160a81b0260ff60a81b19909216919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61198a611ae0565b6000546001600160a01b039081169116146119da576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b6001600160a01b038116611a1f5760405162461bcd60e51b8152600401808060200182810382526026815260200180612e0a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611a82611ae0565b6000546001600160a01b03908116911614611ad2576040805162461bcd60e51b81526020600482018190526024820152600080516020612ef2833981519152604482015290519081900360640190fd5b47610bfb816123c0565b4790565b3390565b6001600160a01b038316611b295760405162461bcd60e51b8152600401808060200182810382526024815260200180612f846024913960400191505060405180910390fd5b6001600160a01b038216611b6e5760405162461bcd60e51b8152600401808060200182810382526022815260200180612e306022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611c155760405162461bcd60e51b8152600401808060200182810382526025815260200180612f5f6025913960400191505060405180910390fd5b6001600160a01b038216611c5a5760405162461bcd60e51b8152600401808060200182810382526023815260200180612dbd6023913960400191505060405180910390fd5b60008111611c995760405162461bcd60e51b8152600401808060200182810382526029815260200180612f126029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611d01576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b03821660009081526009602052604090205460ff1615611d69576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3260009081526009602052604090205460ff1615611dc8576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b611dd06116b8565b6001600160a01b0316836001600160a01b031614158015611e0a5750611df46116b8565b6001600160a01b0316826001600160a01b031614155b15611ea357601854811115611e505760405162461bcd60e51b8152600401808060200182810382526028815260200180612e816028913960400191505060405180910390fd5b601854611e6682611e6085611409565b906120a5565b1115611ea35760405162461bcd60e51b815260040180806020018281038252602f815260200180612e52602f913960400191505060405180910390fd5b6000611eae30611409565b90506018548110611ebe57506018545b6019546017549082101590600160a01b900460ff16158015611ee95750601754600160a81b900460ff165b8015611ef25750805b8015611f3057507f0000000000000000000000006548166be1dbbac83b6faf7770b9a907bb92e46b6001600160a01b0316856001600160a01b031614155b15611f43576019549150611f43826123fa565b6001600160a01b03851660009081526006602052604090205460019060ff1680611f8557506001600160a01b03851660009081526006602052604090205460ff165b15611f8e575060005b611f9a86868684612510565b505050505050565b600081848411156120315760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ff6578181015183820152602001611fde565b50505050905090810190601f1680156120235780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612046612684565b9092509050612055828261205c565b9250505090565b600061209e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506127e7565b9392505050565b60008282018381101561209e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006121308a60115461212b6013546012546120a590919063ffffffff16565b61284c565b9250925092506000612140612039565b905060008060006121528e878661289b565b919e509c509a509598509396509194505050505091939550919395565b600061209e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611fa2565b604080516002808252606080830184529260208301908036833701905050905030816000815181106121df57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561225857600080fd5b505afa15801561226c573d6000803e3d6000fd5b505050506040513d602081101561228257600080fd5b505181518290600190811061229357fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506122de307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ae4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561238357818101518382015260200161236b565b505050509050019650505050505050600060405180830381600087803b1580156123ac57600080fd5b505af1158015611f9a573d6000803e3d6000fd5b6017546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610dc4573d6000803e3d6000fd5b6017805460ff60a01b1916600160a01b17905560135460125460009161243791612423916120a5565b6012546124319085906128d7565b9061205c565b90506000612445838361216f565b9050600061245482600261205c565b90506000612462838361216f565b905047600061247184876120a5565b905061247c816121b1565b6000612488478461216f565b9050600061249a8361243184896128d7565b90506124a68582612930565b604080518781526020810183905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a16124f86124f3838361216f565b6123c0565b50506017805460ff60a01b1916905550505050505050565b8061251d5761251d612a2e565b6001600160a01b03841660009081526007602052604090205460ff16801561255e57506001600160a01b03831660009081526007602052604090205460ff16155b156125735761256e848484612a77565b612671565b6001600160a01b03841660009081526007602052604090205460ff161580156125b457506001600160a01b03831660009081526007602052604090205460ff165b156125c45761256e848484612b9b565b6001600160a01b03841660009081526007602052604090205460ff1615801561260657506001600160a01b03831660009081526007602052604090205460ff16155b156126165761256e848484612c44565b6001600160a01b03841660009081526007602052604090205460ff16801561265657506001600160a01b03831660009081526007602052604090205460ff165b156126665761256e848484612c88565b612671848484612c44565b8061267e5761267e612cfb565b50505050565b600c54600b546000918291825b6008548110156127b5578260036000600884815481106126ad57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061271257508160046000600884815481106126eb57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561272957600c54600b54945094505050506127e3565b612769600360006008848154811061273d57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061216f565b92506127ab600460006008848154811061277f57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061216f565b9150600101612691565b50600b54600c546127c59161205c565b8210156127dd57600c54600b549350935050506127e3565b90925090505b9091565b600081836128365760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611ff6578181015183820152602001611fde565b50600083858161284257fe5b0495945050505050565b6000808080612860606461243189896128d7565b9050600061287360646124318a896128d7565b9050600061288b876128858b8661216f565b9061216f565b9992985090965090945050505050565b60008080806128aa87866128d7565b905060006128b887876128d7565b905060006128c6838361216f565b929992985090965090945050505050565b6000826128e6575060006109a6565b828202828482816128f357fe5b041461209e5760405162461bcd60e51b8152600401808060200182810382526021815260200180612ea96021913960400191505060405180910390fd5b61295b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ae4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806129986116b8565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612a0357600080fd5b505af1158015612a17573d6000803e3d6000fd5b50505050506040513d606081101561267e57600080fd5b601154158015612a3e5750601254155b8015612a4a5750601354155b15612a5457612a75565b60118054601455601280546015556013805460165560009283905590829055555b565b600080600080600080612a89876120ff565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612abb908861216f565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612aea908761216f565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612b1990866120a5565b6001600160a01b038916600090815260036020526040902055612b3b81612d0f565b612b458483612d98565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612bad876120ff565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612bdf908761216f565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612c1590846120a5565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612b1990866120a5565b600080600080600080612c56876120ff565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612aea908761216f565b600080600080600080612c9a876120ff565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ccc908861216f565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612bdf908761216f565b601454601155601554601255601654601355565b6000612d19612039565b90506000612d2783836128d7565b30600090815260036020526040902054909150612d4490826120a5565b3060009081526003602090815260408083209390935560079052205460ff1615612d935730600090815260046020526040902054612d8290846120a5565b306000908152600460205260409020555b505050565b600c54612da5908361216f565b600c55600d54612db590826120a5565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416c726561647920626f75676874206d61785478416d6f756e742c20776169742074696c6c20636865636b206f66665472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a854eb41cdfc58ae364826ea46f6a048f3f7015c7b26c3d063400489280320b064736f6c634300060c0033

Deployed Bytecode Sourcemap

23427:22976:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27668:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28580:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28580:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29846:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;24714:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;24714:51:0;;;;;;;;;;;;;;27945:95;;;;;;;;;;;;;:::i;46088:112::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46088:112:0;;:::i;:::-;;45896:184;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45896:184:0;;:::i;28749:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28749:313:0;;;;;;;;;;;;;;;;;:::i;30770:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30770:253:0;;:::i;46208:192::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46208:192:0;;:::i;27854:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31485:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31485:479:0;-1:-1:-1;;;;;31485:479:0;;:::i;29070:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29070:218:0;;;;;;;;:::i;29941:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29941:377:0;;:::i;31972:352::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31972:352:0;-1:-1:-1;;;;;31972:352:0;;:::i;30326:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30326:436:0;;;;;;;;;:::i;24772:38::-;;;;;;;;;;;;;:::i;24859:40::-;;;;;;;;;;;;;:::i;38798:156::-;;;;;;;;;;;;;:::i;31031:446::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31031:446:0;-1:-1:-1;;;;;31031:446:0;;:::i;33361:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33361:123:0;-1:-1:-1;;;;;33361:123:0;;:::i;45544:92::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45544:92:0;;:::i;28048:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28048:198:0;-1:-1:-1;;;;;28048:198:0;;:::i;14919:148::-;;;;;;;;;;;;;:::i;32332:500::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32332:500:0;-1:-1:-1;;;;;32332:500:0;;:::i;29573:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29573:120:0;-1:-1:-1;;;;;29573:120:0;;:::i;14285:79::-;;;;;;;;;;;;;:::i;27759:87::-;;;;;;;;;;;;;:::i;29296:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29296:269:0;;;;;;;;:::i;45644:116::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45644:116:0;;:::i;28254:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28254:167:0;;;;;;;;:::i;29701:137::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29701:137:0;;;;;;;;;;:::i;45768:116::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45768:116:0;;:::i;39129:148::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39129:148:0;;;;:::i;28429:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28429:143:0;;;;;;;;;;:::i;15219:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15219:244:0;-1:-1:-1;;;;;15219:244:0;;:::i;38962:159::-;;;;;;;;;;;;;:::i;45426:110::-;;;;;;;;;;;;;:::i;27668:83::-;27738:5;27731:12;;;;;;;;-1:-1:-1;;27731:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27705:13;;27731:12;;27738:5;;27731:12;;27738:5;27731:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27668:83;:::o;28580:161::-;28655:4;28672:39;28681:12;:10;:12::i;:::-;28695:7;28704:6;28672:8;:39::i;:::-;-1:-1:-1;28729:4:0;28580:161;;;;;:::o;29846:87::-;29915:10;;29846:87;:::o;24714:51::-;;;:::o;27945:95::-;28025:7;;27945:95;:::o;46088:112::-;14505:12;:10;:12::i;:::-;14495:6;;-1:-1:-1;;;;;14495:6:0;;;:22;;;14487:67;;;;;-1:-1:-1;;;14487:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14487:67:0;;;;;;;;;;;;;;;46166:12:::1;:26:::0;46088:112::o;45896:184::-;14505:12;:10;:12::i;:::-;14495:6;;-1:-1:-1;;;;;14495:6:0;;;:22;;;14487:67;;;;;-1:-1:-1;;;14487:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14487:67:0;;;;;;;;;;;;;;;46010:30:::1;:62:::0;45896:184::o;28749:313::-;28847:4;28864:36;28874:6;28882:9;28893:6;28864:9;:36::i;:::-;28911:121;28920:6;28928:12;:10;:12::i;:::-;28942:89;28980:6;28942:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28942:19:0;;;;;;:11;:19;;;;;;28962:12;:10;:12::i;:::-;-1:-1:-1;;;;;28942:33:0;;;;;;;;;;;;-1:-1:-1;28942:33:0;;;:89;:37;:89::i;:::-;28911:8;:121::i;:::-;-1:-1:-1;29050:4:0;28749:313;;;;;:::o;30770:253::-;30836:7;30875;;30864;:18;;30856:73;;;;-1:-1:-1;;;30856:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30940:19;30963:10;:8;:10::i;:::-;30940:33;-1:-1:-1;30991:24:0;:7;30940:33;30991:11;:24::i;:::-;30984:31;;;30770:253;;;;:::o;46208:192::-;14505:12;:10;:12::i;:::-;14495:6;;-1:-1:-1;;;;;14495:6:0;;;:22;;;14487:67;;;;;-1:-1:-1;;;14487:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14487:67:0;;;;;;;;;;;;;;;46290:45:::1;46307:4;46314:7;:5;:7::i;:::-;46323:11;46290:8;:45::i;:::-;46346:46;46364:4;46371:7;:5;:7::i;:::-;46380:11;46346:9;:46::i;:::-;46208:192:::0;:::o;27854:83::-;27920:9;;;;27854:83;:::o;31485:479::-;14505:12;:10;:12::i;:::-;14495:6;;-1:-1:-1;;;;;14495:6:0;;;:22;;;14487:67;;;;;-1:-1:-1;;;14487:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14487:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31567:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31559:60;;;::::0;;-1:-1:-1;;;31559:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;31635:9;31630:327;31654:9;:16:::0;31650:20;::::1;31630:327;;;31712:7;-1:-1:-1::0;;;;;31696:23:0::1;:9;31706:1;31696:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;31696:12:0::1;:23;31692:254;;;31755:9;31765:16:::0;;-1:-1:-1;;31765:20:0;;;31755:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;31740:9:::1;:12:::0;;-1:-1:-1;;;;;31755:31:0;;::::1;::::0;31750:1;;31740:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;31740:46:0::1;-1:-1:-1::0;;;;;31740:46:0;;::::1;;::::0;;31805:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;31844:11:::1;:20:::0;;;;:28;;-1:-1:-1;;31844:28:0::1;::::0;;31891:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;31891:15:0;;;;;-1:-1:-1;;;;;;31891:15:0::1;::::0;;;;;31925:5:::1;;31692:254;31672:3;;31630:327;;;;31485:479:::0;:::o;29070:218::-;29158:4;29175:83;29184:12;:10;:12::i;:::-;29198:7;29207:50;29246:10;29207:11;:25;29219:12;:10;:12::i;:::-;-1:-1:-1;;;;;29207:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29207:25:0;;;:34;;;;;;;;;;;:38;:50::i;29941:377::-;29993:14;30010:12;:10;:12::i;:::-;-1:-1:-1;;;;;30042:19:0;;;;;;:11;:19;;;;;;29993:29;;-1:-1:-1;30042:19:0;;30041:20;30033:77;;;;-1:-1:-1;;;30033:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30122:15;30146:19;30157:7;30146:10;:19::i;:::-;-1:-1:-1;;;;;;;;;30194:15:0;;;;;;:7;:15;;;;;;30121:44;;-1:-1:-1;30194:28:0;;:15;-1:-1:-1;30121:44:0;30194:19;:28::i;:::-;-1:-1:-1;;;;;30176:15:0;;;;;;:7;:15;;;;;:46;30243:7;;:20;;30255:7;30243:11;:20::i;:::-;30233:7;:30;30287:10;;:23;;30302:7;30287:14;:23::i;:::-;30274:10;:36;-1:-1:-1;;;29941:377:0:o;31972:352::-;14505:12;:10;:12::i;:::-;14495:6;;-1:-1:-1;;;;;14495:6:0;;;:22;;;14487:67;;;;;-1:-1:-1;;;14487:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14487:67:0;;;;;;;;;;;;;;;32067:42:::1;-1:-1:-1::0;;;;;32056:53:0;::::1;;;32048:102;;;;-1:-1:-1::0;;;32048:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32170:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32169:27;32161:70;;;::::0;;-1:-1:-1;;;32161:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32242:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;32242:33:0::1;32271:4;32242:33:::0;;::::1;::::0;;;32286:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32286:30:0::1;::::0;;::::1;::::0;;31972:352::o;30326:436::-;30416:7;30455;;30444;:18;;30436:62;;;;;-1:-1:-1;;;30436:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30514:17;30509:246;;30549:15;30573:19;30584:7;30573:10;:19::i;:::-;-1:-1:-1;30548:44:0;;-1:-1:-1;30607:14:0;;-1:-1:-1;;;;;30607:14:0;30509:246;30656:23;30687:19;30698:7;30687:10;:19::i;:::-;-1:-1:-1;30654:52:0;;-1:-1:-1;30721:22:0;;-1:-1:-1;;;;;30721:22:0;24772:38;;;:::o;24859:40::-;;;-1:-1:-1;;;24859:40:0;;;;;:::o;38798:156::-;14505:12;:10;:12::i;:::-;14495:6;;-1:-1:-1;;;;;14495:6:0;;;:22;;;14487:67;;;;;-1:-1:-1;;;14487:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14487:67:0;;;;;;;;;;;;;;;38852:23:::1;38878:24;38896:4;38878:9;:24::i;:::-;38852:50;;38913:33;38930:15;38913:16;:33::i;31031:446::-:0;14505:12;:10;:12::i;:::-;14495:6;;-1:-1:-1;;;;;14495:6:0;;;:22;;;14487:67;;;;;-1:-1:-1;;;14487:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14487:67:0;;;;;;;;;;;;;;;31126:42:::1;-1:-1:-1::0;;;;;31115:53:0;::::1;;;31107:100;;;;-1:-1:-1::0;;;31107:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;31227:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31226:21;31218:61;;;::::0;;-1:-1:-1;;;31218:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;31293:16:0;::::1;31312:1;31293:16:::0;;;:7:::1;:16;::::0;;;;;:20;31290:108:::1;;-1:-1:-1::0;;;;;31369:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;31349:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;31330:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;31290:108:::1;-1:-1:-1::0;;;;;31408:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;31408:27:0::1;31431:4;31408:27:::0;;::::1;::::0;;;31446:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;31446:23:0::1;::::0;;::::1;::::0;;31031:446::o;33361:123::-;-1:-1:-1;;;;;33449:27:0;33425:4;33449:27;;;:18;:27;;;;;;;;;33361:123::o;45544:92::-;14505:12;:10;:12::i;:::-;14495:6;;-1:-1:-1;;;;;14495:6:0;;;:22;;;14487:67;;;;;-1:-1:-1;;;14487:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14487:67:0;;;;;;;;;;;;;;;45612:7:::1;:16:::0;45544:92::o;28048:198::-;-1:-1:-1;;;;;28138:20:0;;28114:7;28138:20;;;:11;:20;;;;;;;;28134:49;;;-1:-1:-1;;;;;;28167:16:0;;;;;;:7;:16;;;;;;28160:23;;28134:49;-1:-1:-1;;;;;28221:16:0;;;;;;:7;:16;;;;;;28201:37;;:19;:37::i;14919:148::-;14505:12;:10;:12::i;:::-;14495:6;;-1:-1:-1;;;;;14495:6:0;;;:22;;;14487:67;;;;;-1:-1:-1;;;14487:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14487:67:0;;;;;;;;;;;;;;;15026:1:::1;15010:6:::0;;14989:40:::1;::::0;-1:-1:-1;;;;;15010:6:0;;::::1;::::0;14989:40:::1;::::0;15026:1;;14989:40:::1;15057:1;15040:19:::0;;-1:-1:-1;;;;;;15040:19:0::1;::::0;;14919:148::o;32332:500::-;14505:12;:10;:12::i;:::-;14495:6;;-1:-1:-1;;;;;14495:6:0;;;:22;;;14487:67;;;;;-1:-1:-1;;;14487:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14487:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32421:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32413:65;;;::::0;;-1:-1:-1;;;32413:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32494:9;32489:336;32513:16;:23:::0;32509:27;::::1;32489:336;;;32585:7;-1:-1:-1::0;;;;;32562:30:0::1;:16;32579:1;32562:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32562:19:0::1;:30;32558:256;;;32635:16;32652:23:::0;;-1:-1:-1;;32652:27:0;;;32635:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32613:16:::1;:19:::0;;-1:-1:-1;;;;;32635:45:0;;::::1;::::0;32630:1;;32613:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;32613:67:0::1;-1:-1:-1::0;;;;;32613:67:0;;::::1;;::::0;;32699:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;32699:34:0::1;::::0;;32752:16:::1;:22:::0;;;::::1;;;32558:256;32538:3;;32489:336;;29573:120:::0;-1:-1:-1;;;;;29665:20:0;29641:4;29665:20;;;:11;:20;;;;;;;;;29573:120::o;14285:79::-;14323:7;14350:6;-1:-1:-1;;;;;14350:6:0;14285:79;:::o;27759:87::-;27831:7;27824:14;;;;;;;;-1:-1:-1;;27824:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27798:13;;27824:14;;27831:7;;27824:14;;27831:7;27824:14;;;;;;;;;;;;;;;;;;;;;;;;29296:269;29389:4;29406:129;29415:12;:10;:12::i;:::-;29429:7;29438:96;29477:15;29438:96;;;;;;;;;;;;;;;;;:11;:25;29450:12;:10;:12::i;:::-;-1:-1:-1;;;;;29438:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29438:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;45644:116::-;14505:12;:10;:12::i;:::-;14495:6;;-1:-1:-1;;;;;14495:6:0;;;:22;;;14487:67;;;;;-1:-1:-1;;;14487:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14487:67:0;;;;;;;;;;;;;;;45724:13:::1;:28:::0;45644:116::o;28254:167::-;28332:4;28349:42;28359:12;:10;:12::i;:::-;28373:9;28384:6;28349:9;:42::i;29701:137::-;14505:12;:10;:12::i;:::-;14495:6;;-1:-1:-1;;;;;14495:6:0;;;:22;;;14487:67;;;;;-1:-1:-1;;;14487:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14487:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29792:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;29792:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29701:137::o;45768:116::-;14505:12;:10;:12::i;:::-;14495:6;;-1:-1:-1;;;;;14495:6:0;;;:22;;;14487:67;;;;;-1:-1:-1;;;14487:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14487:67:0;;;;;;;;;;;;;;;45848:13:::1;:28:::0;45768:116::o;39129:148::-;14505:12;:10;:12::i;:::-;14495:6;;-1:-1:-1;;;;;14495:6:0;;;:22;;;14487:67;;;;;-1:-1:-1;;;14487:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14487:67:0;;;;;;;;;;;;;;;39223:21:::1;:46:::0;;;::::1;;-1:-1:-1::0;;;39223:46:0::1;-1:-1:-1::0;;;;39223:46:0;;::::1;::::0;;;::::1;::::0;;39129:148::o;28429:143::-;-1:-1:-1;;;;;28537:18:0;;;28510:7;28537:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28429:143::o;15219:244::-;14505:12;:10;:12::i;:::-;14495:6;;-1:-1:-1;;;;;14495:6:0;;;:22;;;14487:67;;;;;-1:-1:-1;;;14487:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14487:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15308:22:0;::::1;15300:73;;;;-1:-1:-1::0;;;15300:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15410:6;::::0;;15389:38:::1;::::0;-1:-1:-1;;;;;15389:38:0;;::::1;::::0;15410:6;::::1;::::0;15389:38:::1;::::0;::::1;15438:6;:17:::0;;-1:-1:-1;;;;;;15438:17:0::1;-1:-1:-1::0;;;;;15438:17:0;;;::::1;::::0;;;::::1;::::0;;15219:244::o;38962:159::-;14505:12;:10;:12::i;:::-;14495:6;;-1:-1:-1;;;;;14495:6:0;;;:22;;;14487:67;;;;;-1:-1:-1;;;14487:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14487:67:0;;;;;;;;;;;;;;;39043:21:::1;39075:38;39043:21:::0;39075:18:::1;:38::i;45426:110::-:0;45507:21;45426:110;:::o;106:106::-;194:10;106:106;:::o;33492:337::-;-1:-1:-1;;;;;33585:19:0;;33577:68;;;;-1:-1:-1;;;33577:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33664:21:0;;33656:68;;;;-1:-1:-1;;;33656:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33737:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33789:32;;;;;;;;;;;;;;;;;33492:337;;;:::o;33837:2245::-;-1:-1:-1;;;;;33934:20:0;;33926:70;;;;-1:-1:-1;;;33926:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34015:23:0;;34007:71;;;;-1:-1:-1;;;34007:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34106:1;34097:6;:10;34089:64;;;;-1:-1:-1;;;34089:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34173:25:0;;;;;;:17;:25;;;;;;;;34172:26;34164:62;;;;;-1:-1:-1;;;34164:62:0;;;;;;;;;;;;-1:-1:-1;;;34164:62:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34246:28:0;;;;;;:17;:28;;;;;;;;34245:29;34237:65;;;;;-1:-1:-1;;;34237:65:0;;;;;;;;;;;;-1:-1:-1;;;34237:65:0;;;;;;;;;;;;;;;34340:9;34322:28;;;;:17;:28;;;;;;;;34321:29;34313:65;;;;;-1:-1:-1;;;34313:65:0;;;;;;;;;;;;-1:-1:-1;;;34313:65:0;;;;;;;;;;;;;;;34404:7;:5;:7::i;:::-;-1:-1:-1;;;;;34394:17:0;:6;-1:-1:-1;;;;;34394:17:0;;;:41;;;;;34428:7;:5;:7::i;:::-;-1:-1:-1;;;;;34415:20:0;:9;-1:-1:-1;;;;;34415:20:0;;;34394:41;34391:430;;;34470:12;;34460:6;:22;;34452:75;;;;-1:-1:-1;;;34452:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34745:12;;34709:32;34734:6;34709:20;34719:9;34709;:20::i;:::-;:24;;:32::i;:::-;:48;;34701:108;;;;-1:-1:-1;;;34701:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35115:28;35146:24;35164:4;35146:9;:24::i;:::-;35115:55;;35210:12;;35186:20;:36;35183:112;;-1:-1:-1;35271:12:0;;35183:112;35358:30;;35404:16;;35334:54;;;;;-1:-1:-1;;;35404:16:0;;;;35403:17;:42;;;;-1:-1:-1;35424:21:0;;-1:-1:-1;;;35424:21:0;;;;35403:42;:65;;;;;35449:19;35403:65;:92;;;;;35482:13;-1:-1:-1;;;;;35472:23:0;:6;-1:-1:-1;;;;;35472:23:0;;;35403:92;35399:258;;;35535:30;;35512:53;;35609:36;35624:20;35609:14;:36::i;:::-;-1:-1:-1;;;;;35849:26:0;;35730:12;35849:26;;;:18;:26;;;;;;35745:4;;35849:26;;;:59;;-1:-1:-1;;;;;;35879:29:0;;;;;;:18;:29;;;;;;;;35849:59;35846:105;;;-1:-1:-1;35934:5:0;35846:105;36024:50;36039:6;36047:9;36058:6;36066:7;36024:14;:50::i;:::-;33837:2245;;;;;;:::o;4193:192::-;4279:7;4315:12;4307:6;;;;4299:29;;;;-1:-1:-1;;;4299:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4351:5:0;;;4193:192::o;44496:163::-;44537:7;44558:15;44575;44594:19;:17;:19::i;:::-;44557:56;;-1:-1:-1;44557:56:0;-1:-1:-1;44631:20:0;44557:56;;44631:11;:20::i;:::-;44624:27;;;;44496:163;:::o;5571:132::-;5629:7;5656:39;5660:1;5663;5656:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5649:46;5571:132;-1:-1:-1;;;5571:132:0:o;3308:181::-;3366:7;3398:5;;;3422:6;;;;3414:46;;;;;-1:-1:-1;;;3414:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;43191:518;43250:7;43259;43268;43277;43286;43295;43316:23;43341:12;43355:30;43389:63;43401:7;43410;;43419:32;43437:13;;43419;;:17;;:32;;;;:::i;:::-;43389:11;:63::i;:::-;43315:137;;;;;;43463:19;43485:10;:8;:10::i;:::-;43463:32;;43507:15;43524:23;43549:12;43565:39;43577:7;43586:4;43592:11;43565;:39::i;:::-;43506:98;;-1:-1:-1;43506:98:0;-1:-1:-1;43506:98:0;-1:-1:-1;43655:15:0;;-1:-1:-1;43672:4:0;;-1:-1:-1;43678:22:0;;-1:-1:-1;;;;;43191:518:0;;;;;;;:::o;3763:136::-;3821:7;3848:43;3852:1;3855;3848:43;;;;;;;;;;;;;;;;;:3;:43::i;37419:589::-;37569:16;;;37583:1;37569:16;;;37545:21;37569:16;;;;;37545:21;37569:16;;;;;;;;;;-1:-1:-1;37569:16:0;37545:40;;37614:4;37596;37601:1;37596:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;37596:23:0;;;-1:-1:-1;;;;;37596:23:0;;;;;37640:15;-1:-1:-1;;;;;37640:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37640:22:0;37630:7;;:4;;37635:1;;37630:7;;;;;;;;;;;:32;-1:-1:-1;;;;;37630:32:0;;;-1:-1:-1;;;;;37630:32:0;;;;;37675:62;37692:4;37707:15;37725:11;37675:8;:62::i;:::-;37776:15;-1:-1:-1;;;;;37776:66:0;;37857:11;37883:1;37927:4;37954;37974:15;37776:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37776:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38537:111;38600:23;;:40;;-1:-1:-1;;;;;38600:23:0;;;;:40;;;;;38633:6;;38600:23;:40;:23;:40;38633:6;38600:23;:40;;;;;;;;;;;;;;;;;;;36090:1321;25376:16;:23;;-1:-1:-1;;;;25376:23:0;-1:-1:-1;;;25376:23:0;;;36259:13:::1;::::0;36241::::1;::::0;25376:23;;36197:77:::1;::::0;36241:32:::1;::::0;:17:::1;:32::i;:::-;36222:13;::::0;36197:39:::1;::::0;:20;;:24:::1;:39::i;:::-;:43:::0;::::1;:77::i;:::-;36175:99:::0;-1:-1:-1;36285:17:0::1;36305:37;:20:::0;36175:99;36305:24:::1;:37::i;:::-;36285:57:::0;-1:-1:-1;36406:12:0::1;36421:16;36285:57:::0;36435:1:::1;36421:13;:16::i;:::-;36406:31:::0;-1:-1:-1;36448:17:0::1;36468:19;:9:::0;36406:31;36468:13:::1;:19::i;:::-;36448:39:::0;-1:-1:-1;36790:21:0::1;36765:22;36879:21;:4:::0;36888:11;36879:8:::1;:21::i;:::-;36856:44;;36911:30;36928:12;36911:16;:30::i;:::-;37072:16;37091:41;:21;37117:14:::0;37091:25:::1;:41::i;:::-;37072:60:::0;-1:-1:-1;37143:18:0::1;37164:36;37187:12:::0;37164:18:::1;37072:60:::0;37177:4;37164:12:::1;:18::i;:36::-;37143:57;;37250:35;37263:9;37274:10;37250:12;:35::i;:::-;37303:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;37359:44;37378:24;:8:::0;37391:10;37378:12:::1;:24::i;:::-;37359:18;:44::i;:::-;-1:-1:-1::0;;25422:16:0;:24;;-1:-1:-1;;;;25422:24:0;;;-1:-1:-1;;;;;;;36090:1321:0:o;39285:819::-;39397:7;39393:40;;39419:14;:12;:14::i;:::-;-1:-1:-1;;;;;39450:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;39474:22:0;;;;;;:11;:22;;;;;;;;39473:23;39450:46;39446:597;;;39513:48;39535:6;39543:9;39554:6;39513:21;:48::i;:::-;39446:597;;;-1:-1:-1;;;;;39584:19:0;;;;;;:11;:19;;;;;;;;39583:20;:46;;;;-1:-1:-1;;;;;;39607:22:0;;;;;;:11;:22;;;;;;;;39583:46;39579:464;;;39646:46;39666:6;39674:9;39685:6;39646:19;:46::i;39579:464::-;-1:-1:-1;;;;;39715:19:0;;;;;;:11;:19;;;;;;;;39714:20;:47;;;;-1:-1:-1;;;;;;39739:22:0;;;;;;:11;:22;;;;;;;;39738:23;39714:47;39710:333;;;39778:44;39796:6;39804:9;39815:6;39778:17;:44::i;39710:333::-;-1:-1:-1;;;;;39844:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;39867:22:0;;;;;;:11;:22;;;;;;;;39844:45;39840:203;;;39906:48;39928:6;39936:9;39947:6;39906:21;:48::i;39840:203::-;39987:44;40005:6;40013:9;40024:6;39987:17;:44::i;:::-;40059:7;40055:41;;40081:15;:13;:15::i;:::-;39285:819;;;;:::o;44667:555::-;44764:7;;44800;;44717;;;;;44818:289;44842:9;:16;44838:20;;44818:289;;;44908:7;44884;:21;44892:9;44902:1;44892:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44892:12:0;44884:21;;;;;;;;;;;;;:31;;:66;;;44943:7;44919;:21;44927:9;44937:1;44927:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44927:12:0;44919:21;;;;;;;;;;;;;:31;44884:66;44880:97;;;44960:7;;44969;;44952:25;;;;;;;;;44880:97;45002:34;45014:7;:21;45022:9;45032:1;45022:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45022:12:0;45014:21;;;;;;;;;;;;;45002:7;;:11;:34::i;:::-;44992:44;;45061:34;45073:7;:21;45081:9;45091:1;45081:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45081:12:0;45073:21;;;;;;;;;;;;;45061:7;;:11;:34::i;:::-;45051:44;-1:-1:-1;44860:3:0;;44818:289;;;-1:-1:-1;45143:7:0;;45131;;:20;;:11;:20::i;:::-;45121:7;:30;45117:61;;;45161:7;;45170;;45153:25;;;;;;;;45117:61;45197:7;;-1:-1:-1;45206:7:0;-1:-1:-1;44667:555:0;;;:::o;6188:278::-;6274:7;6309:12;6302:5;6294:28;;;;-1:-1:-1;;;6294:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6333:9;6349:1;6345;:5;;;;;;;6188:278;-1:-1:-1;;;;;6188:278:0:o;43717:429::-;43824:7;;;;43877:28;43901:3;43877:19;:7;43889:6;43877:11;:19::i;:28::-;43862:43;-1:-1:-1;43916:30:0;43949:43;43988:3;43949:34;:7;43961:21;43949:11;:34::i;:43::-;43916:76;-1:-1:-1;44003:23:0;44029:44;44051:21;44029:17;:7;44041:4;44029:11;:17::i;:::-;:21;;:44::i;:::-;44003:70;44109:4;;-1:-1:-1;44115:22:0;;-1:-1:-1;43717:429:0;;-1:-1:-1;;;;;43717:429:0:o;44154:334::-;44249:7;;;;44305:24;:7;44317:11;44305;:24::i;:::-;44287:42;-1:-1:-1;44340:12:0;44355:21;:4;44364:11;44355:8;:21::i;:::-;44340:36;-1:-1:-1;44387:23:0;44413:17;:7;44340:36;44413:11;:17::i;:::-;44449:7;;;;-1:-1:-1;44475:4:0;;-1:-1:-1;44154:334:0;;-1:-1:-1;;;;;44154:334:0:o;4635:471::-;4693:7;4938:6;4934:47;;-1:-1:-1;4968:1:0;4961:8;;4934:47;5005:5;;;5009:1;5005;:5;:1;5029:5;;;;;:10;5021:56;;;;-1:-1:-1;;;5021:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38016:513;38164:62;38181:4;38196:15;38214:11;38164:8;:62::i;:::-;38269:15;-1:-1:-1;;;;;38269:31:0;;38308:9;38341:4;38361:11;38387:1;38430;38473:7;:5;:7::i;:::-;38495:15;38269:252;;;;;;;;;;;;;-1:-1:-1;;;;;38269:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38269:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32840:332;32886:7;;:12;:34;;;;-1:-1:-1;32902:13:0;;:18;32886:34;:56;;;;-1:-1:-1;32924:13:0;;:18;32886:56;32883:68;;;32944:7;;32883:68;32981:7;;;32963:15;:25;33023:13;;;32999:21;:37;33071:13;;;33047:21;:37;-1:-1:-1;33097:11:0;;;;33119:17;;;;33147;32840:332;:::o;41259:590::-;41362:15;41379:23;41404:12;41418:23;41443:12;41457:27;41488:19;41499:7;41488:10;:19::i;:::-;-1:-1:-1;;;;;41536:15:0;;;;;;:7;:15;;;;;;41361:146;;-1:-1:-1;41361:146:0;;-1:-1:-1;41361:146:0;;-1:-1:-1;41361:146:0;-1:-1:-1;41361:146:0;-1:-1:-1;41361:146:0;-1:-1:-1;41536:28:0;;41556:7;41536:19;:28::i;:::-;-1:-1:-1;;;;;41518:15:0;;;;;;:7;:15;;;;;;;;:46;;;;41593:7;:15;;;;:28;;41613:7;41593:19;:28::i;:::-;-1:-1:-1;;;;;41575:15:0;;;;;;;:7;:15;;;;;;:46;;;;41653:18;;;;;;;:39;;41676:15;41653:22;:39::i;:::-;-1:-1:-1;;;;;41632:18:0;;;;;;:7;:18;;;;;:60;41703:44;41727:19;41703:23;:44::i;:::-;41758:23;41770:4;41776;41758:11;:23::i;:::-;41814:9;-1:-1:-1;;;;;41797:44:0;41806:6;-1:-1:-1;;;;;41797:44:0;;41825:15;41797:44;;;;;;;;;;;;;;;;;;41259:590;;;;;;;;;:::o;40649:602::-;40750:15;40767:23;40792:12;40806:23;40831:12;40845:27;40876:19;40887:7;40876:10;:19::i;:::-;-1:-1:-1;;;;;40924:15:0;;;;;;:7;:15;;;;;;40749:146;;-1:-1:-1;40749:146:0;;-1:-1:-1;40749:146:0;;-1:-1:-1;40749:146:0;-1:-1:-1;40749:146:0;-1:-1:-1;40749:146:0;-1:-1:-1;40924:28:0;;40749:146;40924:19;:28::i;:::-;-1:-1:-1;;;;;40906:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;40984:18;;;;;:7;:18;;;;;:39;;41007:15;40984:22;:39::i;:::-;-1:-1:-1;;;;;40963:18:0;;;;;;:7;:18;;;;;;;;:60;;;;41055:7;:18;;;;:39;;41078:15;41055:22;:39::i;40112:529::-;40211:15;40228:23;40253:12;40267:23;40292:12;40306:27;40337:19;40348:7;40337:10;:19::i;:::-;-1:-1:-1;;;;;40385:15:0;;;;;;:7;:15;;;;;;40210:146;;-1:-1:-1;40210:146:0;;-1:-1:-1;40210:146:0;;-1:-1:-1;40210:146:0;-1:-1:-1;40210:146:0;-1:-1:-1;40210:146:0;-1:-1:-1;40385:28:0;;40210:146;40385:19;:28::i;41857:661::-;41960:15;41977:23;42002:12;42016:23;42041:12;42055:27;42086:19;42097:7;42086:10;:19::i;:::-;-1:-1:-1;;;;;42134:15:0;;;;;;:7;:15;;;;;;41959:146;;-1:-1:-1;41959:146:0;;-1:-1:-1;41959:146:0;;-1:-1:-1;41959:146:0;-1:-1:-1;41959:146:0;-1:-1:-1;41959:146:0;-1:-1:-1;42134:28:0;;42154:7;42134:19;:28::i;:::-;-1:-1:-1;;;;;42116:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42191:7;:15;;;;:28;;42211:7;42191:19;:28::i;33180:173::-;33234:15;;33224:7;:25;33276:21;;33260:13;:37;33324:21;;33308:13;:37;33180:173::o;42526:408::-;42607:19;42629:10;:8;:10::i;:::-;42607:32;-1:-1:-1;42650:27:0;42680:36;:19;42607:32;42680:23;:36::i;:::-;42768:4;42752:22;;;;:7;:22;;;;;;42650:66;;-1:-1:-1;42752:47:0;;42650:66;42752:26;:47::i;:::-;42743:4;42727:22;;;;:7;:22;;;;;;;;:72;;;;42813:11;:26;;;;;;42810:116;;;42895:4;42879:22;;;;:7;:22;;;;;;:47;;42906:19;42879:26;:47::i;:::-;42870:4;42854:22;;;;:7;:22;;;;;:72;42810:116;42526:408;;;:::o;42942:147::-;43020:7;;:17;;43032:4;43020:11;:17::i;:::-;43010:7;:27;43061:10;;:20;;43076:4;43061:14;:20::i;:::-;43048:10;:33;-1:-1:-1;;42942:147:0:o

Swarm Source

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