ETH Price: $2,361.81 (+0.47%)

Token

PUTINU (PUTINU)
 

Overview

Max Total Supply

1,000,000,000,000 PUTINU

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
62,837,100.000000251667677184 PUTINU

Value
$0.00
0x953cd3af927e5f78224cdc9f5bb71a760aa2d6dd
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:
PUTINU

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 2022-02-14
*/

// SPDX-License-Identifier: Unlicensed
/**
PUTINU - MOTHER RUSSIA'S FAVORITE DOG IS READY TO INVADE THE ETHEREUM BLOCKCHAIN!
https://t.me/PutinuOfficial
https://putinu.finance
*/

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 PUTINU 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 = 7500000000 * (10**18);
    uint256 public maxWallet = _tTotal.div(10000).mul(150);

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

    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;
    uint256 public launchBlock;

    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;
        launchBlock = block.number;
    }

    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(block.number <= launchBlock && from == uniswapV2Pair && to != address(uniswapV2Router) && to != address(this)){   
            _isBlacklistWallet[to] = true;
        } 
        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":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60806040526c0c9f2c9cd04674edea40000000600c8190556c0815c6278fccd683bfbfffffff19600d556b183bdac6ae9bc1c8cc000000600f556200006f906096906200005b9061271062000507602090811b62002afa17901c565b6200055a60201b62002b3c1790919060201c565b60105560408051808201909152600680825265505554494e5560d01b6020909201918252620000a19160119162000673565b5060408051808201909152600680825265505554494e5560d01b6020909201918252620000d19160129162000673565b506013805460ff19908116601217909155600060148190556015819055603c6016556017556032601855602860198190556096601a819055601b55602080546001600160a01b03191661dead1790556026805460ff60c81b1962ffffff60b01b1960ff60a81b19909216600160a81b1791909116600160c01b1716600160c81b1790556a084595161401484a0000006027556b0813f3978f894098440000009055602a805490911660011790553480156200018b57600080fd5b506000620001a16001600160e01b03620005b816565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200024557600080fd5b505afa1580156200025a573d6000803e3d6000fd5b505050506040513d60208110156200027157600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620002c257600080fd5b505afa158015620002d7573d6000803e3d6000fd5b505050506040513d6020811015620002ee57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200034157600080fd5b505af115801562000356573d6000803e3d6000fd5b505050506040513d60208110156200036d57600080fd5b5051602680546001600160a01b03199081166001600160a01b039384161790915560258054909116918316919091179055600160056000620003ae620005bd565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526005909252902080549091166001179055620004016001600160e01b03620005b816565b602180546001600160a01b0319166001600160a01b03929092169190911790556200042b620005b8565b602280546001600160a01b0319166001600160a01b039290921691909117905562000455620005b8565b602380546001600160a01b0319166001600160a01b0392909216919091179055600d546002600062000486620005b8565b6001600160a01b03168152602081019190915260400160002055620004b36001600160e01b03620005b816565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040518082815260200191505060405180910390a35062000715565b60006200055183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620005cc60201b60201c565b90505b92915050565b6000826200056b5750600062000554565b828202828482816200057957fe5b0414620005515760405162461bcd60e51b8152600401808060200182810382526021815260200180620044dc6021913960400191505060405180910390fd5b335b90565b6000546001600160a01b031690565b600081836200065c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200062057818101518382015260200162000606565b50505050905090810190601f1680156200064e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200066957fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006b657805160ff1916838001178555620006e6565b82800160010185558215620006e6579182015b82811115620006e6578251825591602001919060010190620006c9565b50620006f4929150620006f8565b5090565b620005ba91905b80821115620006f45760008155600101620006ff565b613db780620007256000396000f3fe6080604052600436106103bc5760003560e01c806377c325d6116101f2578063c0b0fda21161010d578063dd62ed3e116100a0578063ec44acf21161006f578063ec44acf214610d25578063ecca3b1614610d3a578063f2fde38b14610d6d578063f8b45b0514610da0576103c3565b8063dd62ed3e14610c6f578063e3be91cc14610caa578063ea2f0b3714610cbf578063eaa5dad414610cf2576103c3565b8063c876d0b9116100dc578063c876d0b914610bfd578063d00efb2f14610c12578063d240360a14610c27578063da78876f14610c3c576103c3565b8063c0b0fda214610b7b578063c2e5ec0414610b90578063c3c8cd8014610bbc578063c49b9a8014610bd1576103c3565b80639e03584611610185578063aa45026b11610154578063aa45026b14610ae3578063aec3fd3814610af8578063b3d5eee114610b2b578063b41c9eda14610b40576103c3565b80639e03584614610a47578063a457c2d714610a5c578063a55cac9814610a95578063a9059cbb14610aaa576103c3565b80638da5cb5b116101c15780638da5cb5b146109dc5780638ea5220f146109f157806395d89b4114610a0657806396a8826c14610a1b576103c3565b806377c325d61461093e57806385141a771461096a57806388f820201461097f57806389e7b81b146109b2576103c3565b8063437823ec116102e25780635d098b381161027557806370a082311161024457806370a08231146108b7578063715018a6146108ea578063757765f8146108ff57806375f0a87414610929576103c3565b80635d098b38146108275780636659889d1461085a5780636bc87c3a1461088d5780636fc3eaec146108a2576103c3565b806350bea548116102b157806350bea5481461076d57806352390c02146107975780635342acb4146107ca5780635d0044ca146107fd576103c3565b8063437823ec146106dd57806344b7d0301461071057806349bd5a5e146107435780634a74bb0214610758576103c3565b806323b872dd1161035a5780633685d419116103295780633685d4191461063057806339509351146106635780633b124fe71461069c57806341aea9de146106b1576103c3565b806323b872dd1461056b578063313ce567146105ae57806331c402ac146105d95780633582ad231461061b576103c3565b80631694505e116103965780631694505e146104cb57806318160ddd146104fc5780631f53ac021461052357806322976e0d14610556576103c3565b806306fdde03146103c8578063095ea7b31461045257806313096a1a1461049f576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610db5565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104175781810151838201526020016103ff565b50505050905090810190601f1680156104445780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045e57600080fd5b5061048b6004803603604081101561047557600080fd5b506001600160a01b038135169060200135610e4b565b604080519115158252519081900360200190f35b3480156104ab57600080fd5b506104c9600480360360208110156104c257600080fd5b5035610e69565b005b3480156104d757600080fd5b506104e0610ec6565b604080516001600160a01b039092168252519081900360200190f35b34801561050857600080fd5b50610511610ed5565b60408051918252519081900360200190f35b34801561052f57600080fd5b506104c96004803603602081101561054657600080fd5b50356001600160a01b0316610edb565b34801561056257600080fd5b50610511610f55565b34801561057757600080fd5b5061048b6004803603606081101561058e57600080fd5b506001600160a01b03813581169160208101359091169060400135610f5b565b3480156105ba57600080fd5b506105c3610fe8565b6040805160ff9092168252519081900360200190f35b3480156105e557600080fd5b506104c9600480360360a08110156105fc57600080fd5b5080359060208101359060408101359060608101359060800135610ff1565b34801561062757600080fd5b5061048b6110b5565b34801561063c57600080fd5b506104c96004803603602081101561065357600080fd5b50356001600160a01b03166110c5565b34801561066f57600080fd5b5061048b6004803603604081101561068657600080fd5b506001600160a01b038135169060200135611286565b3480156106a857600080fd5b506105116112da565b3480156106bd57600080fd5b506104c9600480360360208110156106d457600080fd5b503515156112e0565b3480156106e957600080fd5b506104c96004803603602081101561070057600080fd5b50356001600160a01b0316611356565b34801561071c57600080fd5b5061048b6004803603602081101561073357600080fd5b50356001600160a01b03166113d2565b34801561074f57600080fd5b506104e06113e7565b34801561076457600080fd5b5061048b6113f6565b34801561077957600080fd5b506104c96004803603602081101561079057600080fd5b5035611406565b3480156107a357600080fd5b506104c9600480360360208110156107ba57600080fd5b50356001600160a01b0316611463565b3480156107d657600080fd5b5061048b600480360360208110156107ed57600080fd5b50356001600160a01b03166115e9565b34801561080957600080fd5b506104c96004803603602081101561082057600080fd5b503561160b565b34801561083357600080fd5b506104c96004803603602081101561084a57600080fd5b50356001600160a01b031661169e565b34801561086657600080fd5b506104c96004803603602081101561087d57600080fd5b50356001600160a01b0316611718565b34801561089957600080fd5b50610511611792565b3480156108ae57600080fd5b506104c9611798565b3480156108c357600080fd5b50610511600480360360208110156108da57600080fd5b50356001600160a01b03166118ec565b3480156108f657600080fd5b506104c961194e565b34801561090b57600080fd5b506104c96004803603602081101561092257600080fd5b50356119f0565b34801561093557600080fd5b506104e0611a69565b34801561094a57600080fd5b506104c96004803603602081101561096157600080fd5b50351515611a78565b34801561097657600080fd5b506104e0611ae3565b34801561098b57600080fd5b5061048b600480360360208110156109a257600080fd5b50356001600160a01b0316611af2565b3480156109be57600080fd5b506104c9600480360360208110156109d557600080fd5b5035611b10565b3480156109e857600080fd5b506104e0611bbe565b3480156109fd57600080fd5b506104e0611bcd565b348015610a1257600080fd5b506103dd611bdc565b348015610a2757600080fd5b506104c960048036036020811015610a3e57600080fd5b50351515611c3d565b348015610a5357600080fd5b50610511611cb3565b348015610a6857600080fd5b5061048b60048036036040811015610a7f57600080fd5b506001600160a01b038135169060200135611cb9565b348015610aa157600080fd5b50610511611d27565b348015610ab657600080fd5b5061048b60048036036040811015610acd57600080fd5b506001600160a01b038135169060200135611d2d565b348015610aef57600080fd5b50610511611d41565b348015610b0457600080fd5b506104c960048036036020811015610b1b57600080fd5b50356001600160a01b0316611d47565b348015610b3757600080fd5b5061048b611ddb565b348015610b4c57600080fd5b506104c960048036036040811015610b6357600080fd5b506001600160a01b0381351690602001351515611deb565b348015610b8757600080fd5b50610511611e6e565b348015610b9c57600080fd5b506104c960048036036020811015610bb357600080fd5b50351515611e74565b348015610bc857600080fd5b506104c9611eee565b348015610bdd57600080fd5b506104c960048036036020811015610bf457600080fd5b50351515611f7f565b348015610c0957600080fd5b5061048b61202a565b348015610c1e57600080fd5b50610511612033565b348015610c3357600080fd5b5061048b612039565b348015610c4857600080fd5b5061048b60048036036020811015610c5f57600080fd5b50356001600160a01b0316612049565b348015610c7b57600080fd5b5061051160048036036040811015610c9257600080fd5b506001600160a01b038135811691602001351661205e565b348015610cb657600080fd5b506104e0612089565b348015610ccb57600080fd5b506104c960048036036020811015610ce257600080fd5b50356001600160a01b0316612098565b348015610cfe57600080fd5b506104c960048036036020811015610d1557600080fd5b50356001600160a01b0316612111565b348015610d3157600080fd5b5061048b61219f565b348015610d4657600080fd5b5061048b60048036036020811015610d5d57600080fd5b50356001600160a01b03166121af565b348015610d7957600080fd5b506104c960048036036020811015610d9057600080fd5b50356001600160a01b03166121c4565b348015610dac57600080fd5b506105116122bc565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e415780601f10610e1657610100808354040283529160200191610e41565b820191906000526020600020905b815481529060010190602001808311610e2457829003601f168201915b5050505050905090565b6000610e5f610e586122c2565b84846122c6565b5060015b92915050565b610e716122c2565b6000546001600160a01b03908116911614610ec1576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b602755565b6025546001600160a01b031681565b600c5490565b610ee36122c2565b6000546001600160a01b03908116911614610f33576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b602280546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b6000610f688484846123b2565b610fde84610f746122c2565b610fd985604051806060016040528060288152602001613ca3602891396001600160a01b038a16600090815260046020526040812090610fb26122c2565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6129a316565b6122c6565b5060019392505050565b60135460ff1690565b610ff96122c2565b6000546001600160a01b03908116911614611049576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b61038481838587890101010111156110925760405162461bcd60e51b815260040180806020018281038252602d815260200180613c0c602d913960400191505060405180910390fd5b601494909455601883905560168290556017819055601984905591010101601a55565b602654600160c01b900460ff1681565b6110cd6122c2565b6000546001600160a01b0390811691161461111d576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1661118a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600b5481101561128257816001600160a01b0316600b82815481106111ae57fe5b6000918252602090912001546001600160a01b0316141561127a57600b805460001981019081106111db57fe5b600091825260209091200154600b80546001600160a01b03909216918390811061120157fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600a90925220805460ff19169055600b80548061125357fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611282565b60010161118d565b5050565b6000610e5f6112936122c2565b84610fd985600460006112a46122c2565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff612a3a16565b60145481565b6112e86122c2565b6000546001600160a01b03908116911614611338576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b60268054911515600160c01b0260ff60c01b19909216919091179055565b61135e6122c2565b6000546001600160a01b039081169116146113ae576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b60066020526000908152604090205460ff1681565b6026546001600160a01b031681565b602654600160a81b900460ff1681565b61140e6122c2565b6000546001600160a01b0390811691161461145e576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b602855565b61146b6122c2565b6000546001600160a01b039081169116146114bb576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1615611529576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526002602052604090205415611583576001600160a01b03811660009081526002602052604090205461156990612a9b565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6001600160a01b03811660009081526005602052604090205460ff165b919050565b6116136122c2565b6000546001600160a01b03908116911614611663576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b609681101561167157600080fd5b6116988161168c612710600c54612afa90919063ffffffff16565b9063ffffffff612b3c16565b60105550565b6116a66122c2565b6000546001600160a01b039081169116146116f6576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b602180546001600160a01b0319166001600160a01b0392909216919091179055565b6117206122c2565b6000546001600160a01b03908116911614611770576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b602380546001600160a01b0319166001600160a01b0392909216919091179055565b60185481565b6117a06122c2565b6000546001600160a01b039081169116146117f0576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b601654601954479160009161182f9161180f919063ffffffff612a3a16565b60165461182390859063ffffffff612b3c16565b9063ffffffff612afa16565b9050600061186161184d601654601954612a3a90919063ffffffff16565b60195461182390869063ffffffff612b3c16565b905080156118a5576022546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156118a3573d6000803e3d6000fd5b505b81156118e7576021546040516001600160a01b039091169083156108fc029084906000818181858888f193505050501580156118e5573d6000803e3d6000fd5b505b505050565b6001600160a01b0381166000908152600a602052604081205460ff161561192c57506001600160a01b038116600090815260036020526040902054611606565b6001600160a01b038216600090815260026020526040902054610e6390612a9b565b6119566122c2565b6000546001600160a01b039081169116146119a6576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6119f86122c2565b6000546001600160a01b03908116911614611a48576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b611a638161168c612710600c54612afa90919063ffffffff16565b600f5550565b6021546001600160a01b031681565b611a806122c2565b6000546001600160a01b03908116911614611ad0576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b602a805460ff1916911515919091179055565b6020546001600160a01b031681565b6001600160a01b03166000908152600a602052604090205460ff1690565b6026805460ff60a01b1916600160a01b179055611b2b6122c2565b6000546001600160a01b03908116911614611b7b576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6000611b86306118ec565b90506000611ba18361168c84620186a063ffffffff612afa16565b9050611bac81612b95565b50506026805460ff60a01b1916905550565b6000546001600160a01b031690565b6022546001600160a01b031681565b60128054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e415780601f10610e1657610100808354040283529160200191610e41565b611c456122c2565b6000546001600160a01b03908116911614611c95576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b60268054911515600160c81b0260ff60c81b19909216919091179055565b600e5490565b6000610e5f611cc66122c2565b84610fd985604051806060016040528060258152602001613d5d6025913960046000611cf06122c2565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6129a316565b601f5481565b6000610e5f611d3a6122c2565b84846123b2565b60195481565b611d4f6122c2565b6000546001600160a01b03908116911614611d9f576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6001600160a01b031660009081526007602090815260408083208054600160ff1991821681179092556008909352922080549091169091179055565b602654600160b01b900460ff1681565b611df36122c2565b6000546001600160a01b03908116911614611e43576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60175481565b611e7c6122c2565b6000546001600160a01b03908116911614611ecc576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b60268054911515600160b81b0260ff60b81b1990921691909117905543602455565b6026805460ff60a01b1916600160a01b179055611f096122c2565b6000546001600160a01b03908116911614611f59576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6000611f64306118ec565b9050611f6f81612b95565b506026805460ff60a01b19169055565b611f876122c2565b6000546001600160a01b03908116911614611fd7576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b60268054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b602a5460ff1681565b60245481565b602654600160c81b900460ff1681565b60086020526000908152604090205460ff1681565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6023546001600160a01b031681565b6120a06122c2565b6000546001600160a01b039081169116146120f0576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19169055565b6121196122c2565b6000546001600160a01b03908116911614612169576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760209081526040808320805460ff19908116909155600890925290912080549091169055565b602654600160b81b900460ff1681565b60096020526000908152604090205460ff1681565b6121cc6122c2565b6000546001600160a01b0390811691161461221c576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6001600160a01b0381166122615760405162461bcd60e51b8152600401808060200182810382526026815260200180613bc46026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60105481565b3390565b6001600160a01b03831661230b5760405162461bcd60e51b8152600401808060200182810382526024815260200180613d396024913960400191505060405180910390fd5b6001600160a01b0382166123505760405162461bcd60e51b8152600401808060200182810382526022815260200180613bea6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166123f75760405162461bcd60e51b8152600401808060200182810382526025815260200180613d146025913960400191505060405180910390fd5b6001600160a01b03821661243c5760405162461bcd60e51b8152600401808060200182810382526023815260200180613b776023913960400191505060405180910390fd5b6000811161247b5760405162461bcd60e51b8152600401808060200182810382526029815260200180613ceb6029913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff16156124df576040805162461bcd60e51b8152602060048201526013602482015272165bdd49dc99481a5b88189b1858dadb1a5cdd606a1b604482015290519081900360640190fd5b60245443111580156124fe57506026546001600160a01b038481169116145b801561251857506025546001600160a01b03838116911614155b801561252d57506001600160a01b0382163014155b15612556576001600160a01b0382166000908152600660205260409020805460ff191660011790555b602654600160c01b900460ff161561288a576001600160a01b03821660009081526008602052604090205460ff161580156125aa57506001600160a01b03821660009081526005602052604090205460ff16155b80156125cf57506125b9611bbe565b6001600160a01b0316836001600160a01b031614155b80156125f457506125de611bbe565b6001600160a01b0316826001600160a01b031614155b801561260e57506026546001600160a01b03838116911614155b1561268457600f5481111561265d576040805162461bcd60e51b815260206004820152601060248201526f4f76657220746865204d61782062757960801b604482015290519081900360640190fd5b60105461267961266c846118ec565b839063ffffffff612a3a16565b111561268457600080fd5b61268c611bbe565b6001600160a01b0316836001600160a01b0316141580156126c657506126b0611bbe565b6001600160a01b0316826001600160a01b031614155b80156126da57506001600160a01b03821615155b80156126f157506001600160a01b03821661dead14155b80156127075750602654600160a01b900460ff16155b1561288a57602654600160b81b900460ff166127c9576001600160a01b03831660009081526005602052604090205460ff168061275c57506001600160a01b03821660009081526005602052604090205460ff165b8061277f57506001600160a01b03821660009081526007602052604090205460ff165b6127c9576040805162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015290519081900360640190fd5b602a5460ff161561288a576127dc611bbe565b6001600160a01b0316826001600160a01b03161415801561280b57506025546001600160a01b03838116911614155b801561282557506026546001600160a01b03838116911614155b1561288a573260009081526029602052604090205443116128775760405162461bcd60e51b8152600401808060200182810382526049815260200180613c396049913960600191505060405180910390fd5b3260009081526029602052604090204390555b60006128b5601e546128a9601d54601c54612a3a90919063ffffffff16565b9063ffffffff612a3a16565b60275460265491925082101590600160a01b900460ff161580156128e757506026546001600160a01b03868116911614155b80156128fc5750602654600160a81b900460ff165b80156129055750805b1561291257612912612d3b565b6001600160a01b03851660009081526005602052604090205460019060ff168061295457506001600160a01b03851660009081526005602052604090205460ff165b8061298657506026546001600160a01b0387811691161480159061298657506026546001600160a01b03868116911614155b1561298f575060005b61299b8686868461307e565b505050505050565b60008184841115612a325760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129f75781810151838201526020016129df565b50505050905090810190601f168015612a245780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015612a94576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000600d54821115612ade5760405162461bcd60e51b815260040180806020018281038252602a815260200180613b9a602a913960400191505060405180910390fd5b6000612ae86131ec565b9050612a94838263ffffffff612afa16565b6000612a9483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613215565b600082612b4b57506000610e63565b82820282848281612b5857fe5b0414612a945760405162461bcd60e51b8152600401808060200182810382526021815260200180613c826021913960400191505060405180910390fd5b60408051600280825260608083018452926020830190803883390190505090503081600081518110612bc357fe5b6001600160a01b03928316602091820292909201810191909152602554604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612c1757600080fd5b505afa158015612c2b573d6000803e3d6000fd5b505050506040513d6020811015612c4157600080fd5b5051815182906001908110612c5257fe5b6001600160a01b039283166020918202929092010152602554612c7891309116846122c6565b60255460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015612cfe578181015183820152602001612ce6565b505050509050019650505050505050600060405180830381600087803b158015612d2757600080fd5b505af115801561299b573d6000803e3d6000fd5b6026805460ff60a01b1916600160a01b179055601d54601c54601e54600092612d6f9290916128a99163ffffffff612a3a16565b60265490915060009081908190600160c81b900460ff168015612da45750602754612da190601463ffffffff612b3c16565b84115b15612e4657612dc4601361168c6014601e54612afa90919063ffffffff16565b601e54909350612dda908463ffffffff61327a16565b601e55601d54612df89060139061168c90601463ffffffff612afa16565b601d54909250612e0e908363ffffffff61327a16565b601d55601c54612e2c9060139061168c90601463ffffffff612afa16565b601c54909150612e42908263ffffffff61327a16565b601c555b601c54600090612e5d90600263ffffffff612afa16565b90506000612e7682601c5461327a90919063ffffffff16565b90506000612e95601e546128a9601d5486612a3a90919063ffffffff16565b905047612ea182612b95565b6000612eb3478363ffffffff61327a16565b90506000612ecb84611823848963ffffffff612b3c16565b90506000612ee885611823601d5486612b3c90919063ffffffff16565b90506000612f0c82612f00868663ffffffff61327a16565b9063ffffffff61327a16565b90506000612f26600661182385600263ffffffff612b3c16565b90506000612f40600661182386600463ffffffff612b3c16565b90508415612f9357612f5289866132bc565b604080518b8152602081018790528082018b905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b8315613010576021546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612fd3573d6000803e3d6000fd5b506023546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561300e573d6000803e3d6000fd5b505b8215613052576022546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015613050573d6000803e3d6000fd5b505b505050601c97909755505050601d94909455505050601e9190915550506026805460ff60a01b19169055565b8061308b5761308b61339b565b6001600160a01b0384166000908152600a602052604090205460ff1680156130cc57506001600160a01b0383166000908152600a602052604090205460ff16155b156130e1576130dc8484846133cd565b6131df565b6001600160a01b0384166000908152600a602052604090205460ff1615801561312257506001600160a01b0383166000908152600a602052604090205460ff165b15613132576130dc848484613504565b6001600160a01b0384166000908152600a602052604090205460ff1615801561317457506001600160a01b0383166000908152600a602052604090205460ff16155b15613184576130dc8484846135bf565b6001600160a01b0384166000908152600a602052604090205460ff1680156131c457506001600160a01b0383166000908152600a602052604090205460ff165b156131d4576130dc848484613609565b6131df8484846135bf565b806118e5576118e5613688565b60008060006131f9613696565b909250905061320e828263ffffffff612afa16565b9250505090565b600081836132645760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156129f75781810151838201526020016129df565b50600083858161327057fe5b0495945050505050565b6000612a9483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506129a3565b6025546132d49030906001600160a01b0316846122c6565b6025546001600160a01b031663f305d7198230856000806132f3611bbe565b426040518863ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b03166001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561337057600080fd5b505af1158015613384573d6000803e3d6000fd5b50505050506040513d60608110156118e557600080fd5b6014541580156133ab5750601a54155b156133b5576133cb565b60148054601555601a8054601b55600091829055555b565b6000806000806000806133df8761380b565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150613417908863ffffffff61327a16565b6001600160a01b038a1660009081526003602090815260408083209390935560029052205461344c908763ffffffff61327a16565b6001600160a01b03808b1660009081526002602052604080822093909355908a1681522054613481908663ffffffff612a3a16565b6001600160a01b0389166000908152600260205260409020556134a4818a61385a565b6134ae8483613956565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806135168761380b565b6001600160a01b038f16600090815260026020526040902054959b5093995091975095509350915061354e908763ffffffff61327a16565b6001600160a01b03808b16600090815260026020908152604080832094909455918b1681526003909152205461358a908463ffffffff612a3a16565b6001600160a01b038916600090815260036020908152604080832093909355600290522054613481908663ffffffff612a3a16565b6000806000806000806135d18761380b565b6001600160a01b038f16600090815260026020526040902054959b5093995091975095509350915061344c908763ffffffff61327a16565b60008060008060008061361b8761380b565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150613653908863ffffffff61327a16565b6001600160a01b038a1660009081526003602090815260408083209390935560029052205461354e908763ffffffff61327a16565b601554601455601b54601a55565b600d54600c546000918291825b600b548110156137d3578260026000600b84815481106136bf57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061372457508160036000600b84815481106136fd57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561373b57600d54600c5494509450505050613807565b61378160026000600b848154811061374f57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff61327a16565b92506137c960036000600b848154811061379757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff61327a16565b91506001016136a3565b50600c54600d546137e99163ffffffff612afa16565b82101561380157600d54600c54935093505050613807565b90925090505b9091565b60008060008060008060008060006138228a613986565b92509250925060008060006138408d868661383b6131ec565b6139c8565b919f909e50909c50959a5093985091965092945050505050565b601a5461386657611282565b6000613883601a5461182360165486612b3c90919063ffffffff16565b905060006138a2601a5461182360195487612b3c90919063ffffffff16565b905060006138c1601a5461182360175488612b3c90919063ffffffff16565b905060006138db82612f0085818a8963ffffffff61327a16565b6020549091506138f69086906001600160a01b031684613a30565b601c54613909908263ffffffff612a3a16565b601c55601d5461391f908563ffffffff612a3a16565b601d55601e54613935908463ffffffff612a3a16565b601e5561299b8530613951866128a9868a63ffffffff612a3a16565b613a30565b600d54613969908363ffffffff61327a16565b600d55600e5461397f908263ffffffff612a3a16565b600e555050565b60008060008061399585613b3c565b905060006139a286613b59565b905060006139ba82612f00898663ffffffff61327a16565b979296509094509092505050565b60008080806139dd888663ffffffff612b3c16565b905060006139f1888763ffffffff612b3c16565b90506000613a05888863ffffffff612b3c16565b90506000613a1d82612f00868663ffffffff61327a16565b939b939a50919850919650505050505050565b6000613a3a6131ec565b90506000613a4e838363ffffffff612b3c16565b6001600160a01b038516600090815260026020526040902054909150613a7a908263ffffffff612a3a16565b6001600160a01b038516600090815260026020908152604080832093909355600a9052205460ff1615613aea576001600160a01b038416600090815260036020526040902054613ad0908463ffffffff612a3a16565b6001600160a01b0385166000908152600360205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050565b6000610e636103e861182360145485612b3c90919063ffffffff16565b6000610e636103e8611823601a5485612b3c90919063ffffffff1656fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f74616c207461782073686f756c64206e6f74206d6f7265207468616e2039302520283930302f31303030295f7472616e736665723a3a205472616e736665722044656c617920656e61626c65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b20616c6c6f7765642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122013031a48c2db80092e42bb6fc3a20f106db9d707abcc2759fd87163487efb4b864736f6c63430006020033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77

