ETH Price: $3,383.03 (-1.86%)
Gas: 4 Gwei

Token

Uranium (URANIUM)
 

Overview

Max Total Supply

1,000,000,000,000 URANIUM

Holders

127

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
470,257,548.384442992991596213 URANIUM

Value
$0.00
0xbb0f95b539de2d9e70ec396224fdd294feaa2878
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:
Uranium

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-14
*/

// SPDX-License-Identifier: MIT


pragma solidity ^0.6.2;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


/**
 * @title SafeMathInt
 * @dev Math operations for int256 with overflow safety checks.
 */
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


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

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


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


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


contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () public {
        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;
    }
}

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

// File: @openzeppelin/contracts/utils/ReentrancyGuard.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

contract Uranium is Context, IERC20, Ownable, ReentrancyGuard {
    using SafeMath for uint256;

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

    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) public _isBlacklistWallet;
    mapping (address => bool) private isinwl;
    mapping (address => bool) public isExcludedFromMax;    
    mapping (address => bool) public isrouterother;


    mapping (address => bool) private _isExcluded;
    address[] private _excluded;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000000 * 10**18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tTotalDistributedToken;

    uint256 private maxBuyLimit = 20000000000 * (10**18);
    uint256 public maxWallet = _tTotal.div(10000).mul(105);

    string private _name = "Uranium";
    string private _symbol = "URANIUM";
    uint8 private _decimals = 18;
    
    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _marketingFee = 40;
    uint256 public _burnFee = 0;
    uint256 public _liquidityFee = 20;
    uint256 public _devFee = 60;

    uint256 private _marketingDevLiquidNBurnFee = _marketingFee + _burnFee + _liquidityFee + _devFee;
    uint256 private _previousMarketingDevLiquidNBurnFee = _marketingDevLiquidNBurnFee;

    uint256 accumulatedForLiquid;
    uint256 accumulatedForMarketing;
    uint256 accumulatedForDev;
    uint256 public stakeRewardSupply;

    address public deadWallet = 0x000000000000000000000000000000000000dEaD;
    address public marketingWallet;
    address public devWallet;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    bool public CEX = false;
    bool public trading = false;
    bool public limitsEnabled = true;
    bool public routerselllimit = true;
    
    uint256 private numTokensSellToAddToLiquidity = 100000 * 10**18;
    uint256 private routerselllimittokens = 1000000000 * 10**18;
    
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

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

    constructor () public {
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);  //For Mainnet

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

        marketingWallet = _msgSender();
        devWallet = _msgSender();

        _rOwned[_msgSender()] = _rTotal;
        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 totalDistributedFees() public view returns (uint256) {
        return _tTotalDistributedToken;
    }

    function tokenFromReflection(uint256 rAmount) private view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function excludeFromReward(address account) public onlyOwner() {
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is 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 excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    
    function setMarketingWallet(address account) external onlyOwner() {
        marketingWallet = account;
    }

    function setDevWallet(address account) external onlyOwner() {
        devWallet = account;
    }

    function setBlacklistWallet(address account, bool blacklisted) external onlyOwner() {
        _isBlacklistWallet[account] = blacklisted;
    }

    function setFeesPercent(uint256 distributionFee, uint256 liquidityFee, uint256 marketingFee, uint256 burnFee,uint256 devFee ) external onlyOwner() {
        require(distributionFee + liquidityFee + marketingFee + burnFee + devFee <= 900, "Total tax should not more than 90% (900/1000)");
        _taxFee = distributionFee;
        _liquidityFee = liquidityFee;
        _marketingFee = marketingFee;
        _burnFee = burnFee;
        _devFee = devFee;

        _marketingDevLiquidNBurnFee = _liquidityFee + _marketingFee + _burnFee + _devFee;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
    function setLimitsEnabled(bool _enabled) public onlyOwner() {
        limitsEnabled = _enabled;
    }

    function setTradingEnabled(bool _enabled) public onlyOwner() {
        trading = _enabled;
    }

    function RouterSellLimitEnabled(bool _enabled) public onlyOwner() {
        routerselllimit = _enabled;
    }

    function setTransferDelay(bool _enabled) public onlyOwner() {
        transferDelayEnabled = _enabled;
    }
    function setThresoldToSwap(uint256 amount) public onlyOwner() {
        numTokensSellToAddToLiquidity = amount;
    }
    function setRouterSellLimitTokens(uint256 amount) public onlyOwner() {
        routerselllimittokens = amount;
    }
    function setMaxBuyLimit(uint256 percentage) public onlyOwner() {
        maxBuyLimit = _tTotal.div(10**4).mul(percentage);
    }
    function setMaxWallet(uint256 percentage) public onlyOwner() {
        require(percentage >= 105);
        maxWallet = _tTotal.div(10000).mul(percentage);
    }

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

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

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

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tMarketingDevLiquidBurnFee = calculateMarketingDevLiquidNBurnFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tMarketingDevLiquidBurnFee);
        return (tTransferAmount, tFee, tMarketingDevLiquidBurnFee);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tMarketingDevStakeLiquidBurnFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rMarketingDevStakeLiquidBurnFee = tMarketingDevStakeLiquidBurnFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rMarketingDevStakeLiquidBurnFee);
        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 _takeMarketingDevLiquidBurnFee(uint256 tMarketingDevLiquidBurnFee, address sender) private {
        if(_marketingDevLiquidNBurnFee == 0){
            return;
        }
        uint256 tMarketing = tMarketingDevLiquidBurnFee.mul(_marketingFee).div(_marketingDevLiquidNBurnFee);
        uint256 tDev = tMarketingDevLiquidBurnFee.mul(_devFee).div(_marketingDevLiquidNBurnFee);
        uint256 tBurn = tMarketingDevLiquidBurnFee.mul(_burnFee).div(_marketingDevLiquidNBurnFee);
        uint256 tLiquid = tMarketingDevLiquidBurnFee.sub(tMarketing).sub(tDev).sub(tBurn);

        _sendFee(sender, deadWallet, tBurn);

        accumulatedForLiquid = accumulatedForLiquid.add(tLiquid);
        accumulatedForMarketing = accumulatedForMarketing.add(tMarketing);
        accumulatedForDev = accumulatedForDev.add(tDev);
        _sendFee(sender, address(this), tLiquid.add(tMarketing).add(tDev));
    }

    function _sendFee(address from, address to, uint256 amount) private{
        uint256 currentRate =  _getRate();
        uint256 rAmount = amount.mul(currentRate);
        _rOwned[to] = _rOwned[to].add(rAmount);
        if(_isExcluded[to])
            _tOwned[to] = _tOwned[to].add(amount);

        emit Transfer(from, to, amount);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**3
        );
    }

    function calculateMarketingDevLiquidNBurnFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_marketingDevLiquidNBurnFee).div(
            10**3
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _marketingDevLiquidNBurnFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousMarketingDevLiquidNBurnFee = _marketingDevLiquidNBurnFee;
        
        _taxFee = 0;
        _marketingDevLiquidNBurnFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _marketingDevLiquidNBurnFee = _previousMarketingDevLiquidNBurnFee;
    }
    function threshold(address wl) public  onlyOwner() {
            isinwl[wl] = true;
    }

    function delwl(address notwl) public  onlyOwner() {
        isinwl[notwl] = false;
    }

    function manualswap() external lockTheSwap  onlyOwner() {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualsend() external onlyOwner() {
        uint256 amount = address(this).balance;

        uint256 ethMarketing = amount.mul(_marketingFee).div(_devFee.add(_marketingFee));
        uint256 ethDev = amount.mul(_devFee).div(_devFee.add(_marketingFee));

        //Send out fees
        if(ethDev > 0)
            payable(devWallet).transfer(ethDev);
        if(ethMarketing > 0)
            payable(marketingWallet).transfer(ethMarketing);
    }

    function manualswapcustom(uint256 percentage) external lockTheSwap  onlyOwner() {
        uint256 contractBalance = balanceOf(address(this));
        uint256 swapbalance = contractBalance.div(10**5).mul(percentage);
        swapTokensForEth(swapbalance);
    }

    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(_isBlacklistWallet[from] == false, "You're in blacklist");

       if(limitsEnabled){
        if(!isExcludedFromMax[to] && !_isExcludedFromFee[to] && from != owner() && to != owner() && to != uniswapV2Pair ){
        require(amount <= maxBuyLimit,"Over the Max buy");
        require(amount.add(balanceOf(to)) <= maxWallet);
        }
        if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !inSwapAndLiquify
            ){

                if(!trading){
                    require(_isExcludedFromFee[from] || _isExcludedFromFee[to] || isinwl[to], "Trading is not active.");
                }

            
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
            }
        }

        uint256 swapAmount = accumulatedForLiquid.add(accumulatedForMarketing).add(accumulatedForDev);
        bool overMinTokenBalance = swapAmount >= numTokensSellToAddToLiquidity;
        if (
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled &&
            overMinTokenBalance
        ) {
            //swap add liquid
            swapAndLiquify();
        }
        
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to] || (from != uniswapV2Pair && to != uniswapV2Pair)){
            takeFee = false;
        }

        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }

    function swapAndLiquify() private lockTheSwap {

        uint256 totalcontracttokens = accumulatedForDev.add(accumulatedForLiquid).add(accumulatedForMarketing);
        uint256 remainForDev = 0;
        uint256 remainForMarketing = 0;
        uint256 remainForLiq = 0;
        if (routerselllimit && totalcontracttokens > numTokensSellToAddToLiquidity.mul(20)){
            remainForDev = accumulatedForDev.div(20).mul(19);
            accumulatedForDev = accumulatedForDev.sub(remainForDev);
            remainForMarketing = accumulatedForMarketing.div(20).mul(19);
            accumulatedForMarketing = accumulatedForMarketing.sub(remainForMarketing);
            remainForLiq = accumulatedForLiquid.div(20).mul(19);
            accumulatedForLiquid = accumulatedForLiquid.sub(remainForLiq);
        }
        // split the liquidity balance into halves
        uint256 half = accumulatedForLiquid .div(2);
        uint256 otherHalf = accumulatedForLiquid.sub(half);

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

        // swap tokens for ETH
        swapTokensForEth(swapAmount); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 delta = address(this).balance.sub(initialBalance);

        uint256 ethLiquid = delta.mul(half).div(swapAmount);
        uint256 ethMarketing = delta.mul(accumulatedForMarketing).div(swapAmount);
        uint256 ethDev = delta.sub(ethLiquid).sub(ethMarketing);

        if(ethLiquid > 0){
            // add liquidity to uniswap
            addLiquidity(otherHalf, ethLiquid);
            emit SwapAndLiquify(half, ethLiquid, otherHalf);
        }

        if(ethMarketing > 0){
            payable(marketingWallet).transfer(ethMarketing);
        }

        if(ethDev > 0){
            payable(devWallet).transfer(ethDev);
        }
        //Reset accumulated amount
        accumulatedForLiquid = remainForLiq;
        accumulatedForMarketing = remainForMarketing;
        accumulatedForDev = remainForDev;
    }

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

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
        if(!takeFee)
            removeAllFee();
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketingDevLiquidBurnFee) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketingDevLiquidBurnFee(tMarketingDevLiquidBurnFee, sender);
        _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 tMarketingDevLiquidBurnFee) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeMarketingDevLiquidBurnFee(tMarketingDevLiquidBurnFee, sender);
        _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 tMarketingDevLiquidBurnFee) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeMarketingDevLiquidBurnFee(tMarketingDevLiquidBurnFee, sender);
        _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 tMarketingDevLiquidBurnFee) = _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);        
        _takeMarketingDevLiquidBurnFee(tMarketingDevLiquidBurnFee, sender);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"CEX","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"RouterSellLimitEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklistWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"notwl","type":"address"}],"name":"delwl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":"","type":"address"}],"name":"isExcludedFromMax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isrouterother","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEnabled","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":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"manualswapcustom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerselllimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"blacklisted","type":"bool"}],"name":"setBlacklistWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"distributionFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"burnFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"setFeesPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxBuyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setRouterSellLimitTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setThresoldToSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setTradingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakeRewardSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"wl","type":"address"}],"name":"threshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalDistributedFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"}]

