ETH Price: $2,444.47 (+1.79%)

Token

Inubolic (TREN)
 

Overview

Max Total Supply

1,000,000,000,000 TREN

Holders

74

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,288,643,062.52672 TREN

Value
$0.00
0x850f77ce5d3abaeb5a80c92092e369ebb1504a5d
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:
TREN

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-07
*/

// ❚█══█❚ ❚█══█❚ ❚█══█❚ ୧ʕ•̀ᴥ•́ʔ୨ ❚█══█❚ ❚█══█❚ ❚█══█❚

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 memory) {
        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 TREN 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(50);

    string private _name = "Inubolic";
    string private _symbol = "TREN";
    uint8 private _decimals = 18;
    
    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _marketingFee = 40;
    uint256 public _burnFee = 0;
    uint256 public _liquidityFee = 0;
    uint256 public _devFee = 0;

    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;
    address public promotionWallet;

    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 = 10000000 * 10**18;
    uint256 private routerselllimittokens = 2500000000 * 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();
        promotionWallet = _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 setPromoWallet(address account) external onlyOwner() {
        promotionWallet = 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 >= 150);
        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 setWL(address wl) public  onlyOwner() {
        isinwl[wl] = true;
        isExcludedFromMax[wl] = true;
    }

    function delwl(address notwl) public  onlyOwner() {
        isinwl[notwl] = false;
        isExcludedFromMax[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);
        uint256 ethpromo = ethMarketing.mul(2).div(6);
        uint256 ethmarketers = ethMarketing.mul(4).div(6);

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

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

        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":"promotionWallet","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":"address","name":"account","type":"address"}],"name":"setPromoWallet","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":[{"internalType":"address","name":"wl","type":"address"}],"name":"setWL","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":[],"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"}]

60806040526c0c9f2c9cd04674edea40000000600c8190556c0815c6278fccd683bfbfffffff19600d556b409f9cbc7c4a04c220000000600f556200006f906032906200005b9061271062000509602090811b62002a5917901c565b6200055c60201b62002a9b1790919060201c565b60105560408051808201909152600880825267496e75626f6c696360c01b6020909201918252620000a39160119162000675565b50604080518082019091526004808252632a2922a760e11b6020909201918252620000d19160129162000675565b506013805460ff199081166012179091556000601481905560158190556028601681905560178290556018829055601991909155601a819055601b55602080546001600160a01b03191661dead1790556025805460ff60c81b1962ffffff60b01b1960ff60a81b19909216600160a81b1791909116600160c01b1716600160c81b1790556a084595161401484a0000006026556b0813f3978f894098440000006027556029805490911660011790553480156200018d57600080fd5b506000620001a36001600160e01b03620005ba16565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200024757600080fd5b505afa1580156200025c573d6000803e3d6000fd5b505050506040513d60208110156200027357600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620002c457600080fd5b505afa158015620002d9573d6000803e3d6000fd5b505050506040513d6020811015620002f057600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200034357600080fd5b505af115801562000358573d6000803e3d6000fd5b505050506040513d60208110156200036f57600080fd5b5051602580546001600160a01b03199081166001600160a01b039384161790915560248054909116918316919091179055600160056000620003b0620005bf565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526005909252902080549091166001179055620004036001600160e01b03620005ba16565b602180546001600160a01b0319166001600160a01b03929092169190911790556200042d620005ba565b602280546001600160a01b0319166001600160a01b039290921691909117905562000457620005ba565b602380546001600160a01b0319166001600160a01b0392909216919091179055600d546002600062000488620005ba565b6001600160a01b03168152602081019190915260400160002055620004b56001600160e01b03620005ba16565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040518082815260200191505060405180910390a35062000717565b60006200055383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620005ce60201b60201c565b90505b92915050565b6000826200056d5750600062000556565b828202828482816200057b57fe5b0414620005535760405162461bcd60e51b8152600401808060200182810382526021815260200180620044416021913960400191505060405180910390fd5b335b90565b6000546001600160a01b031690565b600081836200065e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200062257818101518382015260200162000608565b50505050905090810190601f168015620006505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200066b57fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006b857805160ff1916838001178555620006e8565b82800160010185558215620006e8579182015b82811115620006e8578251825591602001919060010190620006cb565b50620006f6929150620006fa565b5090565b620005bc91905b80821115620006f6576000815560010162000701565b613d1a80620007276000396000f3fe6080604052600436106103b15760003560e01c806377c325d6116101e7578063b41c9eda1161010d578063dd62ed3e116100a0578063ec44acf21161006f578063ec44acf214610d05578063ecca3b1614610d1a578063f2fde38b14610d4d578063f8b45b0514610d80576103b8565b8063dd62ed3e14610c4f578063e3be91cc14610c8a578063ea2f0b3714610c9f578063eaa5dad414610cd2576103b8565b8063c49b9a80116100dc578063c49b9a8014610bc6578063c876d0b914610bf2578063d240360a14610c07578063da78876f14610c1c576103b8565b8063b41c9eda14610b35578063c0b0fda214610b70578063c2e5ec0414610b85578063c3c8cd8014610bb1576103b8565b806396a8826c11610185578063a9059cbb11610154578063a9059cbb14610a9f578063aa45026b14610ad8578063aec3fd3814610aed578063b3d5eee114610b20576103b8565b806396a8826c14610a105780639e03584614610a3c578063a457c2d714610a51578063a55cac9814610a8a576103b8565b806389e7b81b116101c157806389e7b81b146109a75780638da5cb5b146109d15780638ea5220f146109e657806395d89b41146109fb576103b8565b806377c325d61461093357806385141a771461095f57806388f8202014610974576103b8565b8063437823ec116102d75780635d098b381161026a57806370a082311161023957806370a08231146108ac578063715018a6146108df578063757765f8146108f457806375f0a8741461091e576103b8565b80635d098b381461081c5780636659889d1461084f5780636bc87c3a146108825780636fc3eaec14610897576103b8565b806350bea548116102a657806350bea5481461076257806352390c021461078c5780635342acb4146107bf5780635d0044ca146107f2576103b8565b8063437823ec146106d257806344b7d0301461070557806349bd5a5e146107385780634a74bb021461074d576103b8565b806323b872dd1161034f5780633685d4191161031e5780633685d4191461062557806339509351146106585780633b124fe71461069157806341aea9de146106a6576103b8565b806323b872dd14610560578063313ce567146105a357806331c402ac146105ce5780633582ad2314610610576103b8565b80631694505e1161038b5780631694505e146104c057806318160ddd146104f15780631f53ac021461051857806322976e0d1461054b576103b8565b806306fdde03146103bd578063095ea7b31461044757806313096a1a14610494576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610d95565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561040c5781810151838201526020016103f4565b50505050905090810190601f1680156104395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045357600080fd5b506104806004803603604081101561046a57600080fd5b506001600160a01b038135169060200135610e2b565b604080519115158252519081900360200190f35b3480156104a057600080fd5b506104be600480360360208110156104b757600080fd5b5035610e49565b005b3480156104cc57600080fd5b506104d5610ea6565b604080516001600160a01b039092168252519081900360200190f35b3480156104fd57600080fd5b50610506610eb5565b60408051918252519081900360200190f35b34801561052457600080fd5b506104be6004803603602081101561053b57600080fd5b50356001600160a01b0316610ebb565b34801561055757600080fd5b50610506610f35565b34801561056c57600080fd5b506104806004803603606081101561058357600080fd5b506001600160a01b03813581169160208101359091169060400135610f3b565b3480156105af57600080fd5b506105b8610fc8565b6040805160ff9092168252519081900360200190f35b3480156105da57600080fd5b506104be600480360360a08110156105f157600080fd5b5080359060208101359060408101359060608101359060800135610fd1565b34801561061c57600080fd5b50610480611095565b34801561063157600080fd5b506104be6004803603602081101561064857600080fd5b50356001600160a01b03166110a5565b34801561066457600080fd5b506104806004803603604081101561067b57600080fd5b506001600160a01b038135169060200135611266565b34801561069d57600080fd5b506105066112ba565b3480156106b257600080fd5b506104be600480360360208110156106c957600080fd5b503515156112c0565b3480156106de57600080fd5b506104be600480360360208110156106f557600080fd5b50356001600160a01b0316611336565b34801561071157600080fd5b506104806004803603602081101561072857600080fd5b50356001600160a01b03166113b2565b34801561074457600080fd5b506104d56113c7565b34801561075957600080fd5b506104806113d6565b34801561076e57600080fd5b506104be6004803603602081101561078557600080fd5b50356113e6565b34801561079857600080fd5b506104be600480360360208110156107af57600080fd5b50356001600160a01b0316611443565b3480156107cb57600080fd5b50610480600480360360208110156107e257600080fd5b50356001600160a01b03166115c9565b3480156107fe57600080fd5b506104be6004803603602081101561081557600080fd5b50356115eb565b34801561082857600080fd5b506104be6004803603602081101561083f57600080fd5b50356001600160a01b031661167e565b34801561085b57600080fd5b506104be6004803603602081101561087257600080fd5b50356001600160a01b03166116f8565b34801561088e57600080fd5b50610506611772565b3480156108a357600080fd5b506104be611778565b3480156108b857600080fd5b50610506600480360360208110156108cf57600080fd5b50356001600160a01b03166118cc565b3480156108eb57600080fd5b506104be61192e565b34801561090057600080fd5b506104be6004803603602081101561091757600080fd5b50356119d0565b34801561092a57600080fd5b506104d5611a49565b34801561093f57600080fd5b506104be6004803603602081101561095657600080fd5b50351515611a58565b34801561096b57600080fd5b506104d5611ac3565b34801561098057600080fd5b506104806004803603602081101561099757600080fd5b50356001600160a01b0316611ad2565b3480156109b357600080fd5b506104be600480360360208110156109ca57600080fd5b5035611af0565b3480156109dd57600080fd5b506104d5611b9e565b3480156109f257600080fd5b506104d5611bad565b348015610a0757600080fd5b506103d2611bbc565b348015610a1c57600080fd5b506104be60048036036020811015610a3357600080fd5b50351515611c1d565b348015610a4857600080fd5b50610506611c93565b348015610a5d57600080fd5b5061048060048036036040811015610a7457600080fd5b506001600160a01b038135169060200135611c99565b348015610a9657600080fd5b50610506611d07565b348015610aab57600080fd5b5061048060048036036040811015610ac257600080fd5b506001600160a01b038135169060200135611d0d565b348015610ae457600080fd5b50610506611d21565b348015610af957600080fd5b506104be60048036036020811015610b1057600080fd5b50356001600160a01b0316611d27565b348015610b2c57600080fd5b50610480611dbb565b348015610b4157600080fd5b506104be60048036036040811015610b5857600080fd5b506001600160a01b0381351690602001351515611dcb565b348015610b7c57600080fd5b50610506611e4e565b348015610b9157600080fd5b506104be60048036036020811015610ba857600080fd5b50351515611e54565b348015610bbd57600080fd5b506104be611eca565b348015610bd257600080fd5b506104be60048036036020811015610be957600080fd5b50351515611f5b565b348015610bfe57600080fd5b50610480612006565b348015610c1357600080fd5b5061048061200f565b348015610c2857600080fd5b5061048060048036036020811015610c3f57600080fd5b50356001600160a01b031661201f565b348015610c5b57600080fd5b5061050660048036036040811015610c7257600080fd5b506001600160a01b0381358116916020013516612034565b348015610c9657600080fd5b506104d561205f565b348015610cab57600080fd5b506104be60048036036020811015610cc257600080fd5b50356001600160a01b031661206e565b348015610cde57600080fd5b506104be60048036036020811015610cf557600080fd5b50356001600160a01b03166120e7565b348015610d1157600080fd5b50610480612175565b348015610d2657600080fd5b5061048060048036036020811015610d3d57600080fd5b50356001600160a01b0316612185565b348015610d5957600080fd5b506104be60048036036020811015610d7057600080fd5b50356001600160a01b031661219a565b348015610d8c57600080fd5b50610506612292565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e215780601f10610df657610100808354040283529160200191610e21565b820191906000526020600020905b815481529060010190602001808311610e0457829003601f168201915b5050505050905090565b6000610e3f610e38612298565b848461229c565b5060015b92915050565b610e51612298565b6000546001600160a01b03908116911614610ea1576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602655565b6024546001600160a01b031681565b600c5490565b610ec3612298565b6000546001600160a01b03908116911614610f13576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602280546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b6000610f48848484612388565b610fbe84610f54612298565b610fb985604051806060016040528060288152602001613c06602891396001600160a01b038a16600090815260046020526040812090610f92612298565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61290216565b61229c565b5060019392505050565b60135460ff1690565b610fd9612298565b6000546001600160a01b03908116911614611029576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b61038481838587890101010111156110725760405162461bcd60e51b815260040180806020018281038252602d815260200180613b6f602d913960400191505060405180910390fd5b601494909455601883905560168290556017819055601984905591010101601a55565b602554600160c01b900460ff1681565b6110ad612298565b6000546001600160a01b039081169116146110fd576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1661116a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600b5481101561126257816001600160a01b0316600b828154811061118e57fe5b6000918252602090912001546001600160a01b0316141561125a57600b805460001981019081106111bb57fe5b600091825260209091200154600b80546001600160a01b0390921691839081106111e157fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600a90925220805460ff19169055600b80548061123357fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611262565b60010161116d565b5050565b6000610e3f611273612298565b84610fb98560046000611284612298565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61299916565b60145481565b6112c8612298565b6000546001600160a01b03908116911614611318576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b60258054911515600160c01b0260ff60c01b19909216919091179055565b61133e612298565b6000546001600160a01b0390811691161461138e576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b60066020526000908152604090205460ff1681565b6025546001600160a01b031681565b602554600160a81b900460ff1681565b6113ee612298565b6000546001600160a01b0390811691161461143e576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602755565b61144b612298565b6000546001600160a01b0390811691161461149b576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1615611509576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526002602052604090205415611563576001600160a01b038116600090815260026020526040902054611549906129fa565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6001600160a01b03811660009081526005602052604090205460ff165b919050565b6115f3612298565b6000546001600160a01b03908116911614611643576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b609681101561165157600080fd5b6116788161166c612710600c54612a5990919063ffffffff16565b9063ffffffff612a9b16565b60105550565b611686612298565b6000546001600160a01b039081169116146116d6576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602180546001600160a01b0319166001600160a01b0392909216919091179055565b611700612298565b6000546001600160a01b03908116911614611750576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602380546001600160a01b0319166001600160a01b0392909216919091179055565b60185481565b611780612298565b6000546001600160a01b039081169116146117d0576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b601654601954479160009161180f916117ef919063ffffffff61299916565b60165461180390859063ffffffff612a9b16565b9063ffffffff612a5916565b9050600061184161182d60165460195461299990919063ffffffff16565b60195461180390869063ffffffff612a9b16565b90508015611885576022546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611883573d6000803e3d6000fd5b505b81156118c7576021546040516001600160a01b039091169083156108fc029084906000818181858888f193505050501580156118c5573d6000803e3d6000fd5b505b505050565b6001600160a01b0381166000908152600a602052604081205460ff161561190c57506001600160a01b0381166000908152600360205260409020546115e6565b6001600160a01b038216600090815260026020526040902054610e43906129fa565b611936612298565b6000546001600160a01b03908116911614611986576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6119d8612298565b6000546001600160a01b03908116911614611a28576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b611a438161166c612710600c54612a5990919063ffffffff16565b600f5550565b6021546001600160a01b031681565b611a60612298565b6000546001600160a01b03908116911614611ab0576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6029805460ff1916911515919091179055565b6020546001600160a01b031681565b6001600160a01b03166000908152600a602052604090205460ff1690565b6025805460ff60a01b1916600160a01b179055611b0b612298565b6000546001600160a01b03908116911614611b5b576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6000611b66306118cc565b90506000611b818361166c84620186a063ffffffff612a5916565b9050611b8c81612af4565b50506025805460ff60a01b1916905550565b6000546001600160a01b031690565b6022546001600160a01b031681565b60128054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e215780601f10610df657610100808354040283529160200191610e21565b611c25612298565b6000546001600160a01b03908116911614611c75576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b60258054911515600160c81b0260ff60c81b19909216919091179055565b600e5490565b6000610e3f611ca6612298565b84610fb985604051806060016040528060258152602001613cc06025913960046000611cd0612298565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61290216565b601f5481565b6000610e3f611d1a612298565b8484612388565b60195481565b611d2f612298565b6000546001600160a01b03908116911614611d7f576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b031660009081526007602090815260408083208054600160ff1991821681179092556008909352922080549091169091179055565b602554600160b01b900460ff1681565b611dd3612298565b6000546001600160a01b03908116911614611e23576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60175481565b611e5c612298565b6000546001600160a01b03908116911614611eac576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b60258054911515600160b81b0260ff60b81b19909216919091179055565b6025805460ff60a01b1916600160a01b179055611ee5612298565b6000546001600160a01b03908116911614611f35576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6000611f40306118cc565b9050611f4b81612af4565b506025805460ff60a01b19169055565b611f63612298565b6000546001600160a01b03908116911614611fb3576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b60258054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60295460ff1681565b602554600160c81b900460ff1681565b60086020526000908152604090205460ff1681565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6023546001600160a01b031681565b612076612298565b6000546001600160a01b039081169116146120c6576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19169055565b6120ef612298565b6000546001600160a01b0390811691161461213f576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760209081526040808320805460ff19908116909155600890925290912080549091169055565b602554600160b81b900460ff1681565b60096020526000908152604090205460ff1681565b6121a2612298565b6000546001600160a01b039081169116146121f2576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b0381166122375760405162461bcd60e51b8152600401808060200182810382526026815260200180613b276026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60105481565b3390565b6001600160a01b0383166122e15760405162461bcd60e51b8152600401808060200182810382526024815260200180613c9c6024913960400191505060405180910390fd5b6001600160a01b0382166123265760405162461bcd60e51b8152600401808060200182810382526022815260200180613b4d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166123cd5760405162461bcd60e51b8152600401808060200182810382526025815260200180613c776025913960400191505060405180910390fd5b6001600160a01b0382166124125760405162461bcd60e51b8152600401808060200182810382526023815260200180613ada6023913960400191505060405180910390fd5b600081116124515760405162461bcd60e51b8152600401808060200182810382526029815260200180613c4e6029913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff16156124b5576040805162461bcd60e51b8152602060048201526013602482015272165bdd49dc99481a5b88189b1858dadb1a5cdd606a1b604482015290519081900360640190fd5b602554600160c01b900460ff16156127e9576001600160a01b03821660009081526008602052604090205460ff1615801561250957506001600160a01b03821660009081526005602052604090205460ff16155b801561252e5750612518611b9e565b6001600160a01b0316836001600160a01b031614155b8015612553575061253d611b9e565b6001600160a01b0316826001600160a01b031614155b801561256d57506025546001600160a01b03838116911614155b156125e357600f548111156125bc576040805162461bcd60e51b815260206004820152601060248201526f4f76657220746865204d61782062757960801b604482015290519081900360640190fd5b6010546125d86125cb846118cc565b839063ffffffff61299916565b11156125e357600080fd5b6125eb611b9e565b6001600160a01b0316836001600160a01b031614158015612625575061260f611b9e565b6001600160a01b0316826001600160a01b031614155b801561263957506001600160a01b03821615155b801561265057506001600160a01b03821661dead14155b80156126665750602554600160a01b900460ff16155b156127e957602554600160b81b900460ff16612728576001600160a01b03831660009081526005602052604090205460ff16806126bb57506001600160a01b03821660009081526005602052604090205460ff165b806126de57506001600160a01b03821660009081526007602052604090205460ff165b612728576040805162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015290519081900360640190fd5b60295460ff16156127e95761273b611b9e565b6001600160a01b0316826001600160a01b03161415801561276a57506024546001600160a01b03838116911614155b801561278457506025546001600160a01b03838116911614155b156127e9573260009081526028602052604090205443116127d65760405162461bcd60e51b8152600401808060200182810382526049815260200180613b9c6049913960600191505060405180910390fd5b3260009081526028602052604090204390555b6000612814601e54612808601d54601c5461299990919063ffffffff16565b9063ffffffff61299916565b60265460255491925082101590600160a01b900460ff1615801561284657506025546001600160a01b03868116911614155b801561285b5750602554600160a81b900460ff165b80156128645750805b1561287157612871612c9e565b6001600160a01b03851660009081526005602052604090205460019060ff16806128b357506001600160a01b03851660009081526005602052604090205460ff165b806128e557506025546001600160a01b038781169116148015906128e557506025546001600160a01b03868116911614155b156128ee575060005b6128fa86868684612fe1565b505050505050565b600081848411156129915760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561295657818101518382015260200161293e565b50505050905090810190601f1680156129835780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156129f3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000600d54821115612a3d5760405162461bcd60e51b815260040180806020018281038252602a815260200180613afd602a913960400191505060405180910390fd5b6000612a4761314f565b90506129f3838263ffffffff612a5916565b60006129f383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613178565b600082612aaa57506000610e43565b82820282848281612ab757fe5b04146129f35760405162461bcd60e51b8152600401808060200182810382526021815260200180613be56021913960400191505060405180910390fd5b60408051600280825260608083018452926020830190803883390190505090503081600081518110612b2257fe5b6001600160a01b03928316602091820292909201810191909152602454604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612b7657600080fd5b505afa158015612b8a573d6000803e3d6000fd5b505050506040513d6020811015612ba057600080fd5b5051815182906001908110612bb157fe5b6001600160a01b039283166020918202929092010152602454612bd7913091168461229c565b6024805460405163791ac94760e01b81526004810185815260009382018490523060648301819052426084840181905260a060448501908152875160a486015287516001600160a01b039096169663791ac947968a9691958a9594939092909160c490910190602080880191028083838b5b83811015612c61578181015183820152602001612c49565b505050509050019650505050505050600060405180830381600087803b158015612c8a57600080fd5b505af11580156128fa573d6000803e3d6000fd5b6025805460ff60a01b1916600160a01b179055601d54601c54601e54600092612cd29290916128089163ffffffff61299916565b60255490915060009081908190600160c81b900460ff168015612d075750602654612d0490601463ffffffff612a9b16565b84115b15612da957612d27601361166c6014601e54612a5990919063ffffffff16565b601e54909350612d3d908463ffffffff6131dd16565b601e55601d54612d5b9060139061166c90601463ffffffff612a5916565b601d54909250612d71908363ffffffff6131dd16565b601d55601c54612d8f9060139061166c90601463ffffffff612a5916565b601c54909150612da5908263ffffffff6131dd16565b601c555b601c54600090612dc090600263ffffffff612a5916565b90506000612dd982601c546131dd90919063ffffffff16565b90506000612df8601e54612808601d548661299990919063ffffffff16565b905047612e0482612af4565b6000612e16478363ffffffff6131dd16565b90506000612e2e84611803848963ffffffff612a9b16565b90506000612e4b85611803601d5486612a9b90919063ffffffff16565b90506000612e6f82612e63868663ffffffff6131dd16565b9063ffffffff6131dd16565b90506000612e89600661180385600263ffffffff612a9b16565b90506000612ea3600661180386600463ffffffff612a9b16565b90508415612ef657612eb5898661321f565b604080518b8152602081018790528082018b905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b8315612f73576021546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612f36573d6000803e3d6000fd5b506023546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015612f71573d6000803e3d6000fd5b505b8215612fb5576022546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015612fb3573d6000803e3d6000fd5b505b505050601c97909755505050601d94909455505050601e9190915550506025805460ff60a01b19169055565b80612fee57612fee6132fe565b6001600160a01b0384166000908152600a602052604090205460ff16801561302f57506001600160a01b0383166000908152600a602052604090205460ff16155b156130445761303f848484613330565b613142565b6001600160a01b0384166000908152600a602052604090205460ff1615801561308557506001600160a01b0383166000908152600a602052604090205460ff165b156130955761303f848484613467565b6001600160a01b0384166000908152600a602052604090205460ff161580156130d757506001600160a01b0383166000908152600a602052604090205460ff16155b156130e75761303f848484613522565b6001600160a01b0384166000908152600a602052604090205460ff16801561312757506001600160a01b0383166000908152600a602052604090205460ff165b156131375761303f84848461356c565b613142848484613522565b806118c5576118c56135eb565b600080600061315c6135f9565b9092509050613171828263ffffffff612a5916565b9250505090565b600081836131c75760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561295657818101518382015260200161293e565b5060008385816131d357fe5b0495945050505050565b60006129f383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612902565b6024546132379030906001600160a01b03168461229c565b6024546001600160a01b031663f305d719823085600080613256611b9e565b426040518863ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b03166001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b1580156132d357600080fd5b505af11580156132e7573d6000803e3d6000fd5b50505050506040513d60608110156118c557600080fd5b60145415801561330e5750601a54155b156133185761332e565b60148054601555601a8054601b55600091829055555b565b6000806000806000806133428761376e565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061337a908863ffffffff6131dd16565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546133af908763ffffffff6131dd16565b6001600160a01b03808b1660009081526002602052604080822093909355908a16815220546133e4908663ffffffff61299916565b6001600160a01b038916600090815260026020526040902055613407818a6137bd565b61341184836138b9565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806134798761376e565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506134b1908763ffffffff6131dd16565b6001600160a01b03808b16600090815260026020908152604080832094909455918b168152600390915220546134ed908463ffffffff61299916565b6001600160a01b0389166000908152600360209081526040808320939093556002905220546133e4908663ffffffff61299916565b6000806000806000806135348761376e565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506133af908763ffffffff6131dd16565b60008060008060008061357e8761376e565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506135b6908863ffffffff6131dd16565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546134b1908763ffffffff6131dd16565b601554601455601b54601a55565b600d54600c546000918291825b600b54811015613736578260026000600b848154811061362257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061368757508160036000600b848154811061366057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561369e57600d54600c549450945050505061376a565b6136e460026000600b84815481106136b257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff6131dd16565b925061372c60036000600b84815481106136fa57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff6131dd16565b9150600101613606565b50600c54600d5461374c9163ffffffff612a5916565b82101561376457600d54600c5493509350505061376a565b90925090505b9091565b60008060008060008060008060006137858a6138e9565b92509250925060008060006137a38d868661379e61314f565b61392b565b919f909e50909c50959a5093985091965092945050505050565b601a546137c957611262565b60006137e6601a5461180360165486612a9b90919063ffffffff16565b90506000613805601a5461180360195487612a9b90919063ffffffff16565b90506000613824601a5461180360175488612a9b90919063ffffffff16565b9050600061383e82612e6385818a8963ffffffff6131dd16565b6020549091506138599086906001600160a01b031684613993565b601c5461386c908263ffffffff61299916565b601c55601d54613882908563ffffffff61299916565b601d55601e54613898908463ffffffff61299916565b601e556128fa85306138b486612808868a63ffffffff61299916565b613993565b600d546138cc908363ffffffff6131dd16565b600d55600e546138e2908263ffffffff61299916565b600e555050565b6000806000806138f885613a9f565b9050600061390586613abc565b9050600061391d82612e63898663ffffffff6131dd16565b979296509094509092505050565b6000808080613940888663ffffffff612a9b16565b90506000613954888763ffffffff612a9b16565b90506000613968888863ffffffff612a9b16565b9050600061398082612e63868663ffffffff6131dd16565b939b939a50919850919650505050505050565b600061399d61314f565b905060006139b1838363ffffffff612a9b16565b6001600160a01b0385166000908152600260205260409020549091506139dd908263ffffffff61299916565b6001600160a01b038516600090815260026020908152604080832093909355600a9052205460ff1615613a4d576001600160a01b038416600090815260036020526040902054613a33908463ffffffff61299916565b6001600160a01b0385166000908152600360205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050565b6000610e436103e861180360145485612a9b90919063ffffffff16565b6000610e436103e8611803601a5485612a9b90919063ffffffff1656fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f74616c207461782073686f756c64206e6f74206d6f7265207468616e2039302520283930302f31303030295f7472616e736665723a3a205472616e736665722044656c617920656e61626c65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b20616c6c6f7765642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220faba13cb728d72e1057af6b7c3c2b2010f3c001e39d552ea656cd19ff3227b6264736f6c63430006020033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77

Deployed Bytecode

0x6080604052600436106103b15760003560e01c806377c325d6116101e7578063b41c9eda1161010d578063dd62ed3e116100a0578063ec44acf21161006f578063ec44acf214610d05578063ecca3b1614610d1a578063f2fde38b14610d4d578063f8b45b0514610d80576103b8565b8063dd62ed3e14610c4f578063e3be91cc14610c8a578063ea2f0b3714610c9f578063eaa5dad414610cd2576103b8565b8063c49b9a80116100dc578063c49b9a8014610bc6578063c876d0b914610bf2578063d240360a14610c07578063da78876f14610c1c576103b8565b8063b41c9eda14610b35578063c0b0fda214610b70578063c2e5ec0414610b85578063c3c8cd8014610bb1576103b8565b806396a8826c11610185578063a9059cbb11610154578063a9059cbb14610a9f578063aa45026b14610ad8578063aec3fd3814610aed578063b3d5eee114610b20576103b8565b806396a8826c14610a105780639e03584614610a3c578063a457c2d714610a51578063a55cac9814610a8a576103b8565b806389e7b81b116101c157806389e7b81b146109a75780638da5cb5b146109d15780638ea5220f146109e657806395d89b41146109fb576103b8565b806377c325d61461093357806385141a771461095f57806388f8202014610974576103b8565b8063437823ec116102d75780635d098b381161026a57806370a082311161023957806370a08231146108ac578063715018a6146108df578063757765f8146108f457806375f0a8741461091e576103b8565b80635d098b381461081c5780636659889d1461084f5780636bc87c3a146108825780636fc3eaec14610897576103b8565b806350bea548116102a657806350bea5481461076257806352390c021461078c5780635342acb4146107bf5780635d0044ca146107f2576103b8565b8063437823ec146106d257806344b7d0301461070557806349bd5a5e146107385780634a74bb021461074d576103b8565b806323b872dd1161034f5780633685d4191161031e5780633685d4191461062557806339509351146106585780633b124fe71461069157806341aea9de146106a6576103b8565b806323b872dd14610560578063313ce567146105a357806331c402ac146105ce5780633582ad2314610610576103b8565b80631694505e1161038b5780631694505e146104c057806318160ddd146104f15780631f53ac021461051857806322976e0d1461054b576103b8565b806306fdde03146103bd578063095ea7b31461044757806313096a1a14610494576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610d95565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561040c5781810151838201526020016103f4565b50505050905090810190601f1680156104395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045357600080fd5b506104806004803603604081101561046a57600080fd5b506001600160a01b038135169060200135610e2b565b604080519115158252519081900360200190f35b3480156104a057600080fd5b506104be600480360360208110156104b757600080fd5b5035610e49565b005b3480156104cc57600080fd5b506104d5610ea6565b604080516001600160a01b039092168252519081900360200190f35b3480156104fd57600080fd5b50610506610eb5565b60408051918252519081900360200190f35b34801561052457600080fd5b506104be6004803603602081101561053b57600080fd5b50356001600160a01b0316610ebb565b34801561055757600080fd5b50610506610f35565b34801561056c57600080fd5b506104806004803603606081101561058357600080fd5b506001600160a01b03813581169160208101359091169060400135610f3b565b3480156105af57600080fd5b506105b8610fc8565b6040805160ff9092168252519081900360200190f35b3480156105da57600080fd5b506104be600480360360a08110156105f157600080fd5b5080359060208101359060408101359060608101359060800135610fd1565b34801561061c57600080fd5b50610480611095565b34801561063157600080fd5b506104be6004803603602081101561064857600080fd5b50356001600160a01b03166110a5565b34801561066457600080fd5b506104806004803603604081101561067b57600080fd5b506001600160a01b038135169060200135611266565b34801561069d57600080fd5b506105066112ba565b3480156106b257600080fd5b506104be600480360360208110156106c957600080fd5b503515156112c0565b3480156106de57600080fd5b506104be600480360360208110156106f557600080fd5b50356001600160a01b0316611336565b34801561071157600080fd5b506104806004803603602081101561072857600080fd5b50356001600160a01b03166113b2565b34801561074457600080fd5b506104d56113c7565b34801561075957600080fd5b506104806113d6565b34801561076e57600080fd5b506104be6004803603602081101561078557600080fd5b50356113e6565b34801561079857600080fd5b506104be600480360360208110156107af57600080fd5b50356001600160a01b0316611443565b3480156107cb57600080fd5b50610480600480360360208110156107e257600080fd5b50356001600160a01b03166115c9565b3480156107fe57600080fd5b506104be6004803603602081101561081557600080fd5b50356115eb565b34801561082857600080fd5b506104be6004803603602081101561083f57600080fd5b50356001600160a01b031661167e565b34801561085b57600080fd5b506104be6004803603602081101561087257600080fd5b50356001600160a01b03166116f8565b34801561088e57600080fd5b50610506611772565b3480156108a357600080fd5b506104be611778565b3480156108b857600080fd5b50610506600480360360208110156108cf57600080fd5b50356001600160a01b03166118cc565b3480156108eb57600080fd5b506104be61192e565b34801561090057600080fd5b506104be6004803603602081101561091757600080fd5b50356119d0565b34801561092a57600080fd5b506104d5611a49565b34801561093f57600080fd5b506104be6004803603602081101561095657600080fd5b50351515611a58565b34801561096b57600080fd5b506104d5611ac3565b34801561098057600080fd5b506104806004803603602081101561099757600080fd5b50356001600160a01b0316611ad2565b3480156109b357600080fd5b506104be600480360360208110156109ca57600080fd5b5035611af0565b3480156109dd57600080fd5b506104d5611b9e565b3480156109f257600080fd5b506104d5611bad565b348015610a0757600080fd5b506103d2611bbc565b348015610a1c57600080fd5b506104be60048036036020811015610a3357600080fd5b50351515611c1d565b348015610a4857600080fd5b50610506611c93565b348015610a5d57600080fd5b5061048060048036036040811015610a7457600080fd5b506001600160a01b038135169060200135611c99565b348015610a9657600080fd5b50610506611d07565b348015610aab57600080fd5b5061048060048036036040811015610ac257600080fd5b506001600160a01b038135169060200135611d0d565b348015610ae457600080fd5b50610506611d21565b348015610af957600080fd5b506104be60048036036020811015610b1057600080fd5b50356001600160a01b0316611d27565b348015610b2c57600080fd5b50610480611dbb565b348015610b4157600080fd5b506104be60048036036040811015610b5857600080fd5b506001600160a01b0381351690602001351515611dcb565b348015610b7c57600080fd5b50610506611e4e565b348015610b9157600080fd5b506104be60048036036020811015610ba857600080fd5b50351515611e54565b348015610bbd57600080fd5b506104be611eca565b348015610bd257600080fd5b506104be60048036036020811015610be957600080fd5b50351515611f5b565b348015610bfe57600080fd5b50610480612006565b348015610c1357600080fd5b5061048061200f565b348015610c2857600080fd5b5061048060048036036020811015610c3f57600080fd5b50356001600160a01b031661201f565b348015610c5b57600080fd5b5061050660048036036040811015610c7257600080fd5b506001600160a01b0381358116916020013516612034565b348015610c9657600080fd5b506104d561205f565b348015610cab57600080fd5b506104be60048036036020811015610cc257600080fd5b50356001600160a01b031661206e565b348015610cde57600080fd5b506104be60048036036020811015610cf557600080fd5b50356001600160a01b03166120e7565b348015610d1157600080fd5b50610480612175565b348015610d2657600080fd5b5061048060048036036020811015610d3d57600080fd5b50356001600160a01b0316612185565b348015610d5957600080fd5b506104be60048036036020811015610d7057600080fd5b50356001600160a01b031661219a565b348015610d8c57600080fd5b50610506612292565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e215780601f10610df657610100808354040283529160200191610e21565b820191906000526020600020905b815481529060010190602001808311610e0457829003601f168201915b5050505050905090565b6000610e3f610e38612298565b848461229c565b5060015b92915050565b610e51612298565b6000546001600160a01b03908116911614610ea1576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602655565b6024546001600160a01b031681565b600c5490565b610ec3612298565b6000546001600160a01b03908116911614610f13576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602280546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b6000610f48848484612388565b610fbe84610f54612298565b610fb985604051806060016040528060288152602001613c06602891396001600160a01b038a16600090815260046020526040812090610f92612298565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61290216565b61229c565b5060019392505050565b60135460ff1690565b610fd9612298565b6000546001600160a01b03908116911614611029576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b61038481838587890101010111156110725760405162461bcd60e51b815260040180806020018281038252602d815260200180613b6f602d913960400191505060405180910390fd5b601494909455601883905560168290556017819055601984905591010101601a55565b602554600160c01b900460ff1681565b6110ad612298565b6000546001600160a01b039081169116146110fd576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1661116a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600b5481101561126257816001600160a01b0316600b828154811061118e57fe5b6000918252602090912001546001600160a01b0316141561125a57600b805460001981019081106111bb57fe5b600091825260209091200154600b80546001600160a01b0390921691839081106111e157fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600a90925220805460ff19169055600b80548061123357fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611262565b60010161116d565b5050565b6000610e3f611273612298565b84610fb98560046000611284612298565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61299916565b60145481565b6112c8612298565b6000546001600160a01b03908116911614611318576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b60258054911515600160c01b0260ff60c01b19909216919091179055565b61133e612298565b6000546001600160a01b0390811691161461138e576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b60066020526000908152604090205460ff1681565b6025546001600160a01b031681565b602554600160a81b900460ff1681565b6113ee612298565b6000546001600160a01b0390811691161461143e576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602755565b61144b612298565b6000546001600160a01b0390811691161461149b576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1615611509576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526002602052604090205415611563576001600160a01b038116600090815260026020526040902054611549906129fa565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6001600160a01b03811660009081526005602052604090205460ff165b919050565b6115f3612298565b6000546001600160a01b03908116911614611643576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b609681101561165157600080fd5b6116788161166c612710600c54612a5990919063ffffffff16565b9063ffffffff612a9b16565b60105550565b611686612298565b6000546001600160a01b039081169116146116d6576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602180546001600160a01b0319166001600160a01b0392909216919091179055565b611700612298565b6000546001600160a01b03908116911614611750576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602380546001600160a01b0319166001600160a01b0392909216919091179055565b60185481565b611780612298565b6000546001600160a01b039081169116146117d0576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b601654601954479160009161180f916117ef919063ffffffff61299916565b60165461180390859063ffffffff612a9b16565b9063ffffffff612a5916565b9050600061184161182d60165460195461299990919063ffffffff16565b60195461180390869063ffffffff612a9b16565b90508015611885576022546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611883573d6000803e3d6000fd5b505b81156118c7576021546040516001600160a01b039091169083156108fc029084906000818181858888f193505050501580156118c5573d6000803e3d6000fd5b505b505050565b6001600160a01b0381166000908152600a602052604081205460ff161561190c57506001600160a01b0381166000908152600360205260409020546115e6565b6001600160a01b038216600090815260026020526040902054610e43906129fa565b611936612298565b6000546001600160a01b03908116911614611986576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6119d8612298565b6000546001600160a01b03908116911614611a28576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b611a438161166c612710600c54612a5990919063ffffffff16565b600f5550565b6021546001600160a01b031681565b611a60612298565b6000546001600160a01b03908116911614611ab0576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6029805460ff1916911515919091179055565b6020546001600160a01b031681565b6001600160a01b03166000908152600a602052604090205460ff1690565b6025805460ff60a01b1916600160a01b179055611b0b612298565b6000546001600160a01b03908116911614611b5b576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6000611b66306118cc565b90506000611b818361166c84620186a063ffffffff612a5916565b9050611b8c81612af4565b50506025805460ff60a01b1916905550565b6000546001600160a01b031690565b6022546001600160a01b031681565b60128054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e215780601f10610df657610100808354040283529160200191610e21565b611c25612298565b6000546001600160a01b03908116911614611c75576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b60258054911515600160c81b0260ff60c81b19909216919091179055565b600e5490565b6000610e3f611ca6612298565b84610fb985604051806060016040528060258152602001613cc06025913960046000611cd0612298565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61290216565b601f5481565b6000610e3f611d1a612298565b8484612388565b60195481565b611d2f612298565b6000546001600160a01b03908116911614611d7f576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b031660009081526007602090815260408083208054600160ff1991821681179092556008909352922080549091169091179055565b602554600160b01b900460ff1681565b611dd3612298565b6000546001600160a01b03908116911614611e23576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60175481565b611e5c612298565b6000546001600160a01b03908116911614611eac576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b60258054911515600160b81b0260ff60b81b19909216919091179055565b6025805460ff60a01b1916600160a01b179055611ee5612298565b6000546001600160a01b03908116911614611f35576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6000611f40306118cc565b9050611f4b81612af4565b506025805460ff60a01b19169055565b611f63612298565b6000546001600160a01b03908116911614611fb3576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b60258054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60295460ff1681565b602554600160c81b900460ff1681565b60086020526000908152604090205460ff1681565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6023546001600160a01b031681565b612076612298565b6000546001600160a01b039081169116146120c6576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19169055565b6120ef612298565b6000546001600160a01b0390811691161461213f576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760209081526040808320805460ff19908116909155600890925290912080549091169055565b602554600160b81b900460ff1681565b60096020526000908152604090205460ff1681565b6121a2612298565b6000546001600160a01b039081169116146121f2576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b0381166122375760405162461bcd60e51b8152600401808060200182810382526026815260200180613b276026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60105481565b3390565b6001600160a01b0383166122e15760405162461bcd60e51b8152600401808060200182810382526024815260200180613c9c6024913960400191505060405180910390fd5b6001600160a01b0382166123265760405162461bcd60e51b8152600401808060200182810382526022815260200180613b4d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166123cd5760405162461bcd60e51b8152600401808060200182810382526025815260200180613c776025913960400191505060405180910390fd5b6001600160a01b0382166124125760405162461bcd60e51b8152600401808060200182810382526023815260200180613ada6023913960400191505060405180910390fd5b600081116124515760405162461bcd60e51b8152600401808060200182810382526029815260200180613c4e6029913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff16156124b5576040805162461bcd60e51b8152602060048201526013602482015272165bdd49dc99481a5b88189b1858dadb1a5cdd606a1b604482015290519081900360640190fd5b602554600160c01b900460ff16156127e9576001600160a01b03821660009081526008602052604090205460ff1615801561250957506001600160a01b03821660009081526005602052604090205460ff16155b801561252e5750612518611b9e565b6001600160a01b0316836001600160a01b031614155b8015612553575061253d611b9e565b6001600160a01b0316826001600160a01b031614155b801561256d57506025546001600160a01b03838116911614155b156125e357600f548111156125bc576040805162461bcd60e51b815260206004820152601060248201526f4f76657220746865204d61782062757960801b604482015290519081900360640190fd5b6010546125d86125cb846118cc565b839063ffffffff61299916565b11156125e357600080fd5b6125eb611b9e565b6001600160a01b0316836001600160a01b031614158015612625575061260f611b9e565b6001600160a01b0316826001600160a01b031614155b801561263957506001600160a01b03821615155b801561265057506001600160a01b03821661dead14155b80156126665750602554600160a01b900460ff16155b156127e957602554600160b81b900460ff16612728576001600160a01b03831660009081526005602052604090205460ff16806126bb57506001600160a01b03821660009081526005602052604090205460ff165b806126de57506001600160a01b03821660009081526007602052604090205460ff165b612728576040805162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015290519081900360640190fd5b60295460ff16156127e95761273b611b9e565b6001600160a01b0316826001600160a01b03161415801561276a57506024546001600160a01b03838116911614155b801561278457506025546001600160a01b03838116911614155b156127e9573260009081526028602052604090205443116127d65760405162461bcd60e51b8152600401808060200182810382526049815260200180613b9c6049913960600191505060405180910390fd5b3260009081526028602052604090204390555b6000612814601e54612808601d54601c5461299990919063ffffffff16565b9063ffffffff61299916565b60265460255491925082101590600160a01b900460ff1615801561284657506025546001600160a01b03868116911614155b801561285b5750602554600160a81b900460ff165b80156128645750805b1561287157612871612c9e565b6001600160a01b03851660009081526005602052604090205460019060ff16806128b357506001600160a01b03851660009081526005602052604090205460ff165b806128e557506025546001600160a01b038781169116148015906128e557506025546001600160a01b03868116911614155b156128ee575060005b6128fa86868684612fe1565b505050505050565b600081848411156129915760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561295657818101518382015260200161293e565b50505050905090810190601f1680156129835780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156129f3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000600d54821115612a3d5760405162461bcd60e51b815260040180806020018281038252602a815260200180613afd602a913960400191505060405180910390fd5b6000612a4761314f565b90506129f3838263ffffffff612a5916565b60006129f383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613178565b600082612aaa57506000610e43565b82820282848281612ab757fe5b04146129f35760405162461bcd60e51b8152600401808060200182810382526021815260200180613be56021913960400191505060405180910390fd5b60408051600280825260608083018452926020830190803883390190505090503081600081518110612b2257fe5b6001600160a01b03928316602091820292909201810191909152602454604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612b7657600080fd5b505afa158015612b8a573d6000803e3d6000fd5b505050506040513d6020811015612ba057600080fd5b5051815182906001908110612bb157fe5b6001600160a01b039283166020918202929092010152602454612bd7913091168461229c565b6024805460405163791ac94760e01b81526004810185815260009382018490523060648301819052426084840181905260a060448501908152875160a486015287516001600160a01b039096169663791ac947968a9691958a9594939092909160c490910190602080880191028083838b5b83811015612c61578181015183820152602001612c49565b505050509050019650505050505050600060405180830381600087803b158015612c8a57600080fd5b505af11580156128fa573d6000803e3d6000fd5b6025805460ff60a01b1916600160a01b179055601d54601c54601e54600092612cd29290916128089163ffffffff61299916565b60255490915060009081908190600160c81b900460ff168015612d075750602654612d0490601463ffffffff612a9b16565b84115b15612da957612d27601361166c6014601e54612a5990919063ffffffff16565b601e54909350612d3d908463ffffffff6131dd16565b601e55601d54612d5b9060139061166c90601463ffffffff612a5916565b601d54909250612d71908363ffffffff6131dd16565b601d55601c54612d8f9060139061166c90601463ffffffff612a5916565b601c54909150612da5908263ffffffff6131dd16565b601c555b601c54600090612dc090600263ffffffff612a5916565b90506000612dd982601c546131dd90919063ffffffff16565b90506000612df8601e54612808601d548661299990919063ffffffff16565b905047612e0482612af4565b6000612e16478363ffffffff6131dd16565b90506000612e2e84611803848963ffffffff612a9b16565b90506000612e4b85611803601d5486612a9b90919063ffffffff16565b90506000612e6f82612e63868663ffffffff6131dd16565b9063ffffffff6131dd16565b90506000612e89600661180385600263ffffffff612a9b16565b90506000612ea3600661180386600463ffffffff612a9b16565b90508415612ef657612eb5898661321f565b604080518b8152602081018790528082018b905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b8315612f73576021546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612f36573d6000803e3d6000fd5b506023546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015612f71573d6000803e3d6000fd5b505b8215612fb5576022546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015612fb3573d6000803e3d6000fd5b505b505050601c97909755505050601d94909455505050601e9190915550506025805460ff60a01b19169055565b80612fee57612fee6132fe565b6001600160a01b0384166000908152600a602052604090205460ff16801561302f57506001600160a01b0383166000908152600a602052604090205460ff16155b156130445761303f848484613330565b613142565b6001600160a01b0384166000908152600a602052604090205460ff1615801561308557506001600160a01b0383166000908152600a602052604090205460ff165b156130955761303f848484613467565b6001600160a01b0384166000908152600a602052604090205460ff161580156130d757506001600160a01b0383166000908152600a602052604090205460ff16155b156130e75761303f848484613522565b6001600160a01b0384166000908152600a602052604090205460ff16801561312757506001600160a01b0383166000908152600a602052604090205460ff165b156131375761303f84848461356c565b613142848484613522565b806118c5576118c56135eb565b600080600061315c6135f9565b9092509050613171828263ffffffff612a5916565b9250505090565b600081836131c75760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561295657818101518382015260200161293e565b5060008385816131d357fe5b0495945050505050565b60006129f383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612902565b6024546132379030906001600160a01b03168461229c565b6024546001600160a01b031663f305d719823085600080613256611b9e565b426040518863ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b03166001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b1580156132d357600080fd5b505af11580156132e7573d6000803e3d6000fd5b50505050506040513d60608110156118c557600080fd5b60145415801561330e5750601a54155b156133185761332e565b60148054601555601a8054601b55600091829055555b565b6000806000806000806133428761376e565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061337a908863ffffffff6131dd16565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546133af908763ffffffff6131dd16565b6001600160a01b03808b1660009081526002602052604080822093909355908a16815220546133e4908663ffffffff61299916565b6001600160a01b038916600090815260026020526040902055613407818a6137bd565b61341184836138b9565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806134798761376e565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506134b1908763ffffffff6131dd16565b6001600160a01b03808b16600090815260026020908152604080832094909455918b168152600390915220546134ed908463ffffffff61299916565b6001600160a01b0389166000908152600360209081526040808320939093556002905220546133e4908663ffffffff61299916565b6000806000806000806135348761376e565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506133af908763ffffffff6131dd16565b60008060008060008061357e8761376e565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506135b6908863ffffffff6131dd16565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546134b1908763ffffffff6131dd16565b601554601455601b54601a55565b600d54600c546000918291825b600b54811015613736578260026000600b848154811061362257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061368757508160036000600b848154811061366057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561369e57600d54600c549450945050505061376a565b6136e460026000600b84815481106136b257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff6131dd16565b925061372c60036000600b84815481106136fa57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff6131dd16565b9150600101613606565b50600c54600d5461374c9163ffffffff612a5916565b82101561376457600d54600c5493509350505061376a565b90925090505b9091565b60008060008060008060008060006137858a6138e9565b92509250925060008060006137a38d868661379e61314f565b61392b565b919f909e50909c50959a5093985091965092945050505050565b601a546137c957611262565b60006137e6601a5461180360165486612a9b90919063ffffffff16565b90506000613805601a5461180360195487612a9b90919063ffffffff16565b90506000613824601a5461180360175488612a9b90919063ffffffff16565b9050600061383e82612e6385818a8963ffffffff6131dd16565b6020549091506138599086906001600160a01b031684613993565b601c5461386c908263ffffffff61299916565b601c55601d54613882908563ffffffff61299916565b601d55601e54613898908463ffffffff61299916565b601e556128fa85306138b486612808868a63ffffffff61299916565b613993565b600d546138cc908363ffffffff6131dd16565b600d55600e546138e2908263ffffffff61299916565b600e555050565b6000806000806138f885613a9f565b9050600061390586613abc565b9050600061391d82612e63898663ffffffff6131dd16565b979296509094509092505050565b6000808080613940888663ffffffff612a9b16565b90506000613954888763ffffffff612a9b16565b90506000613968888863ffffffff612a9b16565b9050600061398082612e63868663ffffffff6131dd16565b939b939a50919850919650505050505050565b600061399d61314f565b905060006139b1838363ffffffff612a9b16565b6001600160a01b0385166000908152600260205260409020549091506139dd908263ffffffff61299916565b6001600160a01b038516600090815260026020908152604080832093909355600a9052205460ff1615613a4d576001600160a01b038416600090815260036020526040902054613a33908463ffffffff61299916565b6001600160a01b0385166000908152600360205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050565b6000610e436103e861180360145485612a9b90919063ffffffff16565b6000610e436103e8611803601a5485612a9b90919063ffffffff1656fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f74616c207461782073686f756c64206e6f74206d6f7265207468616e2039302520283930302f31303030295f7472616e736665723a3a205472616e736665722044656c617920656e61626c65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b20616c6c6f7765642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220faba13cb728d72e1057af6b7c3c2b2010f3c001e39d552ea656cd19ff3227b6264736f6c63430006020033

Deployed Bytecode Sourcemap

34217:25285:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37860:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37860:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;37860:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38772:161;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38772:161:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;38772:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43044:119;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43044:119:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43044:119:0;;:::i;:::-;;36074:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36074:41:0;;;:::i;:::-;;;;-1:-1:-1;;;;;36074:41:0;;;;;;;;;;;;;;38137:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38137:95:0;;;:::i;:::-;;;;;;;;;;;;;;;;41585:98;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41585:98:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41585:98:0;-1:-1:-1;;;;;41585:98:0;;:::i;35403:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35403:33:0;;;:::i;38941:313::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38941:313:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;38941:313:0;;;;;;;;;;;;;;;;;:::i;38046:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38046:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41843:558;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41843:558:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;41843:558:0;;;;;;;;;;;;;;;;;;;;;;:::i;36302:32::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36302:32:0;;;:::i;40615:479::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40615:479:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40615:479:0;-1:-1:-1;;;;;40615:479:0;;:::i;39262:218::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39262:218:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;39262:218:0;;;;;;;;:::i;35316:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35316:26:0;;;:::i;42592:103::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42592:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42592:103:0;;;;:::i;41102:111::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41102:111:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41102:111:0;-1:-1:-1;;;;;41102:111:0;;:::i;34557:51::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34557:51:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34557:51:0;-1:-1:-1;;;;;34557:51:0;;:::i;36122:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36122:28:0;;;:::i;36191:40::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36191:40:0;;;:::i;43169:118::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43169:118:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43169:118:0;;:::i;40274:333::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40274:333:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40274:333:0;-1:-1:-1;;;;;40274:333:0;;:::i;49344:123::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49344:123:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49344:123:0;-1:-1:-1;;;;;49344:123:0;;:::i;43429:163::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43429:163:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43429:163:0;;:::i;41353:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41353:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41353:110:0;-1:-1:-1;;;;;41353:110:0;;:::i;41471:106::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41471:106:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41471:106:0;-1:-1:-1;;;;;41471:106:0;;:::i;35477:32::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35477:32:0;;;:::i;48599:465::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48599:465:0;;;:::i;38240:198::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38240:198:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38240:198:0;-1:-1:-1;;;;;38240:198:0;;:::i;26238:148::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26238:148:0;;;:::i;43293:130::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43293:130:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43293:130:0;;:::i;35967:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35967:30:0;;;:::i;42928:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42928:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42928:110:0;;;;:::i;35890:70::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35890:70:0;;;:::i;39765:120::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39765:120:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39765:120:0;-1:-1:-1;;;;;39765:120:0;;:::i;49072:264::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49072:264:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49072:264:0;;:::i;25596:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25596:79:0;;;:::i;36004:24::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36004:24:0;;;:::i;37951:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37951:87:0;;;:::i;42809:111::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42809:111:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42809:111:0;;;;:::i;39893:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39893:111:0;;;:::i;39488:269::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39488:269:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;39488:269:0;;;;;;;;:::i;35849:32::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35849:32:0;;;:::i;38446:167::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38446:167:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;38446:167:0;;;;;;;;:::i;35516:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35516:26:0;;;:::i;48151:122::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48151:122:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48151:122:0;-1:-1:-1;;;;;48151:122:0;;:::i;36238:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36238:23:0;;;:::i;41691:144::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41691:144:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;41691:144:0;;;;;;;;;;:::i;35443:27::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35443:27:0;;;:::i;42703:98::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42703:98:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42703:98:0;;;;:::i;48422:169::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48422:169:0;;;:::i;42409:171::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42409:171:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42409:171:0;;;;:::i;36849:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36849:39:0;;;:::i;36341:34::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36341:34:0;;;:::i;34662:50::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34662:50:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34662:50:0;-1:-1:-1;;;;;34662:50:0;;:::i;38621:143::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38621:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;38621:143:0;;;;;;;;;;:::i;36035:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36035:30:0;;;:::i;41225:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41225:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41225:110:0;-1:-1:-1;;;;;41225:110:0;;:::i;48281:133::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48281:133:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48281:133:0;-1:-1:-1;;;;;48281:133:0;;:::i;36268:27::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36268:27:0;;;:::i;34723:46::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34723:46:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34723:46:0;-1:-1:-1;;;;;34723:46:0;;:::i;26541:244::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26541:244:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26541:244:0;-1:-1:-1;;;;;26541:244:0;;:::i;35135:53::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35135:53:0;;;:::i;37860:83::-;37930:5;37923:12;;;;;;;;-1:-1:-1;;37923:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37897:13;;37923:12;;37930:5;;37923:12;;37930:5;37923:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37860:83;:::o;38772:161::-;38847:4;38864:39;38873:12;:10;:12::i;:::-;38887:7;38896:6;38864:8;:39::i;:::-;-1:-1:-1;38921:4:0;38772:161;;;;;:::o;43044:119::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;43117:29:::1;:38:::0;43044:119::o;36074:41::-;;;-1:-1:-1;;;;;36074:41:0;;:::o;38137:95::-;38217:7;;38137:95;:::o;41585:98::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;41656:9:::1;:19:::0;;-1:-1:-1;;;;;;41656:19:0::1;-1:-1:-1::0;;;;;41656:19:0;;;::::1;::::0;;;::::1;::::0;;41585:98::o;35403:33::-;;;;:::o;38941:313::-;39039:4;39056:36;39066:6;39074:9;39085:6;39056:9;:36::i;:::-;39103:121;39112:6;39120:12;:10;:12::i;:::-;39134:89;39172:6;39134:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39134:19:0;;;;;;:11;:19;;;;;;39154:12;:10;:12::i;:::-;-1:-1:-1;;;;;39134:33:0;;;;;;;;;;;;-1:-1:-1;39134:33:0;;;:89;;:37;:89;:::i;:::-;39103:8;:121::i;:::-;-1:-1:-1;39242:4:0;38941:313;;;;;:::o;38046:83::-;38112:9;;;;38046:83;:::o;41843:558::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;42077:3:::1;42067:6;42057:7;42042:12;42027;42009:15;:30;:45;:55;:64;:71;;42001:129;;;;-1:-1:-1::0;;;42001:129:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42141:7;:25:::0;;;;42177:13:::1;:28:::0;;;42216:13:::1;:28:::0;;;42255:8:::1;:18:::0;;;42284:7:::1;:16:::0;;;42343:29;::::1;:40;:50;42313:27;:80:::0;41843:558::o;36302:32::-;;;-1:-1:-1;;;36302:32:0;;;;;:::o;40615:479::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40697:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;40689:60;;;::::0;;-1:-1:-1;;;40689:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40765:9;40760:327;40784:9;:16:::0;40780:20;::::1;40760:327;;;40842:7;-1:-1:-1::0;;;;;40826:23:0::1;:9;40836:1;40826:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;40826:12:0::1;:23;40822:254;;;40885:9;40895:16:::0;;-1:-1:-1;;40895:20:0;;;40885:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;40870:9:::1;:12:::0;;-1:-1:-1;;;;;40885:31:0;;::::1;::::0;40880:1;;40870:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;40870:46:0::1;-1:-1:-1::0;;;;;40870:46:0;;::::1;;::::0;;40935:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;40974:11:::1;:20:::0;;;;:28;;-1:-1:-1;;40974:28:0::1;::::0;;41021:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;41021:15:0;;;;;-1:-1:-1;;;;;;41021:15:0::1;::::0;;;;;41055:5:::1;;40822:254;40802:3;;40760:327;;;;40615:479:::0;:::o;39262:218::-;39350:4;39367:83;39376:12;:10;:12::i;:::-;39390:7;39399:50;39438:10;39399:11;:25;39411:12;:10;:12::i;:::-;-1:-1:-1;;;;;39399:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;39399:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;35316:26::-;;;;:::o;42592:103::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;42663:13:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;42663:24:0::1;-1:-1:-1::0;;;;42663:24:0;;::::1;::::0;;;::::1;::::0;;42592:103::o;41102:111::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41171:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;41171:34:0::1;41201:4;41171:34;::::0;;41102:111::o;34557:51::-;;;;;;;;;;;;;;;:::o;36122:28::-;;;-1:-1:-1;;;;;36122:28:0;;:::o;36191:40::-;;;-1:-1:-1;;;36191:40:0;;;;;:::o;43169:118::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;43249:21:::1;:30:::0;43169:118::o;40274:333::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40357:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;40356:21;40348:61;;;::::0;;-1:-1:-1;;;40348:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;40423:16:0;::::1;40442:1;40423:16:::0;;;:7:::1;:16;::::0;;;;;:20;40420:108:::1;;-1:-1:-1::0;;;;;40499:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;40479:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;40460:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;40420:108:::1;-1:-1:-1::0;;;;;40538:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;40538:27:0::1;40561:4;40538:27:::0;;::::1;::::0;;;40576:9:::1;27:10:-1::0;;23:18;;::::1;45:23:::0;;40576::0;;;;::::1;::::0;;-1:-1:-1;;;;;;40576:23:0::1;::::0;;::::1;::::0;;40274:333::o;49344:123::-;-1:-1:-1;;;;;49432:27:0;;49408:4;49432:27;;;:18;:27;;;;;;;;49344:123;;;;:::o;43429:163::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;43523:3:::1;43509:10;:17;;43501:26;;;::::0;::::1;;43550:34;43573:10;43550:18;43562:5;43550:7;;:11;;:18;;;;:::i;:::-;:22:::0;:34:::1;:22;:34;:::i;:::-;43538:9;:46:::0;-1:-1:-1;43429:163:0:o;41353:110::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;41430:15:::1;:25:::0;;-1:-1:-1;;;;;;41430:25:0::1;-1:-1:-1::0;;;;;41430:25:0;;;::::1;::::0;;;::::1;::::0;;41353:110::o;41471:106::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;41544:15:::1;:25:::0;;-1:-1:-1;;;;;;41544:25:0::1;-1:-1:-1::0;;;;;41544:25:0;;;::::1;::::0;;;::::1;::::0;;41471:106::o;35477:32::-;;;;:::o;48599:465::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;48769:13:::1;::::0;48757:7:::1;::::0;48670:21:::1;::::0;48653:14:::1;::::0;48727:57:::1;::::0;48757:26:::1;::::0;:7;:26:::1;:11;:26;:::i;:::-;48738:13;::::0;48727:25:::1;::::0;:6;;:25:::1;:10;:25;:::i;:::-;:29:::0;:57:::1;:29;:57;:::i;:::-;48704:80;;48795:14;48812:51;48836:26;48848:13;;48836:7;;:11;;:26;;;;:::i;:::-;48823:7;::::0;48812:19:::1;::::0;:6;;:19:::1;:10;:19;:::i;:51::-;48795:68:::0;-1:-1:-1;48904:10:0;;48901:63:::1;;48937:9;::::0;48929:35:::1;::::0;-1:-1:-1;;;;;48937:9:0;;::::1;::::0;48929:35;::::1;;;::::0;48957:6;;48937:9:::1;48929:35:::0;48937:9;48929:35;48957:6;48937:9;48929:35;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;48929:35:0;48901:63;48978:16:::0;;48975:81:::1;;49017:15;::::0;49009:47:::1;::::0;-1:-1:-1;;;;;49017:15:0;;::::1;::::0;49009:47;::::1;;;::::0;49043:12;;49017:15:::1;49009:47:::0;49017:15;49009:47;49043:12;49017:15;49009:47;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;49009:47:0;48975:81;25878:1;;;48599:465::o:0;38240:198::-;-1:-1:-1;;;;;38330:20:0;;38306:7;38330:20;;;:11;:20;;;;;;;;38326:49;;;-1:-1:-1;;;;;;38359:16:0;;;;;;:7;:16;;;;;;38352:23;;38326:49;-1:-1:-1;;;;;38413:16:0;;;;;;:7;:16;;;;;;38393:37;;:19;:37::i;26238:148::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;26345:1:::1;26329:6:::0;;26308:40:::1;::::0;-1:-1:-1;;;;;26329:6:0;;::::1;::::0;26308:40:::1;::::0;26345:1;;26308:40:::1;26376:1;26359:19:::0;;-1:-1:-1;;;;;;26359:19:0::1;::::0;;26238:148::o;43293:130::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;43381:34:::1;43404:10;43381:18;43393:5;43381:7;;:11;;:18;;;;:::i;:34::-;43367:11;:48:::0;-1:-1:-1;43293:130:0:o;35967:30::-;;;-1:-1:-1;;;;;35967:30:0;;:::o;42928:110::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;42999:20:::1;:31:::0;;-1:-1:-1;;42999:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42928:110::o;35890:70::-;;;-1:-1:-1;;;;;35890:70:0;;:::o;39765:120::-;-1:-1:-1;;;;;39857:20:0;39833:4;39857:20;;;:11;:20;;;;;;;;;39765:120::o;49072:264::-;36929:16;:23;;-1:-1:-1;;;;36929:23:0;-1:-1:-1;;;36929:23:0;;;25818:12:::1;:10;:12::i;:::-;25808:6;::::0;-1:-1:-1;;;;;25808:6:0;;::::1;:22:::0;::::1;;25800:67;;;::::0;;-1:-1:-1;;;25800:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;::::1;;49163:23:::2;49189:24;49207:4;49189:9;:24::i;:::-;49163:50:::0;-1:-1:-1;49224:19:0::2;49246:42;49277:10:::0;49246:26:::2;49163:50:::0;49266:5:::2;49246:26;:19;:26;:::i;:42::-;49224:64;;49299:29;49316:11;49299:16;:29::i;:::-;-1:-1:-1::0;;36975:16:0;:24;;-1:-1:-1;;;;36975:24:0;;;-1:-1:-1;49072:264:0:o;25596:79::-;25634:7;25661:6;-1:-1:-1;;;;;25661:6:0;25596:79;:::o;36004:24::-;;;-1:-1:-1;;;;;36004:24:0;;:::o;37951:87::-;38023:7;38016:14;;;;;;;;-1:-1:-1;;38016:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37990:13;;38016:14;;38023:7;;38016:14;;38023:7;38016:14;;;;;;;;;;;;;;;;;;;;;;;;42809:111;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;42886:15:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;42886:26:0::1;-1:-1:-1::0;;;;42886:26:0;;::::1;::::0;;;::::1;::::0;;42809:111::o;39893:::-;39973:23;;39893:111;:::o;39488:269::-;39581:4;39598:129;39607:12;:10;:12::i;:::-;39621:7;39630:96;39669:15;39630:96;;;;;;;;;;;;;;;;;:11;:25;39642:12;:10;:12::i;:::-;-1:-1:-1;;;;;39630:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;39630:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;35849:32::-;;;;:::o;38446:167::-;38524:4;38541:42;38551:12;:10;:12::i;:::-;38565:9;38576:6;38541:9;:42::i;35516:26::-;;;;:::o;48151:122::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48209:10:0::1;;::::0;;;:6:::1;:10;::::0;;;;;;;:17;;48222:4:::1;-1:-1:-1::0;;48209:17:0;;::::1;::::0;::::1;::::0;;;48237::::1;:21:::0;;;;;:28;;;;::::1;::::0;;::::1;::::0;;48151:122::o;36238:23::-;;;-1:-1:-1;;;36238:23:0;;;;;:::o;41691:144::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41786:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:41;;-1:-1:-1;;41786:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41691:144::o;35443:27::-;;;;:::o;42703:98::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;42775:7:::1;:18:::0;;;::::1;;-1:-1:-1::0;;;42775:18:0::1;-1:-1:-1::0;;;;42775:18:0;;::::1;::::0;;;::::1;::::0;;42703:98::o;48422:169::-;36929:16;:23;;-1:-1:-1;;;;36929:23:0;-1:-1:-1;;;36929:23:0;;;25818:12:::1;:10;:12::i;:::-;25808:6;::::0;-1:-1:-1;;;;;25808:6:0;;::::1;:22:::0;::::1;;25800:67;;;::::0;;-1:-1:-1;;;25800:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;::::1;;48489:23:::2;48515:24;48533:4;48515:9;:24::i;:::-;48489:50;;48550:33;48567:15;48550:16;:33::i;:::-;-1:-1:-1::0;36975:16:0;:24;;-1:-1:-1;;;;36975:24:0;;;48422:169::o;42409:171::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;42486:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;42486:32:0;::::1;-1:-1:-1::0;;;;42486:32:0;;::::1;::::0;;;::::1;::::0;;;42534:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;42409:171:::0;:::o;36849:39::-;;;;;;:::o;36341:34::-;;;-1:-1:-1;;;36341:34:0;;;;;:::o;34662:50::-;;;;;;;;;;;;;;;:::o;38621:143::-;-1:-1:-1;;;;;38729:18:0;;;38702:7;38729:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;38621:143::o;36035:30::-;;;-1:-1:-1;;;;;36035:30:0;;:::o;41225:110::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41292:27:0::1;41322:5;41292:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;41292:35:0::1;::::0;;41225:110::o;48281:133::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48342:13:0::1;48358:5;48342:13:::0;;;:6:::1;:13;::::0;;;;;;;:21;;-1:-1:-1;;48342:21:0;;::::1;::::0;;;48374:17:::1;:24:::0;;;;;;:32;;;;::::1;::::0;;48281:133::o;36268:27::-;;;-1:-1:-1;;;36268:27:0;;;;;:::o;34723:46::-;;;;;;;;;;;;;;;:::o;26541:244::-;25818:12;:10;:12::i;:::-;25808:6;;-1:-1:-1;;;;;25808:6:0;;;:22;;;25800:67;;;;;-1:-1:-1;;;25800:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25800:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26630:22:0;::::1;26622:73;;;;-1:-1:-1::0;;;26622:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26732:6;::::0;;26711:38:::1;::::0;-1:-1:-1;;;;;26711:38:0;;::::1;::::0;26732:6;::::1;::::0;26711:38:::1;::::0;::::1;26760:6;:17:::0;;-1:-1:-1;;;;;;26760:17:0::1;-1:-1:-1::0;;;;;26760:17:0;;;::::1;::::0;;;::::1;::::0;;26541:244::o;35135:53::-;;;;:::o;710:98::-;790:10;710:98;:::o;49475:337::-;-1:-1:-1;;;;;49568:19:0;;49560:68;;;;-1:-1:-1;;;49560:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49647:21:0;;49639:68;;;;-1:-1:-1;;;49639:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49720:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;49772:32;;;;;;;;;;;;;;;;;49475:337;;;:::o;49820:2467::-;-1:-1:-1;;;;;49942:18:0;;49934:68;;;;-1:-1:-1;;;49934:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50021:16:0;;50013:64;;;;-1:-1:-1;;;50013:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50105:1;50096:6;:10;50088:64;;;;-1:-1:-1;;;50088:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50171:24:0;;;;;;:18;:24;;;;;;;;:33;50163:65;;;;;-1:-1:-1;;;50163:65:0;;;;;;;;;;;;-1:-1:-1;;;50163:65:0;;;;;;;;;;;;;;;50243:13;;-1:-1:-1;;;50243:13:0;;;;50240:1142;;;-1:-1:-1;;;;;50272:21:0;;;;;;:17;:21;;;;;;;;50271:22;:49;;;;-1:-1:-1;;;;;;50298:22:0;;;;;;:18;:22;;;;;;;;50297:23;50271:49;:68;;;;;50332:7;:5;:7::i;:::-;-1:-1:-1;;;;;50324:15:0;:4;-1:-1:-1;;;;;50324:15:0;;;50271:68;:85;;;;;50349:7;:5;:7::i;:::-;-1:-1:-1;;;;;50343:13:0;:2;-1:-1:-1;;;;;50343:13:0;;;50271:85;:108;;;;-1:-1:-1;50366:13:0;;-1:-1:-1;;;;;50360:19:0;;;50366:13;;50360:19;;50271:108;50268:243;;;50410:11;;50400:6;:21;;50392:49;;;;;-1:-1:-1;;;50392:49:0;;;;;;;;;;;;-1:-1:-1;;;50392:49:0;;;;;;;;;;;;;;;50489:9;;50460:25;50471:13;50481:2;50471:9;:13::i;:::-;50460:6;;:25;:10;:25;:::i;:::-;:38;;50452:47;;;;;;50551:7;:5;:7::i;:::-;-1:-1:-1;;;;;50543:15:0;:4;-1:-1:-1;;;;;50543:15:0;;;:49;;;;;50585:7;:5;:7::i;:::-;-1:-1:-1;;;;;50579:13:0;:2;-1:-1:-1;;;;;50579:13:0;;;50543:49;:86;;;;-1:-1:-1;;;;;;50613:16:0;;;;50543:86;:128;;;;-1:-1:-1;;;;;;50650:21:0;;50664:6;50650:21;;50543:128;:166;;;;-1:-1:-1;50693:16:0;;-1:-1:-1;;;50693:16:0;;;;50692:17;50543:166;50521:850;;;50749:7;;-1:-1:-1;;;50749:7:0;;;;50745:154;;-1:-1:-1;;;;;50788:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;50816:22:0;;;;;;:18;:22;;;;;;;;50788:50;:64;;;-1:-1:-1;;;;;;50842:10:0;;;;;;:6;:10;;;;;;;;50788:64;50780:99;;;;;-1:-1:-1;;;50780:99:0;;;;;;;;;;;;-1:-1:-1;;;50780:99:0;;;;;;;;;;;;;;;50937:20;;;;50933:423;;;50991:7;:5;:7::i;:::-;-1:-1:-1;;;;;50985:13:0;:2;-1:-1:-1;;;;;50985:13:0;;;:47;;;;-1:-1:-1;51016:15:0;;-1:-1:-1;;;;;51002:30:0;;;51016:15;;51002:30;;50985:47;:79;;;;-1:-1:-1;51050:13:0;;-1:-1:-1;;;;;51036:28:0;;;51050:13;;51036:28;;50985:79;50981:356;;;51129:9;51100:39;;;;:28;:39;;;;;;51142:12;-1:-1:-1;51092:140:0;;;;-1:-1:-1;;;51092:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51288:9;51259:39;;;;:28;:39;;;;;51301:12;51259:54;;50981:356;51394:18;51415:72;51469:17;;51415:49;51440:23;;51415:20;;:24;;:49;;;;:::i;:::-;:53;:72;:53;:72;:::i;:::-;51539:29;;51598:16;;51394:93;;-1:-1:-1;51525:43:0;;;;-1:-1:-1;;;51598:16:0;;;;51597:17;:55;;;;-1:-1:-1;51639:13:0;;-1:-1:-1;;;;;51631:21:0;;;51639:13;;51631:21;;51597:55;:93;;;;-1:-1:-1;51669:21:0;;-1:-1:-1;;;51669:21:0;;;;51597:93;:129;;;;;51707:19;51597:129;51579:233;;;51784:16;:14;:16::i;:::-;-1:-1:-1;;;;;52020:24:0;;51893:12;52020:24;;;:18;:24;;;;;;51908:4;;52020:24;;;:50;;-1:-1:-1;;;;;;52048:22:0;;;;;;:18;:22;;;;;;;;52020:50;:100;;;-1:-1:-1;52083:13:0;;-1:-1:-1;;;;;52075:21:0;;;52083:13;;52075:21;;;;:44;;-1:-1:-1;52106:13:0;;-1:-1:-1;;;;;52100:19:0;;;52106:13;;52100:19;;52075:44;52017:146;;;-1:-1:-1;52146:5:0;52017:146;52241:38;52256:4;52261:2;52264:6;52271:7;52241:14;:38::i;:::-;49820:2467;;;;;;:::o;27958:192::-;28044:7;28080:12;28072:6;;;;28064:29;;;;-1:-1:-1;;;28064:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;28064:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;28116:5:0;;;27958:192::o;27055:181::-;27113:7;27145:5;;;27169:6;;;;27161:46;;;;;-1:-1:-1;;;27161:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27227:1;27055:181;-1:-1:-1;;;27055:181:0:o;40012:254::-;40079:7;40118;;40107;:18;;40099:73;;;;-1:-1:-1;;;40099:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40183:19;40206:10;:8;:10::i;:::-;40183:33;-1:-1:-1;40234:24:0;:7;40183:33;40234:24;:11;:24;:::i;29356:132::-;29414:7;29441:39;29445:1;29448;29441:39;;;;;;;;;;;;;;;;;:3;:39::i;28409:471::-;28467:7;28712:6;28708:47;;-1:-1:-1;28742:1:0;28735:8;;28708:47;28779:5;;;28783:1;28779;:5;:1;28803:5;;;;;:10;28795:56;;;;-1:-1:-1;;;28795:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54921:589;55071:16;;;55085:1;55071:16;;;55047:21;55071:16;;;;;55047:21;55071:16;;;;;105:10:-1;55071:16:0;88:34:-1;136:17;;-1:-1;55071:16:0;55047:40;;55116:4;55098;55103:1;55098:7;;;;;;;;-1:-1:-1;;;;;55098:23:0;;;:7;;;;;;;;;;:23;;;;55142:15;;:22;;;-1:-1:-1;;;55142:22:0;;;;:15;;;;;:20;;:22;;;;;55098:7;;55142:22;;;;;:15;:22;;;5:2:-1;;;;30:1;27;20:12;5:2;55142:22:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;55142:22:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55142:22:0;55132:7;;:4;;55137:1;;55132:7;;;;;;-1:-1:-1;;;;;55132:32:0;;;:7;;;;;;;;;:32;55209:15;;55177:62;;55194:4;;55209:15;55227:11;55177:8;:62::i;:::-;55278:15;;;:224;;-1:-1:-1;;;55278:224:0;;;;;;;;:15;:224;;;;;;55456:4;55278:224;;;;;;55476:15;55278:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55278:15:0;;;;:66;;55359:11;;55278:15;;55429:4;;55456;55476:15;55278:224;;;;;;;;;;;;;;;;;;:15;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;55278:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55278:224:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;52295:2618:0;36929:16;:23;;-1:-1:-1;;;;36929:23:0;-1:-1:-1;;;36929:23:0;;;52432::::1;::::0;52406:20:::1;::::0;52384:17:::1;::::0;36929:23;;52384:72:::1;::::0;52432:23;;52384:43:::1;::::0;::::1;:21;:43;:::i;:72::-;52582:15;::::0;52354:102;;-1:-1:-1;52467:20:0::1;::::0;;;;;-1:-1:-1;;;52582:15:0;::::1;;;:78:::0;::::1;;;-1:-1:-1::0;52623:29:0::1;::::0;:37:::1;::::0;52657:2:::1;52623:37;:33;:37;:::i;:::-;52601:19;:59;52582:78;52578:533;;;52691:33;52721:2;52691:25;52713:2;52691:17;;:21;;:25;;;;:::i;:33::-;52759:17;::::0;52676:48;;-1:-1:-1;52759:35:0::1;::::0;52676:48;52759:35:::1;:21;:35;:::i;:::-;52739:17;:55:::0;52830:23:::1;::::0;:39:::1;::::0;52866:2:::1;::::0;52830:31:::1;::::0;52858:2:::1;52830:31;:27;:31;:::i;:39::-;52910:23;::::0;52809:60;;-1:-1:-1;52910:47:0::1;::::0;52809:60;52910:47:::1;:27;:47;:::i;:::-;52884:23;:73:::0;52987:20:::1;::::0;:36:::1;::::0;53020:2:::1;::::0;52987:28:::1;::::0;53012:2:::1;52987:28;:24;:28;:::i;:36::-;53061:20;::::0;52972:51;;-1:-1:-1;53061:38:0::1;::::0;52972:51;53061:38:::1;:24;:38;:::i;:::-;53038:20;:61:::0;52578:533:::1;53188:20;::::0;53173:12:::1;::::0;53188:28:::1;::::0;53214:1:::1;53188:28;:25;:28;:::i;:::-;53173:43;;53227:17;53247:30;53272:4;53247:20;;:24;;:30;;;;:::i;:::-;53227:50;;53290:18;53311:56;53349:17;;53311:33;53320:23;;53311:4;:8;;:33;;;;:::i;:56::-;53290:77:::0;-1:-1:-1;53668:21:0::1;53734:28;53290:77:::0;53734:16:::1;:28::i;:::-;53893:13;53909:41;:21;53935:14:::0;53909:41:::1;:25;:41;:::i;:::-;53893:57:::0;-1:-1:-1;53963:17:0::1;53983:31;54003:10:::0;53983:15:::1;53893:57:::0;53993:4;53983:15:::1;:9;:15;:::i;:31::-;53963:51;;54025:20;54048:50;54087:10;54048:34;54058:23;;54048:5;:9;;:34;;;;:::i;:50::-;54025:73:::0;-1:-1:-1;54109:14:0::1;54126:38;54025:73:::0;54126:20:::1;:5:::0;54136:9;54126:20:::1;:9;:20;:::i;:::-;:24:::0;:38:::1;:24;:38;:::i;:::-;54109:55:::0;-1:-1:-1;54175:16:0::1;54194:26;54218:1;54194:19;:12:::0;54211:1:::1;54194:19;:16;:19;:::i;:26::-;54175:45:::0;-1:-1:-1;54231:20:0::1;54254:26;54278:1;54254:19;:12:::0;54271:1:::1;54254:19;:16;:19;:::i;:26::-;54231:49:::0;-1:-1:-1;54296:13:0;;54293:181:::1;;54366:34;54379:9;54390;54366:12;:34::i;:::-;54420:42;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;54293:181;54489:16:::0;;54486:152:::1;;54529:15;::::0;54521:47:::1;::::0;-1:-1:-1;;;;;54529:15:0;;::::1;::::0;54521:47;::::1;;;::::0;54555:12;;54529:15:::1;54521:47:::0;54529:15;54521:47;54555:12;54529:15;54521:47;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;54591:15:0::1;::::0;54583:43:::1;::::0;-1:-1:-1;;;;;54591:15:0;;::::1;::::0;54583:43;::::1;;;::::0;54617:8;;54591:15:::1;54583:43:::0;54591:15;54583:43;54617:8;54591:15;54583:43;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;54583:43:0;54486:152;54653:10:::0;;54650:76:::1;;54687:9;::::0;54679:35:::1;::::0;-1:-1:-1;;;;;54687:9:0;;::::1;::::0;54679:35;::::1;;;::::0;54707:6;;54687:9:::1;54679:35:::0;54687:9;54679:35;54707:6;54687:9;54679:35;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;54679:35:0;54650:76;-1:-1:-1::0;;;54772:20:0::1;:35:::0;;;;-1:-1:-1;;;54818:23:0::1;:44:::0;;;;-1:-1:-1;;;54873:17:0::1;:32:::0;;;;-1:-1:-1;;36975:16:0;:24;;-1:-1:-1;;;;36975:24:0;;;52295:2618::o;56112:835::-;56224:7;56220:40;;56246:14;:12;:14::i;:::-;-1:-1:-1;;;;;56285:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;56309:22:0;;;;;;:11;:22;;;;;;;;56308:23;56285:46;56281:597;;;56348:48;56370:6;56378:9;56389:6;56348:21;:48::i;:::-;56281:597;;;-1:-1:-1;;;;;56419:19:0;;;;;;:11;:19;;;;;;;;56418:20;:46;;;;-1:-1:-1;;;;;;56442:22:0;;;;;;:11;:22;;;;;;;;56418:46;56414:464;;;56481:46;56501:6;56509:9;56520:6;56481:19;:46::i;56414:464::-;-1:-1:-1;;;;;56550:19:0;;;;;;:11;:19;;;;;;;;56549:20;:47;;;;-1:-1:-1;;;;;;56574:22:0;;;;;;:11;:22;;;;;;;;56573:23;56549:47;56545:333;;;56613:44;56631:6;56639:9;56650:6;56613:17;:44::i;56545:333::-;-1:-1:-1;;;;;56679:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;56702:22:0;;;;;;:11;:22;;;;;;;;56679:45;56675:203;;;56741:48;56763:6;56771:9;56782:6;56741:21;:48::i;56675:203::-;56822:44;56840:6;56848:9;56859:6;56822:17;:44::i;:::-;56902:7;56898:41;;56924:15;:13;:15::i;45286:163::-;45327:7;45348:15;45365;45384:19;:17;:19::i;:::-;45347:56;;-1:-1:-1;45347:56:0;-1:-1:-1;45421:20:0;45347:56;;45421:20;:11;:20;:::i;:::-;45414:27;;;;45286:163;:::o;29984:278::-;30070:7;30105:12;30098:5;30090:28;;;;-1:-1:-1;;;30090:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;30090:28:0;;30129:9;30145:1;30141;:5;;;;;;;29984:278;-1:-1:-1;;;;;29984:278:0:o;27519:136::-;27577:7;27604:43;27608:1;27611;27604:43;;;;;;;;;;;;;;;;;:3;:43::i;55518:513::-;55698:15;;55666:62;;55683:4;;-1:-1:-1;;;;;55698:15:0;55716:11;55666:8;:62::i;:::-;55771:15;;-1:-1:-1;;;;;55771:15:0;:31;55810:9;55843:4;55863:11;55771:15;;55975:7;:5;:7::i;:::-;55997:15;55771:252;;;;;;;;;;;;;-1:-1:-1;;;;;55771:252:0;-1:-1:-1;;;;;55771:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55771:252:0;-1:-1:-1;;;;;55771:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55771:252:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;55771:252:0;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;47674:306:0;47720:7;;:12;:48;;;;-1:-1:-1;47736:27:0;;:32;47720:48;47717:60;;;47770:7;;47717:60;47815:7;;;47797:15;:25;47871:27;;;47833:35;:65;-1:-1:-1;47919:11:0;;;;47941:31;47674:306;:::o;58171:622::-;58274:15;58291:23;58316:12;58330:23;58355:12;58369:34;58407:19;58418:7;58407:10;:19::i;:::-;-1:-1:-1;;;;;58455:15:0;;;;;;:7;:15;;;;;;58273:153;;-1:-1:-1;58273:153:0;;-1:-1:-1;58273:153:0;;-1:-1:-1;58273:153:0;-1:-1:-1;58273:153:0;-1:-1:-1;58273:153:0;-1:-1:-1;58455:28:0;;58475:7;58455:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;58437:15:0;;;;;;:7;:15;;;;;;;;:46;;;;58512:7;:15;;;;:28;;58532:7;58512:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;58494:15:0;;;;;;;:7;:15;;;;;;:46;;;;58572:18;;;;;;;:39;;58595:15;58572:39;:22;:39;:::i;:::-;-1:-1:-1;;;;;58551:18:0;;;;;;:7;:18;;;;;:60;58625:66;58656:26;58684:6;58625:30;:66::i;:::-;58702:23;58714:4;58720;58702:11;:23::i;:::-;58758:9;-1:-1:-1;;;;;58741:44:0;58750:6;-1:-1:-1;;;;;58741:44:0;;58769:15;58741:44;;;;;;;;;;;;;;;;;;58171:622;;;;;;;;;:::o;57521:642::-;57622:15;57639:23;57664:12;57678:23;57703:12;57717:34;57755:19;57766:7;57755:10;:19::i;:::-;-1:-1:-1;;;;;57803:15:0;;;;;;:7;:15;;;;;;57621:153;;-1:-1:-1;57621:153:0;;-1:-1:-1;57621:153:0;;-1:-1:-1;57621:153:0;-1:-1:-1;57621:153:0;-1:-1:-1;57621:153:0;-1:-1:-1;57803:28:0;;57621:153;57803:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;57785:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;57863:18;;;;;:7;:18;;;;;:39;;57886:15;57863:39;:22;:39;:::i;:::-;-1:-1:-1;;;;;57842:18:0;;;;;;:7;:18;;;;;;;;:60;;;;57934:7;:18;;;;:39;;57957:15;57934:39;:22;:39;:::i;56955:558::-;57054:15;57071:23;57096:12;57110:23;57135:12;57149:34;57187:19;57198:7;57187:10;:19::i;:::-;-1:-1:-1;;;;;57235:15:0;;;;;;:7;:15;;;;;;57053:153;;-1:-1:-1;57053:153:0;;-1:-1:-1;57053:153:0;;-1:-1:-1;57053:153:0;-1:-1:-1;57053:153:0;-1:-1:-1;57053:153:0;-1:-1:-1;57235:28:0;;57053:153;57235:28;:19;:28;:::i;58801:698::-;58904:15;58921:23;58946:12;58960:23;58985:12;58999:34;59037:19;59048:7;59037:10;:19::i;:::-;-1:-1:-1;;;;;59085:15:0;;;;;;:7;:15;;;;;;58903:153;;-1:-1:-1;58903:153:0;;-1:-1:-1;58903:153:0;;-1:-1:-1;58903:153:0;-1:-1:-1;58903:153:0;-1:-1:-1;58903:153:0;-1:-1:-1;59085:28:0;;59105:7;59085:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;59067:15:0;;;;;;:7;:15;;;;;;;;:46;;;;59142:7;:15;;;;:28;;59162:7;59142:28;:19;:28;:::i;47992:153::-;48046:15;;48036:7;:25;48102:35;;48072:27;:65;47992:153::o;45457:561::-;45554:7;;45590;;45507;;;;;45614:289;45638:9;:16;45634:20;;45614:289;;;45704:7;45680;:21;45688:9;45698:1;45688:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45688:12:0;45680:21;;;;;;;;;;;;;:31;;:66;;;45739:7;45715;:21;45723:9;45733:1;45723:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45723:12:0;45715:21;;;;;;;;;;;;;:31;45680:66;45676:97;;;45756:7;;45765;;45748:25;;;;;;;;;45676:97;45798:34;45810:7;:21;45818:9;45828:1;45818:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45818:12:0;45810:21;;;;;;;;;;;;;45798:7;;:34;:11;:34;:::i;:::-;45788:44;;45857:34;45869:7;:21;45877:9;45887:1;45877:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45877:12:0;45869:21;;;;;;;;;;;;;45857:7;;:34;:11;:34;:::i;:::-;45847:44;-1:-1:-1;45656:3:0;;45614:289;;;-1:-1:-1;45939:7:0;;45927;;:20;;;:11;:20;:::i;:::-;45917:7;:30;45913:61;;;45957:7;;45966;;45949:25;;;;;;;;45913:61;45993:7;;-1:-1:-1;46002:7:0;-1:-1:-1;45457:561:0;;;:::o;43875:482::-;43934:7;43943;43952;43961;43970;43979;44000:23;44025:12;44039:39;44082:20;44094:7;44082:11;:20::i;:::-;43999:103;;;;;;44114:15;44131:23;44156:12;44172:71;44184:7;44193:4;44199:31;44232:10;:8;:10::i;:::-;44172:11;:71::i;:::-;44113:130;;;;-1:-1:-1;44113:130:0;;-1:-1:-1;44294:15:0;;-1:-1:-1;44311:4:0;;-1:-1:-1;44317:31:0;;-1:-1:-1;43875:482:0;;-1:-1:-1;;;;;43875:482:0:o;46026:915::-;46140:27;;46137:69;;46188:7;;46137:69;46216:18;46237:78;46287:27;;46237:45;46268:13;;46237:26;:30;;:45;;;;:::i;:78::-;46216:99;;46326:12;46341:72;46385:27;;46341:39;46372:7;;46341:26;:30;;:39;;;;:::i;:72::-;46326:87;;46424:13;46440:73;46485:27;;46440:40;46471:8;;46440:26;:30;;:40;;;;:::i;:73::-;46424:89;-1:-1:-1;46524:15:0;46542:63;46424:89;46542:52;46589:4;46542:52;:26;46573:10;46542:42;:30;:42;:::i;:63::-;46635:10;;46524:81;;-1:-1:-1;46618:35:0;;46627:6;;-1:-1:-1;;;;;46635:10:0;46647:5;46618:8;:35::i;:::-;46689:20;;:33;;46714:7;46689:33;:24;:33;:::i;:::-;46666:20;:56;46759:23;;:39;;46787:10;46759:39;:27;:39;:::i;:::-;46733:23;:65;46829:17;;:27;;46851:4;46829:27;:21;:27;:::i;:::-;46809:17;:47;46867:66;46876:6;46892:4;46899:33;46927:4;46899:23;:7;46911:10;46899:23;:11;:23;:::i;:33::-;46867:8;:66::i;43694:173::-;43772:7;;:17;;43784:4;43772:17;:11;:17;:::i;:::-;43762:7;:27;43826:23;;:33;;43854:4;43826:33;:27;:33;:::i;:::-;43800:23;:59;-1:-1:-1;;43694:173:0:o;44365:392::-;44425:7;44434;44443;44463:12;44478:24;44494:7;44478:15;:24::i;:::-;44463:39;;44513:34;44550:44;44586:7;44550:35;:44::i;:::-;44513:81;-1:-1:-1;44605:23:0;44631:49;44513:81;44631:17;:7;44643:4;44631:17;:11;:17;:::i;:49::-;44605:75;44716:4;;-1:-1:-1;44722:26:0;;-1:-1:-1;44365:392:0;;-1:-1:-1;;;44365:392:0:o;44765:513::-;44901:7;;;;44957:24;:7;44969:11;44957:24;:11;:24;:::i;:::-;44939:42;-1:-1:-1;44992:12:0;45007:21;:4;45016:11;45007:21;:8;:21;:::i;:::-;44992:36;-1:-1:-1;45039:39:0;45081:48;:31;45117:11;45081:48;:35;:48;:::i;:::-;45039:90;-1:-1:-1;45140:23:0;45166:54;45039:90;45166:17;:7;45178:4;45166:17;:11;:17;:::i;:54::-;45239:7;;;;-1:-1:-1;45265:4:0;;-1:-1:-1;44765:513:0;;-1:-1:-1;;;;;;;44765:513:0:o;46949:345::-;47027:19;47050:10;:8;:10::i;:::-;47027:33;-1:-1:-1;47071:15:0;47089:23;:6;47027:33;47089:23;:10;:23;:::i;:::-;-1:-1:-1;;;;;47137:11:0;;;;;;:7;:11;;;;;;47071:41;;-1:-1:-1;47137:24:0;;47071:41;47137:24;:15;:24;:::i;:::-;-1:-1:-1;;;;;47123:11:0;;;;;;:7;:11;;;;;;;;:38;;;;47175:11;:15;;;;;;47172:70;;;-1:-1:-1;;;;;47219:11:0;;;;;;:7;:11;;;;;;:23;;47235:6;47219:23;:15;:23;:::i;:::-;-1:-1:-1;;;;;47205:11:0;;;;;;:7;:11;;;;;:37;47172:70;47275:2;-1:-1:-1;;;;;47260:26:0;47269:4;-1:-1:-1;;;;;47260:26:0;;47279:6;47260:26;;;;;;;;;;;;;;;;;;46949:345;;;;;:::o;47306:154::-;47370:7;47397:55;47436:5;47397:20;47409:7;;47397;:11;;:20;;;;:::i;47468:194::-;47552:7;47579:75;47638:5;47579:40;47591:27;;47579:7;:11;;:40;;;;:::i

Swarm Source

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