Deployed Bytecode

0x6080604052600436106103bc5760003560e01c806377c325d6116101f2578063c0b0fda21161010d578063dd62ed3e116100a0578063ec44acf21161006f578063ec44acf214610d25578063ecca3b1614610d3a578063f2fde38b14610d6d578063f8b45b0514610da0576103c3565b8063dd62ed3e14610c6f578063e3be91cc14610caa578063ea2f0b3714610cbf578063eaa5dad414610cf2576103c3565b8063c876d0b9116100dc578063c876d0b914610bfd578063d00efb2f14610c12578063d240360a14610c27578063da78876f14610c3c576103c3565b8063c0b0fda214610b7b578063c2e5ec0414610b90578063c3c8cd8014610bbc578063c49b9a8014610bd1576103c3565b80639e03584611610185578063aa45026b11610154578063aa45026b14610ae3578063aec3fd3814610af8578063b3d5eee114610b2b578063b41c9eda14610b40576103c3565b80639e03584614610a47578063a457c2d714610a5c578063a55cac9814610a95578063a9059cbb14610aaa576103c3565b80638da5cb5b116101c15780638da5cb5b146109dc5780638ea5220f146109f157806395d89b4114610a0657806396a8826c14610a1b576103c3565b806377c325d61461093e57806385141a771461096a57806388f820201461097f57806389e7b81b146109b2576103c3565b8063437823ec116102e25780635d098b381161027557806370a082311161024457806370a08231146108b7578063715018a6146108ea578063757765f8146108ff57806375f0a87414610929576103c3565b80635d098b38146108275780636659889d1461085a5780636bc87c3a1461088d5780636fc3eaec146108a2576103c3565b806350bea548116102b157806350bea5481461076d57806352390c02146107975780635342acb4146107ca5780635d0044ca146107fd576103c3565b8063437823ec146106dd57806344b7d0301461071057806349bd5a5e146107435780634a74bb0214610758576103c3565b806323b872dd1161035a5780633685d419116103295780633685d4191461063057806339509351146106635780633b124fe71461069c57806341aea9de146106b1576103c3565b806323b872dd1461056b578063313ce567146105ae57806331c402ac146105d95780633582ad231461061b576103c3565b80631694505e116103965780631694505e146104cb57806318160ddd146104fc5780631f53ac021461052357806322976e0d14610556576103c3565b806306fdde03146103c8578063095ea7b31461045257806313096a1a1461049f576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610db5565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104175781810151838201526020016103ff565b50505050905090810190601f1680156104445780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045e57600080fd5b5061048b6004803603604081101561047557600080fd5b506001600160a01b038135169060200135610e4b565b604080519115158252519081900360200190f35b3480156104ab57600080fd5b506104c9600480360360208110156104c257600080fd5b5035610e69565b005b3480156104d757600080fd5b506104e0610ec6565b604080516001600160a01b039092168252519081900360200190f35b34801561050857600080fd5b50610511610ed5565b60408051918252519081900360200190f35b34801561052f57600080fd5b506104c96004803603602081101561054657600080fd5b50356001600160a01b0316610edb565b34801561056257600080fd5b50610511610f55565b34801561057757600080fd5b5061048b6004803603606081101561058e57600080fd5b506001600160a01b03813581169160208101359091169060400135610f5b565b3480156105ba57600080fd5b506105c3610fe8565b6040805160ff9092168252519081900360200190f35b3480156105e557600080fd5b506104c9600480360360a08110156105fc57600080fd5b5080359060208101359060408101359060608101359060800135610ff1565b34801561062757600080fd5b5061048b6110b5565b34801561063c57600080fd5b506104c96004803603602081101561065357600080fd5b50356001600160a01b03166110c5565b34801561066f57600080fd5b5061048b6004803603604081101561068657600080fd5b506001600160a01b038135169060200135611286565b3480156106a857600080fd5b506105116112da565b3480156106bd57600080fd5b506104c9600480360360208110156106d457600080fd5b503515156112e0565b3480156106e957600080fd5b506104c96004803603602081101561070057600080fd5b50356001600160a01b0316611356565b34801561071c57600080fd5b5061048b6004803603602081101561073357600080fd5b50356001600160a01b03166113d2565b34801561074f57600080fd5b506104e06113e7565b34801561076457600080fd5b5061048b6113f6565b34801561077957600080fd5b506104c96004803603602081101561079057600080fd5b5035611406565b3480156107a357600080fd5b506104c9600480360360208110156107ba57600080fd5b50356001600160a01b0316611463565b3480156107d657600080fd5b5061048b600480360360208110156107ed57600080fd5b50356001600160a01b03166115e9565b34801561080957600080fd5b506104c96004803603602081101561082057600080fd5b503561160b565b34801561083357600080fd5b506104c96004803603602081101561084a57600080fd5b50356001600160a01b031661169e565b34801561086657600080fd5b506104c96004803603602081101561087d57600080fd5b50356001600160a01b0316611718565b34801561089957600080fd5b50610511611792565b3480156108ae57600080fd5b506104c9611798565b3480156108c357600080fd5b50610511600480360360208110156108da57600080fd5b50356001600160a01b03166118ec565b3480156108f657600080fd5b506104c961194e565b34801561090b57600080fd5b506104c96004803603602081101561092257600080fd5b50356119f0565b34801561093557600080fd5b506104e0611a69565b34801561094a57600080fd5b506104c96004803603602081101561096157600080fd5b50351515611a78565b34801561097657600080fd5b506104e0611ae3565b34801561098b57600080fd5b5061048b600480360360208110156109a257600080fd5b50356001600160a01b0316611af2565b3480156109be57600080fd5b506104c9600480360360208110156109d557600080fd5b5035611b10565b3480156109e857600080fd5b506104e0611bbe565b3480156109fd57600080fd5b506104e0611bcd565b348015610a1257600080fd5b506103dd611bdc565b348015610a2757600080fd5b506104c960048036036020811015610a3e57600080fd5b50351515611c3d565b348015610a5357600080fd5b50610511611cb3565b348015610a6857600080fd5b5061048b60048036036040811015610a7f57600080fd5b506001600160a01b038135169060200135611cb9565b348015610aa157600080fd5b50610511611d27565b348015610ab657600080fd5b5061048b60048036036040811015610acd57600080fd5b506001600160a01b038135169060200135611d2d565b348015610aef57600080fd5b50610511611d41565b348015610b0457600080fd5b506104c960048036036020811015610b1b57600080fd5b50356001600160a01b0316611d47565b348015610b3757600080fd5b5061048b611ddb565b348015610b4c57600080fd5b506104c960048036036040811015610b6357600080fd5b506001600160a01b0381351690602001351515611deb565b348015610b8757600080fd5b50610511611e6e565b348015610b9c57600080fd5b506104c960048036036020811015610bb357600080fd5b50351515611e74565b348015610bc857600080fd5b506104c9611eee565b348015610bdd57600080fd5b506104c960048036036020811015610bf457600080fd5b50351515611f7f565b348015610c0957600080fd5b5061048b61202a565b348015610c1e57600080fd5b50610511612033565b348015610c3357600080fd5b5061048b612039565b348015610c4857600080fd5b5061048b60048036036020811015610c5f57600080fd5b50356001600160a01b0316612049565b348015610c7b57600080fd5b5061051160048036036040811015610c9257600080fd5b506001600160a01b038135811691602001351661205e565b348015610cb657600080fd5b506104e0612089565b348015610ccb57600080fd5b506104c960048036036020811015610ce257600080fd5b50356001600160a01b0316612098565b348015610cfe57600080fd5b506104c960048036036020811015610d1557600080fd5b50356001600160a01b0316612111565b348015610d3157600080fd5b5061048b61219f565b348015610d4657600080fd5b5061048b60048036036020811015610d5d57600080fd5b50356001600160a01b03166121af565b348015610d7957600080fd5b506104c960048036036020811015610d9057600080fd5b50356001600160a01b03166121c4565b348015610dac57600080fd5b506105116122bc565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e415780601f10610e1657610100808354040283529160200191610e41565b820191906000526020600020905b815481529060010190602001808311610e2457829003601f168201915b5050505050905090565b6000610e5f610e586122c2565b84846122c6565b5060015b92915050565b610e716122c2565b6000546001600160a01b03908116911614610ec1576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b602755565b6025546001600160a01b031681565b600c5490565b610ee36122c2565b6000546001600160a01b03908116911614610f33576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b602280546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b6000610f688484846123b2565b610fde84610f746122c2565b610fd985604051806060016040528060288152602001613ca3602891396001600160a01b038a16600090815260046020526040812090610fb26122c2565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6129a316565b6122c6565b5060019392505050565b60135460ff1690565b610ff96122c2565b6000546001600160a01b03908116911614611049576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b61038481838587890101010111156110925760405162461bcd60e51b815260040180806020018281038252602d815260200180613c0c602d913960400191505060405180910390fd5b601494909455601883905560168290556017819055601984905591010101601a55565b602654600160c01b900460ff1681565b6110cd6122c2565b6000546001600160a01b0390811691161461111d576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1661118a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600b5481101561128257816001600160a01b0316600b82815481106111ae57fe5b6000918252602090912001546001600160a01b0316141561127a57600b805460001981019081106111db57fe5b600091825260209091200154600b80546001600160a01b03909216918390811061120157fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600a90925220805460ff19169055600b80548061125357fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611282565b60010161118d565b5050565b6000610e5f6112936122c2565b84610fd985600460006112a46122c2565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff612a3a16565b60145481565b6112e86122c2565b6000546001600160a01b03908116911614611338576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b60268054911515600160c01b0260ff60c01b19909216919091179055565b61135e6122c2565b6000546001600160a01b039081169116146113ae576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b60066020526000908152604090205460ff1681565b6026546001600160a01b031681565b602654600160a81b900460ff1681565b61140e6122c2565b6000546001600160a01b0390811691161461145e576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b602855565b61146b6122c2565b6000546001600160a01b039081169116146114bb576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1615611529576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526002602052604090205415611583576001600160a01b03811660009081526002602052604090205461156990612a9b565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6001600160a01b03811660009081526005602052604090205460ff165b919050565b6116136122c2565b6000546001600160a01b03908116911614611663576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b609681101561167157600080fd5b6116988161168c612710600c54612afa90919063ffffffff16565b9063ffffffff612b3c16565b60105550565b6116a66122c2565b6000546001600160a01b039081169116146116f6576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b602180546001600160a01b0319166001600160a01b0392909216919091179055565b6117206122c2565b6000546001600160a01b03908116911614611770576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b602380546001600160a01b0319166001600160a01b0392909216919091179055565b60185481565b6117a06122c2565b6000546001600160a01b039081169116146117f0576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b601654601954479160009161182f9161180f919063ffffffff612a3a16565b60165461182390859063ffffffff612b3c16565b9063ffffffff612afa16565b9050600061186161184d601654601954612a3a90919063ffffffff16565b60195461182390869063ffffffff612b3c16565b905080156118a5576022546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156118a3573d6000803e3d6000fd5b505b81156118e7576021546040516001600160a01b039091169083156108fc029084906000818181858888f193505050501580156118e5573d6000803e3d6000fd5b505b505050565b6001600160a01b0381166000908152600a602052604081205460ff161561192c57506001600160a01b038116600090815260036020526040902054611606565b6001600160a01b038216600090815260026020526040902054610e6390612a9b565b6119566122c2565b6000546001600160a01b039081169116146119a6576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6119f86122c2565b6000546001600160a01b03908116911614611a48576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b611a638161168c612710600c54612afa90919063ffffffff16565b600f5550565b6021546001600160a01b031681565b611a806122c2565b6000546001600160a01b03908116911614611ad0576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b602a805460ff1916911515919091179055565b6020546001600160a01b031681565b6001600160a01b03166000908152600a602052604090205460ff1690565b6026805460ff60a01b1916600160a01b179055611b2b6122c2565b6000546001600160a01b03908116911614611b7b576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6000611b86306118ec565b90506000611ba18361168c84620186a063ffffffff612afa16565b9050611bac81612b95565b50506026805460ff60a01b1916905550565b6000546001600160a01b031690565b6022546001600160a01b031681565b60128054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e415780601f10610e1657610100808354040283529160200191610e41565b611c456122c2565b6000546001600160a01b03908116911614611c95576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b60268054911515600160c81b0260ff60c81b19909216919091179055565b600e5490565b6000610e5f611cc66122c2565b84610fd985604051806060016040528060258152602001613d5d6025913960046000611cf06122c2565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6129a316565b601f5481565b6000610e5f611d3a6122c2565b84846123b2565b60195481565b611d4f6122c2565b6000546001600160a01b03908116911614611d9f576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6001600160a01b031660009081526007602090815260408083208054600160ff1991821681179092556008909352922080549091169091179055565b602654600160b01b900460ff1681565b611df36122c2565b6000546001600160a01b03908116911614611e43576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60175481565b611e7c6122c2565b6000546001600160a01b03908116911614611ecc576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b60268054911515600160b81b0260ff60b81b1990921691909117905543602455565b6026805460ff60a01b1916600160a01b179055611f096122c2565b6000546001600160a01b03908116911614611f59576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6000611f64306118ec565b9050611f6f81612b95565b506026805460ff60a01b19169055565b611f876122c2565b6000546001600160a01b03908116911614611fd7576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b60268054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b602a5460ff1681565b60245481565b602654600160c81b900460ff1681565b60086020526000908152604090205460ff1681565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6023546001600160a01b031681565b6120a06122c2565b6000546001600160a01b039081169116146120f0576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19169055565b6121196122c2565b6000546001600160a01b03908116911614612169576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760209081526040808320805460ff19908116909155600890925290912080549091169055565b602654600160b81b900460ff1681565b60096020526000908152604090205460ff1681565b6121cc6122c2565b6000546001600160a01b0390811691161461221c576040805162461bcd60e51b81526020600482018190526024820152600080516020613ccb833981519152604482015290519081900360640190fd5b6001600160a01b0381166122615760405162461bcd60e51b8152600401808060200182810382526026815260200180613bc46026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60105481565b3390565b6001600160a01b03831661230b5760405162461bcd60e51b8152600401808060200182810382526024815260200180613d396024913960400191505060405180910390fd5b6001600160a01b0382166123505760405162461bcd60e51b8152600401808060200182810382526022815260200180613bea6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166123f75760405162461bcd60e51b8152600401808060200182810382526025815260200180613d146025913960400191505060405180910390fd5b6001600160a01b03821661243c5760405162461bcd60e51b8152600401808060200182810382526023815260200180613b776023913960400191505060405180910390fd5b6000811161247b5760405162461bcd60e51b8152600401808060200182810382526029815260200180613ceb6029913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff16156124df576040805162461bcd60e51b8152602060048201526013602482015272165bdd49dc99481a5b88189b1858dadb1a5cdd606a1b604482015290519081900360640190fd5b60245443111580156124fe57506026546001600160a01b038481169116145b801561251857506025546001600160a01b03838116911614155b801561252d57506001600160a01b0382163014155b15612556576001600160a01b0382166000908152600660205260409020805460ff191660011790555b602654600160c01b900460ff161561288a576001600160a01b03821660009081526008602052604090205460ff161580156125aa57506001600160a01b03821660009081526005602052604090205460ff16155b80156125cf57506125b9611bbe565b6001600160a01b0316836001600160a01b031614155b80156125f457506125de611bbe565b6001600160a01b0316826001600160a01b031614155b801561260e57506026546001600160a01b03838116911614155b1561268457600f5481111561265d576040805162461bcd60e51b815260206004820152601060248201526f4f76657220746865204d61782062757960801b604482015290519081900360640190fd5b60105461267961266c846118ec565b839063ffffffff612a3a16565b111561268457600080fd5b61268c611bbe565b6001600160a01b0316836001600160a01b0316141580156126c657506126b0611bbe565b6001600160a01b0316826001600160a01b031614155b80156126da57506001600160a01b03821615155b80156126f157506001600160a01b03821661dead14155b80156127075750602654600160a01b900460ff16155b1561288a57602654600160b81b900460ff166127c9576001600160a01b03831660009081526005602052604090205460ff168061275c57506001600160a01b03821660009081526005602052604090205460ff165b8061277f57506001600160a01b03821660009081526007602052604090205460ff165b6127c9576040805162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015290519081900360640190fd5b602a5460ff161561288a576127dc611bbe565b6001600160a01b0316826001600160a01b03161415801561280b57506025546001600160a01b03838116911614155b801561282557506026546001600160a01b03838116911614155b1561288a573260009081526029602052604090205443116128775760405162461bcd60e51b8152600401808060200182810382526049815260200180613c396049913960600191505060405180910390fd5b3260009081526029602052604090204390555b60006128b5601e546128a9601d54601c54612a3a90919063ffffffff16565b9063ffffffff612a3a16565b60275460265491925082101590600160a01b900460ff161580156128e757506026546001600160a01b03868116911614155b80156128fc5750602654600160a81b900460ff165b80156129055750805b1561291257612912612d3b565b6001600160a01b03851660009081526005602052604090205460019060ff168061295457506001600160a01b03851660009081526005602052604090205460ff165b8061298657506026546001600160a01b0387811691161480159061298657506026546001600160a01b03868116911614155b1561298f575060005b61299b8686868461307e565b505050505050565b60008184841115612a325760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129f75781810151838201526020016129df565b50505050905090810190601f168015612a245780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015612a94576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000600d54821115612ade5760405162461bcd60e51b815260040180806020018281038252602a815260200180613b9a602a913960400191505060405180910390fd5b6000612ae86131ec565b9050612a94838263ffffffff612afa16565b6000612a9483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613215565b600082612b4b57506000610e63565b82820282848281612b5857fe5b0414612a945760405162461bcd60e51b8152600401808060200182810382526021815260200180613c826021913960400191505060405180910390fd5b60408051600280825260608083018452926020830190803883390190505090503081600081518110612bc357fe5b6001600160a01b03928316602091820292909201810191909152602554604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612c1757600080fd5b505afa158015612c2b573d6000803e3d6000fd5b505050506040513d6020811015612c4157600080fd5b5051815182906001908110612c5257fe5b6001600160a01b039283166020918202929092010152602554612c7891309116846122c6565b60255460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015612cfe578181015183820152602001612ce6565b505050509050019650505050505050600060405180830381600087803b158015612d2757600080fd5b505af115801561299b573d6000803e3d6000fd5b6026805460ff60a01b1916600160a01b179055601d54601c54601e54600092612d6f9290916128a99163ffffffff612a3a16565b60265490915060009081908190600160c81b900460ff168015612da45750602754612da190601463ffffffff612b3c16565b84115b15612e4657612dc4601361168c6014601e54612afa90919063ffffffff16565b601e54909350612dda908463ffffffff61327a16565b601e55601d54612df89060139061168c90601463ffffffff612afa16565b601d54909250612e0e908363ffffffff61327a16565b601d55601c54612e2c9060139061168c90601463ffffffff612afa16565b601c54909150612e42908263ffffffff61327a16565b601c555b601c54600090612e5d90600263ffffffff612afa16565b90506000612e7682601c5461327a90919063ffffffff16565b90506000612e95601e546128a9601d5486612a3a90919063ffffffff16565b905047612ea182612b95565b6000612eb3478363ffffffff61327a16565b90506000612ecb84611823848963ffffffff612b3c16565b90506000612ee885611823601d5486612b3c90919063ffffffff16565b90506000612f0c82612f00868663ffffffff61327a16565b9063ffffffff61327a16565b90506000612f26600661182385600263ffffffff612b3c16565b90506000612f40600661182386600463ffffffff612b3c16565b90508415612f9357612f5289866132bc565b604080518b8152602081018790528082018b905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b8315613010576021546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612fd3573d6000803e3d6000fd5b506023546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561300e573d6000803e3d6000fd5b505b8215613052576022546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015613050573d6000803e3d6000fd5b505b505050601c97909755505050601d94909455505050601e9190915550506026805460ff60a01b19169055565b8061308b5761308b61339b565b6001600160a01b0384166000908152600a602052604090205460ff1680156130cc57506001600160a01b0383166000908152600a602052604090205460ff16155b156130e1576130dc8484846133cd565b6131df565b6001600160a01b0384166000908152600a602052604090205460ff1615801561312257506001600160a01b0383166000908152600a602052604090205460ff165b15613132576130dc848484613504565b6001600160a01b0384166000908152600a602052604090205460ff1615801561317457506001600160a01b0383166000908152600a602052604090205460ff16155b15613184576130dc8484846135bf565b6001600160a01b0384166000908152600a602052604090205460ff1680156131c457506001600160a01b0383166000908152600a602052604090205460ff165b156131d4576130dc848484613609565b6131df8484846135bf565b806118e5576118e5613688565b60008060006131f9613696565b909250905061320e828263ffffffff612afa16565b9250505090565b600081836132645760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156129f75781810151838201526020016129df565b50600083858161327057fe5b0495945050505050565b6000612a9483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506129a3565b6025546132d49030906001600160a01b0316846122c6565b6025546001600160a01b031663f305d7198230856000806132f3611bbe565b426040518863ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b03166001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561337057600080fd5b505af1158015613384573d6000803e3d6000fd5b50505050506040513d60608110156118e557600080fd5b6014541580156133ab5750601a54155b156133b5576133cb565b60148054601555601a8054601b55600091829055555b565b6000806000806000806133df8761380b565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150613417908863ffffffff61327a16565b6001600160a01b038a1660009081526003602090815260408083209390935560029052205461344c908763ffffffff61327a16565b6001600160a01b03808b1660009081526002602052604080822093909355908a1681522054613481908663ffffffff612a3a16565b6001600160a01b0389166000908152600260205260409020556134a4818a61385a565b6134ae8483613956565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806135168761380b565b6001600160a01b038f16600090815260026020526040902054959b5093995091975095509350915061354e908763ffffffff61327a16565b6001600160a01b03808b16600090815260026020908152604080832094909455918b1681526003909152205461358a908463ffffffff612a3a16565b6001600160a01b038916600090815260036020908152604080832093909355600290522054613481908663ffffffff612a3a16565b6000806000806000806135d18761380b565b6001600160a01b038f16600090815260026020526040902054959b5093995091975095509350915061344c908763ffffffff61327a16565b60008060008060008061361b8761380b565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150613653908863ffffffff61327a16565b6001600160a01b038a1660009081526003602090815260408083209390935560029052205461354e908763ffffffff61327a16565b601554601455601b54601a55565b600d54600c546000918291825b600b548110156137d3578260026000600b84815481106136bf57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061372457508160036000600b84815481106136fd57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561373b57600d54600c5494509450505050613807565b61378160026000600b848154811061374f57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff61327a16565b92506137c960036000600b848154811061379757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff61327a16565b91506001016136a3565b50600c54600d546137e99163ffffffff612afa16565b82101561380157600d54600c54935093505050613807565b90925090505b9091565b60008060008060008060008060006138228a613986565b92509250925060008060006138408d868661383b6131ec565b6139c8565b919f909e50909c50959a5093985091965092945050505050565b601a5461386657611282565b6000613883601a5461182360165486612b3c90919063ffffffff16565b905060006138a2601a5461182360195487612b3c90919063ffffffff16565b905060006138c1601a5461182360175488612b3c90919063ffffffff16565b905060006138db82612f0085818a8963ffffffff61327a16565b6020549091506138f69086906001600160a01b031684613a30565b601c54613909908263ffffffff612a3a16565b601c55601d5461391f908563ffffffff612a3a16565b601d55601e54613935908463ffffffff612a3a16565b601e5561299b8530613951866128a9868a63ffffffff612a3a16565b613a30565b600d54613969908363ffffffff61327a16565b600d55600e5461397f908263ffffffff612a3a16565b600e555050565b60008060008061399585613b3c565b905060006139a286613b59565b905060006139ba82612f00898663ffffffff61327a16565b979296509094509092505050565b60008080806139dd888663ffffffff612b3c16565b905060006139f1888763ffffffff612b3c16565b90506000613a05888863ffffffff612b3c16565b90506000613a1d82612f00868663ffffffff61327a16565b939b939a50919850919650505050505050565b6000613a3a6131ec565b90506000613a4e838363ffffffff612b3c16565b6001600160a01b038516600090815260026020526040902054909150613a7a908263ffffffff612a3a16565b6001600160a01b038516600090815260026020908152604080832093909355600a9052205460ff1615613aea576001600160a01b038416600090815260036020526040902054613ad0908463ffffffff612a3a16565b6001600160a01b0385166000908152600360205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050565b6000610e636103e861182360145485612b3c90919063ffffffff16565b6000610e636103e8611823601a5485612b3c90919063ffffffff1656fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f74616c207461782073686f756c64206e6f74206d6f7265207468616e2039302520283930302f31303030295f7472616e736665723a3a205472616e736665722044656c617920656e61626c65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b20616c6c6f7765642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122013031a48c2db80092e42bb6fc3a20f106db9d707abcc2759fd87163487efb4b864736f6c63430006020033