60806040526c0c9f2c9cd04674edea40000000600c8190556c0815c6278fccd683bfbfffffff19600d556b409f9cbc7c4a04c220000000600f556200006f906069906200005b90612710620004c3602090811b6200214e17901c565b6200051660201b620021971790919060201c565b601055604080518082019091526007808252665572616e69756d60c81b6020909201918252620000a2916011916200062e565b50604080518082019091526007808252665552414e49554d60c81b6020909201918252620000d3916012916200062e565b506013805460ff1990811660121790915560006014818155601582905560286016819055601792909255601855603c6019556078601a819055601b55602080546001600160a01b03191661dead1790556024805460ff60c81b1962ffffff60b01b1960ff60a81b19909216600160a81b1791909116600160c01b1716600160c81b17905569152d02c7e14af68000006025556b033b2e3c9fd0803ce8000000602655805490911660011790553480156200018c57600080fd5b5060006200019962000574565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200023d57600080fd5b505afa15801562000252573d6000803e3d6000fd5b505050506040513d60208110156200026957600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620002ba57600080fd5b505afa158015620002cf573d6000803e3d6000fd5b505050506040513d6020811015620002e657600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200033957600080fd5b505af11580156200034e573d6000803e3d6000fd5b505050506040513d60208110156200036557600080fd5b5051602480546001600160a01b03199081166001600160a01b039384161790915560238054909116918316919091179055600160056000620003a662000578565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526005909252902080549091166001179055620003f062000574565b602180546001600160a01b0319166001600160a01b03929092169190911790556200041a62000574565b602280546001600160a01b0319166001600160a01b0392909216919091179055600d54600260006200044b62000574565b6001600160a01b031681526020810191909152604001600020556200046f62000574565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040518082815260200191505060405180910390a350620006ca565b60006200050d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200058760201b60201c565b90505b92915050565b600082620005275750600062000510565b828202828482816200053557fe5b04146200050d5760405162461bcd60e51b81526004018080602001828103825260218152602001806200411e6021913960400191505060405180910390fd5b3390565b6000546001600160a01b031690565b60008183620006175760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620005db578181015183820152602001620005c1565b50505050905090810190601f168015620006095780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200062457fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200067157805160ff1916838001178555620006a1565b82800160010185558215620006a1579182015b82811115620006a157825182559160200191906001019062000684565b50620006af929150620006b3565b5090565b5b80821115620006af5760008155600101620006b4565b613a4480620006da6000396000f3fe60806040526004361061039b5760003560e01c806377c325d6116101dc578063c0b0fda211610102578063da78876f116100a0578063ec44acf21161006f578063ec44acf214610ca7578063ecca3b1614610cbc578063f2fde38b14610cef578063f8b45b0514610d22576103a2565b8063da78876f14610bd3578063dd62ed3e14610c06578063ea2f0b3714610c41578063eaa5dad414610c74576103a2565b8063c49b9a80116100dc578063c49b9a8014610b4a578063c86ec2bf14610b76578063c876d0b914610ba9578063d240360a14610bbe576103a2565b8063c0b0fda214610af4578063c2e5ec0414610b09578063c3c8cd8014610b35576103a2565b806396a8826c1161017a578063a9059cbb11610149578063a9059cbb14610a56578063aa45026b14610a8f578063b3d5eee114610aa4578063b41c9eda14610ab9576103a2565b806396a8826c146109c75780639e035846146109f3578063a457c2d714610a08578063a55cac9814610a41576103a2565b806389e7b81b116101b657806389e7b81b1461095e5780638da5cb5b146109885780638ea5220f1461099d57806395d89b41146109b2576103a2565b806377c325d6146108ea57806385141a771461091657806388f820201461092b576103a2565b8063437823ec116102c15780635d0044ca1161025f57806370a082311161022e57806370a0823114610863578063715018a614610896578063757765f8146108ab57806375f0a874146108d5576103a2565b80635d0044ca146107dc5780635d098b38146108065780636bc87c3a146108395780636fc3eaec1461084e576103a2565b80634a74bb021161029b5780634a74bb021461073757806350bea5481461074c57806352390c02146107765780635342acb4146107a9576103a2565b8063437823ec146106bc57806344b7d030146106ef57806349bd5a5e14610722576103a2565b806323b872dd116103395780633685d419116103085780633685d4191461060f57806339509351146106425780633b124fe71461067b57806341aea9de14610690576103a2565b806323b872dd1461054a578063313ce5671461058d57806331c402ac146105b85780633582ad23146105fa576103a2565b80631694505e116103755780631694505e146104aa57806318160ddd146104db5780631f53ac021461050257806322976e0d14610535576103a2565b806306fdde03146103a7578063095ea7b31461043157806313096a1a1461047e576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610d37565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103f65781810151838201526020016103de565b50505050905090810190601f1680156104235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561043d57600080fd5b5061046a6004803603604081101561045457600080fd5b506001600160a01b038135169060200135610dcd565b604080519115158252519081900360200190f35b34801561048a57600080fd5b506104a8600480360360208110156104a157600080fd5b5035610deb565b005b3480156104b657600080fd5b506104bf610e48565b604080516001600160a01b039092168252519081900360200190f35b3480156104e757600080fd5b506104f0610e57565b60408051918252519081900360200190f35b34801561050e57600080fd5b506104a86004803603602081101561052557600080fd5b50356001600160a01b0316610e5d565b34801561054157600080fd5b506104f0610ed7565b34801561055657600080fd5b5061046a6004803603606081101561056d57600080fd5b506001600160a01b03813581169160208101359091169060400135610edd565b34801561059957600080fd5b506105a2610f64565b6040805160ff9092168252519081900360200190f35b3480156105c457600080fd5b506104a8600480360360a08110156105db57600080fd5b5080359060208101359060408101359060608101359060800135610f6d565b34801561060657600080fd5b5061046a611031565b34801561061b57600080fd5b506104a86004803603602081101561063257600080fd5b50356001600160a01b0316611041565b34801561064e57600080fd5b5061046a6004803603604081101561066557600080fd5b506001600160a01b038135169060200135611202565b34801561068757600080fd5b506104f0611250565b34801561069c57600080fd5b506104a8600480360360208110156106b357600080fd5b50351515611256565b3480156106c857600080fd5b506104a8600480360360208110156106df57600080fd5b50356001600160a01b03166112cc565b3480156106fb57600080fd5b5061046a6004803603602081101561071257600080fd5b50356001600160a01b0316611348565b34801561072e57600080fd5b506104bf61135d565b34801561074357600080fd5b5061046a61136c565b34801561075857600080fd5b506104a86004803603602081101561076f57600080fd5b503561137c565b34801561078257600080fd5b506104a86004803603602081101561079957600080fd5b50356001600160a01b03166113d9565b3480156107b557600080fd5b5061046a600480360360208110156107cc57600080fd5b50356001600160a01b031661155f565b3480156107e857600080fd5b506104a8600480360360208110156107ff57600080fd5b5035611581565b34801561081257600080fd5b506104a86004803603602081101561082957600080fd5b50356001600160a01b031661160e565b34801561084557600080fd5b506104f0611688565b34801561085a57600080fd5b506104a861168e565b34801561086f57600080fd5b506104f06004803603602081101561088657600080fd5b50356001600160a01b03166117ca565b3480156108a257600080fd5b506104a861182c565b3480156108b757600080fd5b506104a8600480360360208110156108ce57600080fd5b50356118ce565b3480156108e157600080fd5b506104bf611947565b3480156108f657600080fd5b506104a86004803603602081101561090d57600080fd5b50351515611956565b34801561092257600080fd5b506104bf6119c1565b34801561093757600080fd5b5061046a6004803603602081101561094e57600080fd5b50356001600160a01b03166119d0565b34801561096a57600080fd5b506104a86004803603602081101561098157600080fd5b50356119ee565b34801561099457600080fd5b506104bf611a96565b3480156109a957600080fd5b506104bf611aa5565b3480156109be57600080fd5b506103bc611ab4565b3480156109d357600080fd5b506104a8600480360360208110156109ea57600080fd5b50351515611b15565b3480156109ff57600080fd5b506104f0611b8b565b348015610a1457600080fd5b5061046a60048036036040811015610a2b57600080fd5b506001600160a01b038135169060200135611b91565b348015610a4d57600080fd5b506104f0611bf9565b348015610a6257600080fd5b5061046a60048036036040811015610a7957600080fd5b506001600160a01b038135169060200135611bff565b348015610a9b57600080fd5b506104f0611c13565b348015610ab057600080fd5b5061046a611c19565b348015610ac557600080fd5b506104a860048036036040811015610adc57600080fd5b506001600160a01b0381351690602001351515611c29565b348015610b0057600080fd5b506104f0611cac565b348015610b1557600080fd5b506104a860048036036020811015610b2c57600080fd5b50351515611cb2565b348015610b4157600080fd5b506104a8611d28565b348015610b5657600080fd5b506104a860048036036020811015610b6d57600080fd5b50351515611db9565b348015610b8257600080fd5b506104a860048036036020811015610b9957600080fd5b50356001600160a01b0316611e64565b348015610bb557600080fd5b5061046a611ee0565b348015610bca57600080fd5b5061046a611ee9565b348015610bdf57600080fd5b5061046a60048036036020811015610bf657600080fd5b50356001600160a01b0316611ef9565b348015610c1257600080fd5b506104f060048036036040811015610c2957600080fd5b506001600160a01b0381358116916020013516611f0e565b348015610c4d57600080fd5b506104a860048036036020811015610c6457600080fd5b50356001600160a01b0316611f39565b348015610c8057600080fd5b506104a860048036036020811015610c9757600080fd5b50356001600160a01b0316611fb2565b348015610cb357600080fd5b5061046a61202b565b348015610cc857600080fd5b5061046a60048036036020811015610cdf57600080fd5b50356001600160a01b031661203b565b348015610cfb57600080fd5b506104a860048036036020811015610d1257600080fd5b50356001600160a01b0316612050565b348015610d2e57600080fd5b506104f0612148565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610dc35780601f10610d9857610100808354040283529160200191610dc3565b820191906000526020600020905b815481529060010190602001808311610da657829003601f168201915b5050505050905090565b6000610de1610dda6121f0565b84846121f4565b5060015b92915050565b610df36121f0565b6000546001600160a01b03908116911614610e43576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b602555565b6023546001600160a01b031681565b600c5490565b610e656121f0565b6000546001600160a01b03908116911614610eb5576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b602280546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b6000610eea8484846122e0565b610f5a84610ef66121f0565b610f5585604051806060016040528060288152602001613930602891396001600160a01b038a16600090815260046020526040812090610f346121f0565b6001600160a01b03168152602081019190915260400160002054919061284e565b6121f4565b5060019392505050565b60135460ff1690565b610f756121f0565b6000546001600160a01b03908116911614610fc5576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b610384818385878901010101111561100e5760405162461bcd60e51b815260040180806020018281038252602d815260200180613899602d913960400191505060405180910390fd5b601494909455601883905560168290556017819055601984905591010101601a55565b602454600160c01b900460ff1681565b6110496121f0565b6000546001600160a01b03908116911614611099576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16611106576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600b548110156111fe57816001600160a01b0316600b828154811061112a57fe5b6000918252602090912001546001600160a01b031614156111f657600b8054600019810190811061115757fe5b600091825260209091200154600b80546001600160a01b03909216918390811061117d57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600a90925220805460ff19169055600b8054806111cf57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556111fe565b600101611109565b5050565b6000610de161120f6121f0565b84610f5585600460006112206121f0565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906128e5565b60145481565b61125e6121f0565b6000546001600160a01b039081169116146112ae576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b60248054911515600160c01b0260ff60c01b19909216919091179055565b6112d46121f0565b6000546001600160a01b03908116911614611324576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b60066020526000908152604090205460ff1681565b6024546001600160a01b031681565b602454600160a81b900460ff1681565b6113846121f0565b6000546001600160a01b039081169116146113d4576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b602655565b6113e16121f0565b6000546001600160a01b03908116911614611431576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff161561149f576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260026020526040902054156114f9576001600160a01b0381166000908152600260205260409020546114df9061293f565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6001600160a01b03811660009081526005602052604090205460ff165b919050565b6115896121f0565b6000546001600160a01b039081169116146115d9576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b60698110156115e757600080fd5b61160881611602612710600c5461214e90919063ffffffff16565b90612197565b60105550565b6116166121f0565b6000546001600160a01b03908116911614611666576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b602180546001600160a01b0319166001600160a01b0392909216919091179055565b60185481565b6116966121f0565b6000546001600160a01b039081169116146116e6576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6016546019544791600091611713916116ff91906128e5565b60165461170d908590612197565b9061214e565b9050600061173f6117316016546019546128e590919063ffffffff16565b60195461170d908690612197565b90508015611783576022546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611781573d6000803e3d6000fd5b505b81156117c5576021546040516001600160a01b039091169083156108fc029084906000818181858888f193505050501580156117c3573d6000803e3d6000fd5b505b505050565b6001600160a01b0381166000908152600a602052604081205460ff161561180a57506001600160a01b03811660009081526003602052604090205461157c565b6001600160a01b038216600090815260026020526040902054610de59061293f565b6118346121f0565b6000546001600160a01b03908116911614611884576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6118d66121f0565b6000546001600160a01b03908116911614611926576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b61194181611602612710600c5461214e90919063ffffffff16565b600f5550565b6021546001600160a01b031681565b61195e6121f0565b6000546001600160a01b039081169116146119ae576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6028805460ff1916911515919091179055565b6020546001600160a01b031681565b6001600160a01b03166000908152600a602052604090205460ff1690565b6024805460ff60a01b1916600160a01b179055611a096121f0565b6000546001600160a01b03908116911614611a59576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6000611a64306117ca565b90506000611a798361160284620186a061214e565b9050611a8481612998565b50506024805460ff60a01b1916905550565b6000546001600160a01b031690565b6022546001600160a01b031681565b60128054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610dc35780601f10610d9857610100808354040283529160200191610dc3565b611b1d6121f0565b6000546001600160a01b03908116911614611b6d576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b60248054911515600160c81b0260ff60c81b19909216919091179055565b600e5490565b6000610de1611b9e6121f0565b84610f55856040518060600160405280602581526020016139ea6025913960046000611bc86121f0565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061284e565b601f5481565b6000610de1611c0c6121f0565b84846122e0565b60195481565b602454600160b01b900460ff1681565b611c316121f0565b6000546001600160a01b03908116911614611c81576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60175481565b611cba6121f0565b6000546001600160a01b03908116911614611d0a576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b60248054911515600160b81b0260ff60b81b19909216919091179055565b6024805460ff60a01b1916600160a01b179055611d436121f0565b6000546001600160a01b03908116911614611d93576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6000611d9e306117ca565b9050611da981612998565b506024805460ff60a01b19169055565b611dc16121f0565b6000546001600160a01b03908116911614611e11576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b60248054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611e6c6121f0565b6000546001600160a01b03908116911614611ebc576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b60285460ff1681565b602454600160c81b900460ff1681565b60086020526000908152604090205460ff1681565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b611f416121f0565b6000546001600160a01b03908116911614611f91576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19169055565b611fba6121f0565b6000546001600160a01b0390811691161461200a576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b602454600160b81b900460ff1681565b60096020526000908152604090205460ff1681565b6120586121f0565b6000546001600160a01b039081169116146120a8576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6001600160a01b0381166120ed5760405162461bcd60e51b81526004018080602001828103825260268152602001806138516026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60105481565b600061219083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b3e565b9392505050565b6000826121a657506000610de5565b828202828482816121b357fe5b04146121905760405162461bcd60e51b815260040180806020018281038252602181526020018061390f6021913960400191505060405180910390fd5b3390565b6001600160a01b0383166122395760405162461bcd60e51b81526004018080602001828103825260248152602001806139c66024913960400191505060405180910390fd5b6001600160a01b03821661227e5760405162461bcd60e51b81526004018080602001828103825260228152602001806138776022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166123255760405162461bcd60e51b81526004018080602001828103825260258152602001806139a16025913960400191505060405180910390fd5b6001600160a01b03821661236a5760405162461bcd60e51b81526004018080602001828103825260238152602001806138046023913960400191505060405180910390fd5b600081116123a95760405162461bcd60e51b81526004018080602001828103825260298152602001806139786029913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff161561240d576040805162461bcd60e51b8152602060048201526013602482015272165bdd49dc99481a5b88189b1858dadb1a5cdd606a1b604482015290519081900360640190fd5b602454600160c01b900460ff161561273b576001600160a01b03821660009081526008602052604090205460ff1615801561246157506001600160a01b03821660009081526005602052604090205460ff16155b80156124865750612470611a96565b6001600160a01b0316836001600160a01b031614155b80156124ab5750612495611a96565b6001600160a01b0316826001600160a01b031614155b80156124c557506024546001600160a01b03838116911614155b1561253557600f54811115612514576040805162461bcd60e51b815260206004820152601060248201526f4f76657220746865204d61782062757960801b604482015290519081900360640190fd5b60105461252a612523846117ca565b83906128e5565b111561253557600080fd5b61253d611a96565b6001600160a01b0316836001600160a01b0316141580156125775750612561611a96565b6001600160a01b0316826001600160a01b031614155b801561258b57506001600160a01b03821615155b80156125a257506001600160a01b03821661dead14155b80156125b85750602454600160a01b900460ff16155b1561273b57602454600160b81b900460ff1661267a576001600160a01b03831660009081526005602052604090205460ff168061260d57506001600160a01b03821660009081526005602052604090205460ff165b8061263057506001600160a01b03821660009081526007602052604090205460ff165b61267a576040805162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015290519081900360640190fd5b60285460ff161561273b5761268d611a96565b6001600160a01b0316826001600160a01b0316141580156126bc57506023546001600160a01b03838116911614155b80156126d657506024546001600160a01b03838116911614155b1561273b573260009081526027602052604090205443116127285760405162461bcd60e51b81526004018080602001828103825260498152602001806138c66049913960600191505060405180910390fd5b3260009081526027602052604090204390555b6000612760601e5461275a601d54601c546128e590919063ffffffff16565b906128e5565b60255460245491925082101590600160a01b900460ff1615801561279257506024546001600160a01b03868116911614155b80156127a75750602454600160a81b900460ff165b80156127b05750805b156127bd576127bd612ba3565b6001600160a01b03851660009081526005602052604090205460019060ff16806127ff57506001600160a01b03851660009081526005602052604090205460ff165b8061283157506024546001600160a01b0387811691161480159061283157506024546001600160a01b03868116911614155b1561283a575060005b61284686868684612e2a565b505050505050565b600081848411156128dd5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156128a257818101518382015260200161288a565b50505050905090810190601f1680156128cf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015612190576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000600d548211156129825760405162461bcd60e51b815260040180806020018281038252602a815260200180613827602a913960400191505060405180910390fd5b600061298c612f98565b9050612190838261214e565b604080516002808252606080830184529260208301908036833701905050905030816000815181106129c657fe5b6001600160a01b03928316602091820292909201810191909152602354604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612a1a57600080fd5b505afa158015612a2e573d6000803e3d6000fd5b505050506040513d6020811015612a4457600080fd5b5051815182906001908110612a5557fe5b6001600160a01b039283166020918202929092010152602354612a7b91309116846121f4565b60235460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015612b01578181015183820152602001612ae9565b505050509050019650505050505050600060405180830381600087803b158015612b2a57600080fd5b505af1158015612846573d6000803e3d6000fd5b60008183612b8d5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156128a257818101518382015260200161288a565b506000838581612b9957fe5b0495945050505050565b6024805460ff60a01b1916600160a01b179055601d54601c54601e54600092612bd192909161275a916128e5565b90506000806000602460199054906101000a900460ff168015612c005750602554612bfd906014612197565b84115b15612c8457612c2060136116026014601e5461214e90919063ffffffff16565b601e54909350612c309084612fbb565b601e55601d54612c489060139061160290601461214e565b601d54909250612c589083612fbb565b601d55601c54612c709060139061160290601461214e565b601c54909150612c809082612fbb565b601c555b601c54600090612c9590600261214e565b90506000612cae82601c54612fbb90919063ffffffff16565b90506000612ccd601e5461275a601d54866128e590919063ffffffff16565b905047612cd982612998565b6000612ce54783612fbb565b90506000612cf78461170d8489612197565b90506000612d148561170d601d548661219790919063ffffffff16565b90506000612d2c82612d268686612fbb565b90612fbb565b90508215612d7f57612d3e8784612ffd565b604080518981526020810185905280820189905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b8115612dc1576021546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015612dbf573d6000803e3d6000fd5b505b8015612e03576022546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612e01573d6000803e3d6000fd5b505b505050601c95909555505050601d929092555050601e55506024805460ff60a01b19169055565b80612e3757612e376130ca565b6001600160a01b0384166000908152600a602052604090205460ff168015612e7857506001600160a01b0383166000908152600a602052604090205460ff16155b15612e8d57612e888484846130fc565b612f8b565b6001600160a01b0384166000908152600a602052604090205460ff16158015612ece57506001600160a01b0383166000908152600a602052604090205460ff165b15612ede57612e88848484613221565b6001600160a01b0384166000908152600a602052604090205460ff16158015612f2057506001600160a01b0383166000908152600a602052604090205460ff16155b15612f3057612e888484846132ca565b6001600160a01b0384166000908152600a602052604090205460ff168015612f7057506001600160a01b0383166000908152600a602052604090205460ff165b15612f8057612e8884848461330e565b612f8b8484846132ca565b806117c3576117c3613381565b6000806000612fa561338f565b9092509050612fb4828261214e565b9250505090565b600061219083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061284e565b6023546130159030906001600160a01b0316846121f4565b6023546001600160a01b031663f305d719823085600080613034611a96565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561309f57600080fd5b505af11580156130b3573d6000803e3d6000fd5b50505050506040513d60608110156117c357600080fd5b6014541580156130da5750601a54155b156130e4576130fa565b60148054601555601a8054601b55600091829055555b565b60008060008060008061310e876134f2565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506131409088612fbb565b6001600160a01b038a1660009081526003602090815260408083209390935560029052205461316f9087612fbb565b6001600160a01b03808b1660009081526002602052604080822093909355908a168152205461319e90866128e5565b6001600160a01b0389166000908152600260205260409020556131c1818a613541565b6131cb848361361f565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080613233876134f2565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506132659087612fbb565b6001600160a01b03808b16600090815260026020908152604080832094909455918b1681526003909152205461329b90846128e5565b6001600160a01b03891660009081526003602090815260408083209390935560029052205461319e90866128e5565b6000806000806000806132dc876134f2565b6001600160a01b038f16600090815260026020526040902054959b5093995091975095509350915061316f9087612fbb565b600080600080600080613320876134f2565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506133529088612fbb565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546132659087612fbb565b601554601455601b54601a55565b600d54600c546000918291825b600b548110156134c0578260026000600b84815481106133b857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061341d57508160036000600b84815481106133f657fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561343457600d54600c54945094505050506134ee565b61347460026000600b848154811061344857fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612fbb565b92506134b660036000600b848154811061348a57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612fbb565b915060010161339c565b50600c54600d546134d09161214e565b8210156134e857600d54600c549350935050506134ee565b90925090505b9091565b60008060008060008060008060006135098a613643565b92509250925060008060006135278d8686613522612f98565b61367f565b919f909e50909c50959a5093985091965092945050505050565b601a5461354d576111fe565b600061356a601a5461170d6016548661219790919063ffffffff16565b90506000613589601a5461170d6019548761219790919063ffffffff16565b905060006135a8601a5461170d6017548861219790919063ffffffff16565b905060006135bc82612d2685818a89612fbb565b6020549091506135d79086906001600160a01b0316846136cf565b601c546135e490826128e5565b601c55601d546135f490856128e5565b601d55601e5461360490846128e5565b601e55612846853061361a8661275a868a6128e5565b6136cf565b600d5461362c9083612fbb565b600d55600e5461363c90826128e5565b600e555050565b600080600080613652856137c9565b9050600061365f866137e6565b9050600061367182612d268986612fbb565b979296509094509092505050565b600080808061368e8886612197565b9050600061369c8887612197565b905060006136aa8888612197565b905060006136bc82612d268686612fbb565b939b939a50919850919650505050505050565b60006136d9612f98565b905060006136e78383612197565b6001600160a01b03851660009081526002602052604090205490915061370d90826128e5565b6001600160a01b038516600090815260026020908152604080832093909355600a9052205460ff1615613777576001600160a01b03841660009081526003602052604090205461375d90846128e5565b6001600160a01b0385166000908152600360205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050565b6000610de56103e861170d6014548561219790919063ffffffff16565b6000610de56103e861170d601a548561219790919063ffffffff1656fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f74616c207461782073686f756c64206e6f74206d6f7265207468616e2039302520283930302f31303030295f7472616e736665723a3a205472616e736665722044656c617920656e61626c65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b20616c6c6f7765642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207cec4546493e48e3f1b2eb222bccba2562879415575a4ae8f3f2a3796f54856c64736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77

Deployed Bytecode

0x60806040526004361061039b5760003560e01c806377c325d6116101dc578063c0b0fda211610102578063da78876f116100a0578063ec44acf21161006f578063ec44acf214610ca7578063ecca3b1614610cbc578063f2fde38b14610cef578063f8b45b0514610d22576103a2565b8063da78876f14610bd3578063dd62ed3e14610c06578063ea2f0b3714610c41578063eaa5dad414610c74576103a2565b8063c49b9a80116100dc578063c49b9a8014610b4a578063c86ec2bf14610b76578063c876d0b914610ba9578063d240360a14610bbe576103a2565b8063c0b0fda214610af4578063c2e5ec0414610b09578063c3c8cd8014610b35576103a2565b806396a8826c1161017a578063a9059cbb11610149578063a9059cbb14610a56578063aa45026b14610a8f578063b3d5eee114610aa4578063b41c9eda14610ab9576103a2565b806396a8826c146109c75780639e035846146109f3578063a457c2d714610a08578063a55cac9814610a41576103a2565b806389e7b81b116101b657806389e7b81b1461095e5780638da5cb5b146109885780638ea5220f1461099d57806395d89b41146109b2576103a2565b806377c325d6146108ea57806385141a771461091657806388f820201461092b576103a2565b8063437823ec116102c15780635d0044ca1161025f57806370a082311161022e57806370a0823114610863578063715018a614610896578063757765f8146108ab57806375f0a874146108d5576103a2565b80635d0044ca146107dc5780635d098b38146108065780636bc87c3a146108395780636fc3eaec1461084e576103a2565b80634a74bb021161029b5780634a74bb021461073757806350bea5481461074c57806352390c02146107765780635342acb4146107a9576103a2565b8063437823ec146106bc57806344b7d030146106ef57806349bd5a5e14610722576103a2565b806323b872dd116103395780633685d419116103085780633685d4191461060f57806339509351146106425780633b124fe71461067b57806341aea9de14610690576103a2565b806323b872dd1461054a578063313ce5671461058d57806331c402ac146105b85780633582ad23146105fa576103a2565b80631694505e116103755780631694505e146104aa57806318160ddd146104db5780631f53ac021461050257806322976e0d14610535576103a2565b806306fdde03146103a7578063095ea7b31461043157806313096a1a1461047e576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610d37565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103f65781810151838201526020016103de565b50505050905090810190601f1680156104235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561043d57600080fd5b5061046a6004803603604081101561045457600080fd5b506001600160a01b038135169060200135610dcd565b604080519115158252519081900360200190f35b34801561048a57600080fd5b506104a8600480360360208110156104a157600080fd5b5035610deb565b005b3480156104b657600080fd5b506104bf610e48565b604080516001600160a01b039092168252519081900360200190f35b3480156104e757600080fd5b506104f0610e57565b60408051918252519081900360200190f35b34801561050e57600080fd5b506104a86004803603602081101561052557600080fd5b50356001600160a01b0316610e5d565b34801561054157600080fd5b506104f0610ed7565b34801561055657600080fd5b5061046a6004803603606081101561056d57600080fd5b506001600160a01b03813581169160208101359091169060400135610edd565b34801561059957600080fd5b506105a2610f64565b6040805160ff9092168252519081900360200190f35b3480156105c457600080fd5b506104a8600480360360a08110156105db57600080fd5b5080359060208101359060408101359060608101359060800135610f6d565b34801561060657600080fd5b5061046a611031565b34801561061b57600080fd5b506104a86004803603602081101561063257600080fd5b50356001600160a01b0316611041565b34801561064e57600080fd5b5061046a6004803603604081101561066557600080fd5b506001600160a01b038135169060200135611202565b34801561068757600080fd5b506104f0611250565b34801561069c57600080fd5b506104a8600480360360208110156106b357600080fd5b50351515611256565b3480156106c857600080fd5b506104a8600480360360208110156106df57600080fd5b50356001600160a01b03166112cc565b3480156106fb57600080fd5b5061046a6004803603602081101561071257600080fd5b50356001600160a01b0316611348565b34801561072e57600080fd5b506104bf61135d565b34801561074357600080fd5b5061046a61136c565b34801561075857600080fd5b506104a86004803603602081101561076f57600080fd5b503561137c565b34801561078257600080fd5b506104a86004803603602081101561079957600080fd5b50356001600160a01b03166113d9565b3480156107b557600080fd5b5061046a600480360360208110156107cc57600080fd5b50356001600160a01b031661155f565b3480156107e857600080fd5b506104a8600480360360208110156107ff57600080fd5b5035611581565b34801561081257600080fd5b506104a86004803603602081101561082957600080fd5b50356001600160a01b031661160e565b34801561084557600080fd5b506104f0611688565b34801561085a57600080fd5b506104a861168e565b34801561086f57600080fd5b506104f06004803603602081101561088657600080fd5b50356001600160a01b03166117ca565b3480156108a257600080fd5b506104a861182c565b3480156108b757600080fd5b506104a8600480360360208110156108ce57600080fd5b50356118ce565b3480156108e157600080fd5b506104bf611947565b3480156108f657600080fd5b506104a86004803603602081101561090d57600080fd5b50351515611956565b34801561092257600080fd5b506104bf6119c1565b34801561093757600080fd5b5061046a6004803603602081101561094e57600080fd5b50356001600160a01b03166119d0565b34801561096a57600080fd5b506104a86004803603602081101561098157600080fd5b50356119ee565b34801561099457600080fd5b506104bf611a96565b3480156109a957600080fd5b506104bf611aa5565b3480156109be57600080fd5b506103bc611ab4565b3480156109d357600080fd5b506104a8600480360360208110156109ea57600080fd5b50351515611b15565b3480156109ff57600080fd5b506104f0611b8b565b348015610a1457600080fd5b5061046a60048036036040811015610a2b57600080fd5b506001600160a01b038135169060200135611b91565b348015610a4d57600080fd5b506104f0611bf9565b348015610a6257600080fd5b5061046a60048036036040811015610a7957600080fd5b506001600160a01b038135169060200135611bff565b348015610a9b57600080fd5b506104f0611c13565b348015610ab057600080fd5b5061046a611c19565b348015610ac557600080fd5b506104a860048036036040811015610adc57600080fd5b506001600160a01b0381351690602001351515611c29565b348015610b0057600080fd5b506104f0611cac565b348015610b1557600080fd5b506104a860048036036020811015610b2c57600080fd5b50351515611cb2565b348015610b4157600080fd5b506104a8611d28565b348015610b5657600080fd5b506104a860048036036020811015610b6d57600080fd5b50351515611db9565b348015610b8257600080fd5b506104a860048036036020811015610b9957600080fd5b50356001600160a01b0316611e64565b348015610bb557600080fd5b5061046a611ee0565b348015610bca57600080fd5b5061046a611ee9565b348015610bdf57600080fd5b5061046a60048036036020811015610bf657600080fd5b50356001600160a01b0316611ef9565b348015610c1257600080fd5b506104f060048036036040811015610c2957600080fd5b506001600160a01b0381358116916020013516611f0e565b348015610c4d57600080fd5b506104a860048036036020811015610c6457600080fd5b50356001600160a01b0316611f39565b348015610c8057600080fd5b506104a860048036036020811015610c9757600080fd5b50356001600160a01b0316611fb2565b348015610cb357600080fd5b5061046a61202b565b348015610cc857600080fd5b5061046a60048036036020811015610cdf57600080fd5b50356001600160a01b031661203b565b348015610cfb57600080fd5b506104a860048036036020811015610d1257600080fd5b50356001600160a01b0316612050565b348015610d2e57600080fd5b506104f0612148565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610dc35780601f10610d9857610100808354040283529160200191610dc3565b820191906000526020600020905b815481529060010190602001808311610da657829003601f168201915b5050505050905090565b6000610de1610dda6121f0565b84846121f4565b5060015b92915050565b610df36121f0565b6000546001600160a01b03908116911614610e43576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b602555565b6023546001600160a01b031681565b600c5490565b610e656121f0565b6000546001600160a01b03908116911614610eb5576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b602280546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b6000610eea8484846122e0565b610f5a84610ef66121f0565b610f5585604051806060016040528060288152602001613930602891396001600160a01b038a16600090815260046020526040812090610f346121f0565b6001600160a01b03168152602081019190915260400160002054919061284e565b6121f4565b5060019392505050565b60135460ff1690565b610f756121f0565b6000546001600160a01b03908116911614610fc5576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b610384818385878901010101111561100e5760405162461bcd60e51b815260040180806020018281038252602d815260200180613899602d913960400191505060405180910390fd5b601494909455601883905560168290556017819055601984905591010101601a55565b602454600160c01b900460ff1681565b6110496121f0565b6000546001600160a01b03908116911614611099576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16611106576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600b548110156111fe57816001600160a01b0316600b828154811061112a57fe5b6000918252602090912001546001600160a01b031614156111f657600b8054600019810190811061115757fe5b600091825260209091200154600b80546001600160a01b03909216918390811061117d57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600a90925220805460ff19169055600b8054806111cf57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556111fe565b600101611109565b5050565b6000610de161120f6121f0565b84610f5585600460006112206121f0565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906128e5565b60145481565b61125e6121f0565b6000546001600160a01b039081169116146112ae576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b60248054911515600160c01b0260ff60c01b19909216919091179055565b6112d46121f0565b6000546001600160a01b03908116911614611324576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b60066020526000908152604090205460ff1681565b6024546001600160a01b031681565b602454600160a81b900460ff1681565b6113846121f0565b6000546001600160a01b039081169116146113d4576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b602655565b6113e16121f0565b6000546001600160a01b03908116911614611431576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff161561149f576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260026020526040902054156114f9576001600160a01b0381166000908152600260205260409020546114df9061293f565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6001600160a01b03811660009081526005602052604090205460ff165b919050565b6115896121f0565b6000546001600160a01b039081169116146115d9576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b60698110156115e757600080fd5b61160881611602612710600c5461214e90919063ffffffff16565b90612197565b60105550565b6116166121f0565b6000546001600160a01b03908116911614611666576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b602180546001600160a01b0319166001600160a01b0392909216919091179055565b60185481565b6116966121f0565b6000546001600160a01b039081169116146116e6576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6016546019544791600091611713916116ff91906128e5565b60165461170d908590612197565b9061214e565b9050600061173f6117316016546019546128e590919063ffffffff16565b60195461170d908690612197565b90508015611783576022546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611781573d6000803e3d6000fd5b505b81156117c5576021546040516001600160a01b039091169083156108fc029084906000818181858888f193505050501580156117c3573d6000803e3d6000fd5b505b505050565b6001600160a01b0381166000908152600a602052604081205460ff161561180a57506001600160a01b03811660009081526003602052604090205461157c565b6001600160a01b038216600090815260026020526040902054610de59061293f565b6118346121f0565b6000546001600160a01b03908116911614611884576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6118d66121f0565b6000546001600160a01b03908116911614611926576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b61194181611602612710600c5461214e90919063ffffffff16565b600f5550565b6021546001600160a01b031681565b61195e6121f0565b6000546001600160a01b039081169116146119ae576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6028805460ff1916911515919091179055565b6020546001600160a01b031681565b6001600160a01b03166000908152600a602052604090205460ff1690565b6024805460ff60a01b1916600160a01b179055611a096121f0565b6000546001600160a01b03908116911614611a59576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6000611a64306117ca565b90506000611a798361160284620186a061214e565b9050611a8481612998565b50506024805460ff60a01b1916905550565b6000546001600160a01b031690565b6022546001600160a01b031681565b60128054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610dc35780601f10610d9857610100808354040283529160200191610dc3565b611b1d6121f0565b6000546001600160a01b03908116911614611b6d576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b60248054911515600160c81b0260ff60c81b19909216919091179055565b600e5490565b6000610de1611b9e6121f0565b84610f55856040518060600160405280602581526020016139ea6025913960046000611bc86121f0565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061284e565b601f5481565b6000610de1611c0c6121f0565b84846122e0565b60195481565b602454600160b01b900460ff1681565b611c316121f0565b6000546001600160a01b03908116911614611c81576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60175481565b611cba6121f0565b6000546001600160a01b03908116911614611d0a576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b60248054911515600160b81b0260ff60b81b19909216919091179055565b6024805460ff60a01b1916600160a01b179055611d436121f0565b6000546001600160a01b03908116911614611d93576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6000611d9e306117ca565b9050611da981612998565b506024805460ff60a01b19169055565b611dc16121f0565b6000546001600160a01b03908116911614611e11576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b60248054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611e6c6121f0565b6000546001600160a01b03908116911614611ebc576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b60285460ff1681565b602454600160c81b900460ff1681565b60086020526000908152604090205460ff1681565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b611f416121f0565b6000546001600160a01b03908116911614611f91576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19169055565b611fba6121f0565b6000546001600160a01b0390811691161461200a576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b602454600160b81b900460ff1681565b60096020526000908152604090205460ff1681565b6120586121f0565b6000546001600160a01b039081169116146120a8576040805162461bcd60e51b81526020600482018190526024820152600080516020613958833981519152604482015290519081900360640190fd5b6001600160a01b0381166120ed5760405162461bcd60e51b81526004018080602001828103825260268152602001806138516026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60105481565b600061219083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b3e565b9392505050565b6000826121a657506000610de5565b828202828482816121b357fe5b04146121905760405162461bcd60e51b815260040180806020018281038252602181526020018061390f6021913960400191505060405180910390fd5b3390565b6001600160a01b0383166122395760405162461bcd60e51b81526004018080602001828103825260248152602001806139c66024913960400191505060405180910390fd5b6001600160a01b03821661227e5760405162461bcd60e51b81526004018080602001828103825260228152602001806138776022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166123255760405162461bcd60e51b81526004018080602001828103825260258152602001806139a16025913960400191505060405180910390fd5b6001600160a01b03821661236a5760405162461bcd60e51b81526004018080602001828103825260238152602001806138046023913960400191505060405180910390fd5b600081116123a95760405162461bcd60e51b81526004018080602001828103825260298152602001806139786029913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff161561240d576040805162461bcd60e51b8152602060048201526013602482015272165bdd49dc99481a5b88189b1858dadb1a5cdd606a1b604482015290519081900360640190fd5b602454600160c01b900460ff161561273b576001600160a01b03821660009081526008602052604090205460ff1615801561246157506001600160a01b03821660009081526005602052604090205460ff16155b80156124865750612470611a96565b6001600160a01b0316836001600160a01b031614155b80156124ab5750612495611a96565b6001600160a01b0316826001600160a01b031614155b80156124c557506024546001600160a01b03838116911614155b1561253557600f54811115612514576040805162461bcd60e51b815260206004820152601060248201526f4f76657220746865204d61782062757960801b604482015290519081900360640190fd5b60105461252a612523846117ca565b83906128e5565b111561253557600080fd5b61253d611a96565b6001600160a01b0316836001600160a01b0316141580156125775750612561611a96565b6001600160a01b0316826001600160a01b031614155b801561258b57506001600160a01b03821615155b80156125a257506001600160a01b03821661dead14155b80156125b85750602454600160a01b900460ff16155b1561273b57602454600160b81b900460ff1661267a576001600160a01b03831660009081526005602052604090205460ff168061260d57506001600160a01b03821660009081526005602052604090205460ff165b8061263057506001600160a01b03821660009081526007602052604090205460ff165b61267a576040805162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015290519081900360640190fd5b60285460ff161561273b5761268d611a96565b6001600160a01b0316826001600160a01b0316141580156126bc57506023546001600160a01b03838116911614155b80156126d657506024546001600160a01b03838116911614155b1561273b573260009081526027602052604090205443116127285760405162461bcd60e51b81526004018080602001828103825260498152602001806138c66049913960600191505060405180910390fd5b3260009081526027602052604090204390555b6000612760601e5461275a601d54601c546128e590919063ffffffff16565b906128e5565b60255460245491925082101590600160a01b900460ff1615801561279257506024546001600160a01b03868116911614155b80156127a75750602454600160a81b900460ff165b80156127b05750805b156127bd576127bd612ba3565b6001600160a01b03851660009081526005602052604090205460019060ff16806127ff57506001600160a01b03851660009081526005602052604090205460ff165b8061283157506024546001600160a01b0387811691161480159061283157506024546001600160a01b03868116911614155b1561283a575060005b61284686868684612e2a565b505050505050565b600081848411156128dd5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156128a257818101518382015260200161288a565b50505050905090810190601f1680156128cf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015612190576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000600d548211156129825760405162461bcd60e51b815260040180806020018281038252602a815260200180613827602a913960400191505060405180910390fd5b600061298c612f98565b9050612190838261214e565b604080516002808252606080830184529260208301908036833701905050905030816000815181106129c657fe5b6001600160a01b03928316602091820292909201810191909152602354604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612a1a57600080fd5b505afa158015612a2e573d6000803e3d6000fd5b505050506040513d6020811015612a4457600080fd5b5051815182906001908110612a5557fe5b6001600160a01b039283166020918202929092010152602354612a7b91309116846121f4565b60235460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015612b01578181015183820152602001612ae9565b505050509050019650505050505050600060405180830381600087803b158015612b2a57600080fd5b505af1158015612846573d6000803e3d6000fd5b60008183612b8d5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156128a257818101518382015260200161288a565b506000838581612b9957fe5b0495945050505050565b6024805460ff60a01b1916600160a01b179055601d54601c54601e54600092612bd192909161275a916128e5565b90506000806000602460199054906101000a900460ff168015612c005750602554612bfd906014612197565b84115b15612c8457612c2060136116026014601e5461214e90919063ffffffff16565b601e54909350612c309084612fbb565b601e55601d54612c489060139061160290601461214e565b601d54909250612c589083612fbb565b601d55601c54612c709060139061160290601461214e565b601c54909150612c809082612fbb565b601c555b601c54600090612c9590600261214e565b90506000612cae82601c54612fbb90919063ffffffff16565b90506000612ccd601e5461275a601d54866128e590919063ffffffff16565b905047612cd982612998565b6000612ce54783612fbb565b90506000612cf78461170d8489612197565b90506000612d148561170d601d548661219790919063ffffffff16565b90506000612d2c82612d268686612fbb565b90612fbb565b90508215612d7f57612d3e8784612ffd565b604080518981526020810185905280820189905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b8115612dc1576021546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015612dbf573d6000803e3d6000fd5b505b8015612e03576022546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612e01573d6000803e3d6000fd5b505b505050601c95909555505050601d929092555050601e55506024805460ff60a01b19169055565b80612e3757612e376130ca565b6001600160a01b0384166000908152600a602052604090205460ff168015612e7857506001600160a01b0383166000908152600a602052604090205460ff16155b15612e8d57612e888484846130fc565b612f8b565b6001600160a01b0384166000908152600a602052604090205460ff16158015612ece57506001600160a01b0383166000908152600a602052604090205460ff165b15612ede57612e88848484613221565b6001600160a01b0384166000908152600a602052604090205460ff16158015612f2057506001600160a01b0383166000908152600a602052604090205460ff16155b15612f3057612e888484846132ca565b6001600160a01b0384166000908152600a602052604090205460ff168015612f7057506001600160a01b0383166000908152600a602052604090205460ff165b15612f8057612e8884848461330e565b612f8b8484846132ca565b806117c3576117c3613381565b6000806000612fa561338f565b9092509050612fb4828261214e565b9250505090565b600061219083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061284e565b6023546130159030906001600160a01b0316846121f4565b6023546001600160a01b031663f305d719823085600080613034611a96565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561309f57600080fd5b505af11580156130b3573d6000803e3d6000fd5b50505050506040513d60608110156117c357600080fd5b6014541580156130da5750601a54155b156130e4576130fa565b60148054601555601a8054601b55600091829055555b565b60008060008060008061310e876134f2565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506131409088612fbb565b6001600160a01b038a1660009081526003602090815260408083209390935560029052205461316f9087612fbb565b6001600160a01b03808b1660009081526002602052604080822093909355908a168152205461319e90866128e5565b6001600160a01b0389166000908152600260205260409020556131c1818a613541565b6131cb848361361f565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080613233876134f2565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506132659087612fbb565b6001600160a01b03808b16600090815260026020908152604080832094909455918b1681526003909152205461329b90846128e5565b6001600160a01b03891660009081526003602090815260408083209390935560029052205461319e90866128e5565b6000806000806000806132dc876134f2565b6001600160a01b038f16600090815260026020526040902054959b5093995091975095509350915061316f9087612fbb565b600080600080600080613320876134f2565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506133529088612fbb565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546132659087612fbb565b601554601455601b54601a55565b600d54600c546000918291825b600b548110156134c0578260026000600b84815481106133b857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061341d57508160036000600b84815481106133f657fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561343457600d54600c54945094505050506134ee565b61347460026000600b848154811061344857fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612fbb565b92506134b660036000600b848154811061348a57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612fbb565b915060010161339c565b50600c54600d546134d09161214e565b8210156134e857600d54600c549350935050506134ee565b90925090505b9091565b60008060008060008060008060006135098a613643565b92509250925060008060006135278d8686613522612f98565b61367f565b919f909e50909c50959a5093985091965092945050505050565b601a5461354d576111fe565b600061356a601a5461170d6016548661219790919063ffffffff16565b90506000613589601a5461170d6019548761219790919063ffffffff16565b905060006135a8601a5461170d6017548861219790919063ffffffff16565b905060006135bc82612d2685818a89612fbb565b6020549091506135d79086906001600160a01b0316846136cf565b601c546135e490826128e5565b601c55601d546135f490856128e5565b601d55601e5461360490846128e5565b601e55612846853061361a8661275a868a6128e5565b6136cf565b600d5461362c9083612fbb565b600d55600e5461363c90826128e5565b600e555050565b600080600080613652856137c9565b9050600061365f866137e6565b9050600061367182612d268986612fbb565b979296509094509092505050565b600080808061368e8886612197565b9050600061369c8887612197565b905060006136aa8888612197565b905060006136bc82612d268686612fbb565b939b939a50919850919650505050505050565b60006136d9612f98565b905060006136e78383612197565b6001600160a01b03851660009081526002602052604090205490915061370d90826128e5565b6001600160a01b038516600090815260026020908152604080832093909355600a9052205460ff1615613777576001600160a01b03841660009081526003602052604090205461375d90846128e5565b6001600160a01b0385166000908152600360205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050565b6000610de56103e861170d6014548561219790919063ffffffff16565b6000610de56103e861170d601a548561219790919063ffffffff1656fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f74616c207461782073686f756c64206e6f74206d6f7265207468616e2039302520283930302f31303030295f7472616e736665723a3a205472616e736665722044656c617920656e61626c65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b20616c6c6f7765642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207cec4546493e48e3f1b2eb222bccba2562879415575a4ae8f3f2a3796f54856c64736f6c634300060c0033