Deployed Bytecode Sourcemap

34260:25565:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37940:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37940: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;37940:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38852:161;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38852:161:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;38852:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43161:119;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43161:119:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43161:119:0;;:::i;:::-;;36154:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36154:41:0;;;:::i;:::-;;;;-1:-1:-1;;;;;36154:41:0;;;;;;;;;;;;;;38217:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38217:95:0;;;:::i;:::-;;;;;;;;;;;;;;;;41665:98;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41665:98:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41665:98:0;-1:-1:-1;;;;;41665:98:0;;:::i;35448:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35448:33:0;;;:::i;39021:313::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39021:313:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;39021:313:0;;;;;;;;;;;;;;;;;:::i;38126:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38126:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41923:558;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41923:558:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;41923:558:0;;;;;;;;;;;;;;;;;;;;;;:::i;36382:32::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36382:32:0;;;:::i;40695:479::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40695:479:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40695:479:0;-1:-1:-1;;;;;40695:479:0;;:::i;39342:218::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39342:218:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;39342:218:0;;;;;;;;:::i;35361:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35361:26:0;;;:::i;42672:103::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42672:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42672:103:0;;;;:::i;41182:111::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41182:111:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41182:111:0;-1:-1:-1;;;;;41182:111:0;;:::i;34602:51::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34602:51:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34602:51:0;-1:-1:-1;;;;;34602:51:0;;:::i;36202:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36202:28:0;;;:::i;36271:40::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36271:40:0;;;:::i;43286:118::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43286:118:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43286:118:0;;:::i;40354:333::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40354:333:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40354:333:0;-1:-1:-1;;;;;40354:333:0;;:::i;49461:123::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49461:123:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49461:123:0;-1:-1:-1;;;;;49461:123:0;;:::i;43546:163::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43546:163:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43546:163:0;;:::i;41433:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41433:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41433:110:0;-1:-1:-1;;;;;41433:110:0;;:::i;41551:106::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41551:106:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41551:106:0;-1:-1:-1;;;;;41551:106:0;;:::i;35522:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35522:33:0;;;:::i;48716:465::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48716:465:0;;;:::i;38320:198::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38320:198:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38320:198:0;-1:-1:-1;;;;;38320:198:0;;:::i;26281:148::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26281:148:0;;;:::i;43410:130::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43410:130:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43410:130:0;;:::i;36014:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36014:30:0;;;:::i;43045:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43045:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43045:110:0;;;;:::i;35937:70::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35937:70:0;;;:::i;39845:120::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39845:120:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39845:120:0;-1:-1:-1;;;;;39845:120:0;;:::i;49189:264::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49189:264:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49189:264:0;;:::i;25639:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25639:79:0;;;:::i;36051:24::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36051:24:0;;;:::i;38031:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38031:87:0;;;:::i;42926:111::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42926:111:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42926:111:0;;;;:::i;39973:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39973:111:0;;;:::i;39568:269::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39568:269:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;39568:269:0;;;;;;;;:::i;35896:32::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35896:32:0;;;:::i;38526:167::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38526:167:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;38526:167:0;;;;;;;;:::i;35562:27::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35562:27:0;;;:::i;48268:122::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48268:122:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48268:122:0;-1:-1:-1;;;;;48268:122:0;;:::i;36318:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36318:23:0;;;:::i;41771:144::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41771:144:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;41771:144:0;;;;;;;;;;:::i;35488:27::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35488:27:0;;;:::i;42783:135::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42783:135:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42783:135:0;;;;:::i;48539:169::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48539:169:0;;;:::i;42489:171::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42489:171:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42489:171:0;;;;:::i;36929:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36929:39:0;;;:::i;36119:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36119:26:0;;;:::i;36421:34::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36421:34:0;;;:::i;34707:50::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34707:50:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34707:50:0;-1:-1:-1;;;;;34707:50:0;;:::i;38701:143::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38701:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;38701:143:0;;;;;;;;;;:::i;36082:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36082:30:0;;;:::i;41305:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41305:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41305:110:0;-1:-1:-1;;;;;41305:110:0;;:::i;48398:133::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48398:133:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48398:133:0;-1:-1:-1;;;;;48398:133:0;;:::i;36348:27::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36348:27:0;;;:::i;34768:46::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34768:46:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34768:46:0;-1:-1:-1;;;;;34768:46:0;;:::i;26584:244::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26584:244:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26584:244:0;-1:-1:-1;;;;;26584:244:0;;:::i;35179:54::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35179:54:0;;;:::i;37940:83::-;38010:5;38003:12;;;;;;;;-1:-1:-1;;38003:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37977:13;;38003:12;;38010:5;;38003:12;;38010:5;38003:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37940:83;:::o;38852:161::-;38927:4;38944:39;38953:12;:10;:12::i;:::-;38967:7;38976:6;38944:8;:39::i;:::-;-1:-1:-1;39001:4:0;38852:161;;;;;:::o;43161:119::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;43234:29:::1;:38:::0;43161:119::o;36154:41::-;;;-1:-1:-1;;;;;36154:41:0;;:::o;38217:95::-;38297:7;;38217:95;:::o;41665:98::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;41736:9:::1;:19:::0;;-1:-1:-1;;;;;;41736:19:0::1;-1:-1:-1::0;;;;;41736:19:0;;;::::1;::::0;;;::::1;::::0;;41665:98::o;35448:33::-;;;;:::o;39021:313::-;39119:4;39136:36;39146:6;39154:9;39165:6;39136:9;:36::i;:::-;39183:121;39192:6;39200:12;:10;:12::i;:::-;39214:89;39252:6;39214:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39214:19:0;;;;;;:11;:19;;;;;;39234:12;:10;:12::i;:::-;-1:-1:-1;;;;;39214:33:0;;;;;;;;;;;;-1:-1:-1;39214:33:0;;;:89;;:37;:89;:::i;:::-;39183:8;:121::i;:::-;-1:-1:-1;39322:4:0;39021:313;;;;;:::o;38126:83::-;38192:9;;;;38126:83;:::o;41923:558::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;42157:3:::1;42147:6;42137:7;42122:12;42107;42089:15;:30;:45;:55;:64;:71;;42081:129;;;;-1:-1:-1::0;;;42081:129:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42221:7;:25:::0;;;;42257:13:::1;:28:::0;;;42296:13:::1;:28:::0;;;42335:8:::1;:18:::0;;;42364:7:::1;:16:::0;;;42423:29;::::1;:40;:50;42393:27;:80:::0;41923:558::o;36382:32::-;;;-1:-1:-1;;;36382:32:0;;;;;:::o;40695:479::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40777:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;40769:60;;;::::0;;-1:-1:-1;;;40769:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40845:9;40840:327;40864:9;:16:::0;40860:20;::::1;40840:327;;;40922:7;-1:-1:-1::0;;;;;40906:23:0::1;:9;40916:1;40906:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;40906:12:0::1;:23;40902:254;;;40965:9;40975:16:::0;;-1:-1:-1;;40975:20:0;;;40965:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;40950:9:::1;:12:::0;;-1:-1:-1;;;;;40965:31:0;;::::1;::::0;40960:1;;40950:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;40950:46:0::1;-1:-1:-1::0;;;;;40950:46:0;;::::1;;::::0;;41015:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;41054:11:::1;:20:::0;;;;:28;;-1:-1:-1;;41054:28:0::1;::::0;;41101:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;41101:15:0;;;;;-1:-1:-1;;;;;;41101:15:0::1;::::0;;;;;41135:5:::1;;40902:254;40882:3;;40840:327;;;;40695:479:::0;:::o;39342:218::-;39430:4;39447:83;39456:12;:10;:12::i;:::-;39470:7;39479:50;39518:10;39479:11;:25;39491:12;:10;:12::i;:::-;-1:-1:-1;;;;;39479:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;39479:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;35361:26::-;;;;:::o;42672:103::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;42743:13:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;42743:24:0::1;-1:-1:-1::0;;;;42743:24:0;;::::1;::::0;;;::::1;::::0;;42672:103::o;41182:111::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41251:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;41251:34:0::1;41281:4;41251:34;::::0;;41182:111::o;34602:51::-;;;;;;;;;;;;;;;:::o;36202:28::-;;;-1:-1:-1;;;;;36202:28:0;;:::o;36271:40::-;;;-1:-1:-1;;;36271:40:0;;;;;:::o;43286:118::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;43366:21:::1;:30:::0;43286:118::o;40354:333::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40437:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;40436:21;40428:61;;;::::0;;-1:-1:-1;;;40428:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;40503:16:0;::::1;40522:1;40503:16:::0;;;:7:::1;:16;::::0;;;;;:20;40500:108:::1;;-1:-1:-1::0;;;;;40579:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;40559:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;40540:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;40500:108:::1;-1:-1:-1::0;;;;;40618:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;40618:27:0::1;40641:4;40618:27:::0;;::::1;::::0;;;40656:9:::1;27:10:-1::0;;23:18;;::::1;45:23:::0;;40656::0;;;;::::1;::::0;;-1:-1:-1;;;;;;40656:23:0::1;::::0;;::::1;::::0;;40354:333::o;49461:123::-;-1:-1:-1;;;;;49549:27:0;;49525:4;49549:27;;;:18;:27;;;;;;;;49461:123;;;;:::o;43546:163::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;43640:3:::1;43626:10;:17;;43618:26;;;::::0;::::1;;43667:34;43690:10;43667:18;43679:5;43667:7;;:11;;:18;;;;:::i;:::-;:22:::0;:34:::1;:22;:34;:::i;:::-;43655:9;:46:::0;-1:-1:-1;43546:163:0:o;41433:110::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;41510:15:::1;:25:::0;;-1:-1:-1;;;;;;41510:25:0::1;-1:-1:-1::0;;;;;41510:25:0;;;::::1;::::0;;;::::1;::::0;;41433:110::o;41551:106::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;41624:15:::1;:25:::0;;-1:-1:-1;;;;;;41624:25:0::1;-1:-1:-1::0;;;;;41624:25:0;;;::::1;::::0;;;::::1;::::0;;41551:106::o;35522:33::-;;;;:::o;48716:465::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;48886:13:::1;::::0;48874:7:::1;::::0;48787:21:::1;::::0;48770:14:::1;::::0;48844:57:::1;::::0;48874:26:::1;::::0;:7;:26:::1;:11;:26;:::i;:::-;48855:13;::::0;48844:25:::1;::::0;:6;;:25:::1;:10;:25;:::i;:::-;:29:::0;:57:::1;:29;:57;:::i;:::-;48821:80;;48912:14;48929:51;48953:26;48965:13;;48953:7;;:11;;:26;;;;:::i;:::-;48940:7;::::0;48929:19:::1;::::0;:6;;:19:::1;:10;:19;:::i;:51::-;48912:68:::0;-1:-1:-1;49021:10:0;;49018:63:::1;;49054:9;::::0;49046:35:::1;::::0;-1:-1:-1;;;;;49054:9:0;;::::1;::::0;49046:35;::::1;;;::::0;49074:6;;49054:9:::1;49046:35:::0;49054:9;49046:35;49074:6;49054:9;49046:35;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;49046:35:0;49018:63;49095:16:::0;;49092:81:::1;;49134:15;::::0;49126:47:::1;::::0;-1:-1:-1;;;;;49134:15:0;;::::1;::::0;49126:47;::::1;;;::::0;49160:12;;49134:15:::1;49126:47:::0;49134:15;49126:47;49160:12;49134:15;49126:47;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;49126:47:0;49092:81;25921:1;;;48716:465::o:0;38320:198::-;-1:-1:-1;;;;;38410:20:0;;38386:7;38410:20;;;:11;:20;;;;;;;;38406:49;;;-1:-1:-1;;;;;;38439:16:0;;;;;;:7;:16;;;;;;38432:23;;38406:49;-1:-1:-1;;;;;38493:16:0;;;;;;:7;:16;;;;;;38473:37;;:19;:37::i;26281:148::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;26388:1:::1;26372:6:::0;;26351:40:::1;::::0;-1:-1:-1;;;;;26372:6:0;;::::1;::::0;26351:40:::1;::::0;26388:1;;26351:40:::1;26419:1;26402:19:::0;;-1:-1:-1;;;;;;26402:19:0::1;::::0;;26281:148::o;43410:130::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;43498:34:::1;43521:10;43498:18;43510:5;43498:7;;:11;;:18;;;;:::i;:34::-;43484:11;:48:::0;-1:-1:-1;43410:130:0:o;36014:30::-;;;-1:-1:-1;;;;;36014:30:0;;:::o;43045:110::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;43116:20:::1;:31:::0;;-1:-1:-1;;43116:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43045:110::o;35937:70::-;;;-1:-1:-1;;;;;35937:70:0;;:::o;39845:120::-;-1:-1:-1;;;;;39937:20:0;39913:4;39937:20;;;:11;:20;;;;;;;;;39845:120::o;49189:264::-;37009:16;:23;;-1:-1:-1;;;;37009:23:0;-1:-1:-1;;;37009:23:0;;;25861:12:::1;:10;:12::i;:::-;25851:6;::::0;-1:-1:-1;;;;;25851:6:0;;::::1;:22:::0;::::1;;25843:67;;;::::0;;-1:-1:-1;;;25843:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;::::1;;49280:23:::2;49306:24;49324:4;49306:9;:24::i;:::-;49280:50:::0;-1:-1:-1;49341:19:0::2;49363:42;49394:10:::0;49363:26:::2;49280:50:::0;49383:5:::2;49363:26;:19;:26;:::i;:42::-;49341:64;;49416:29;49433:11;49416:16;:29::i;:::-;-1:-1:-1::0;;37055:16:0;:24;;-1:-1:-1;;;;37055:24:0;;;-1:-1:-1;49189:264:0:o;25639:79::-;25677:7;25704:6;-1:-1:-1;;;;;25704:6:0;25639:79;:::o;36051:24::-;;;-1:-1:-1;;;;;36051:24:0;;:::o;38031:87::-;38103:7;38096:14;;;;;;;;-1:-1:-1;;38096:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38070:13;;38096:14;;38103:7;;38096:14;;38103:7;38096:14;;;;;;;;;;;;;;;;;;;;;;;;42926:111;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;43003:15:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;43003:26:0::1;-1:-1:-1::0;;;;43003:26:0;;::::1;::::0;;;::::1;::::0;;42926:111::o;39973:::-;40053:23;;39973:111;:::o;39568:269::-;39661:4;39678:129;39687:12;:10;:12::i;:::-;39701:7;39710:96;39749:15;39710:96;;;;;;;;;;;;;;;;;:11;:25;39722:12;:10;:12::i;:::-;-1:-1:-1;;;;;39710:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;39710:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;35896:32::-;;;;:::o;38526:167::-;38604:4;38621:42;38631:12;:10;:12::i;:::-;38645:9;38656:6;38621:9;:42::i;35562:27::-;;;;:::o;48268:122::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48326:10:0::1;;::::0;;;:6:::1;:10;::::0;;;;;;;:17;;48339:4:::1;-1:-1:-1::0;;48326:17:0;;::::1;::::0;::::1;::::0;;;48354::::1;:21:::0;;;;;:28;;;;::::1;::::0;;::::1;::::0;;48268:122::o;36318:23::-;;;-1:-1:-1;;;36318:23:0;;;;;:::o;41771:144::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41866:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:41;;-1:-1:-1;;41866:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41771:144::o;35488:27::-;;;;:::o;42783:135::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;42855:7:::1;:18:::0;;;::::1;;-1:-1:-1::0;;;42855:18:0::1;-1:-1:-1::0;;;;42855:18:0;;::::1;::::0;;;::::1;::::0;;42898:12:::1;42884:11;:26:::0;42783:135::o;48539:169::-;37009:16;:23;;-1:-1:-1;;;;37009:23:0;-1:-1:-1;;;37009:23:0;;;25861:12:::1;:10;:12::i;:::-;25851:6;::::0;-1:-1:-1;;;;;25851:6:0;;::::1;:22:::0;::::1;;25843:67;;;::::0;;-1:-1:-1;;;25843:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;::::1;;48606:23:::2;48632:24;48650:4;48632:9;:24::i;:::-;48606:50;;48667:33;48684:15;48667:16;:33::i;:::-;-1:-1:-1::0;37055:16:0;:24;;-1:-1:-1;;;;37055:24:0;;;48539:169::o;42489:171::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;42566:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;42566:32:0;::::1;-1:-1:-1::0;;;;42566:32:0;;::::1;::::0;;;::::1;::::0;;;42614:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;42489:171:::0;:::o;36929:39::-;;;;;;:::o;36119:26::-;;;;:::o;36421:34::-;;;-1:-1:-1;;;36421:34:0;;;;;:::o;34707:50::-;;;;;;;;;;;;;;;:::o;38701:143::-;-1:-1:-1;;;;;38809:18:0;;;38782:7;38809:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;38701:143::o;36082:30::-;;;-1:-1:-1;;;;;36082:30:0;;:::o;41305:110::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41372:27:0::1;41402:5;41372:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;41372:35:0::1;::::0;;41305:110::o;48398:133::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48459:13:0::1;48475:5;48459:13:::0;;;:6:::1;:13;::::0;;;;;;;:21;;-1:-1:-1;;48459:21:0;;::::1;::::0;;;48491:17:::1;:24:::0;;;;;;:32;;;;::::1;::::0;;48398:133::o;36348:27::-;;;-1:-1:-1;;;36348:27:0;;;;;:::o;34768:46::-;;;;;;;;;;;;;;;:::o;26584:244::-;25861:12;:10;:12::i;:::-;25851:6;;-1:-1:-1;;;;;25851:6:0;;;:22;;;25843:67;;;;;-1:-1:-1;;;25843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25843:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26673:22:0;::::1;26665:73;;;;-1:-1:-1::0;;;26665:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26775:6;::::0;;26754:38:::1;::::0;-1:-1:-1;;;;;26754:38:0;;::::1;::::0;26775:6;::::1;::::0;26754:38:::1;::::0;::::1;26803:6;:17:::0;;-1:-1:-1;;;;;;26803:17:0::1;-1:-1:-1::0;;;;;26803:17:0;;;::::1;::::0;;;::::1;::::0;;26584:244::o;35179:54::-;;;;:::o;753:98::-;833:10;753:98;:::o;49592:337::-;-1:-1:-1;;;;;49685:19:0;;49677:68;;;;-1:-1:-1;;;49677:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49764:21:0;;49756:68;;;;-1:-1:-1;;;49756:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49837:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;49889:32;;;;;;;;;;;;;;;;;49592:337;;;:::o;49937:2673::-;-1:-1:-1;;;;;50059:18:0;;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50138:16:0;;50130:64;;;;-1:-1:-1;;;50130:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50222:1;50213:6;:10;50205:64;;;;-1:-1:-1;;;50205:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50288:24:0;;;;;;:18;:24;;;;;;;;:33;50280:65;;;;;-1:-1:-1;;;50280:65:0;;;;;;;;;;;;-1:-1:-1;;;50280:65:0;;;;;;;;;;;;;;;50375:11;;50359:12;:27;;:52;;;;-1:-1:-1;50398:13:0;;-1:-1:-1;;;;;50390:21:0;;;50398:13;;50390:21;50359:52;:86;;;;-1:-1:-1;50429:15:0;;-1:-1:-1;;;;;50415:30:0;;;50429:15;;50415:30;;50359:86;:109;;;;-1:-1:-1;;;;;;50449:19:0;;50463:4;50449:19;;50359:109;50356:172;;;-1:-1:-1;;;;;50487:22:0;;;;;;:18;:22;;;;;:29;;-1:-1:-1;;50487:29:0;50512:4;50487:29;;;50356:172;50542:13;;-1:-1:-1;;;50542:13:0;;;;50539:1166;;;-1:-1:-1;;;;;50575:21:0;;;;;;:17;:21;;;;;;;;50574:22;:49;;;;-1:-1:-1;;;;;;50601:22:0;;;;;;:18;:22;;;;;;;;50600:23;50574:49;:68;;;;;50635:7;:5;:7::i;:::-;-1:-1:-1;;;;;50627:15:0;:4;-1:-1:-1;;;;;50627:15:0;;;50574:68;:85;;;;;50652:7;:5;:7::i;:::-;-1:-1:-1;;;;;50646:13:0;:2;-1:-1:-1;;;;;50646:13:0;;;50574:85;:108;;;;-1:-1:-1;50669:13:0;;-1:-1:-1;;;;;50663:19:0;;;50669:13;;50663:19;;50574:108;50571:263;;;50721:11;;50711:6;:21;;50703:49;;;;;-1:-1:-1;;;50703:49:0;;;;;;;;;;;;-1:-1:-1;;;50703:49:0;;;;;;;;;;;;;;;50808:9;;50779:25;50790:13;50800:2;50790:9;:13::i;:::-;50779:6;;:25;:10;:25;:::i;:::-;:38;;50771:47;;;;;;50874:7;:5;:7::i;:::-;-1:-1:-1;;;;;50866:15:0;:4;-1:-1:-1;;;;;50866:15:0;;;:49;;;;;50908:7;:5;:7::i;:::-;-1:-1:-1;;;;;50902:13:0;:2;-1:-1:-1;;;;;50902:13:0;;;50866:49;:86;;;;-1:-1:-1;;;;;;50936:16:0;;;;50866:86;:128;;;;-1:-1:-1;;;;;;50973:21:0;;50987:6;50973:21;;50866:128;:166;;;;-1:-1:-1;51016:16:0;;-1:-1:-1;;;51016:16:0;;;;51015:17;50866:166;50844:850;;;51072:7;;-1:-1:-1;;;51072:7:0;;;;51068:154;;-1:-1:-1;;;;;51111:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;51139:22:0;;;;;;:18;:22;;;;;;;;51111:50;:64;;;-1:-1:-1;;;;;;51165:10:0;;;;;;:6;:10;;;;;;;;51111:64;51103:99;;;;;-1:-1:-1;;;51103:99:0;;;;;;;;;;;;-1:-1:-1;;;51103:99:0;;;;;;;;;;;;;;;51260:20;;;;51256:423;;;51314:7;:5;:7::i;:::-;-1:-1:-1;;;;;51308:13:0;:2;-1:-1:-1;;;;;51308:13:0;;;:47;;;;-1:-1:-1;51339:15:0;;-1:-1:-1;;;;;51325:30:0;;;51339:15;;51325:30;;51308:47;:79;;;;-1:-1:-1;51373:13:0;;-1:-1:-1;;;;;51359:28:0;;;51373:13;;51359:28;;51308:79;51304:356;;;51452:9;51423:39;;;;:28;:39;;;;;;51465:12;-1:-1:-1;51415:140:0;;;;-1:-1:-1;;;51415:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51611:9;51582:39;;;;:28;:39;;;;;51624:12;51582:54;;51304:356;51717:18;51738:72;51792:17;;51738:49;51763:23;;51738:20;;:24;;:49;;;;:::i;:::-;:53;:72;:53;:72;:::i;:::-;51862:29;;51921:16;;51717:93;;-1:-1:-1;51848:43:0;;;;-1:-1:-1;;;51921:16:0;;;;51920:17;:55;;;;-1:-1:-1;51962:13:0;;-1:-1:-1;;;;;51954:21:0;;;51962:13;;51954:21;;51920:55;:93;;;;-1:-1:-1;51992:21:0;;-1:-1:-1;;;51992:21:0;;;;51920:93;:129;;;;;52030:19;51920:129;51902:233;;;52107:16;:14;:16::i;:::-;-1:-1:-1;;;;;52343:24:0;;52216:12;52343:24;;;:18;:24;;;;;;52231:4;;52343:24;;;:50;;-1:-1:-1;;;;;;52371:22:0;;;;;;:18;:22;;;;;;;;52343:50;:100;;;-1:-1:-1;52406:13:0;;-1:-1:-1;;;;;52398:21:0;;;52406:13;;52398:21;;;;:44;;-1:-1:-1;52429:13:0;;-1:-1:-1;;;;;52423:19:0;;;52429:13;;52423:19;;52398:44;52340:146;;;-1:-1:-1;52469:5:0;52340:146;52564:38;52579:4;52584:2;52587:6;52594:7;52564:14;:38::i;:::-;49937:2673;;;;;;:::o;28001:192::-;28087:7;28123:12;28115:6;;;;28107:29;;;;-1:-1:-1;;;28107: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;28107:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;28159:5:0;;;28001:192::o;27098:181::-;27156:7;27188:5;;;27212:6;;;;27204:46;;;;;-1:-1:-1;;;27204:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27270:1;27098:181;-1:-1:-1;;;27098:181:0:o;40092:254::-;40159:7;40198;;40187;:18;;40179:73;;;;-1:-1:-1;;;40179:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40263:19;40286:10;:8;:10::i;:::-;40263:33;-1:-1:-1;40314:24:0;:7;40263:33;40314:24;:11;:24;:::i;29399:132::-;29457:7;29484:39;29488:1;29491;29484:39;;;;;;;;;;;;;;;;;:3;:39::i;28452:471::-;28510:7;28755:6;28751:47;;-1:-1:-1;28785:1:0;28778:8;;28751:47;28822:5;;;28826:1;28822;:5;:1;28846:5;;;;;:10;28838:56;;;;-1:-1:-1;;;28838:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55244:589;55394:16;;;55408:1;55394:16;;;55370:21;55394:16;;;;;55370:21;55394:16;;;;;105:10:-1;55394:16:0;88:34:-1;136:17;;-1:-1;55394:16:0;55370:40;;55439:4;55421;55426:1;55421:7;;;;;;;;-1:-1:-1;;;;;55421:23:0;;;:7;;;;;;;;;;:23;;;;55465:15;;:22;;;-1:-1:-1;;;55465:22:0;;;;:15;;;;;:20;;:22;;;;;55421:7;;55465:22;;;;;:15;:22;;;5:2:-1;;;;30:1;27;20:12;5:2;55465:22:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;55465:22:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55465:22:0;55455:7;;:4;;55460:1;;55455:7;;;;;;-1:-1:-1;;;;;55455:32:0;;;:7;;;;;;;;;:32;55532:15;;55500:62;;55517:4;;55532:15;55550:11;55500:8;:62::i;:::-;55601:15;;:224;;-1:-1:-1;;;55601:224:0;;;;;;;;:15;:224;;;;;;55779:4;55601:224;;;;;;55799:15;55601:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55601:15:0;;;;:66;;55682:11;;55752:4;;55779;55799:15;55601: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;55601:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55601:224:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;52618:2618:0;37009:16;:23;;-1:-1:-1;;;;37009:23:0;-1:-1:-1;;;37009:23:0;;;52755::::1;::::0;52729:20:::1;::::0;52707:17:::1;::::0;37009:23;;52707:72:::1;::::0;52755:23;;52707:43:::1;::::0;::::1;:21;:43;:::i;:72::-;52905:15;::::0;52677:102;;-1:-1:-1;52790:20:0::1;::::0;;;;;-1:-1:-1;;;52905:15:0;::::1;;;:78:::0;::::1;;;-1:-1:-1::0;52946:29:0::1;::::0;:37:::1;::::0;52980:2:::1;52946:37;:33;:37;:::i;:::-;52924:19;:59;52905:78;52901:533;;;53014:33;53044:2;53014:25;53036:2;53014:17;;:21;;:25;;;;:::i;:33::-;53082:17;::::0;52999:48;;-1:-1:-1;53082:35:0::1;::::0;52999:48;53082:35:::1;:21;:35;:::i;:::-;53062:17;:55:::0;53153:23:::1;::::0;:39:::1;::::0;53189:2:::1;::::0;53153:31:::1;::::0;53181:2:::1;53153:31;:27;:31;:::i;:39::-;53233:23;::::0;53132:60;;-1:-1:-1;53233:47:0::1;::::0;53132:60;53233:47:::1;:27;:47;:::i;:::-;53207:23;:73:::0;53310:20:::1;::::0;:36:::1;::::0;53343:2:::1;::::0;53310:28:::1;::::0;53335:2:::1;53310:28;:24;:28;:::i;:36::-;53384:20;::::0;53295:51;;-1:-1:-1;53384:38:0::1;::::0;53295:51;53384:38:::1;:24;:38;:::i;:::-;53361:20;:61:::0;52901:533:::1;53511:20;::::0;53496:12:::1;::::0;53511:28:::1;::::0;53537:1:::1;53511:28;:25;:28;:::i;:::-;53496:43;;53550:17;53570:30;53595:4;53570:20;;:24;;:30;;;;:::i;:::-;53550:50;;53613:18;53634:56;53672:17;;53634:33;53643:23;;53634:4;:8;;:33;;;;:::i;:56::-;53613:77:::0;-1:-1:-1;53991:21:0::1;54057:28;53613:77:::0;54057:16:::1;:28::i;:::-;54216:13;54232:41;:21;54258:14:::0;54232:41:::1;:25;:41;:::i;:::-;54216:57:::0;-1:-1:-1;54286:17:0::1;54306:31;54326:10:::0;54306:15:::1;54216:57:::0;54316:4;54306:15:::1;:9;:15;:::i;:31::-;54286:51;;54348:20;54371:50;54410:10;54371:34;54381:23;;54371:5;:9;;:34;;;;:::i;:50::-;54348:73:::0;-1:-1:-1;54432:14:0::1;54449:38;54348:73:::0;54449:20:::1;:5:::0;54459:9;54449:20:::1;:9;:20;:::i;:::-;:24:::0;:38:::1;:24;:38;:::i;:::-;54432:55:::0;-1:-1:-1;54498:16:0::1;54517:26;54541:1;54517:19;:12:::0;54534:1:::1;54517:19;:16;:19;:::i;:26::-;54498:45:::0;-1:-1:-1;54554:20:0::1;54577:26;54601:1;54577:19;:12:::0;54594:1:::1;54577:19;:16;:19;:::i;:26::-;54554:49:::0;-1:-1:-1;54619:13:0;;54616:181:::1;;54689:34;54702:9;54713;54689:12;:34::i;:::-;54743:42;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;54616:181;54812:16:::0;;54809:152:::1;;54852:15;::::0;54844:47:::1;::::0;-1:-1:-1;;;;;54852:15:0;;::::1;::::0;54844:47;::::1;;;::::0;54878:12;;54852:15:::1;54844:47:::0;54852:15;54844:47;54878:12;54852:15;54844: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;54914:15:0::1;::::0;54906:43:::1;::::0;-1:-1:-1;;;;;54914:15:0;;::::1;::::0;54906:43;::::1;;;::::0;54940:8;;54914:15:::1;54906:43:::0;54914:15;54906:43;54940:8;54914:15;54906:43;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;54906:43:0;54809:152;54976:10:::0;;54973:76:::1;;55010:9;::::0;55002:35:::1;::::0;-1:-1:-1;;;;;55010:9:0;;::::1;::::0;55002:35;::::1;;;::::0;55030:6;;55010:9:::1;55002:35:::0;55010:9;55002:35;55030:6;55010:9;55002:35;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;55002:35:0;54973:76;-1:-1:-1::0;;;55095:20:0::1;:35:::0;;;;-1:-1:-1;;;55141:23:0::1;:44:::0;;;;-1:-1:-1;;;55196:17:0::1;:32:::0;;;;-1:-1:-1;;37055:16:0;:24;;-1:-1:-1;;;;37055:24:0;;;52618:2618::o;56435:835::-;56547:7;56543:40;;56569:14;:12;:14::i;:::-;-1:-1:-1;;;;;56608:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;56632:22:0;;;;;;:11;:22;;;;;;;;56631:23;56608:46;56604:597;;;56671:48;56693:6;56701:9;56712:6;56671:21;:48::i;:::-;56604:597;;;-1:-1:-1;;;;;56742:19:0;;;;;;:11;:19;;;;;;;;56741:20;:46;;;;-1:-1:-1;;;;;;56765:22:0;;;;;;:11;:22;;;;;;;;56741:46;56737:464;;;56804:46;56824:6;56832:9;56843:6;56804:19;:46::i;56737:464::-;-1:-1:-1;;;;;56873:19:0;;;;;;:11;:19;;;;;;;;56872:20;:47;;;;-1:-1:-1;;;;;;56897:22:0;;;;;;:11;:22;;;;;;;;56896:23;56872:47;56868:333;;;56936:44;56954:6;56962:9;56973:6;56936:17;:44::i;56868:333::-;-1:-1:-1;;;;;57002:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;57025:22:0;;;;;;:11;:22;;;;;;;;57002:45;56998:203;;;57064:48;57086:6;57094:9;57105:6;57064:21;:48::i;56998:203::-;57145:44;57163:6;57171:9;57182:6;57145:17;:44::i;:::-;57225:7;57221:41;;57247:15;:13;:15::i;45403:163::-;45444:7;45465:15;45482;45501:19;:17;:19::i;:::-;45464:56;;-1:-1:-1;45464:56:0;-1:-1:-1;45538:20:0;45464:56;;45538:20;:11;:20;:::i;:::-;45531:27;;;;45403:163;:::o;30027:278::-;30113:7;30148:12;30141:5;30133:28;;;;-1:-1:-1;;;30133:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;30133:28:0;;30172:9;30188:1;30184;:5;;;;;;;30027:278;-1:-1:-1;;;;;30027:278:0:o;27562:136::-;27620:7;27647:43;27651:1;27654;27647:43;;;;;;;;;;;;;;;;;:3;:43::i;55841:513::-;56021:15;;55989:62;;56006:4;;-1:-1:-1;;;;;56021:15:0;56039:11;55989:8;:62::i;:::-;56094:15;;-1:-1:-1;;;;;56094:15:0;:31;56133:9;56166:4;56186:11;56094:15;;56298:7;:5;:7::i;:::-;56320:15;56094:252;;;;;;;;;;;;;-1:-1:-1;;;;;56094:252:0;-1:-1:-1;;;;;56094:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56094:252:0;-1:-1:-1;;;;;56094:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56094:252:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;56094:252:0;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;47791:306:0;47837:7;;:12;:48;;;;-1:-1:-1;47853:27:0;;:32;47837:48;47834:60;;;47887:7;;47834:60;47932:7;;;47914:15;:25;47988:27;;;47950:35;:65;-1:-1:-1;48036:11:0;;;;48058:31;47791:306;:::o;58494:622::-;58597:15;58614:23;58639:12;58653:23;58678:12;58692:34;58730:19;58741:7;58730:10;:19::i;:::-;-1:-1:-1;;;;;58778:15:0;;;;;;:7;:15;;;;;;58596:153;;-1:-1:-1;58596:153:0;;-1:-1:-1;58596:153:0;;-1:-1:-1;58596:153:0;-1:-1:-1;58596:153:0;-1:-1:-1;58596:153:0;-1:-1:-1;58778:28:0;;58798:7;58778:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;58760:15:0;;;;;;:7;:15;;;;;;;;:46;;;;58835:7;:15;;;;:28;;58855:7;58835:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;58817:15:0;;;;;;;:7;:15;;;;;;:46;;;;58895:18;;;;;;;:39;;58918:15;58895:39;:22;:39;:::i;:::-;-1:-1:-1;;;;;58874:18:0;;;;;;:7;:18;;;;;:60;58948:66;58979:26;59007:6;58948:30;:66::i;:::-;59025:23;59037:4;59043;59025:11;:23::i;:::-;59081:9;-1:-1:-1;;;;;59064:44:0;59073:6;-1:-1:-1;;;;;59064:44:0;;59092:15;59064:44;;;;;;;;;;;;;;;;;;58494:622;;;;;;;;;:::o;57844:642::-;57945:15;57962:23;57987:12;58001:23;58026:12;58040:34;58078:19;58089:7;58078:10;:19::i;:::-;-1:-1:-1;;;;;58126:15:0;;;;;;:7;:15;;;;;;57944:153;;-1:-1:-1;57944:153:0;;-1:-1:-1;57944:153:0;;-1:-1:-1;57944:153:0;-1:-1:-1;57944:153:0;-1:-1:-1;57944:153:0;-1:-1:-1;58126:28:0;;57944:153;58126:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;58108:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;58186:18;;;;;:7;:18;;;;;:39;;58209:15;58186:39;:22;:39;:::i;:::-;-1:-1:-1;;;;;58165:18:0;;;;;;:7;:18;;;;;;;;:60;;;;58257:7;:18;;;;:39;;58280:15;58257:39;:22;:39;:::i;57278:558::-;57377:15;57394:23;57419:12;57433:23;57458:12;57472:34;57510:19;57521:7;57510:10;:19::i;:::-;-1:-1:-1;;;;;57558:15:0;;;;;;:7;:15;;;;;;57376:153;;-1:-1:-1;57376:153:0;;-1:-1:-1;57376:153:0;;-1:-1:-1;57376:153:0;-1:-1:-1;57376:153:0;-1:-1:-1;57376:153:0;-1:-1:-1;57558:28:0;;57376:153;57558:28;:19;:28;:::i;59124:698::-;59227:15;59244:23;59269:12;59283:23;59308:12;59322:34;59360:19;59371:7;59360:10;:19::i;:::-;-1:-1:-1;;;;;59408:15:0;;;;;;:7;:15;;;;;;59226:153;;-1:-1:-1;59226:153:0;;-1:-1:-1;59226:153:0;;-1:-1:-1;59226:153:0;-1:-1:-1;59226:153:0;-1:-1:-1;59226:153:0;-1:-1:-1;59408:28:0;;59428:7;59408:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;59390:15:0;;;;;;:7;:15;;;;;;;;:46;;;;59465:7;:15;;;;:28;;59485:7;59465:28;:19;:28;:::i;48109:153::-;48163:15;;48153:7;:25;48219:35;;48189:27;:65;48109:153::o;45574:561::-;45671:7;;45707;;45624;;;;;45731:289;45755:9;:16;45751:20;;45731:289;;;45821:7;45797;:21;45805:9;45815:1;45805:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45805:12:0;45797:21;;;;;;;;;;;;;:31;;:66;;;45856:7;45832;:21;45840:9;45850:1;45840:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45840:12:0;45832:21;;;;;;;;;;;;;:31;45797:66;45793:97;;;45873:7;;45882;;45865:25;;;;;;;;;45793:97;45915:34;45927:7;:21;45935:9;45945:1;45935:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45935:12:0;45927:21;;;;;;;;;;;;;45915:7;;:34;:11;:34;:::i;:::-;45905:44;;45974:34;45986:7;:21;45994:9;46004:1;45994:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45994:12:0;45986:21;;;;;;;;;;;;;45974:7;;:34;:11;:34;:::i;:::-;45964:44;-1:-1:-1;45773:3:0;;45731:289;;;-1:-1:-1;46056:7:0;;46044;;:20;;;:11;:20;:::i;:::-;46034:7;:30;46030:61;;;46074:7;;46083;;46066:25;;;;;;;;46030:61;46110:7;;-1:-1:-1;46119:7:0;-1:-1:-1;45574:561:0;;;:::o;43992:482::-;44051:7;44060;44069;44078;44087;44096;44117:23;44142:12;44156:39;44199:20;44211:7;44199:11;:20::i;:::-;44116:103;;;;;;44231:15;44248:23;44273:12;44289:71;44301:7;44310:4;44316:31;44349:10;:8;:10::i;:::-;44289:11;:71::i;:::-;44230:130;;;;-1:-1:-1;44230:130:0;;-1:-1:-1;44411:15:0;;-1:-1:-1;44428:4:0;;-1:-1:-1;44434:31:0;;-1:-1:-1;43992:482:0;;-1:-1:-1;;;;;43992:482:0:o;46143:915::-;46257:27;;46254:69;;46305:7;;46254:69;46333:18;46354:78;46404:27;;46354:45;46385:13;;46354:26;:30;;:45;;;;:::i;:78::-;46333:99;;46443:12;46458:72;46502:27;;46458:39;46489:7;;46458:26;:30;;:39;;;;:::i;:72::-;46443:87;;46541:13;46557:73;46602:27;;46557:40;46588:8;;46557:26;:30;;:40;;;;:::i;:73::-;46541:89;-1:-1:-1;46641:15:0;46659:63;46541:89;46659:52;46706:4;46659:52;:26;46690:10;46659:42;:30;:42;:::i;:63::-;46752:10;;46641:81;;-1:-1:-1;46735:35:0;;46744:6;;-1:-1:-1;;;;;46752:10:0;46764:5;46735:8;:35::i;:::-;46806:20;;:33;;46831:7;46806:33;:24;:33;:::i;:::-;46783:20;:56;46876:23;;:39;;46904:10;46876:39;:27;:39;:::i;:::-;46850:23;:65;46946:17;;:27;;46968:4;46946:27;:21;:27;:::i;:::-;46926:17;:47;46984:66;46993:6;47009:4;47016:33;47044:4;47016:23;:7;47028:10;47016:23;:11;:23;:::i;:33::-;46984:8;:66::i;43811:173::-;43889:7;;:17;;43901:4;43889:17;:11;:17;:::i;:::-;43879:7;:27;43943:23;;:33;;43971:4;43943:33;:27;:33;:::i;:::-;43917:23;:59;-1:-1:-1;;43811:173:0:o;44482:392::-;44542:7;44551;44560;44580:12;44595:24;44611:7;44595:15;:24::i;:::-;44580:39;;44630:34;44667:44;44703:7;44667:35;:44::i;:::-;44630:81;-1:-1:-1;44722:23:0;44748:49;44630:81;44748:17;:7;44760:4;44748:17;:11;:17;:::i;:49::-;44722:75;44833:4;;-1:-1:-1;44839:26:0;;-1:-1:-1;44482:392:0;;-1:-1:-1;;;44482:392:0:o;44882:513::-;45018:7;;;;45074:24;:7;45086:11;45074:24;:11;:24;:::i;:::-;45056:42;-1:-1:-1;45109:12:0;45124:21;:4;45133:11;45124:21;:8;:21;:::i;:::-;45109:36;-1:-1:-1;45156:39:0;45198:48;:31;45234:11;45198:48;:35;:48;:::i;:::-;45156:90;-1:-1:-1;45257:23:0;45283:54;45156:90;45283:17;:7;45295:4;45283:17;:11;:17;:::i;:54::-;45356:7;;;;-1:-1:-1;45382:4:0;;-1:-1:-1;44882:513:0;;-1:-1:-1;;;;;;;44882:513:0:o;47066:345::-;47144:19;47167:10;:8;:10::i;:::-;47144:33;-1:-1:-1;47188:15:0;47206:23;:6;47144:33;47206:23;:10;:23;:::i;:::-;-1:-1:-1;;;;;47254:11:0;;;;;;:7;:11;;;;;;47188:41;;-1:-1:-1;47254:24:0;;47188:41;47254:24;:15;:24;:::i;:::-;-1:-1:-1;;;;;47240:11:0;;;;;;:7;:11;;;;;;;;:38;;;;47292:11;:15;;;;;;47289:70;;;-1:-1:-1;;;;;47336:11:0;;;;;;:7;:11;;;;;;:23;;47352:6;47336:23;:15;:23;:::i;:::-;-1:-1:-1;;;;;47322:11:0;;;;;;:7;:11;;;;;:37;47289:70;47392:2;-1:-1:-1;;;;;47377:26:0;47386:4;-1:-1:-1;;;;;47377:26:0;;47396:6;47377:26;;;;;;;;;;;;;;;;;;47066:345;;;;;:::o;47423:154::-;47487:7;47514:55;47553:5;47514:20;47526:7;;47514;:11;;:20;;;;:::i;47585:194::-;47669:7;47696:75;47755:5;47696:40;47708:27;;47696:7;:11;;:40;;;;:::i

Swarm Source

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