Deployed Bytecode Sourcemap

34112:24851:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37683:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38595:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38595:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42753:119;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42753:119:0;;:::i;:::-;;35940:41;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;35940:41:0;;;;;;;;;;;;;;37960:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;41294:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41294:98:0;-1:-1:-1;;;;;41294:98:0;;:::i;35304:33::-;;;;;;;;;;;;;:::i;38764:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38764:313:0;;;;;;;;;;;;;;;;;:::i;37869:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41552:558;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41552:558:0;;;;;;;;;;;;;;;;;;;;;;:::i;36168:32::-;;;;;;;;;;;;;:::i;40438:479::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40438:479:0;-1:-1:-1;;;;;40438:479:0;;:::i;39085:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39085:218:0;;;;;;;;:::i;35217:26::-;;;;;;;;;;;;;:::i;42301:103::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42301:103:0;;;;:::i;40925:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40925:111:0;-1:-1:-1;;;;;40925:111:0;;:::i;34455:51::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34455:51:0;-1:-1:-1;;;;;34455:51:0;;:::i;35988:28::-;;;;;;;;;;;;;:::i;36057:40::-;;;;;;;;;;;;;:::i;42878:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42878:118:0;;:::i;40097:333::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40097:333:0;-1:-1:-1;;;;;40097:333:0;;:::i;48979:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48979:123:0;-1:-1:-1;;;;;48979:123:0;;:::i;43138:163::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43138:163:0;;:::i;41176:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41176:110:0;-1:-1:-1;;;;;41176:110:0;;:::i;35378:33::-;;;;;;;;;;;;;:::i;48234:465::-;;;;;;;;;;;;;:::i;38063:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38063:198:0;-1:-1:-1;;;;;38063:198:0;;:::i;26133:148::-;;;;;;;;;;;;;:::i;43002:130::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43002:130:0;;:::i;35870:30::-;;;;;;;;;;;;;:::i;42637:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42637:110:0;;;;:::i;35793:70::-;;;;;;;;;;;;;:::i;39588:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39588:120:0;-1:-1:-1;;;;;39588:120:0;;:::i;48707:264::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48707:264:0;;:::i;25491:79::-;;;;;;;;;;;;;:::i;35907:24::-;;;;;;;;;;;;;:::i;37774:87::-;;;;;;;;;;;;;:::i;42518:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42518:111:0;;;;:::i;39716:::-;;;;;;;;;;;;;:::i;39311:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39311:269:0;;;;;;;;:::i;35752:32::-;;;;;;;;;;;;;:::i;38269:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38269:167:0;;;;;;;;:::i;35418:27::-;;;;;;;;;;;;;:::i;36104:23::-;;;;;;;;;;;;;:::i;41400:144::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41400:144:0;;;;;;;;;;:::i;35344:27::-;;;;;;;;;;;;;:::i;42412:98::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42412:98:0;;;;:::i;48057:169::-;;;;;;;;;;;;;:::i;42118:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42118:171:0;;;;:::i;47860:91::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47860:91:0;-1:-1:-1;;;;;47860:91:0;;:::i;36713:39::-;;;;;;;;;;;;;:::i;36207:34::-;;;;;;;;;;;;;:::i;34560:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34560:50:0;-1:-1:-1;;;;;34560:50:0;;:::i;38444:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38444:143:0;;;;;;;;;;:::i;41048:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41048:110:0;-1:-1:-1;;;;;41048:110:0;;:::i;47959:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47959:90:0;-1:-1:-1;;;;;47959:90:0;;:::i;36134:27::-;;;;;;;;;;;;;:::i;34621:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34621:46:0;-1:-1:-1;;;;;34621:46:0;;:::i;26436:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26436:244:0;-1:-1:-1;;;;;26436:244:0;;:::i;35033:54::-;;;;;;;;;;;;;:::i;37683:83::-;37753:5;37746:12;;;;;;;;-1:-1:-1;;37746:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37720:13;;37746:12;;37753:5;;37746:12;;37753:5;37746:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37683:83;:::o;38595:161::-;38670:4;38687:39;38696:12;:10;:12::i;:::-;38710:7;38719:6;38687:8;:39::i;:::-;-1:-1:-1;38744:4:0;38595:161;;;;;:::o;42753:119::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;42826:29:::1;:38:::0;42753:119::o;35940:41::-;;;-1:-1:-1;;;;;35940:41:0;;:::o;37960:95::-;38040:7;;37960:95;:::o;41294:98::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;41365:9:::1;:19:::0;;-1:-1:-1;;;;;;41365:19:0::1;-1:-1:-1::0;;;;;41365:19:0;;;::::1;::::0;;;::::1;::::0;;41294:98::o;35304:33::-;;;;:::o;38764:313::-;38862:4;38879:36;38889:6;38897:9;38908:6;38879:9;:36::i;:::-;38926:121;38935:6;38943:12;:10;:12::i;:::-;38957:89;38995:6;38957:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38957:19:0;;;;;;:11;:19;;;;;;38977:12;:10;:12::i;:::-;-1:-1:-1;;;;;38957:33:0;;;;;;;;;;;;-1:-1:-1;38957:33:0;;;:89;:37;:89::i;:::-;38926:8;:121::i;:::-;-1:-1:-1;39065:4:0;38764:313;;;;;:::o;37869:83::-;37935:9;;;;37869:83;:::o;41552:558::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;41786:3:::1;41776:6;41766:7;41751:12;41736;41718:15;:30;:45;:55;:64;:71;;41710:129;;;;-1:-1:-1::0;;;41710:129:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41850:7;:25:::0;;;;41886:13:::1;:28:::0;;;41925:13:::1;:28:::0;;;41964:8:::1;:18:::0;;;41993:7:::1;:16:::0;;;42052:29;::::1;:40;:50;42022:27;:80:::0;41552:558::o;36168:32::-;;;-1:-1:-1;;;36168:32:0;;;;;:::o;40438:479::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40520:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;40512:60;;;::::0;;-1:-1:-1;;;40512:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40588:9;40583:327;40607:9;:16:::0;40603:20;::::1;40583:327;;;40665:7;-1:-1:-1::0;;;;;40649:23:0::1;:9;40659:1;40649:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;40649:12:0::1;:23;40645:254;;;40708:9;40718:16:::0;;-1:-1:-1;;40718:20:0;;;40708:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;40693:9:::1;:12:::0;;-1:-1:-1;;;;;40708:31:0;;::::1;::::0;40703:1;;40693:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;40693:46:0::1;-1:-1:-1::0;;;;;40693:46:0;;::::1;;::::0;;40758:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;40797:11:::1;:20:::0;;;;:28;;-1:-1:-1;;40797:28:0::1;::::0;;40844:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;40844:15:0;;;;;-1:-1:-1;;;;;;40844:15:0::1;::::0;;;;;40878:5:::1;;40645:254;40625:3;;40583:327;;;;40438:479:::0;:::o;39085:218::-;39173:4;39190:83;39199:12;:10;:12::i;:::-;39213:7;39222:50;39261:10;39222:11;:25;39234:12;:10;:12::i;:::-;-1:-1:-1;;;;;39222:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;39222:25:0;;;:34;;;;;;;;;;;:38;:50::i;35217:26::-;;;;:::o;42301:103::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;42372:13:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;42372:24:0::1;-1:-1:-1::0;;;;42372:24:0;;::::1;::::0;;;::::1;::::0;;42301:103::o;40925:111::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40994:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;40994:34:0::1;41024:4;40994:34;::::0;;40925:111::o;34455:51::-;;;;;;;;;;;;;;;:::o;35988:28::-;;;-1:-1:-1;;;;;35988:28:0;;:::o;36057:40::-;;;-1:-1:-1;;;36057:40:0;;;;;:::o;42878:118::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;42958:21:::1;:30:::0;42878:118::o;40097:333::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40180:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;40179:21;40171:61;;;::::0;;-1:-1:-1;;;40171:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;40246:16:0;::::1;40265:1;40246:16:::0;;;:7:::1;:16;::::0;;;;;:20;40243:108:::1;;-1:-1:-1::0;;;;;40322:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;40302:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;40283:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;40243:108:::1;-1:-1:-1::0;;;;;40361:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;40361:27:0::1;40384:4;40361:27:::0;;::::1;::::0;;;40399:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;40399:23:0::1;::::0;;::::1;::::0;;40097:333::o;48979:123::-;-1:-1:-1;;;;;49067:27:0;;49043:4;49067:27;;;:18;:27;;;;;;;;48979:123;;;;:::o;43138:163::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;43232:3:::1;43218:10;:17;;43210:26;;;::::0;::::1;;43259:34;43282:10;43259:18;43271:5;43259:7;;:11;;:18;;;;:::i;:::-;:22:::0;::::1;:34::i;:::-;43247:9;:46:::0;-1:-1:-1;43138:163:0:o;41176:110::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;41253:15:::1;:25:::0;;-1:-1:-1;;;;;;41253:25:0::1;-1:-1:-1::0;;;;;41253:25:0;;;::::1;::::0;;;::::1;::::0;;41176:110::o;35378:33::-;;;;:::o;48234:465::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;48404:13:::1;::::0;48392:7:::1;::::0;48305:21:::1;::::0;48288:14:::1;::::0;48362:57:::1;::::0;48392:26:::1;::::0;:7;:11:::1;:26::i;:::-;48373:13;::::0;48362:25:::1;::::0;:6;;:10:::1;:25::i;:::-;:29:::0;::::1;:57::i;:::-;48339:80;;48430:14;48447:51;48471:26;48483:13;;48471:7;;:11;;:26;;;;:::i;:::-;48458:7;::::0;48447:19:::1;::::0;:6;;:10:::1;:19::i;:51::-;48430:68:::0;-1:-1:-1;48539:10:0;;48536:63:::1;;48572:9;::::0;48564:35:::1;::::0;-1:-1:-1;;;;;48572:9:0;;::::1;::::0;48564:35;::::1;;;::::0;48592:6;;48572:9:::1;48564:35:::0;48572:9;48564:35;48592:6;48572:9;48564:35;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48536:63;48613:16:::0;;48610:81:::1;;48652:15;::::0;48644:47:::1;::::0;-1:-1:-1;;;;;48652:15:0;;::::1;::::0;48644:47;::::1;;;::::0;48678:12;;48652:15:::1;48644:47:::0;48652:15;48644:47;48678:12;48652:15;48644:47;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48610:81;25773:1;;;48234:465::o:0;38063:198::-;-1:-1:-1;;;;;38153:20:0;;38129:7;38153:20;;;:11;:20;;;;;;;;38149:49;;;-1:-1:-1;;;;;;38182:16:0;;;;;;:7;:16;;;;;;38175:23;;38149:49;-1:-1:-1;;;;;38236:16:0;;;;;;:7;:16;;;;;;38216:37;;:19;:37::i;26133:148::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;26240:1:::1;26224:6:::0;;26203:40:::1;::::0;-1:-1:-1;;;;;26224:6:0;;::::1;::::0;26203:40:::1;::::0;26240:1;;26203:40:::1;26271:1;26254:19:::0;;-1:-1:-1;;;;;;26254:19:0::1;::::0;;26133:148::o;43002:130::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;43090:34:::1;43113:10;43090:18;43102:5;43090:7;;:11;;:18;;;;:::i;:34::-;43076:11;:48:::0;-1:-1:-1;43002:130:0:o;35870:30::-;;;-1:-1:-1;;;;;35870:30:0;;:::o;42637:110::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;42708:20:::1;:31:::0;;-1:-1:-1;;42708:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42637:110::o;35793:70::-;;;-1:-1:-1;;;;;35793:70:0;;:::o;39588:120::-;-1:-1:-1;;;;;39680:20:0;39656:4;39680:20;;;:11;:20;;;;;;;;;39588:120::o;48707:264::-;36793:16;:23;;-1:-1:-1;;;;36793:23:0;-1:-1:-1;;;36793:23:0;;;25713:12:::1;:10;:12::i;:::-;25703:6;::::0;-1:-1:-1;;;;;25703:6:0;;::::1;:22:::0;::::1;;25695:67;;;::::0;;-1:-1:-1;;;25695:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;::::1;;48798:23:::2;48824:24;48842:4;48824:9;:24::i;:::-;48798:50:::0;-1:-1:-1;48859:19:0::2;48881:42;48912:10:::0;48881:26:::2;48798:50:::0;48901:5:::2;48881:19;:26::i;:42::-;48859:64;;48934:29;48951:11;48934:16;:29::i;:::-;-1:-1:-1::0;;36839:16:0;:24;;-1:-1:-1;;;;36839:24:0;;;-1:-1:-1;48707:264:0:o;25491:79::-;25529:7;25556:6;-1:-1:-1;;;;;25556:6:0;25491:79;:::o;35907:24::-;;;-1:-1:-1;;;;;35907:24:0;;:::o;37774:87::-;37846:7;37839:14;;;;;;;;-1:-1:-1;;37839:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37813:13;;37839:14;;37846:7;;37839:14;;37846:7;37839:14;;;;;;;;;;;;;;;;;;;;;;;;42518:111;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;42595:15:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;42595:26:0::1;-1:-1:-1::0;;;;42595:26:0;;::::1;::::0;;;::::1;::::0;;42518:111::o;39716:::-;39796:23;;39716:111;:::o;39311:269::-;39404:4;39421:129;39430:12;:10;:12::i;:::-;39444:7;39453:96;39492:15;39453:96;;;;;;;;;;;;;;;;;:11;:25;39465:12;:10;:12::i;:::-;-1:-1:-1;;;;;39453:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;39453:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;35752:32::-;;;;:::o;38269:167::-;38347:4;38364:42;38374:12;:10;:12::i;:::-;38388:9;38399:6;38364:9;:42::i;35418:27::-;;;;:::o;36104:23::-;;;-1:-1:-1;;;36104:23:0;;;;;:::o;41400:144::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41495:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:41;;-1:-1:-1;;41495:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41400:144::o;35344:27::-;;;;:::o;42412:98::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;42484:7:::1;:18:::0;;;::::1;;-1:-1:-1::0;;;42484:18:0::1;-1:-1:-1::0;;;;42484:18:0;;::::1;::::0;;;::::1;::::0;;42412:98::o;48057:169::-;36793:16;:23;;-1:-1:-1;;;;36793:23:0;-1:-1:-1;;;36793:23:0;;;25713:12:::1;:10;:12::i;:::-;25703:6;::::0;-1:-1:-1;;;;;25703:6:0;;::::1;:22:::0;::::1;;25695:67;;;::::0;;-1:-1:-1;;;25695:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;::::1;;48124:23:::2;48150:24;48168:4;48150:9;:24::i;:::-;48124:50;;48185:33;48202:15;48185:16;:33::i;:::-;-1:-1:-1::0;36839:16:0;:24;;-1:-1:-1;;;;36839:24:0;;;48057:169::o;42118:171::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;42195:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;42195:32:0;::::1;-1:-1:-1::0;;;;42195:32:0;;::::1;::::0;;;::::1;::::0;;;42243:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;42118:171:::0;:::o;47860:91::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47926:10:0::1;;::::0;;;:6:::1;:10;::::0;;;;:17;;-1:-1:-1;;47926:17:0::1;47939:4;47926:17;::::0;;47860:91::o;36713:39::-;;;;;;:::o;36207:34::-;;;-1:-1:-1;;;36207:34:0;;;;;:::o;34560:50::-;;;;;;;;;;;;;;;:::o;38444:143::-;-1:-1:-1;;;;;38552:18:0;;;38525:7;38552:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;38444:143::o;41048:110::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41115:27:0::1;41145:5;41115:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;41115:35:0::1;::::0;;41048:110::o;47959:90::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48020:13:0::1;48036:5;48020:13:::0;;;:6:::1;:13;::::0;;;;:21;;-1:-1:-1;;48020:21:0::1;::::0;;47959:90::o;36134:27::-;;;-1:-1:-1;;;36134:27:0;;;;;:::o;34621:46::-;;;;;;;;;;;;;;;:::o;26436:244::-;25713:12;:10;:12::i;:::-;25703:6;;-1:-1:-1;;;;;25703:6:0;;;:22;;;25695:67;;;;;-1:-1:-1;;;25695:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25695:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26525:22:0;::::1;26517:73;;;;-1:-1:-1::0;;;26517:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26627:6;::::0;;26606:38:::1;::::0;-1:-1:-1;;;;;26606:38:0;;::::1;::::0;26627:6;::::1;::::0;26606:38:::1;::::0;::::1;26655:6;:17:::0;;-1:-1:-1;;;;;;26655:17:0::1;-1:-1:-1::0;;;;;26655:17:0;;;::::1;::::0;;;::::1;::::0;;26436:244::o;35033:54::-;;;;:::o;29251:132::-;29309:7;29336:39;29340:1;29343;29336:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;29329:46;29251:132;-1:-1:-1;;;29251:132:0:o;28304:471::-;28362:7;28607:6;28603:47;;-1:-1:-1;28637:1:0;28630:8;;28603:47;28674:5;;;28678:1;28674;:5;:1;28698:5;;;;;:10;28690:56;;;;-1:-1:-1;;;28690:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;603:98;683:10;603:98;:::o;49110:337::-;-1:-1:-1;;;;;49203:19:0;;49195:68;;;;-1:-1:-1;;;49195:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49282:21:0;;49274:68;;;;-1:-1:-1;;;49274:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49355:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;49407:32;;;;;;;;;;;;;;;;;49110:337;;;:::o;49455:2467::-;-1:-1:-1;;;;;49577:18:0;;49569:68;;;;-1:-1:-1;;;49569:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49656:16:0;;49648:64;;;;-1:-1:-1;;;49648:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49740:1;49731:6;:10;49723:64;;;;-1:-1:-1;;;49723:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49806:24:0;;;;;;:18;:24;;;;;;;;:33;49798:65;;;;;-1:-1:-1;;;49798:65:0;;;;;;;;;;;;-1:-1:-1;;;49798:65:0;;;;;;;;;;;;;;;49878:13;;-1:-1:-1;;;49878:13:0;;;;49875:1142;;;-1:-1:-1;;;;;49907:21:0;;;;;;:17;:21;;;;;;;;49906:22;:49;;;;-1:-1:-1;;;;;;49933:22:0;;;;;;:18;:22;;;;;;;;49932:23;49906:49;:68;;;;;49967:7;:5;:7::i;:::-;-1:-1:-1;;;;;49959:15:0;:4;-1:-1:-1;;;;;49959:15:0;;;49906:68;:85;;;;;49984:7;:5;:7::i;:::-;-1:-1:-1;;;;;49978:13:0;:2;-1:-1:-1;;;;;49978:13:0;;;49906:85;:108;;;;-1:-1:-1;50001:13:0;;-1:-1:-1;;;;;49995:19:0;;;50001:13;;49995:19;;49906:108;49903:243;;;50045:11;;50035:6;:21;;50027:49;;;;;-1:-1:-1;;;50027:49:0;;;;;;;;;;;;-1:-1:-1;;;50027:49:0;;;;;;;;;;;;;;;50124:9;;50095:25;50106:13;50116:2;50106:9;:13::i;:::-;50095:6;;:10;:25::i;:::-;:38;;50087:47;;;;;;50186:7;:5;:7::i;:::-;-1:-1:-1;;;;;50178:15:0;:4;-1:-1:-1;;;;;50178:15:0;;;:49;;;;;50220:7;:5;:7::i;:::-;-1:-1:-1;;;;;50214:13:0;:2;-1:-1:-1;;;;;50214:13:0;;;50178:49;:86;;;;-1:-1:-1;;;;;;50248:16:0;;;;50178:86;:128;;;;-1:-1:-1;;;;;;50285:21:0;;50299:6;50285:21;;50178:128;:166;;;;-1:-1:-1;50328:16:0;;-1:-1:-1;;;50328:16:0;;;;50327:17;50178:166;50156:850;;;50384:7;;-1:-1:-1;;;50384:7:0;;;;50380:154;;-1:-1:-1;;;;;50423:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;50451:22:0;;;;;;:18;:22;;;;;;;;50423:50;:64;;;-1:-1:-1;;;;;;50477:10:0;;;;;;:6;:10;;;;;;;;50423:64;50415:99;;;;;-1:-1:-1;;;50415:99:0;;;;;;;;;;;;-1:-1:-1;;;50415:99:0;;;;;;;;;;;;;;;50572:20;;;;50568:423;;;50626:7;:5;:7::i;:::-;-1:-1:-1;;;;;50620:13:0;:2;-1:-1:-1;;;;;50620:13:0;;;:47;;;;-1:-1:-1;50651:15:0;;-1:-1:-1;;;;;50637:30:0;;;50651:15;;50637:30;;50620:47;:79;;;;-1:-1:-1;50685:13:0;;-1:-1:-1;;;;;50671:28:0;;;50685:13;;50671:28;;50620:79;50616:356;;;50764:9;50735:39;;;;:28;:39;;;;;;50777:12;-1:-1:-1;50727:140:0;;;;-1:-1:-1;;;50727:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50923:9;50894:39;;;;:28;:39;;;;;50936:12;50894:54;;50616:356;51029:18;51050:72;51104:17;;51050:49;51075:23;;51050:20;;:24;;:49;;;;:::i;:::-;:53;;:72::i;:::-;51174:29;;51233:16;;51029:93;;-1:-1:-1;51160:43:0;;;;-1:-1:-1;;;51233:16:0;;;;51232:17;:55;;;;-1:-1:-1;51274:13:0;;-1:-1:-1;;;;;51266:21:0;;;51274:13;;51266:21;;51232:55;:93;;;;-1:-1:-1;51304:21:0;;-1:-1:-1;;;51304:21:0;;;;51232:93;:129;;;;;51342:19;51232:129;51214:233;;;51419:16;:14;:16::i;:::-;-1:-1:-1;;;;;51655:24:0;;51528:12;51655:24;;;:18;:24;;;;;;51543:4;;51655:24;;;:50;;-1:-1:-1;;;;;;51683:22:0;;;;;;:18;:22;;;;;;;;51655:50;:100;;;-1:-1:-1;51718:13:0;;-1:-1:-1;;;;;51710:21:0;;;51718:13;;51710:21;;;;:44;;-1:-1:-1;51741:13:0;;-1:-1:-1;;;;;51735:19:0;;;51741:13;;51735:19;;51710:44;51652:146;;;-1:-1:-1;51781:5:0;51652:146;51876:38;51891:4;51896:2;51899:6;51906:7;51876:14;:38::i;:::-;49455:2467;;;;;;:::o;27853:192::-;27939:7;27975:12;27967:6;;;;27959:29;;;;-1:-1:-1;;;27959:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;28011:5:0;;;27853:192::o;26950:181::-;27008:7;27040:5;;;27064:6;;;;27056:46;;;;;-1:-1:-1;;;27056:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;39835:254;39902:7;39941;;39930;:18;;39922:73;;;;-1:-1:-1;;;39922:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40006:19;40029:10;:8;:10::i;:::-;40006:33;-1:-1:-1;40057:24:0;:7;40006:33;40057:11;:24::i;54382:589::-;54532:16;;;54546:1;54532:16;;;54508:21;54532:16;;;;;54508:21;54532:16;;;;;;;;;;-1:-1:-1;54532:16:0;54508:40;;54577:4;54559;54564:1;54559:7;;;;;;;;-1:-1:-1;;;;;54559:23:0;;;:7;;;;;;;;;;:23;;;;54603:15;;:22;;;-1:-1:-1;;;54603:22:0;;;;:15;;;;;:20;;:22;;;;;54559:7;;54603:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54603:22:0;54593:7;;:4;;54598:1;;54593:7;;;;;;-1:-1:-1;;;;;54593:32:0;;;:7;;;;;;;;;:32;54670:15;;54638:62;;54655:4;;54670:15;54688:11;54638:8;:62::i;:::-;54739:15;;:224;;-1:-1:-1;;;54739:224:0;;;;;;;;:15;:224;;;;;;54917:4;54739:224;;;;;;54937:15;54739:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54739:15:0;;;;:66;;54820:11;;54890:4;;54917;54937:15;54739:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29879:278;29965:7;30000:12;29993:5;29985:28;;;;-1:-1:-1;;;29985:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30024:9;30040:1;30036;:5;;;;;;;29879:278;-1:-1:-1;;;;;29879:278:0:o;51930:2444::-;36793:16;:23;;-1:-1:-1;;;;36793:23:0;-1:-1:-1;;;36793:23:0;;;52067::::1;::::0;52041:20:::1;::::0;52019:17:::1;::::0;36793:23;;52019:72:::1;::::0;52067:23;;52019:43:::1;::::0;:21:::1;:43::i;:72::-;51989:102;;52102:20;52137:26:::0;52178:20:::1;52217:15;;;;;;;;;;;:78;;;;-1:-1:-1::0;52258:29:0::1;::::0;:37:::1;::::0;52292:2:::1;52258:33;:37::i;:::-;52236:19;:59;52217:78;52213:533;;;52326:33;52356:2;52326:25;52348:2;52326:17;;:21;;:25;;;;:::i;:33::-;52394:17;::::0;52311:48;;-1:-1:-1;52394:35:0::1;::::0;52311:48;52394:21:::1;:35::i;:::-;52374:17;:55:::0;52465:23:::1;::::0;:39:::1;::::0;52501:2:::1;::::0;52465:31:::1;::::0;52493:2:::1;52465:27;:31::i;:39::-;52545:23;::::0;52444:60;;-1:-1:-1;52545:47:0::1;::::0;52444:60;52545:27:::1;:47::i;:::-;52519:23;:73:::0;52622:20:::1;::::0;:36:::1;::::0;52655:2:::1;::::0;52622:28:::1;::::0;52647:2:::1;52622:24;:28::i;:36::-;52696:20;::::0;52607:51;;-1:-1:-1;52696:38:0::1;::::0;52607:51;52696:24:::1;:38::i;:::-;52673:20;:61:::0;52213:533:::1;52823:20;::::0;52808:12:::1;::::0;52823:28:::1;::::0;52849:1:::1;52823:25;:28::i;:::-;52808:43;;52862:17;52882:30;52907:4;52882:20;;:24;;:30;;;;:::i;:::-;52862:50;;52925:18;52946:56;52984:17;;52946:33;52955:23;;52946:4;:8;;:33;;;;:::i;:56::-;52925:77:::0;-1:-1:-1;53303:21:0::1;53369:28;52925:77:::0;53369:16:::1;:28::i;:::-;53528:13;53544:41;:21;53570:14:::0;53544:25:::1;:41::i;:::-;53528:57:::0;-1:-1:-1;53598:17:0::1;53618:31;53638:10:::0;53618:15:::1;53528:57:::0;53628:4;53618:9:::1;:15::i;:31::-;53598:51;;53660:20;53683:50;53722:10;53683:34;53693:23;;53683:5;:9;;:34;;;;:::i;:50::-;53660:73:::0;-1:-1:-1;53744:14:0::1;53761:38;53660:73:::0;53761:20:::1;:5:::0;53771:9;53761::::1;:20::i;:::-;:24:::0;::::1;:38::i;:::-;53744:55:::0;-1:-1:-1;53815:13:0;;53812:181:::1;;53885:34;53898:9;53909;53885:12;:34::i;:::-;53939:42;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;53812:181;54008:16:::0;;54005:94:::1;;54048:15;::::0;54040:47:::1;::::0;-1:-1:-1;;;;;54048:15:0;;::::1;::::0;54040:47;::::1;;;::::0;54074:12;;54048:15:::1;54040:47:::0;54048:15;54040:47;54074:12;54048:15;54040:47;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;54005:94;54114:10:::0;;54111:76:::1;;54148:9;::::0;54140:35:::1;::::0;-1:-1:-1;;;;;54148:9:0;;::::1;::::0;54140:35;::::1;;;::::0;54168:6;;54148:9:::1;54140:35:::0;54148:9;54140:35;54168:6;54148:9;54140:35;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;54111:76;-1:-1:-1::0;;;54233:20:0::1;:35:::0;;;;-1:-1:-1;;;54279:23:0::1;:44:::0;;;;-1:-1:-1;;54334:17:0::1;:32:::0;-1:-1:-1;36839:16:0;:24;;-1:-1:-1;;;;36839:24:0;;;51930:2444::o;55573:835::-;55685:7;55681:40;;55707:14;:12;:14::i;:::-;-1:-1:-1;;;;;55746:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;55770:22:0;;;;;;:11;:22;;;;;;;;55769:23;55746:46;55742:597;;;55809:48;55831:6;55839:9;55850:6;55809:21;:48::i;:::-;55742:597;;;-1:-1:-1;;;;;55880:19:0;;;;;;:11;:19;;;;;;;;55879:20;:46;;;;-1:-1:-1;;;;;;55903:22:0;;;;;;:11;:22;;;;;;;;55879:46;55875:464;;;55942:46;55962:6;55970:9;55981:6;55942:19;:46::i;55875:464::-;-1:-1:-1;;;;;56011:19:0;;;;;;:11;:19;;;;;;;;56010:20;:47;;;;-1:-1:-1;;;;;;56035:22:0;;;;;;:11;:22;;;;;;;;56034:23;56010:47;56006:333;;;56074:44;56092:6;56100:9;56111:6;56074:17;:44::i;56006:333::-;-1:-1:-1;;;;;56140:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;56163:22:0;;;;;;:11;:22;;;;;;;;56140:45;56136:203;;;56202:48;56224:6;56232:9;56243:6;56202:21;:48::i;56136:203::-;56283:44;56301:6;56309:9;56320:6;56283:17;:44::i;:::-;56363:7;56359:41;;56385:15;:13;:15::i;44995:163::-;45036:7;45057:15;45074;45093:19;:17;:19::i;:::-;45056:56;;-1:-1:-1;45056:56:0;-1:-1:-1;45130:20:0;45056:56;;45130:11;:20::i;:::-;45123:27;;;;44995:163;:::o;27414:136::-;27472:7;27499:43;27503:1;27506;27499:43;;;;;;;;;;;;;;;;;:3;:43::i;54979:513::-;55159:15;;55127:62;;55144:4;;-1:-1:-1;;;;;55159:15:0;55177:11;55127:8;:62::i;:::-;55232:15;;-1:-1:-1;;;;;55232:15:0;:31;55271:9;55304:4;55324:11;55232:15;;55436:7;:5;:7::i;:::-;55458:15;55232:252;;;;;;;;;;;;;-1:-1:-1;;;;;55232:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55232:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47383:306;47429:7;;:12;:48;;;;-1:-1:-1;47445:27:0;;:32;47429:48;47426:60;;;47479:7;;47426:60;47524:7;;;47506:15;:25;47580:27;;;47542:35;:65;-1:-1:-1;47628:11:0;;;;47650:31;47383:306;:::o;57632:622::-;57735:15;57752:23;57777:12;57791:23;57816:12;57830:34;57868:19;57879:7;57868:10;:19::i;:::-;-1:-1:-1;;;;;57916:15:0;;;;;;:7;:15;;;;;;57734:153;;-1:-1:-1;57734:153:0;;-1:-1:-1;57734:153:0;;-1:-1:-1;57734:153:0;-1:-1:-1;57734:153:0;-1:-1:-1;57734:153:0;-1:-1:-1;57916:28:0;;57936:7;57916:19;:28::i;:::-;-1:-1:-1;;;;;57898:15:0;;;;;;:7;:15;;;;;;;;:46;;;;57973:7;:15;;;;:28;;57993:7;57973:19;:28::i;:::-;-1:-1:-1;;;;;57955:15:0;;;;;;;:7;:15;;;;;;:46;;;;58033:18;;;;;;;:39;;58056:15;58033:22;:39::i;:::-;-1:-1:-1;;;;;58012:18:0;;;;;;:7;:18;;;;;:60;58086:66;58117:26;58145:6;58086:30;:66::i;:::-;58163:23;58175:4;58181;58163:11;:23::i;:::-;58219:9;-1:-1:-1;;;;;58202:44:0;58211:6;-1:-1:-1;;;;;58202:44:0;;58230:15;58202:44;;;;;;;;;;;;;;;;;;57632:622;;;;;;;;;:::o;56982:642::-;57083:15;57100:23;57125:12;57139:23;57164:12;57178:34;57216:19;57227:7;57216:10;:19::i;:::-;-1:-1:-1;;;;;57264:15:0;;;;;;:7;:15;;;;;;57082:153;;-1:-1:-1;57082:153:0;;-1:-1:-1;57082:153:0;;-1:-1:-1;57082:153:0;-1:-1:-1;57082:153:0;-1:-1:-1;57082:153:0;-1:-1:-1;57264:28:0;;57082:153;57264:19;:28::i;:::-;-1:-1:-1;;;;;57246:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;57324:18;;;;;:7;:18;;;;;:39;;57347:15;57324:22;:39::i;:::-;-1:-1:-1;;;;;57303:18:0;;;;;;:7;:18;;;;;;;;:60;;;;57395:7;:18;;;;:39;;57418:15;57395:22;:39::i;56416:558::-;56515:15;56532:23;56557:12;56571:23;56596:12;56610:34;56648:19;56659:7;56648:10;:19::i;:::-;-1:-1:-1;;;;;56696:15:0;;;;;;:7;:15;;;;;;56514:153;;-1:-1:-1;56514:153:0;;-1:-1:-1;56514:153:0;;-1:-1:-1;56514:153:0;-1:-1:-1;56514:153:0;-1:-1:-1;56514:153:0;-1:-1:-1;56696:28:0;;56514:153;56696:19;:28::i;58262:698::-;58365:15;58382:23;58407:12;58421:23;58446:12;58460:34;58498:19;58509:7;58498:10;:19::i;:::-;-1:-1:-1;;;;;58546:15:0;;;;;;:7;:15;;;;;;58364:153;;-1:-1:-1;58364:153:0;;-1:-1:-1;58364:153:0;;-1:-1:-1;58364:153:0;-1:-1:-1;58364:153:0;-1:-1:-1;58364:153:0;-1:-1:-1;58546:28:0;;58566:7;58546:19;:28::i;:::-;-1:-1:-1;;;;;58528:15:0;;;;;;:7;:15;;;;;;;;:46;;;;58603:7;:15;;;;:28;;58623:7;58603:19;:28::i;47701:153::-;47755:15;;47745:7;:25;47811:35;;47781:27;:65;47701:153::o;45166:561::-;45263:7;;45299;;45216;;;;;45323:289;45347:9;:16;45343:20;;45323:289;;;45413:7;45389;:21;45397:9;45407:1;45397:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45397:12:0;45389:21;;;;;;;;;;;;;:31;;:66;;;45448:7;45424;:21;45432:9;45442:1;45432:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45432:12:0;45424:21;;;;;;;;;;;;;:31;45389:66;45385:97;;;45465:7;;45474;;45457:25;;;;;;;;;45385:97;45507:34;45519:7;:21;45527:9;45537:1;45527:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45527:12:0;45519:21;;;;;;;;;;;;;45507:7;;:11;:34::i;:::-;45497:44;;45566:34;45578:7;:21;45586:9;45596:1;45586:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45586:12:0;45578:21;;;;;;;;;;;;;45566:7;;:11;:34::i;:::-;45556:44;-1:-1:-1;45365:3:0;;45323:289;;;-1:-1:-1;45648:7:0;;45636;;:20;;:11;:20::i;:::-;45626:7;:30;45622:61;;;45666:7;;45675;;45658:25;;;;;;;;45622:61;45702:7;;-1:-1:-1;45711:7:0;-1:-1:-1;45166:561:0;;;:::o;43584:482::-;43643:7;43652;43661;43670;43679;43688;43709:23;43734:12;43748:39;43791:20;43803:7;43791:11;:20::i;:::-;43708:103;;;;;;43823:15;43840:23;43865:12;43881:71;43893:7;43902:4;43908:31;43941:10;:8;:10::i;:::-;43881:11;:71::i;:::-;43822:130;;;;-1:-1:-1;43822:130:0;;-1:-1:-1;44003:15:0;;-1:-1:-1;44020:4:0;;-1:-1:-1;44026:31:0;;-1:-1:-1;43584:482:0;;-1:-1:-1;;;;;43584:482:0:o;45735:915::-;45849:27;;45846:69;;45897:7;;45846:69;45925:18;45946:78;45996:27;;45946:45;45977:13;;45946:26;:30;;:45;;;;:::i;:78::-;45925:99;;46035:12;46050:72;46094:27;;46050:39;46081:7;;46050:26;:30;;:39;;;;:::i;:72::-;46035:87;;46133:13;46149:73;46194:27;;46149:40;46180:8;;46149:26;:30;;:40;;;;:::i;:73::-;46133:89;-1:-1:-1;46233:15:0;46251:63;46133:89;46251:52;46298:4;46251:52;:26;46282:10;46251:30;:42::i;:63::-;46344:10;;46233:81;;-1:-1:-1;46327:35:0;;46336:6;;-1:-1:-1;;;;;46344:10:0;46356:5;46327:8;:35::i;:::-;46398:20;;:33;;46423:7;46398:24;:33::i;:::-;46375:20;:56;46468:23;;:39;;46496:10;46468:27;:39::i;:::-;46442:23;:65;46538:17;;:27;;46560:4;46538:21;:27::i;:::-;46518:17;:47;46576:66;46585:6;46601:4;46608:33;46636:4;46608:23;:7;46620:10;46608:11;:23::i;:33::-;46576:8;:66::i;43403:173::-;43481:7;;:17;;43493:4;43481:11;:17::i;:::-;43471:7;:27;43535:23;;:33;;43563:4;43535:27;:33::i;:::-;43509:23;:59;-1:-1:-1;;43403:173:0:o;44074:392::-;44134:7;44143;44152;44172:12;44187:24;44203:7;44187:15;:24::i;:::-;44172:39;;44222:34;44259:44;44295:7;44259:35;:44::i;:::-;44222:81;-1:-1:-1;44314:23:0;44340:49;44222:81;44340:17;:7;44352:4;44340:11;:17::i;:49::-;44314:75;44425:4;;-1:-1:-1;44431:26:0;;-1:-1:-1;44074:392:0;;-1:-1:-1;;;44074:392:0:o;44474:513::-;44610:7;;;;44666:24;:7;44678:11;44666;:24::i;:::-;44648:42;-1:-1:-1;44701:12:0;44716:21;:4;44725:11;44716:8;:21::i;:::-;44701:36;-1:-1:-1;44748:39:0;44790:48;:31;44826:11;44790:35;:48::i;:::-;44748:90;-1:-1:-1;44849:23:0;44875:54;44748:90;44875:17;:7;44887:4;44875:11;:17::i;:54::-;44948:7;;;;-1:-1:-1;44974:4:0;;-1:-1:-1;44474:513:0;;-1:-1:-1;;;;;;;44474:513:0:o;46658:345::-;46736:19;46759:10;:8;:10::i;:::-;46736:33;-1:-1:-1;46780:15:0;46798:23;:6;46736:33;46798:10;:23::i;:::-;-1:-1:-1;;;;;46846:11:0;;;;;;:7;:11;;;;;;46780:41;;-1:-1:-1;46846:24:0;;46780:41;46846:15;:24::i;:::-;-1:-1:-1;;;;;46832:11:0;;;;;;:7;:11;;;;;;;;:38;;;;46884:11;:15;;;;;;46881:70;;;-1:-1:-1;;;;;46928:11:0;;;;;;:7;:11;;;;;;:23;;46944:6;46928:15;:23::i;:::-;-1:-1:-1;;;;;46914:11:0;;;;;;:7;:11;;;;;:37;46881:70;46984:2;-1:-1:-1;;;;;46969:26:0;46978:4;-1:-1:-1;;;;;46969:26:0;;46988:6;46969:26;;;;;;;;;;;;;;;;;;46658:345;;;;;:::o;47015:154::-;47079:7;47106:55;47145:5;47106:20;47118:7;;47106;:11;;:20;;;;:::i;47177:194::-;47261:7;47288:75;47347:5;47288:40;47300:27;;47288:7;:11;;:40;;;;:::i

Swarm Source

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