ETH Price: $3,448.57 (+1.68%)
Gas: 3 Gwei

Token

Major Inu (MAJOR)
 

Overview

Max Total Supply

1,000,000,000,000 MAJOR

Holders

106

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
124,967,004.097081164403954817 MAJOR

Value
$0.00
0xd9f0e1500805a3c6cdbb72b0bc968bae8995de46
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:
MAJOR

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-12
*/

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

    string private _name = "Major Inu";
    string private _symbol = "MAJOR";
    uint8 private _decimals = 18;
    
    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _marketingFee = 60;
    uint256 public _burnFee = 0;
    uint256 public _liquidityFee = 20;
    uint256 public _devFee = 20;

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

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

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

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

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

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

         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

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

        _rOwned[_msgSender()] = _rTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalDistributedFees() public view returns (uint256) {
        return _tTotalDistributedToken;
    }

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

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

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    
    function setMarketingWallet(address account) external onlyOwner() {
        marketingWallet = account;
    }

    function setPromoWallet(address account) external onlyOwner() {
        promotionWallet = account;
    }

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

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

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

        _marketingDevLiquidNBurnFee = _liquidityFee + _marketingFee + _burnFee + _devFee;
    }

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

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

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

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

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

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

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

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

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tMarketingDevStakeLiquidBurnFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rMarketingDevStakeLiquidBurnFee = tMarketingDevStakeLiquidBurnFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rMarketingDevStakeLiquidBurnFee);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _takeMarketingDevLiquidBurnFee(uint256 tMarketingDevLiquidBurnFee, address sender) private {
        if(_marketingDevLiquidNBurnFee == 0){
            return;
        }
        uint256 tMarketing = tMarketingDevLiquidBurnFee.mul(_marketingFee).div(_marketingDevLiquidNBurnFee);
        uint256 tDev = tMarketingDevLiquidBurnFee.mul(_devFee).div(_marketingDevLiquidNBurnFee);
        uint256 tBurn = tMarketingDevLiquidBurnFee.mul(_burnFee).div(_marketingDevLiquidNBurnFee);
        uint256 tLiquid = tMarketingDevLiquidBurnFee.sub(tMarketing).sub(tDev).sub(tBurn);

        _sendFee(sender, deadWallet, tBurn);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function swapAndLiquify() private lockTheSwap {

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

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

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

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

        uint256 ethLiquid = delta.mul(half).div(swapAmount);
        uint256 ethMarketing = delta.mul(accumulatedForMarketing).div(swapAmount);
        uint256 ethDev = delta.sub(ethLiquid).sub(ethMarketing);
        uint256 ethpromo = ethMarketing.mul(2).div(6);
        uint256 ethmarketers = ethMarketing.mul(4).div(6);

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CEX","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"RouterSellLimitEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklistWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"notwl","type":"address"}],"name":"delwl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromMax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isrouterother","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"manualswapcustom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"promotionWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerselllimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"blacklisted","type":"bool"}],"name":"setBlacklistWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"distributionFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"burnFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"setFeesPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxBuyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setPromoWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setRouterSellLimitTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setThresoldToSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setTradingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wl","type":"address"}],"name":"setWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakeRewardSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDistributedFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526c0c9f2c9cd04674edea40000000600c8190556c0815c6278fccd683bfbfffffff19600d556b033b2e3c9fd0803ce8000000600f556200006f906096906200005b9061271062000509602090811b62002a5917901c565b6200055c60201b62002a9b1790919060201c565b601055604080518082019091526009808252684d616a6f7220496e7560b81b6020909201918252620000a49160119162000675565b506040805180820190915260058082526426a0a527a960d91b6020909201918252620000d39160129162000675565b506013805460ff19908116601217909155600060148181556015829055603c60165560179190915560188190556019556064601a819055601b55602080546001600160a01b03191661dead1790556025805460ff60c81b1962ffffff60b01b1960ff60a81b19909216600160a81b1791909116600160c01b1716600160c81b1790556a084595161401484a0000006026556b0813f3978f894098440000006027556029805490911660011790553480156200018d57600080fd5b506000620001a36001600160e01b03620005ba16565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200024757600080fd5b505afa1580156200025c573d6000803e3d6000fd5b505050506040513d60208110156200027357600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620002c457600080fd5b505afa158015620002d9573d6000803e3d6000fd5b505050506040513d6020811015620002f057600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200034357600080fd5b505af115801562000358573d6000803e3d6000fd5b505050506040513d60208110156200036f57600080fd5b5051602580546001600160a01b03199081166001600160a01b039384161790915560248054909116918316919091179055600160056000620003b0620005bf565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526005909252902080549091166001179055620004036001600160e01b03620005ba16565b602180546001600160a01b0319166001600160a01b03929092169190911790556200042d620005ba565b602280546001600160a01b0319166001600160a01b039290921691909117905562000457620005ba565b602380546001600160a01b0319166001600160a01b0392909216919091179055600d546002600062000488620005ba565b6001600160a01b03168152602081019190915260400160002055620004b56001600160e01b03620005ba16565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040518082815260200191505060405180910390a35062000717565b60006200055383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620005ce60201b60201c565b90505b92915050565b6000826200056d5750600062000556565b828202828482816200057b57fe5b0414620005535760405162461bcd60e51b8152600401808060200182810382526021815260200180620044416021913960400191505060405180910390fd5b335b90565b6000546001600160a01b031690565b600081836200065e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200062257818101518382015260200162000608565b50505050905090810190601f168015620006505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200066b57fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006b857805160ff1916838001178555620006e8565b82800160010185558215620006e8579182015b82811115620006e8578251825591602001919060010190620006cb565b50620006f6929150620006fa565b5090565b620005bc91905b80821115620006f6576000815560010162000701565b613d1a80620007276000396000f3fe6080604052600436106103b15760003560e01c806377c325d6116101e7578063b41c9eda1161010d578063dd62ed3e116100a0578063ec44acf21161006f578063ec44acf214610d05578063ecca3b1614610d1a578063f2fde38b14610d4d578063f8b45b0514610d80576103b8565b8063dd62ed3e14610c4f578063e3be91cc14610c8a578063ea2f0b3714610c9f578063eaa5dad414610cd2576103b8565b8063c49b9a80116100dc578063c49b9a8014610bc6578063c876d0b914610bf2578063d240360a14610c07578063da78876f14610c1c576103b8565b8063b41c9eda14610b35578063c0b0fda214610b70578063c2e5ec0414610b85578063c3c8cd8014610bb1576103b8565b806396a8826c11610185578063a9059cbb11610154578063a9059cbb14610a9f578063aa45026b14610ad8578063aec3fd3814610aed578063b3d5eee114610b20576103b8565b806396a8826c14610a105780639e03584614610a3c578063a457c2d714610a51578063a55cac9814610a8a576103b8565b806389e7b81b116101c157806389e7b81b146109a75780638da5cb5b146109d15780638ea5220f146109e657806395d89b41146109fb576103b8565b806377c325d61461093357806385141a771461095f57806388f8202014610974576103b8565b8063437823ec116102d75780635d098b381161026a57806370a082311161023957806370a08231146108ac578063715018a6146108df578063757765f8146108f457806375f0a8741461091e576103b8565b80635d098b381461081c5780636659889d1461084f5780636bc87c3a146108825780636fc3eaec14610897576103b8565b806350bea548116102a657806350bea5481461076257806352390c021461078c5780635342acb4146107bf5780635d0044ca146107f2576103b8565b8063437823ec146106d257806344b7d0301461070557806349bd5a5e146107385780634a74bb021461074d576103b8565b806323b872dd1161034f5780633685d4191161031e5780633685d4191461062557806339509351146106585780633b124fe71461069157806341aea9de146106a6576103b8565b806323b872dd14610560578063313ce567146105a357806331c402ac146105ce5780633582ad2314610610576103b8565b80631694505e1161038b5780631694505e146104c057806318160ddd146104f15780631f53ac021461051857806322976e0d1461054b576103b8565b806306fdde03146103bd578063095ea7b31461044757806313096a1a14610494576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610d95565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561040c5781810151838201526020016103f4565b50505050905090810190601f1680156104395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045357600080fd5b506104806004803603604081101561046a57600080fd5b506001600160a01b038135169060200135610e2b565b604080519115158252519081900360200190f35b3480156104a057600080fd5b506104be600480360360208110156104b757600080fd5b5035610e49565b005b3480156104cc57600080fd5b506104d5610ea6565b604080516001600160a01b039092168252519081900360200190f35b3480156104fd57600080fd5b50610506610eb5565b60408051918252519081900360200190f35b34801561052457600080fd5b506104be6004803603602081101561053b57600080fd5b50356001600160a01b0316610ebb565b34801561055757600080fd5b50610506610f35565b34801561056c57600080fd5b506104806004803603606081101561058357600080fd5b506001600160a01b03813581169160208101359091169060400135610f3b565b3480156105af57600080fd5b506105b8610fc8565b6040805160ff9092168252519081900360200190f35b3480156105da57600080fd5b506104be600480360360a08110156105f157600080fd5b5080359060208101359060408101359060608101359060800135610fd1565b34801561061c57600080fd5b50610480611095565b34801561063157600080fd5b506104be6004803603602081101561064857600080fd5b50356001600160a01b03166110a5565b34801561066457600080fd5b506104806004803603604081101561067b57600080fd5b506001600160a01b038135169060200135611266565b34801561069d57600080fd5b506105066112ba565b3480156106b257600080fd5b506104be600480360360208110156106c957600080fd5b503515156112c0565b3480156106de57600080fd5b506104be600480360360208110156106f557600080fd5b50356001600160a01b0316611336565b34801561071157600080fd5b506104806004803603602081101561072857600080fd5b50356001600160a01b03166113b2565b34801561074457600080fd5b506104d56113c7565b34801561075957600080fd5b506104806113d6565b34801561076e57600080fd5b506104be6004803603602081101561078557600080fd5b50356113e6565b34801561079857600080fd5b506104be600480360360208110156107af57600080fd5b50356001600160a01b0316611443565b3480156107cb57600080fd5b50610480600480360360208110156107e257600080fd5b50356001600160a01b03166115c9565b3480156107fe57600080fd5b506104be6004803603602081101561081557600080fd5b50356115eb565b34801561082857600080fd5b506104be6004803603602081101561083f57600080fd5b50356001600160a01b031661167e565b34801561085b57600080fd5b506104be6004803603602081101561087257600080fd5b50356001600160a01b03166116f8565b34801561088e57600080fd5b50610506611772565b3480156108a357600080fd5b506104be611778565b3480156108b857600080fd5b50610506600480360360208110156108cf57600080fd5b50356001600160a01b03166118cc565b3480156108eb57600080fd5b506104be61192e565b34801561090057600080fd5b506104be6004803603602081101561091757600080fd5b50356119d0565b34801561092a57600080fd5b506104d5611a49565b34801561093f57600080fd5b506104be6004803603602081101561095657600080fd5b50351515611a58565b34801561096b57600080fd5b506104d5611ac3565b34801561098057600080fd5b506104806004803603602081101561099757600080fd5b50356001600160a01b0316611ad2565b3480156109b357600080fd5b506104be600480360360208110156109ca57600080fd5b5035611af0565b3480156109dd57600080fd5b506104d5611b9e565b3480156109f257600080fd5b506104d5611bad565b348015610a0757600080fd5b506103d2611bbc565b348015610a1c57600080fd5b506104be60048036036020811015610a3357600080fd5b50351515611c1d565b348015610a4857600080fd5b50610506611c93565b348015610a5d57600080fd5b5061048060048036036040811015610a7457600080fd5b506001600160a01b038135169060200135611c99565b348015610a9657600080fd5b50610506611d07565b348015610aab57600080fd5b5061048060048036036040811015610ac257600080fd5b506001600160a01b038135169060200135611d0d565b348015610ae457600080fd5b50610506611d21565b348015610af957600080fd5b506104be60048036036020811015610b1057600080fd5b50356001600160a01b0316611d27565b348015610b2c57600080fd5b50610480611dbb565b348015610b4157600080fd5b506104be60048036036040811015610b5857600080fd5b506001600160a01b0381351690602001351515611dcb565b348015610b7c57600080fd5b50610506611e4e565b348015610b9157600080fd5b506104be60048036036020811015610ba857600080fd5b50351515611e54565b348015610bbd57600080fd5b506104be611eca565b348015610bd257600080fd5b506104be60048036036020811015610be957600080fd5b50351515611f5b565b348015610bfe57600080fd5b50610480612006565b348015610c1357600080fd5b5061048061200f565b348015610c2857600080fd5b5061048060048036036020811015610c3f57600080fd5b50356001600160a01b031661201f565b348015610c5b57600080fd5b5061050660048036036040811015610c7257600080fd5b506001600160a01b0381358116916020013516612034565b348015610c9657600080fd5b506104d561205f565b348015610cab57600080fd5b506104be60048036036020811015610cc257600080fd5b50356001600160a01b031661206e565b348015610cde57600080fd5b506104be60048036036020811015610cf557600080fd5b50356001600160a01b03166120e7565b348015610d1157600080fd5b50610480612175565b348015610d2657600080fd5b5061048060048036036020811015610d3d57600080fd5b50356001600160a01b0316612185565b348015610d5957600080fd5b506104be60048036036020811015610d7057600080fd5b50356001600160a01b031661219a565b348015610d8c57600080fd5b50610506612292565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e215780601f10610df657610100808354040283529160200191610e21565b820191906000526020600020905b815481529060010190602001808311610e0457829003601f168201915b5050505050905090565b6000610e3f610e38612298565b848461229c565b5060015b92915050565b610e51612298565b6000546001600160a01b03908116911614610ea1576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602655565b6024546001600160a01b031681565b600c5490565b610ec3612298565b6000546001600160a01b03908116911614610f13576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602280546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b6000610f48848484612388565b610fbe84610f54612298565b610fb985604051806060016040528060288152602001613c06602891396001600160a01b038a16600090815260046020526040812090610f92612298565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61290216565b61229c565b5060019392505050565b60135460ff1690565b610fd9612298565b6000546001600160a01b03908116911614611029576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b61038481838587890101010111156110725760405162461bcd60e51b815260040180806020018281038252602d815260200180613b6f602d913960400191505060405180910390fd5b601494909455601883905560168290556017819055601984905591010101601a55565b602554600160c01b900460ff1681565b6110ad612298565b6000546001600160a01b039081169116146110fd576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1661116a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600b5481101561126257816001600160a01b0316600b828154811061118e57fe5b6000918252602090912001546001600160a01b0316141561125a57600b805460001981019081106111bb57fe5b600091825260209091200154600b80546001600160a01b0390921691839081106111e157fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600a90925220805460ff19169055600b80548061123357fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611262565b60010161116d565b5050565b6000610e3f611273612298565b84610fb98560046000611284612298565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61299916565b60145481565b6112c8612298565b6000546001600160a01b03908116911614611318576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b60258054911515600160c01b0260ff60c01b19909216919091179055565b61133e612298565b6000546001600160a01b0390811691161461138e576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b60066020526000908152604090205460ff1681565b6025546001600160a01b031681565b602554600160a81b900460ff1681565b6113ee612298565b6000546001600160a01b0390811691161461143e576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602755565b61144b612298565b6000546001600160a01b0390811691161461149b576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1615611509576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526002602052604090205415611563576001600160a01b038116600090815260026020526040902054611549906129fa565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6001600160a01b03811660009081526005602052604090205460ff165b919050565b6115f3612298565b6000546001600160a01b03908116911614611643576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b609681101561165157600080fd5b6116788161166c612710600c54612a5990919063ffffffff16565b9063ffffffff612a9b16565b60105550565b611686612298565b6000546001600160a01b039081169116146116d6576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602180546001600160a01b0319166001600160a01b0392909216919091179055565b611700612298565b6000546001600160a01b03908116911614611750576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602380546001600160a01b0319166001600160a01b0392909216919091179055565b60185481565b611780612298565b6000546001600160a01b039081169116146117d0576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b601654601954479160009161180f916117ef919063ffffffff61299916565b60165461180390859063ffffffff612a9b16565b9063ffffffff612a5916565b9050600061184161182d60165460195461299990919063ffffffff16565b60195461180390869063ffffffff612a9b16565b90508015611885576022546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611883573d6000803e3d6000fd5b505b81156118c7576021546040516001600160a01b039091169083156108fc029084906000818181858888f193505050501580156118c5573d6000803e3d6000fd5b505b505050565b6001600160a01b0381166000908152600a602052604081205460ff161561190c57506001600160a01b0381166000908152600360205260409020546115e6565b6001600160a01b038216600090815260026020526040902054610e43906129fa565b611936612298565b6000546001600160a01b03908116911614611986576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6119d8612298565b6000546001600160a01b03908116911614611a28576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b611a438161166c612710600c54612a5990919063ffffffff16565b600f5550565b6021546001600160a01b031681565b611a60612298565b6000546001600160a01b03908116911614611ab0576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6029805460ff1916911515919091179055565b6020546001600160a01b031681565b6001600160a01b03166000908152600a602052604090205460ff1690565b6025805460ff60a01b1916600160a01b179055611b0b612298565b6000546001600160a01b03908116911614611b5b576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6000611b66306118cc565b90506000611b818361166c84620186a063ffffffff612a5916565b9050611b8c81612af4565b50506025805460ff60a01b1916905550565b6000546001600160a01b031690565b6022546001600160a01b031681565b60128054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e215780601f10610df657610100808354040283529160200191610e21565b611c25612298565b6000546001600160a01b03908116911614611c75576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b60258054911515600160c81b0260ff60c81b19909216919091179055565b600e5490565b6000610e3f611ca6612298565b84610fb985604051806060016040528060258152602001613cc06025913960046000611cd0612298565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61290216565b601f5481565b6000610e3f611d1a612298565b8484612388565b60195481565b611d2f612298565b6000546001600160a01b03908116911614611d7f576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b031660009081526007602090815260408083208054600160ff1991821681179092556008909352922080549091169091179055565b602554600160b01b900460ff1681565b611dd3612298565b6000546001600160a01b03908116911614611e23576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60175481565b611e5c612298565b6000546001600160a01b03908116911614611eac576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b60258054911515600160b81b0260ff60b81b19909216919091179055565b6025805460ff60a01b1916600160a01b179055611ee5612298565b6000546001600160a01b03908116911614611f35576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6000611f40306118cc565b9050611f4b81612af4565b506025805460ff60a01b19169055565b611f63612298565b6000546001600160a01b03908116911614611fb3576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b60258054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60295460ff1681565b602554600160c81b900460ff1681565b60086020526000908152604090205460ff1681565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6023546001600160a01b031681565b612076612298565b6000546001600160a01b039081169116146120c6576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19169055565b6120ef612298565b6000546001600160a01b0390811691161461213f576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760209081526040808320805460ff19908116909155600890925290912080549091169055565b602554600160b81b900460ff1681565b60096020526000908152604090205460ff1681565b6121a2612298565b6000546001600160a01b039081169116146121f2576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b0381166122375760405162461bcd60e51b8152600401808060200182810382526026815260200180613b276026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60105481565b3390565b6001600160a01b0383166122e15760405162461bcd60e51b8152600401808060200182810382526024815260200180613c9c6024913960400191505060405180910390fd5b6001600160a01b0382166123265760405162461bcd60e51b8152600401808060200182810382526022815260200180613b4d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166123cd5760405162461bcd60e51b8152600401808060200182810382526025815260200180613c776025913960400191505060405180910390fd5b6001600160a01b0382166124125760405162461bcd60e51b8152600401808060200182810382526023815260200180613ada6023913960400191505060405180910390fd5b600081116124515760405162461bcd60e51b8152600401808060200182810382526029815260200180613c4e6029913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff16156124b5576040805162461bcd60e51b8152602060048201526013602482015272165bdd49dc99481a5b88189b1858dadb1a5cdd606a1b604482015290519081900360640190fd5b602554600160c01b900460ff16156127e9576001600160a01b03821660009081526008602052604090205460ff1615801561250957506001600160a01b03821660009081526005602052604090205460ff16155b801561252e5750612518611b9e565b6001600160a01b0316836001600160a01b031614155b8015612553575061253d611b9e565b6001600160a01b0316826001600160a01b031614155b801561256d57506025546001600160a01b03838116911614155b156125e357600f548111156125bc576040805162461bcd60e51b815260206004820152601060248201526f4f76657220746865204d61782062757960801b604482015290519081900360640190fd5b6010546125d86125cb846118cc565b839063ffffffff61299916565b11156125e357600080fd5b6125eb611b9e565b6001600160a01b0316836001600160a01b031614158015612625575061260f611b9e565b6001600160a01b0316826001600160a01b031614155b801561263957506001600160a01b03821615155b801561265057506001600160a01b03821661dead14155b80156126665750602554600160a01b900460ff16155b156127e957602554600160b81b900460ff16612728576001600160a01b03831660009081526005602052604090205460ff16806126bb57506001600160a01b03821660009081526005602052604090205460ff165b806126de57506001600160a01b03821660009081526007602052604090205460ff165b612728576040805162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015290519081900360640190fd5b60295460ff16156127e95761273b611b9e565b6001600160a01b0316826001600160a01b03161415801561276a57506024546001600160a01b03838116911614155b801561278457506025546001600160a01b03838116911614155b156127e9573260009081526028602052604090205443116127d65760405162461bcd60e51b8152600401808060200182810382526049815260200180613b9c6049913960600191505060405180910390fd5b3260009081526028602052604090204390555b6000612814601e54612808601d54601c5461299990919063ffffffff16565b9063ffffffff61299916565b60265460255491925082101590600160a01b900460ff1615801561284657506025546001600160a01b03868116911614155b801561285b5750602554600160a81b900460ff165b80156128645750805b1561287157612871612c9e565b6001600160a01b03851660009081526005602052604090205460019060ff16806128b357506001600160a01b03851660009081526005602052604090205460ff165b806128e557506025546001600160a01b038781169116148015906128e557506025546001600160a01b03868116911614155b156128ee575060005b6128fa86868684612fe1565b505050505050565b600081848411156129915760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561295657818101518382015260200161293e565b50505050905090810190601f1680156129835780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156129f3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000600d54821115612a3d5760405162461bcd60e51b815260040180806020018281038252602a815260200180613afd602a913960400191505060405180910390fd5b6000612a4761314f565b90506129f3838263ffffffff612a5916565b60006129f383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613178565b600082612aaa57506000610e43565b82820282848281612ab757fe5b04146129f35760405162461bcd60e51b8152600401808060200182810382526021815260200180613be56021913960400191505060405180910390fd5b60408051600280825260608083018452926020830190803883390190505090503081600081518110612b2257fe5b6001600160a01b03928316602091820292909201810191909152602454604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612b7657600080fd5b505afa158015612b8a573d6000803e3d6000fd5b505050506040513d6020811015612ba057600080fd5b5051815182906001908110612bb157fe5b6001600160a01b039283166020918202929092010152602454612bd7913091168461229c565b6024805460405163791ac94760e01b81526004810185815260009382018490523060648301819052426084840181905260a060448501908152875160a486015287516001600160a01b039096169663791ac947968a9691958a9594939092909160c490910190602080880191028083838b5b83811015612c61578181015183820152602001612c49565b505050509050019650505050505050600060405180830381600087803b158015612c8a57600080fd5b505af11580156128fa573d6000803e3d6000fd5b6025805460ff60a01b1916600160a01b179055601d54601c54601e54600092612cd29290916128089163ffffffff61299916565b60255490915060009081908190600160c81b900460ff168015612d075750602654612d0490601463ffffffff612a9b16565b84115b15612da957612d27601361166c6014601e54612a5990919063ffffffff16565b601e54909350612d3d908463ffffffff6131dd16565b601e55601d54612d5b9060139061166c90601463ffffffff612a5916565b601d54909250612d71908363ffffffff6131dd16565b601d55601c54612d8f9060139061166c90601463ffffffff612a5916565b601c54909150612da5908263ffffffff6131dd16565b601c555b601c54600090612dc090600263ffffffff612a5916565b90506000612dd982601c546131dd90919063ffffffff16565b90506000612df8601e54612808601d548661299990919063ffffffff16565b905047612e0482612af4565b6000612e16478363ffffffff6131dd16565b90506000612e2e84611803848963ffffffff612a9b16565b90506000612e4b85611803601d5486612a9b90919063ffffffff16565b90506000612e6f82612e63868663ffffffff6131dd16565b9063ffffffff6131dd16565b90506000612e89600661180385600263ffffffff612a9b16565b90506000612ea3600661180386600463ffffffff612a9b16565b90508415612ef657612eb5898661321f565b604080518b8152602081018790528082018b905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b8315612f73576021546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612f36573d6000803e3d6000fd5b506023546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015612f71573d6000803e3d6000fd5b505b8215612fb5576022546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015612fb3573d6000803e3d6000fd5b505b505050601c97909755505050601d94909455505050601e9190915550506025805460ff60a01b19169055565b80612fee57612fee6132fe565b6001600160a01b0384166000908152600a602052604090205460ff16801561302f57506001600160a01b0383166000908152600a602052604090205460ff16155b156130445761303f848484613330565b613142565b6001600160a01b0384166000908152600a602052604090205460ff1615801561308557506001600160a01b0383166000908152600a602052604090205460ff165b156130955761303f848484613467565b6001600160a01b0384166000908152600a602052604090205460ff161580156130d757506001600160a01b0383166000908152600a602052604090205460ff16155b156130e75761303f848484613522565b6001600160a01b0384166000908152600a602052604090205460ff16801561312757506001600160a01b0383166000908152600a602052604090205460ff165b156131375761303f84848461356c565b613142848484613522565b806118c5576118c56135eb565b600080600061315c6135f9565b9092509050613171828263ffffffff612a5916565b9250505090565b600081836131c75760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561295657818101518382015260200161293e565b5060008385816131d357fe5b0495945050505050565b60006129f383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612902565b6024546132379030906001600160a01b03168461229c565b6024546001600160a01b031663f305d719823085600080613256611b9e565b426040518863ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b03166001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b1580156132d357600080fd5b505af11580156132e7573d6000803e3d6000fd5b50505050506040513d60608110156118c557600080fd5b60145415801561330e5750601a54155b156133185761332e565b60148054601555601a8054601b55600091829055555b565b6000806000806000806133428761376e565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061337a908863ffffffff6131dd16565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546133af908763ffffffff6131dd16565b6001600160a01b03808b1660009081526002602052604080822093909355908a16815220546133e4908663ffffffff61299916565b6001600160a01b038916600090815260026020526040902055613407818a6137bd565b61341184836138b9565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806134798761376e565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506134b1908763ffffffff6131dd16565b6001600160a01b03808b16600090815260026020908152604080832094909455918b168152600390915220546134ed908463ffffffff61299916565b6001600160a01b0389166000908152600360209081526040808320939093556002905220546133e4908663ffffffff61299916565b6000806000806000806135348761376e565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506133af908763ffffffff6131dd16565b60008060008060008061357e8761376e565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506135b6908863ffffffff6131dd16565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546134b1908763ffffffff6131dd16565b601554601455601b54601a55565b600d54600c546000918291825b600b54811015613736578260026000600b848154811061362257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061368757508160036000600b848154811061366057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561369e57600d54600c549450945050505061376a565b6136e460026000600b84815481106136b257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff6131dd16565b925061372c60036000600b84815481106136fa57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff6131dd16565b9150600101613606565b50600c54600d5461374c9163ffffffff612a5916565b82101561376457600d54600c5493509350505061376a565b90925090505b9091565b60008060008060008060008060006137858a6138e9565b92509250925060008060006137a38d868661379e61314f565b61392b565b919f909e50909c50959a5093985091965092945050505050565b601a546137c957611262565b60006137e6601a5461180360165486612a9b90919063ffffffff16565b90506000613805601a5461180360195487612a9b90919063ffffffff16565b90506000613824601a5461180360175488612a9b90919063ffffffff16565b9050600061383e82612e6385818a8963ffffffff6131dd16565b6020549091506138599086906001600160a01b031684613993565b601c5461386c908263ffffffff61299916565b601c55601d54613882908563ffffffff61299916565b601d55601e54613898908463ffffffff61299916565b601e556128fa85306138b486612808868a63ffffffff61299916565b613993565b600d546138cc908363ffffffff6131dd16565b600d55600e546138e2908263ffffffff61299916565b600e555050565b6000806000806138f885613a9f565b9050600061390586613abc565b9050600061391d82612e63898663ffffffff6131dd16565b979296509094509092505050565b6000808080613940888663ffffffff612a9b16565b90506000613954888763ffffffff612a9b16565b90506000613968888863ffffffff612a9b16565b9050600061398082612e63868663ffffffff6131dd16565b939b939a50919850919650505050505050565b600061399d61314f565b905060006139b1838363ffffffff612a9b16565b6001600160a01b0385166000908152600260205260409020549091506139dd908263ffffffff61299916565b6001600160a01b038516600090815260026020908152604080832093909355600a9052205460ff1615613a4d576001600160a01b038416600090815260036020526040902054613a33908463ffffffff61299916565b6001600160a01b0385166000908152600360205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050565b6000610e436103e861180360145485612a9b90919063ffffffff16565b6000610e436103e8611803601a5485612a9b90919063ffffffff1656fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f74616c207461782073686f756c64206e6f74206d6f7265207468616e2039302520283930302f31303030295f7472616e736665723a3a205472616e736665722044656c617920656e61626c65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b20616c6c6f7765642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a142cf67d5c672452661ba4e39f6b2ab8320c12305223eb014ef85b1ef12a85664736f6c63430006020033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77

Deployed Bytecode

0x6080604052600436106103b15760003560e01c806377c325d6116101e7578063b41c9eda1161010d578063dd62ed3e116100a0578063ec44acf21161006f578063ec44acf214610d05578063ecca3b1614610d1a578063f2fde38b14610d4d578063f8b45b0514610d80576103b8565b8063dd62ed3e14610c4f578063e3be91cc14610c8a578063ea2f0b3714610c9f578063eaa5dad414610cd2576103b8565b8063c49b9a80116100dc578063c49b9a8014610bc6578063c876d0b914610bf2578063d240360a14610c07578063da78876f14610c1c576103b8565b8063b41c9eda14610b35578063c0b0fda214610b70578063c2e5ec0414610b85578063c3c8cd8014610bb1576103b8565b806396a8826c11610185578063a9059cbb11610154578063a9059cbb14610a9f578063aa45026b14610ad8578063aec3fd3814610aed578063b3d5eee114610b20576103b8565b806396a8826c14610a105780639e03584614610a3c578063a457c2d714610a51578063a55cac9814610a8a576103b8565b806389e7b81b116101c157806389e7b81b146109a75780638da5cb5b146109d15780638ea5220f146109e657806395d89b41146109fb576103b8565b806377c325d61461093357806385141a771461095f57806388f8202014610974576103b8565b8063437823ec116102d75780635d098b381161026a57806370a082311161023957806370a08231146108ac578063715018a6146108df578063757765f8146108f457806375f0a8741461091e576103b8565b80635d098b381461081c5780636659889d1461084f5780636bc87c3a146108825780636fc3eaec14610897576103b8565b806350bea548116102a657806350bea5481461076257806352390c021461078c5780635342acb4146107bf5780635d0044ca146107f2576103b8565b8063437823ec146106d257806344b7d0301461070557806349bd5a5e146107385780634a74bb021461074d576103b8565b806323b872dd1161034f5780633685d4191161031e5780633685d4191461062557806339509351146106585780633b124fe71461069157806341aea9de146106a6576103b8565b806323b872dd14610560578063313ce567146105a357806331c402ac146105ce5780633582ad2314610610576103b8565b80631694505e1161038b5780631694505e146104c057806318160ddd146104f15780631f53ac021461051857806322976e0d1461054b576103b8565b806306fdde03146103bd578063095ea7b31461044757806313096a1a14610494576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610d95565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561040c5781810151838201526020016103f4565b50505050905090810190601f1680156104395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045357600080fd5b506104806004803603604081101561046a57600080fd5b506001600160a01b038135169060200135610e2b565b604080519115158252519081900360200190f35b3480156104a057600080fd5b506104be600480360360208110156104b757600080fd5b5035610e49565b005b3480156104cc57600080fd5b506104d5610ea6565b604080516001600160a01b039092168252519081900360200190f35b3480156104fd57600080fd5b50610506610eb5565b60408051918252519081900360200190f35b34801561052457600080fd5b506104be6004803603602081101561053b57600080fd5b50356001600160a01b0316610ebb565b34801561055757600080fd5b50610506610f35565b34801561056c57600080fd5b506104806004803603606081101561058357600080fd5b506001600160a01b03813581169160208101359091169060400135610f3b565b3480156105af57600080fd5b506105b8610fc8565b6040805160ff9092168252519081900360200190f35b3480156105da57600080fd5b506104be600480360360a08110156105f157600080fd5b5080359060208101359060408101359060608101359060800135610fd1565b34801561061c57600080fd5b50610480611095565b34801561063157600080fd5b506104be6004803603602081101561064857600080fd5b50356001600160a01b03166110a5565b34801561066457600080fd5b506104806004803603604081101561067b57600080fd5b506001600160a01b038135169060200135611266565b34801561069d57600080fd5b506105066112ba565b3480156106b257600080fd5b506104be600480360360208110156106c957600080fd5b503515156112c0565b3480156106de57600080fd5b506104be600480360360208110156106f557600080fd5b50356001600160a01b0316611336565b34801561071157600080fd5b506104806004803603602081101561072857600080fd5b50356001600160a01b03166113b2565b34801561074457600080fd5b506104d56113c7565b34801561075957600080fd5b506104806113d6565b34801561076e57600080fd5b506104be6004803603602081101561078557600080fd5b50356113e6565b34801561079857600080fd5b506104be600480360360208110156107af57600080fd5b50356001600160a01b0316611443565b3480156107cb57600080fd5b50610480600480360360208110156107e257600080fd5b50356001600160a01b03166115c9565b3480156107fe57600080fd5b506104be6004803603602081101561081557600080fd5b50356115eb565b34801561082857600080fd5b506104be6004803603602081101561083f57600080fd5b50356001600160a01b031661167e565b34801561085b57600080fd5b506104be6004803603602081101561087257600080fd5b50356001600160a01b03166116f8565b34801561088e57600080fd5b50610506611772565b3480156108a357600080fd5b506104be611778565b3480156108b857600080fd5b50610506600480360360208110156108cf57600080fd5b50356001600160a01b03166118cc565b3480156108eb57600080fd5b506104be61192e565b34801561090057600080fd5b506104be6004803603602081101561091757600080fd5b50356119d0565b34801561092a57600080fd5b506104d5611a49565b34801561093f57600080fd5b506104be6004803603602081101561095657600080fd5b50351515611a58565b34801561096b57600080fd5b506104d5611ac3565b34801561098057600080fd5b506104806004803603602081101561099757600080fd5b50356001600160a01b0316611ad2565b3480156109b357600080fd5b506104be600480360360208110156109ca57600080fd5b5035611af0565b3480156109dd57600080fd5b506104d5611b9e565b3480156109f257600080fd5b506104d5611bad565b348015610a0757600080fd5b506103d2611bbc565b348015610a1c57600080fd5b506104be60048036036020811015610a3357600080fd5b50351515611c1d565b348015610a4857600080fd5b50610506611c93565b348015610a5d57600080fd5b5061048060048036036040811015610a7457600080fd5b506001600160a01b038135169060200135611c99565b348015610a9657600080fd5b50610506611d07565b348015610aab57600080fd5b5061048060048036036040811015610ac257600080fd5b506001600160a01b038135169060200135611d0d565b348015610ae457600080fd5b50610506611d21565b348015610af957600080fd5b506104be60048036036020811015610b1057600080fd5b50356001600160a01b0316611d27565b348015610b2c57600080fd5b50610480611dbb565b348015610b4157600080fd5b506104be60048036036040811015610b5857600080fd5b506001600160a01b0381351690602001351515611dcb565b348015610b7c57600080fd5b50610506611e4e565b348015610b9157600080fd5b506104be60048036036020811015610ba857600080fd5b50351515611e54565b348015610bbd57600080fd5b506104be611eca565b348015610bd257600080fd5b506104be60048036036020811015610be957600080fd5b50351515611f5b565b348015610bfe57600080fd5b50610480612006565b348015610c1357600080fd5b5061048061200f565b348015610c2857600080fd5b5061048060048036036020811015610c3f57600080fd5b50356001600160a01b031661201f565b348015610c5b57600080fd5b5061050660048036036040811015610c7257600080fd5b506001600160a01b0381358116916020013516612034565b348015610c9657600080fd5b506104d561205f565b348015610cab57600080fd5b506104be60048036036020811015610cc257600080fd5b50356001600160a01b031661206e565b348015610cde57600080fd5b506104be60048036036020811015610cf557600080fd5b50356001600160a01b03166120e7565b348015610d1157600080fd5b50610480612175565b348015610d2657600080fd5b5061048060048036036020811015610d3d57600080fd5b50356001600160a01b0316612185565b348015610d5957600080fd5b506104be60048036036020811015610d7057600080fd5b50356001600160a01b031661219a565b348015610d8c57600080fd5b50610506612292565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e215780601f10610df657610100808354040283529160200191610e21565b820191906000526020600020905b815481529060010190602001808311610e0457829003601f168201915b5050505050905090565b6000610e3f610e38612298565b848461229c565b5060015b92915050565b610e51612298565b6000546001600160a01b03908116911614610ea1576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602655565b6024546001600160a01b031681565b600c5490565b610ec3612298565b6000546001600160a01b03908116911614610f13576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602280546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b6000610f48848484612388565b610fbe84610f54612298565b610fb985604051806060016040528060288152602001613c06602891396001600160a01b038a16600090815260046020526040812090610f92612298565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61290216565b61229c565b5060019392505050565b60135460ff1690565b610fd9612298565b6000546001600160a01b03908116911614611029576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b61038481838587890101010111156110725760405162461bcd60e51b815260040180806020018281038252602d815260200180613b6f602d913960400191505060405180910390fd5b601494909455601883905560168290556017819055601984905591010101601a55565b602554600160c01b900460ff1681565b6110ad612298565b6000546001600160a01b039081169116146110fd576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1661116a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600b5481101561126257816001600160a01b0316600b828154811061118e57fe5b6000918252602090912001546001600160a01b0316141561125a57600b805460001981019081106111bb57fe5b600091825260209091200154600b80546001600160a01b0390921691839081106111e157fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600a90925220805460ff19169055600b80548061123357fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611262565b60010161116d565b5050565b6000610e3f611273612298565b84610fb98560046000611284612298565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61299916565b60145481565b6112c8612298565b6000546001600160a01b03908116911614611318576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b60258054911515600160c01b0260ff60c01b19909216919091179055565b61133e612298565b6000546001600160a01b0390811691161461138e576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b60066020526000908152604090205460ff1681565b6025546001600160a01b031681565b602554600160a81b900460ff1681565b6113ee612298565b6000546001600160a01b0390811691161461143e576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602755565b61144b612298565b6000546001600160a01b0390811691161461149b576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1615611509576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526002602052604090205415611563576001600160a01b038116600090815260026020526040902054611549906129fa565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6001600160a01b03811660009081526005602052604090205460ff165b919050565b6115f3612298565b6000546001600160a01b03908116911614611643576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b609681101561165157600080fd5b6116788161166c612710600c54612a5990919063ffffffff16565b9063ffffffff612a9b16565b60105550565b611686612298565b6000546001600160a01b039081169116146116d6576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602180546001600160a01b0319166001600160a01b0392909216919091179055565b611700612298565b6000546001600160a01b03908116911614611750576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b602380546001600160a01b0319166001600160a01b0392909216919091179055565b60185481565b611780612298565b6000546001600160a01b039081169116146117d0576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b601654601954479160009161180f916117ef919063ffffffff61299916565b60165461180390859063ffffffff612a9b16565b9063ffffffff612a5916565b9050600061184161182d60165460195461299990919063ffffffff16565b60195461180390869063ffffffff612a9b16565b90508015611885576022546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611883573d6000803e3d6000fd5b505b81156118c7576021546040516001600160a01b039091169083156108fc029084906000818181858888f193505050501580156118c5573d6000803e3d6000fd5b505b505050565b6001600160a01b0381166000908152600a602052604081205460ff161561190c57506001600160a01b0381166000908152600360205260409020546115e6565b6001600160a01b038216600090815260026020526040902054610e43906129fa565b611936612298565b6000546001600160a01b03908116911614611986576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6119d8612298565b6000546001600160a01b03908116911614611a28576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b611a438161166c612710600c54612a5990919063ffffffff16565b600f5550565b6021546001600160a01b031681565b611a60612298565b6000546001600160a01b03908116911614611ab0576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6029805460ff1916911515919091179055565b6020546001600160a01b031681565b6001600160a01b03166000908152600a602052604090205460ff1690565b6025805460ff60a01b1916600160a01b179055611b0b612298565b6000546001600160a01b03908116911614611b5b576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6000611b66306118cc565b90506000611b818361166c84620186a063ffffffff612a5916565b9050611b8c81612af4565b50506025805460ff60a01b1916905550565b6000546001600160a01b031690565b6022546001600160a01b031681565b60128054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e215780601f10610df657610100808354040283529160200191610e21565b611c25612298565b6000546001600160a01b03908116911614611c75576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b60258054911515600160c81b0260ff60c81b19909216919091179055565b600e5490565b6000610e3f611ca6612298565b84610fb985604051806060016040528060258152602001613cc06025913960046000611cd0612298565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61290216565b601f5481565b6000610e3f611d1a612298565b8484612388565b60195481565b611d2f612298565b6000546001600160a01b03908116911614611d7f576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b031660009081526007602090815260408083208054600160ff1991821681179092556008909352922080549091169091179055565b602554600160b01b900460ff1681565b611dd3612298565b6000546001600160a01b03908116911614611e23576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60175481565b611e5c612298565b6000546001600160a01b03908116911614611eac576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b60258054911515600160b81b0260ff60b81b19909216919091179055565b6025805460ff60a01b1916600160a01b179055611ee5612298565b6000546001600160a01b03908116911614611f35576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6000611f40306118cc565b9050611f4b81612af4565b506025805460ff60a01b19169055565b611f63612298565b6000546001600160a01b03908116911614611fb3576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b60258054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60295460ff1681565b602554600160c81b900460ff1681565b60086020526000908152604090205460ff1681565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6023546001600160a01b031681565b612076612298565b6000546001600160a01b039081169116146120c6576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600560205260409020805460ff19169055565b6120ef612298565b6000546001600160a01b0390811691161461213f576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760209081526040808320805460ff19908116909155600890925290912080549091169055565b602554600160b81b900460ff1681565b60096020526000908152604090205460ff1681565b6121a2612298565b6000546001600160a01b039081169116146121f2576040805162461bcd60e51b81526020600482018190526024820152600080516020613c2e833981519152604482015290519081900360640190fd5b6001600160a01b0381166122375760405162461bcd60e51b8152600401808060200182810382526026815260200180613b276026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60105481565b3390565b6001600160a01b0383166122e15760405162461bcd60e51b8152600401808060200182810382526024815260200180613c9c6024913960400191505060405180910390fd5b6001600160a01b0382166123265760405162461bcd60e51b8152600401808060200182810382526022815260200180613b4d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166123cd5760405162461bcd60e51b8152600401808060200182810382526025815260200180613c776025913960400191505060405180910390fd5b6001600160a01b0382166124125760405162461bcd60e51b8152600401808060200182810382526023815260200180613ada6023913960400191505060405180910390fd5b600081116124515760405162461bcd60e51b8152600401808060200182810382526029815260200180613c4e6029913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff16156124b5576040805162461bcd60e51b8152602060048201526013602482015272165bdd49dc99481a5b88189b1858dadb1a5cdd606a1b604482015290519081900360640190fd5b602554600160c01b900460ff16156127e9576001600160a01b03821660009081526008602052604090205460ff1615801561250957506001600160a01b03821660009081526005602052604090205460ff16155b801561252e5750612518611b9e565b6001600160a01b0316836001600160a01b031614155b8015612553575061253d611b9e565b6001600160a01b0316826001600160a01b031614155b801561256d57506025546001600160a01b03838116911614155b156125e357600f548111156125bc576040805162461bcd60e51b815260206004820152601060248201526f4f76657220746865204d61782062757960801b604482015290519081900360640190fd5b6010546125d86125cb846118cc565b839063ffffffff61299916565b11156125e357600080fd5b6125eb611b9e565b6001600160a01b0316836001600160a01b031614158015612625575061260f611b9e565b6001600160a01b0316826001600160a01b031614155b801561263957506001600160a01b03821615155b801561265057506001600160a01b03821661dead14155b80156126665750602554600160a01b900460ff16155b156127e957602554600160b81b900460ff16612728576001600160a01b03831660009081526005602052604090205460ff16806126bb57506001600160a01b03821660009081526005602052604090205460ff165b806126de57506001600160a01b03821660009081526007602052604090205460ff165b612728576040805162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015290519081900360640190fd5b60295460ff16156127e95761273b611b9e565b6001600160a01b0316826001600160a01b03161415801561276a57506024546001600160a01b03838116911614155b801561278457506025546001600160a01b03838116911614155b156127e9573260009081526028602052604090205443116127d65760405162461bcd60e51b8152600401808060200182810382526049815260200180613b9c6049913960600191505060405180910390fd5b3260009081526028602052604090204390555b6000612814601e54612808601d54601c5461299990919063ffffffff16565b9063ffffffff61299916565b60265460255491925082101590600160a01b900460ff1615801561284657506025546001600160a01b03868116911614155b801561285b5750602554600160a81b900460ff165b80156128645750805b1561287157612871612c9e565b6001600160a01b03851660009081526005602052604090205460019060ff16806128b357506001600160a01b03851660009081526005602052604090205460ff165b806128e557506025546001600160a01b038781169116148015906128e557506025546001600160a01b03868116911614155b156128ee575060005b6128fa86868684612fe1565b505050505050565b600081848411156129915760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561295657818101518382015260200161293e565b50505050905090810190601f1680156129835780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156129f3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000600d54821115612a3d5760405162461bcd60e51b815260040180806020018281038252602a815260200180613afd602a913960400191505060405180910390fd5b6000612a4761314f565b90506129f3838263ffffffff612a5916565b60006129f383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613178565b600082612aaa57506000610e43565b82820282848281612ab757fe5b04146129f35760405162461bcd60e51b8152600401808060200182810382526021815260200180613be56021913960400191505060405180910390fd5b60408051600280825260608083018452926020830190803883390190505090503081600081518110612b2257fe5b6001600160a01b03928316602091820292909201810191909152602454604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612b7657600080fd5b505afa158015612b8a573d6000803e3d6000fd5b505050506040513d6020811015612ba057600080fd5b5051815182906001908110612bb157fe5b6001600160a01b039283166020918202929092010152602454612bd7913091168461229c565b6024805460405163791ac94760e01b81526004810185815260009382018490523060648301819052426084840181905260a060448501908152875160a486015287516001600160a01b039096169663791ac947968a9691958a9594939092909160c490910190602080880191028083838b5b83811015612c61578181015183820152602001612c49565b505050509050019650505050505050600060405180830381600087803b158015612c8a57600080fd5b505af11580156128fa573d6000803e3d6000fd5b6025805460ff60a01b1916600160a01b179055601d54601c54601e54600092612cd29290916128089163ffffffff61299916565b60255490915060009081908190600160c81b900460ff168015612d075750602654612d0490601463ffffffff612a9b16565b84115b15612da957612d27601361166c6014601e54612a5990919063ffffffff16565b601e54909350612d3d908463ffffffff6131dd16565b601e55601d54612d5b9060139061166c90601463ffffffff612a5916565b601d54909250612d71908363ffffffff6131dd16565b601d55601c54612d8f9060139061166c90601463ffffffff612a5916565b601c54909150612da5908263ffffffff6131dd16565b601c555b601c54600090612dc090600263ffffffff612a5916565b90506000612dd982601c546131dd90919063ffffffff16565b90506000612df8601e54612808601d548661299990919063ffffffff16565b905047612e0482612af4565b6000612e16478363ffffffff6131dd16565b90506000612e2e84611803848963ffffffff612a9b16565b90506000612e4b85611803601d5486612a9b90919063ffffffff16565b90506000612e6f82612e63868663ffffffff6131dd16565b9063ffffffff6131dd16565b90506000612e89600661180385600263ffffffff612a9b16565b90506000612ea3600661180386600463ffffffff612a9b16565b90508415612ef657612eb5898661321f565b604080518b8152602081018790528082018b905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b8315612f73576021546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612f36573d6000803e3d6000fd5b506023546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015612f71573d6000803e3d6000fd5b505b8215612fb5576022546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015612fb3573d6000803e3d6000fd5b505b505050601c97909755505050601d94909455505050601e9190915550506025805460ff60a01b19169055565b80612fee57612fee6132fe565b6001600160a01b0384166000908152600a602052604090205460ff16801561302f57506001600160a01b0383166000908152600a602052604090205460ff16155b156130445761303f848484613330565b613142565b6001600160a01b0384166000908152600a602052604090205460ff1615801561308557506001600160a01b0383166000908152600a602052604090205460ff165b156130955761303f848484613467565b6001600160a01b0384166000908152600a602052604090205460ff161580156130d757506001600160a01b0383166000908152600a602052604090205460ff16155b156130e75761303f848484613522565b6001600160a01b0384166000908152600a602052604090205460ff16801561312757506001600160a01b0383166000908152600a602052604090205460ff165b156131375761303f84848461356c565b613142848484613522565b806118c5576118c56135eb565b600080600061315c6135f9565b9092509050613171828263ffffffff612a5916565b9250505090565b600081836131c75760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561295657818101518382015260200161293e565b5060008385816131d357fe5b0495945050505050565b60006129f383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612902565b6024546132379030906001600160a01b03168461229c565b6024546001600160a01b031663f305d719823085600080613256611b9e565b426040518863ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b03166001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b1580156132d357600080fd5b505af11580156132e7573d6000803e3d6000fd5b50505050506040513d60608110156118c557600080fd5b60145415801561330e5750601a54155b156133185761332e565b60148054601555601a8054601b55600091829055555b565b6000806000806000806133428761376e565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061337a908863ffffffff6131dd16565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546133af908763ffffffff6131dd16565b6001600160a01b03808b1660009081526002602052604080822093909355908a16815220546133e4908663ffffffff61299916565b6001600160a01b038916600090815260026020526040902055613407818a6137bd565b61341184836138b9565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806134798761376e565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506134b1908763ffffffff6131dd16565b6001600160a01b03808b16600090815260026020908152604080832094909455918b168152600390915220546134ed908463ffffffff61299916565b6001600160a01b0389166000908152600360209081526040808320939093556002905220546133e4908663ffffffff61299916565b6000806000806000806135348761376e565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506133af908763ffffffff6131dd16565b60008060008060008061357e8761376e565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506135b6908863ffffffff6131dd16565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546134b1908763ffffffff6131dd16565b601554601455601b54601a55565b600d54600c546000918291825b600b54811015613736578260026000600b848154811061362257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061368757508160036000600b848154811061366057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561369e57600d54600c549450945050505061376a565b6136e460026000600b84815481106136b257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff6131dd16565b925061372c60036000600b84815481106136fa57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff6131dd16565b9150600101613606565b50600c54600d5461374c9163ffffffff612a5916565b82101561376457600d54600c5493509350505061376a565b90925090505b9091565b60008060008060008060008060006137858a6138e9565b92509250925060008060006137a38d868661379e61314f565b61392b565b919f909e50909c50959a5093985091965092945050505050565b601a546137c957611262565b60006137e6601a5461180360165486612a9b90919063ffffffff16565b90506000613805601a5461180360195487612a9b90919063ffffffff16565b90506000613824601a5461180360175488612a9b90919063ffffffff16565b9050600061383e82612e6385818a8963ffffffff6131dd16565b6020549091506138599086906001600160a01b031684613993565b601c5461386c908263ffffffff61299916565b601c55601d54613882908563ffffffff61299916565b601d55601e54613898908463ffffffff61299916565b601e556128fa85306138b486612808868a63ffffffff61299916565b613993565b600d546138cc908363ffffffff6131dd16565b600d55600e546138e2908263ffffffff61299916565b600e555050565b6000806000806138f885613a9f565b9050600061390586613abc565b9050600061391d82612e63898663ffffffff6131dd16565b979296509094509092505050565b6000808080613940888663ffffffff612a9b16565b90506000613954888763ffffffff612a9b16565b90506000613968888863ffffffff612a9b16565b9050600061398082612e63868663ffffffff6131dd16565b939b939a50919850919650505050505050565b600061399d61314f565b905060006139b1838363ffffffff612a9b16565b6001600160a01b0385166000908152600260205260409020549091506139dd908263ffffffff61299916565b6001600160a01b038516600090815260026020908152604080832093909355600a9052205460ff1615613a4d576001600160a01b038416600090815260036020526040902054613a33908463ffffffff61299916565b6001600160a01b0385166000908152600360205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050565b6000610e436103e861180360145485612a9b90919063ffffffff16565b6000610e436103e8611803601a5485612a9b90919063ffffffff1656fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373546f74616c207461782073686f756c64206e6f74206d6f7265207468616e2039302520283930302f31303030295f7472616e736665723a3a205472616e736665722044656c617920656e61626c65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b20616c6c6f7765642e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a142cf67d5c672452661ba4e39f6b2ab8320c12305223eb014ef85b1ef12a85664736f6c63430006020033

Deployed Bytecode Sourcemap

34073:25290:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37721:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37721: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;37721:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38633:161;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38633:161:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;38633:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42905:119;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42905:119:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42905:119:0;;:::i;:::-;;35935:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35935:41:0;;;:::i;:::-;;;;-1:-1:-1;;;;;35935:41:0;;;;;;;;;;;;;;37998:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37998:95:0;;;:::i;:::-;;;;;;;;;;;;;;;;41446:98;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41446:98:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41446:98:0;-1:-1:-1;;;;;41446:98:0;;:::i;35262:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35262:33:0;;;:::i;38802:313::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38802:313:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;38802:313:0;;;;;;;;;;;;;;;;;:::i;37907:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37907:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41704:558;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41704:558:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;41704:558:0;;;;;;;;;;;;;;;;;;;;;;:::i;36163:32::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36163:32:0;;;:::i;40476:479::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40476:479:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40476:479:0;-1:-1:-1;;;;;40476:479:0;;:::i;39123:218::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39123:218:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;39123:218:0;;;;;;;;:::i;35175:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35175:26:0;;;:::i;42453:103::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42453:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42453:103:0;;;;:::i;40963:111::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40963:111:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40963:111:0;-1:-1:-1;;;;;40963:111:0;;:::i;34414:51::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34414:51:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34414:51:0;-1:-1:-1;;;;;34414:51:0;;:::i;35983:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35983:28:0;;;:::i;36052:40::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36052:40:0;;;:::i;43030:118::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43030:118:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43030:118:0;;:::i;40135:333::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40135:333:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40135:333:0;-1:-1:-1;;;;;40135:333:0;;:::i;49205:123::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49205:123:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49205:123:0;-1:-1:-1;;;;;49205:123:0;;:::i;43290:163::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43290:163:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43290:163:0;;:::i;41214:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41214:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41214:110:0;-1:-1:-1;;;;;41214:110:0;;:::i;41332:106::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41332:106:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41332:106:0;-1:-1:-1;;;;;41332:106:0;;:::i;35336:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35336:33:0;;;:::i;48460:465::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48460:465:0;;;:::i;38101:198::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38101:198:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38101:198:0;-1:-1:-1;;;;;38101:198:0;;:::i;26094:148::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26094:148:0;;;:::i;43154:130::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43154:130:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43154:130:0;;:::i;35828:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35828:30:0;;;:::i;42789:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42789:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42789:110:0;;;;:::i;35751:70::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35751:70:0;;;:::i;39626:120::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39626:120:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39626:120:0;-1:-1:-1;;;;;39626:120:0;;:::i;48933:264::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48933:264:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48933:264:0;;:::i;25452:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25452:79:0;;;:::i;35865:24::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35865:24:0;;;:::i;37812:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37812:87:0;;;:::i;42670:111::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42670:111:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42670:111:0;;;;:::i;39754:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39754:111:0;;;:::i;39349:269::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39349:269:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;39349:269:0;;;;;;;;:::i;35710:32::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35710:32:0;;;:::i;38307:167::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38307:167:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;38307:167:0;;;;;;;;:::i;35376:27::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35376:27:0;;;:::i;48012:122::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48012:122:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48012:122:0;-1:-1:-1;;;;;48012:122:0;;:::i;36099:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36099:23:0;;;:::i;41552:144::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41552:144:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;41552:144:0;;;;;;;;;;:::i;35302:27::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35302:27:0;;;:::i;42564:98::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42564:98:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42564:98:0;;;;:::i;48283:169::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48283:169:0;;;:::i;42270:171::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42270:171:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42270:171:0;;;;:::i;36710:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36710:39:0;;;:::i;36202:34::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36202:34:0;;;:::i;34519:50::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34519:50:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34519:50:0;-1:-1:-1;;;;;34519:50:0;;:::i;38482:143::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38482:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;38482:143:0;;;;;;;;;;:::i;35896:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35896:30:0;;;:::i;41086:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41086:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41086:110:0;-1:-1:-1;;;;;41086:110:0;;:::i;48142:133::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48142:133:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48142:133:0;-1:-1:-1;;;;;48142:133:0;;:::i;36129:27::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36129:27:0;;;:::i;34580:46::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34580:46:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34580:46:0;-1:-1:-1;;;;;34580:46:0;;:::i;26397:244::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26397:244:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26397:244:0;-1:-1:-1;;;;;26397:244:0;;:::i;34991:54::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34991:54:0;;;:::i;37721:83::-;37791:5;37784:12;;;;;;;;-1:-1:-1;;37784:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37758:13;;37784:12;;37791:5;;37784:12;;37791:5;37784:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37721:83;:::o;38633:161::-;38708:4;38725:39;38734:12;:10;:12::i;:::-;38748:7;38757:6;38725:8;:39::i;:::-;-1:-1:-1;38782:4:0;38633:161;;;;;:::o;42905:119::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;42978:29:::1;:38:::0;42905:119::o;35935:41::-;;;-1:-1:-1;;;;;35935:41:0;;:::o;37998:95::-;38078:7;;37998:95;:::o;41446:98::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;41517:9:::1;:19:::0;;-1:-1:-1;;;;;;41517:19:0::1;-1:-1:-1::0;;;;;41517:19:0;;;::::1;::::0;;;::::1;::::0;;41446:98::o;35262:33::-;;;;:::o;38802:313::-;38900:4;38917:36;38927:6;38935:9;38946:6;38917:9;:36::i;:::-;38964:121;38973:6;38981:12;:10;:12::i;:::-;38995:89;39033:6;38995:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38995:19:0;;;;;;:11;:19;;;;;;39015:12;:10;:12::i;:::-;-1:-1:-1;;;;;38995:33:0;;;;;;;;;;;;-1:-1:-1;38995:33:0;;;:89;;:37;:89;:::i;:::-;38964:8;:121::i;:::-;-1:-1:-1;39103:4:0;38802:313;;;;;:::o;37907:83::-;37973:9;;;;37907:83;:::o;41704:558::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;41938:3:::1;41928:6;41918:7;41903:12;41888;41870:15;:30;:45;:55;:64;:71;;41862:129;;;;-1:-1:-1::0;;;41862:129:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42002:7;:25:::0;;;;42038:13:::1;:28:::0;;;42077:13:::1;:28:::0;;;42116:8:::1;:18:::0;;;42145:7:::1;:16:::0;;;42204:29;::::1;:40;:50;42174:27;:80:::0;41704:558::o;36163:32::-;;;-1:-1:-1;;;36163:32:0;;;;;:::o;40476:479::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40558:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;40550:60;;;::::0;;-1:-1:-1;;;40550:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40626:9;40621:327;40645:9;:16:::0;40641:20;::::1;40621:327;;;40703:7;-1:-1:-1::0;;;;;40687:23:0::1;:9;40697:1;40687:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;40687:12:0::1;:23;40683:254;;;40746:9;40756:16:::0;;-1:-1:-1;;40756:20:0;;;40746:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;40731:9:::1;:12:::0;;-1:-1:-1;;;;;40746:31:0;;::::1;::::0;40741:1;;40731:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;40731:46:0::1;-1:-1:-1::0;;;;;40731:46:0;;::::1;;::::0;;40796:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;40835:11:::1;:20:::0;;;;:28;;-1:-1:-1;;40835:28:0::1;::::0;;40882:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;40882:15:0;;;;;-1:-1:-1;;;;;;40882:15:0::1;::::0;;;;;40916:5:::1;;40683:254;40663:3;;40621:327;;;;40476:479:::0;:::o;39123:218::-;39211:4;39228:83;39237:12;:10;:12::i;:::-;39251:7;39260:50;39299:10;39260:11;:25;39272:12;:10;:12::i;:::-;-1:-1:-1;;;;;39260:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;39260:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;35175:26::-;;;;:::o;42453:103::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;42524:13:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;42524:24:0::1;-1:-1:-1::0;;;;42524:24:0;;::::1;::::0;;;::::1;::::0;;42453:103::o;40963:111::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41032:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;41032:34:0::1;41062:4;41032:34;::::0;;40963:111::o;34414:51::-;;;;;;;;;;;;;;;:::o;35983:28::-;;;-1:-1:-1;;;;;35983:28:0;;:::o;36052:40::-;;;-1:-1:-1;;;36052:40:0;;;;;:::o;43030:118::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;43110:21:::1;:30:::0;43030:118::o;40135:333::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40218:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;40217:21;40209:61;;;::::0;;-1:-1:-1;;;40209:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;40284:16:0;::::1;40303:1;40284:16:::0;;;:7:::1;:16;::::0;;;;;:20;40281:108:::1;;-1:-1:-1::0;;;;;40360:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;40340:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;40321:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;40281:108:::1;-1:-1:-1::0;;;;;40399:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;40399:27:0::1;40422:4;40399:27:::0;;::::1;::::0;;;40437:9:::1;27:10:-1::0;;23:18;;::::1;45:23:::0;;40437::0;;;;::::1;::::0;;-1:-1:-1;;;;;;40437:23:0::1;::::0;;::::1;::::0;;40135:333::o;49205:123::-;-1:-1:-1;;;;;49293:27:0;;49269:4;49293:27;;;:18;:27;;;;;;;;49205:123;;;;:::o;43290:163::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;43384:3:::1;43370:10;:17;;43362:26;;;::::0;::::1;;43411:34;43434:10;43411:18;43423:5;43411:7;;:11;;:18;;;;:::i;:::-;:22:::0;:34:::1;:22;:34;:::i;:::-;43399:9;:46:::0;-1:-1:-1;43290:163:0:o;41214:110::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;41291:15:::1;:25:::0;;-1:-1:-1;;;;;;41291:25:0::1;-1:-1:-1::0;;;;;41291:25:0;;;::::1;::::0;;;::::1;::::0;;41214:110::o;41332:106::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;41405:15:::1;:25:::0;;-1:-1:-1;;;;;;41405:25:0::1;-1:-1:-1::0;;;;;41405:25:0;;;::::1;::::0;;;::::1;::::0;;41332:106::o;35336:33::-;;;;:::o;48460:465::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;48630:13:::1;::::0;48618:7:::1;::::0;48531:21:::1;::::0;48514:14:::1;::::0;48588:57:::1;::::0;48618:26:::1;::::0;:7;:26:::1;:11;:26;:::i;:::-;48599:13;::::0;48588:25:::1;::::0;:6;;:25:::1;:10;:25;:::i;:::-;:29:::0;:57:::1;:29;:57;:::i;:::-;48565:80;;48656:14;48673:51;48697:26;48709:13;;48697:7;;:11;;:26;;;;:::i;:::-;48684:7;::::0;48673:19:::1;::::0;:6;;:19:::1;:10;:19;:::i;:51::-;48656:68:::0;-1:-1:-1;48765:10:0;;48762:63:::1;;48798:9;::::0;48790:35:::1;::::0;-1:-1:-1;;;;;48798:9:0;;::::1;::::0;48790:35;::::1;;;::::0;48818:6;;48798:9:::1;48790:35:::0;48798:9;48790:35;48818:6;48798:9;48790:35;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;48790:35:0;48762:63;48839:16:::0;;48836:81:::1;;48878:15;::::0;48870:47:::1;::::0;-1:-1:-1;;;;;48878:15:0;;::::1;::::0;48870:47;::::1;;;::::0;48904:12;;48878:15:::1;48870:47:::0;48878:15;48870:47;48904:12;48878:15;48870:47;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;48870:47:0;48836:81;25734:1;;;48460:465::o:0;38101:198::-;-1:-1:-1;;;;;38191:20:0;;38167:7;38191:20;;;:11;:20;;;;;;;;38187:49;;;-1:-1:-1;;;;;;38220:16:0;;;;;;:7;:16;;;;;;38213:23;;38187:49;-1:-1:-1;;;;;38274:16:0;;;;;;:7;:16;;;;;;38254:37;;:19;:37::i;26094:148::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;26201:1:::1;26185:6:::0;;26164:40:::1;::::0;-1:-1:-1;;;;;26185:6:0;;::::1;::::0;26164:40:::1;::::0;26201:1;;26164:40:::1;26232:1;26215:19:::0;;-1:-1:-1;;;;;;26215:19:0::1;::::0;;26094:148::o;43154:130::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;43242:34:::1;43265:10;43242:18;43254:5;43242:7;;:11;;:18;;;;:::i;:34::-;43228:11;:48:::0;-1:-1:-1;43154:130:0:o;35828:30::-;;;-1:-1:-1;;;;;35828:30:0;;:::o;42789:110::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;42860:20:::1;:31:::0;;-1:-1:-1;;42860:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42789:110::o;35751:70::-;;;-1:-1:-1;;;;;35751:70:0;;:::o;39626:120::-;-1:-1:-1;;;;;39718:20:0;39694:4;39718:20;;;:11;:20;;;;;;;;;39626:120::o;48933:264::-;36790:16;:23;;-1:-1:-1;;;;36790:23:0;-1:-1:-1;;;36790:23:0;;;25674:12:::1;:10;:12::i;:::-;25664:6;::::0;-1:-1:-1;;;;;25664:6:0;;::::1;:22:::0;::::1;;25656:67;;;::::0;;-1:-1:-1;;;25656:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;::::1;;49024:23:::2;49050:24;49068:4;49050:9;:24::i;:::-;49024:50:::0;-1:-1:-1;49085:19:0::2;49107:42;49138:10:::0;49107:26:::2;49024:50:::0;49127:5:::2;49107:26;:19;:26;:::i;:42::-;49085:64;;49160:29;49177:11;49160:16;:29::i;:::-;-1:-1:-1::0;;36836:16:0;:24;;-1:-1:-1;;;;36836:24:0;;;-1:-1:-1;48933:264:0:o;25452:79::-;25490:7;25517:6;-1:-1:-1;;;;;25517:6:0;25452:79;:::o;35865:24::-;;;-1:-1:-1;;;;;35865:24:0;;:::o;37812:87::-;37884:7;37877:14;;;;;;;;-1:-1:-1;;37877:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37851:13;;37877:14;;37884:7;;37877:14;;37884:7;37877:14;;;;;;;;;;;;;;;;;;;;;;;;42670:111;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;42747:15:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;42747:26:0::1;-1:-1:-1::0;;;;42747:26:0;;::::1;::::0;;;::::1;::::0;;42670:111::o;39754:::-;39834:23;;39754:111;:::o;39349:269::-;39442:4;39459:129;39468:12;:10;:12::i;:::-;39482:7;39491:96;39530:15;39491:96;;;;;;;;;;;;;;;;;:11;:25;39503:12;:10;:12::i;:::-;-1:-1:-1;;;;;39491:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;39491:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;35710:32::-;;;;:::o;38307:167::-;38385:4;38402:42;38412:12;:10;:12::i;:::-;38426:9;38437:6;38402:9;:42::i;35376:27::-;;;;:::o;48012:122::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48070:10:0::1;;::::0;;;:6:::1;:10;::::0;;;;;;;:17;;48083:4:::1;-1:-1:-1::0;;48070:17:0;;::::1;::::0;::::1;::::0;;;48098::::1;:21:::0;;;;;:28;;;;::::1;::::0;;::::1;::::0;;48012:122::o;36099:23::-;;;-1:-1:-1;;;36099:23:0;;;;;:::o;41552:144::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41647:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:41;;-1:-1:-1;;41647:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41552:144::o;35302:27::-;;;;:::o;42564:98::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;42636:7:::1;:18:::0;;;::::1;;-1:-1:-1::0;;;42636:18:0::1;-1:-1:-1::0;;;;42636:18:0;;::::1;::::0;;;::::1;::::0;;42564:98::o;48283:169::-;36790:16;:23;;-1:-1:-1;;;;36790:23:0;-1:-1:-1;;;36790:23:0;;;25674:12:::1;:10;:12::i;:::-;25664:6;::::0;-1:-1:-1;;;;;25664:6:0;;::::1;:22:::0;::::1;;25656:67;;;::::0;;-1:-1:-1;;;25656:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;::::1;;48350:23:::2;48376:24;48394:4;48376:9;:24::i;:::-;48350:50;;48411:33;48428:15;48411:16;:33::i;:::-;-1:-1:-1::0;36836:16:0;:24;;-1:-1:-1;;;;36836:24:0;;;48283:169::o;42270:171::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;42347:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;42347:32:0;::::1;-1:-1:-1::0;;;;42347:32:0;;::::1;::::0;;;::::1;::::0;;;42395:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;42270:171:::0;:::o;36710:39::-;;;;;;:::o;36202:34::-;;;-1:-1:-1;;;36202:34:0;;;;;:::o;34519:50::-;;;;;;;;;;;;;;;:::o;38482:143::-;-1:-1:-1;;;;;38590:18:0;;;38563:7;38590:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;38482:143::o;35896:30::-;;;-1:-1:-1;;;;;35896:30:0;;:::o;41086:110::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41153:27:0::1;41183:5;41153:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;41153:35:0::1;::::0;;41086:110::o;48142:133::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48203:13:0::1;48219:5;48203:13:::0;;;:6:::1;:13;::::0;;;;;;;:21;;-1:-1:-1;;48203:21:0;;::::1;::::0;;;48235:17:::1;:24:::0;;;;;;:32;;;;::::1;::::0;;48142:133::o;36129:27::-;;;-1:-1:-1;;;36129:27:0;;;;;:::o;34580:46::-;;;;;;;;;;;;;;;:::o;26397:244::-;25674:12;:10;:12::i;:::-;25664:6;;-1:-1:-1;;;;;25664:6:0;;;:22;;;25656:67;;;;;-1:-1:-1;;;25656:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25656:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26486:22:0;::::1;26478:73;;;;-1:-1:-1::0;;;26478:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26588:6;::::0;;26567:38:::1;::::0;-1:-1:-1;;;;;26567:38:0;;::::1;::::0;26588:6;::::1;::::0;26567:38:::1;::::0;::::1;26616:6;:17:::0;;-1:-1:-1;;;;;;26616:17:0::1;-1:-1:-1::0;;;;;26616:17:0;;;::::1;::::0;;;::::1;::::0;;26397:244::o;34991:54::-;;;;:::o;566:98::-;646:10;566:98;:::o;49336:337::-;-1:-1:-1;;;;;49429:19:0;;49421:68;;;;-1:-1:-1;;;49421:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49508:21:0;;49500:68;;;;-1:-1:-1;;;49500:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49581:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;49633:32;;;;;;;;;;;;;;;;;49336:337;;;:::o;49681:2467::-;-1:-1:-1;;;;;49803:18:0;;49795:68;;;;-1:-1:-1;;;49795:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49882:16:0;;49874:64;;;;-1:-1:-1;;;49874:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49966:1;49957:6;:10;49949:64;;;;-1:-1:-1;;;49949:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50032:24:0;;;;;;:18;:24;;;;;;;;:33;50024:65;;;;;-1:-1:-1;;;50024:65:0;;;;;;;;;;;;-1:-1:-1;;;50024:65:0;;;;;;;;;;;;;;;50104:13;;-1:-1:-1;;;50104:13:0;;;;50101:1142;;;-1:-1:-1;;;;;50133:21:0;;;;;;:17;:21;;;;;;;;50132:22;:49;;;;-1:-1:-1;;;;;;50159:22:0;;;;;;:18;:22;;;;;;;;50158:23;50132:49;:68;;;;;50193:7;:5;:7::i;:::-;-1:-1:-1;;;;;50185:15:0;:4;-1:-1:-1;;;;;50185:15:0;;;50132:68;:85;;;;;50210:7;:5;:7::i;:::-;-1:-1:-1;;;;;50204:13:0;:2;-1:-1:-1;;;;;50204:13:0;;;50132:85;:108;;;;-1:-1:-1;50227:13:0;;-1:-1:-1;;;;;50221:19:0;;;50227:13;;50221:19;;50132:108;50129:243;;;50271:11;;50261:6;:21;;50253:49;;;;;-1:-1:-1;;;50253:49:0;;;;;;;;;;;;-1:-1:-1;;;50253:49:0;;;;;;;;;;;;;;;50350:9;;50321:25;50332:13;50342:2;50332:9;:13::i;:::-;50321:6;;:25;:10;:25;:::i;:::-;:38;;50313:47;;;;;;50412:7;:5;:7::i;:::-;-1:-1:-1;;;;;50404:15:0;:4;-1:-1:-1;;;;;50404:15:0;;;:49;;;;;50446:7;:5;:7::i;:::-;-1:-1:-1;;;;;50440:13:0;:2;-1:-1:-1;;;;;50440:13:0;;;50404:49;:86;;;;-1:-1:-1;;;;;;50474:16:0;;;;50404:86;:128;;;;-1:-1:-1;;;;;;50511:21:0;;50525:6;50511:21;;50404:128;:166;;;;-1:-1:-1;50554:16:0;;-1:-1:-1;;;50554:16:0;;;;50553:17;50404:166;50382:850;;;50610:7;;-1:-1:-1;;;50610:7:0;;;;50606:154;;-1:-1:-1;;;;;50649:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;50677:22:0;;;;;;:18;:22;;;;;;;;50649:50;:64;;;-1:-1:-1;;;;;;50703:10:0;;;;;;:6;:10;;;;;;;;50649:64;50641:99;;;;;-1:-1:-1;;;50641:99:0;;;;;;;;;;;;-1:-1:-1;;;50641:99:0;;;;;;;;;;;;;;;50798:20;;;;50794:423;;;50852:7;:5;:7::i;:::-;-1:-1:-1;;;;;50846:13:0;:2;-1:-1:-1;;;;;50846:13:0;;;:47;;;;-1:-1:-1;50877:15:0;;-1:-1:-1;;;;;50863:30:0;;;50877:15;;50863:30;;50846:47;:79;;;;-1:-1:-1;50911:13:0;;-1:-1:-1;;;;;50897:28:0;;;50911:13;;50897:28;;50846:79;50842:356;;;50990:9;50961:39;;;;:28;:39;;;;;;51003:12;-1:-1:-1;50953:140:0;;;;-1:-1:-1;;;50953:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51149:9;51120:39;;;;:28;:39;;;;;51162:12;51120:54;;50842:356;51255:18;51276:72;51330:17;;51276:49;51301:23;;51276:20;;:24;;:49;;;;:::i;:::-;:53;:72;:53;:72;:::i;:::-;51400:29;;51459:16;;51255:93;;-1:-1:-1;51386:43:0;;;;-1:-1:-1;;;51459:16:0;;;;51458:17;:55;;;;-1:-1:-1;51500:13:0;;-1:-1:-1;;;;;51492:21:0;;;51500:13;;51492:21;;51458:55;:93;;;;-1:-1:-1;51530:21:0;;-1:-1:-1;;;51530:21:0;;;;51458:93;:129;;;;;51568:19;51458:129;51440:233;;;51645:16;:14;:16::i;:::-;-1:-1:-1;;;;;51881:24:0;;51754:12;51881:24;;;:18;:24;;;;;;51769:4;;51881:24;;;:50;;-1:-1:-1;;;;;;51909:22:0;;;;;;:18;:22;;;;;;;;51881:50;:100;;;-1:-1:-1;51944:13:0;;-1:-1:-1;;;;;51936:21:0;;;51944:13;;51936:21;;;;:44;;-1:-1:-1;51967:13:0;;-1:-1:-1;;;;;51961:19:0;;;51967:13;;51961:19;;51936:44;51878:146;;;-1:-1:-1;52007:5:0;51878:146;52102:38;52117:4;52122:2;52125:6;52132:7;52102:14;:38::i;:::-;49681:2467;;;;;;:::o;27814:192::-;27900:7;27936:12;27928:6;;;;27920:29;;;;-1:-1:-1;;;27920: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;27920:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;27972:5:0;;;27814:192::o;26911:181::-;26969:7;27001:5;;;27025:6;;;;27017:46;;;;;-1:-1:-1;;;27017:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27083:1;26911:181;-1:-1:-1;;;26911:181:0:o;39873:254::-;39940:7;39979;;39968;:18;;39960:73;;;;-1:-1:-1;;;39960:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40044:19;40067:10;:8;:10::i;:::-;40044:33;-1:-1:-1;40095:24:0;:7;40044:33;40095:24;:11;:24;:::i;29212:132::-;29270:7;29297:39;29301:1;29304;29297:39;;;;;;;;;;;;;;;;;:3;:39::i;28265:471::-;28323:7;28568:6;28564:47;;-1:-1:-1;28598:1:0;28591:8;;28564:47;28635:5;;;28639:1;28635;:5;:1;28659:5;;;;;:10;28651:56;;;;-1:-1:-1;;;28651:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54782:589;54932:16;;;54946:1;54932:16;;;54908:21;54932:16;;;;;54908:21;54932:16;;;;;105:10:-1;54932:16:0;88:34:-1;136:17;;-1:-1;54932:16:0;54908:40;;54977:4;54959;54964:1;54959:7;;;;;;;;-1:-1:-1;;;;;54959:23:0;;;:7;;;;;;;;;;:23;;;;55003:15;;:22;;;-1:-1:-1;;;55003:22:0;;;;:15;;;;;:20;;:22;;;;;54959:7;;55003:22;;;;;:15;:22;;;5:2:-1;;;;30:1;27;20:12;5:2;55003:22:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;55003:22:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55003:22:0;54993:7;;:4;;54998:1;;54993:7;;;;;;-1:-1:-1;;;;;54993:32:0;;;:7;;;;;;;;;:32;55070:15;;55038:62;;55055:4;;55070:15;55088:11;55038:8;:62::i;:::-;55139:15;;;:224;;-1:-1:-1;;;55139:224:0;;;;;;;;:15;:224;;;;;;55317:4;55139:224;;;;;;55337:15;55139:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55139:15:0;;;;:66;;55220:11;;55139:15;;55290:4;;55317;55337:15;55139: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;55139:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55139:224:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;52156:2618:0;36790:16;:23;;-1:-1:-1;;;;36790:23:0;-1:-1:-1;;;36790:23:0;;;52293::::1;::::0;52267:20:::1;::::0;52245:17:::1;::::0;36790:23;;52245:72:::1;::::0;52293:23;;52245:43:::1;::::0;::::1;:21;:43;:::i;:72::-;52443:15;::::0;52215:102;;-1:-1:-1;52328:20:0::1;::::0;;;;;-1:-1:-1;;;52443:15:0;::::1;;;:78:::0;::::1;;;-1:-1:-1::0;52484:29:0::1;::::0;:37:::1;::::0;52518:2:::1;52484:37;:33;:37;:::i;:::-;52462:19;:59;52443:78;52439:533;;;52552:33;52582:2;52552:25;52574:2;52552:17;;:21;;:25;;;;:::i;:33::-;52620:17;::::0;52537:48;;-1:-1:-1;52620:35:0::1;::::0;52537:48;52620:35:::1;:21;:35;:::i;:::-;52600:17;:55:::0;52691:23:::1;::::0;:39:::1;::::0;52727:2:::1;::::0;52691:31:::1;::::0;52719:2:::1;52691:31;:27;:31;:::i;:39::-;52771:23;::::0;52670:60;;-1:-1:-1;52771:47:0::1;::::0;52670:60;52771:47:::1;:27;:47;:::i;:::-;52745:23;:73:::0;52848:20:::1;::::0;:36:::1;::::0;52881:2:::1;::::0;52848:28:::1;::::0;52873:2:::1;52848:28;:24;:28;:::i;:36::-;52922:20;::::0;52833:51;;-1:-1:-1;52922:38:0::1;::::0;52833:51;52922:38:::1;:24;:38;:::i;:::-;52899:20;:61:::0;52439:533:::1;53049:20;::::0;53034:12:::1;::::0;53049:28:::1;::::0;53075:1:::1;53049:28;:25;:28;:::i;:::-;53034:43;;53088:17;53108:30;53133:4;53108:20;;:24;;:30;;;;:::i;:::-;53088:50;;53151:18;53172:56;53210:17;;53172:33;53181:23;;53172:4;:8;;:33;;;;:::i;:56::-;53151:77:::0;-1:-1:-1;53529:21:0::1;53595:28;53151:77:::0;53595:16:::1;:28::i;:::-;53754:13;53770:41;:21;53796:14:::0;53770:41:::1;:25;:41;:::i;:::-;53754:57:::0;-1:-1:-1;53824:17:0::1;53844:31;53864:10:::0;53844:15:::1;53754:57:::0;53854:4;53844:15:::1;:9;:15;:::i;:31::-;53824:51;;53886:20;53909:50;53948:10;53909:34;53919:23;;53909:5;:9;;:34;;;;:::i;:50::-;53886:73:::0;-1:-1:-1;53970:14:0::1;53987:38;53886:73:::0;53987:20:::1;:5:::0;53997:9;53987:20:::1;:9;:20;:::i;:::-;:24:::0;:38:::1;:24;:38;:::i;:::-;53970:55:::0;-1:-1:-1;54036:16:0::1;54055:26;54079:1;54055:19;:12:::0;54072:1:::1;54055:19;:16;:19;:::i;:26::-;54036:45:::0;-1:-1:-1;54092:20:0::1;54115:26;54139:1;54115:19;:12:::0;54132:1:::1;54115:19;:16;:19;:::i;:26::-;54092:49:::0;-1:-1:-1;54157:13:0;;54154:181:::1;;54227:34;54240:9;54251;54227:12;:34::i;:::-;54281:42;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;54154:181;54350:16:::0;;54347:152:::1;;54390:15;::::0;54382:47:::1;::::0;-1:-1:-1;;;;;54390:15:0;;::::1;::::0;54382:47;::::1;;;::::0;54416:12;;54390:15:::1;54382:47:::0;54390:15;54382:47;54416:12;54390:15;54382: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;54452:15:0::1;::::0;54444:43:::1;::::0;-1:-1:-1;;;;;54452:15:0;;::::1;::::0;54444:43;::::1;;;::::0;54478:8;;54452:15:::1;54444:43:::0;54452:15;54444:43;54478:8;54452:15;54444:43;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;54444:43:0;54347:152;54514:10:::0;;54511:76:::1;;54548:9;::::0;54540:35:::1;::::0;-1:-1:-1;;;;;54548:9:0;;::::1;::::0;54540:35;::::1;;;::::0;54568:6;;54548:9:::1;54540:35:::0;54548:9;54540:35;54568:6;54548:9;54540:35;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;54540:35:0;54511:76;-1:-1:-1::0;;;54633:20:0::1;:35:::0;;;;-1:-1:-1;;;54679:23:0::1;:44:::0;;;;-1:-1:-1;;;54734:17:0::1;:32:::0;;;;-1:-1:-1;;36836:16:0;:24;;-1:-1:-1;;;;36836:24:0;;;52156:2618::o;55973:835::-;56085:7;56081:40;;56107:14;:12;:14::i;:::-;-1:-1:-1;;;;;56146:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;56170:22:0;;;;;;:11;:22;;;;;;;;56169:23;56146:46;56142:597;;;56209:48;56231:6;56239:9;56250:6;56209:21;:48::i;:::-;56142:597;;;-1:-1:-1;;;;;56280:19:0;;;;;;:11;:19;;;;;;;;56279:20;:46;;;;-1:-1:-1;;;;;;56303:22:0;;;;;;:11;:22;;;;;;;;56279:46;56275:464;;;56342:46;56362:6;56370:9;56381:6;56342:19;:46::i;56275:464::-;-1:-1:-1;;;;;56411:19:0;;;;;;:11;:19;;;;;;;;56410:20;:47;;;;-1:-1:-1;;;;;;56435:22:0;;;;;;:11;:22;;;;;;;;56434:23;56410:47;56406:333;;;56474:44;56492:6;56500:9;56511:6;56474:17;:44::i;56406:333::-;-1:-1:-1;;;;;56540:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;56563:22:0;;;;;;:11;:22;;;;;;;;56540:45;56536:203;;;56602:48;56624:6;56632:9;56643:6;56602:21;:48::i;56536:203::-;56683:44;56701:6;56709:9;56720:6;56683:17;:44::i;:::-;56763:7;56759:41;;56785:15;:13;:15::i;45147:163::-;45188:7;45209:15;45226;45245:19;:17;:19::i;:::-;45208:56;;-1:-1:-1;45208:56:0;-1:-1:-1;45282:20:0;45208:56;;45282:20;:11;:20;:::i;:::-;45275:27;;;;45147:163;:::o;29840:278::-;29926:7;29961:12;29954:5;29946:28;;;;-1:-1:-1;;;29946:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;29946:28:0;;29985:9;30001:1;29997;:5;;;;;;;29840:278;-1:-1:-1;;;;;29840:278:0:o;27375:136::-;27433:7;27460:43;27464:1;27467;27460:43;;;;;;;;;;;;;;;;;:3;:43::i;55379:513::-;55559:15;;55527:62;;55544:4;;-1:-1:-1;;;;;55559:15:0;55577:11;55527:8;:62::i;:::-;55632:15;;-1:-1:-1;;;;;55632:15:0;:31;55671:9;55704:4;55724:11;55632:15;;55836:7;:5;:7::i;:::-;55858:15;55632:252;;;;;;;;;;;;;-1:-1:-1;;;;;55632:252:0;-1:-1:-1;;;;;55632:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55632:252:0;-1:-1:-1;;;;;55632:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55632:252:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;55632:252:0;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;47535:306:0;47581:7;;:12;:48;;;;-1:-1:-1;47597:27:0;;:32;47581:48;47578:60;;;47631:7;;47578:60;47676:7;;;47658:15;:25;47732:27;;;47694:35;:65;-1:-1:-1;47780:11:0;;;;47802:31;47535:306;:::o;58032:622::-;58135:15;58152:23;58177:12;58191:23;58216:12;58230:34;58268:19;58279:7;58268:10;:19::i;:::-;-1:-1:-1;;;;;58316:15:0;;;;;;:7;:15;;;;;;58134:153;;-1:-1:-1;58134:153:0;;-1:-1:-1;58134:153:0;;-1:-1:-1;58134:153:0;-1:-1:-1;58134:153:0;-1:-1:-1;58134:153:0;-1:-1:-1;58316:28:0;;58336:7;58316:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;58298:15:0;;;;;;:7;:15;;;;;;;;:46;;;;58373:7;:15;;;;:28;;58393:7;58373:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;58355:15:0;;;;;;;:7;:15;;;;;;:46;;;;58433:18;;;;;;;:39;;58456:15;58433:39;:22;:39;:::i;:::-;-1:-1:-1;;;;;58412:18:0;;;;;;:7;:18;;;;;:60;58486:66;58517:26;58545:6;58486:30;:66::i;:::-;58563:23;58575:4;58581;58563:11;:23::i;:::-;58619:9;-1:-1:-1;;;;;58602:44:0;58611:6;-1:-1:-1;;;;;58602:44:0;;58630:15;58602:44;;;;;;;;;;;;;;;;;;58032:622;;;;;;;;;:::o;57382:642::-;57483:15;57500:23;57525:12;57539:23;57564:12;57578:34;57616:19;57627:7;57616:10;:19::i;:::-;-1:-1:-1;;;;;57664:15:0;;;;;;:7;:15;;;;;;57482:153;;-1:-1:-1;57482:153:0;;-1:-1:-1;57482:153:0;;-1:-1:-1;57482:153:0;-1:-1:-1;57482:153:0;-1:-1:-1;57482:153:0;-1:-1:-1;57664:28:0;;57482:153;57664:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;57646:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;57724:18;;;;;:7;:18;;;;;:39;;57747:15;57724:39;:22;:39;:::i;:::-;-1:-1:-1;;;;;57703:18:0;;;;;;:7;:18;;;;;;;;:60;;;;57795:7;:18;;;;:39;;57818:15;57795:39;:22;:39;:::i;56816:558::-;56915:15;56932:23;56957:12;56971:23;56996:12;57010:34;57048:19;57059:7;57048:10;:19::i;:::-;-1:-1:-1;;;;;57096:15:0;;;;;;:7;:15;;;;;;56914:153;;-1:-1:-1;56914:153:0;;-1:-1:-1;56914:153:0;;-1:-1:-1;56914:153:0;-1:-1:-1;56914:153:0;-1:-1:-1;56914:153:0;-1:-1:-1;57096:28:0;;56914:153;57096:28;:19;:28;:::i;58662:698::-;58765:15;58782:23;58807:12;58821:23;58846:12;58860:34;58898:19;58909:7;58898:10;:19::i;:::-;-1:-1:-1;;;;;58946:15:0;;;;;;:7;:15;;;;;;58764:153;;-1:-1:-1;58764:153:0;;-1:-1:-1;58764:153:0;;-1:-1:-1;58764:153:0;-1:-1:-1;58764:153:0;-1:-1:-1;58764:153:0;-1:-1:-1;58946:28:0;;58966:7;58946:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;58928:15:0;;;;;;:7;:15;;;;;;;;:46;;;;59003:7;:15;;;;:28;;59023:7;59003:28;:19;:28;:::i;47853:153::-;47907:15;;47897:7;:25;47963:35;;47933:27;:65;47853:153::o;45318:561::-;45415:7;;45451;;45368;;;;;45475:289;45499:9;:16;45495:20;;45475:289;;;45565:7;45541;:21;45549:9;45559:1;45549:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45549:12:0;45541:21;;;;;;;;;;;;;:31;;:66;;;45600:7;45576;:21;45584:9;45594:1;45584:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45584:12:0;45576:21;;;;;;;;;;;;;:31;45541:66;45537:97;;;45617:7;;45626;;45609:25;;;;;;;;;45537:97;45659:34;45671:7;:21;45679:9;45689:1;45679:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45679:12:0;45671:21;;;;;;;;;;;;;45659:7;;:34;:11;:34;:::i;:::-;45649:44;;45718:34;45730:7;:21;45738:9;45748:1;45738:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45738:12:0;45730:21;;;;;;;;;;;;;45718:7;;:34;:11;:34;:::i;:::-;45708:44;-1:-1:-1;45517:3:0;;45475:289;;;-1:-1:-1;45800:7:0;;45788;;:20;;;:11;:20;:::i;:::-;45778:7;:30;45774:61;;;45818:7;;45827;;45810:25;;;;;;;;45774:61;45854:7;;-1:-1:-1;45863:7:0;-1:-1:-1;45318:561:0;;;:::o;43736:482::-;43795:7;43804;43813;43822;43831;43840;43861:23;43886:12;43900:39;43943:20;43955:7;43943:11;:20::i;:::-;43860:103;;;;;;43975:15;43992:23;44017:12;44033:71;44045:7;44054:4;44060:31;44093:10;:8;:10::i;:::-;44033:11;:71::i;:::-;43974:130;;;;-1:-1:-1;43974:130:0;;-1:-1:-1;44155:15:0;;-1:-1:-1;44172:4:0;;-1:-1:-1;44178:31:0;;-1:-1:-1;43736:482:0;;-1:-1:-1;;;;;43736:482:0:o;45887:915::-;46001:27;;45998:69;;46049:7;;45998:69;46077:18;46098:78;46148:27;;46098:45;46129:13;;46098:26;:30;;:45;;;;:::i;:78::-;46077:99;;46187:12;46202:72;46246:27;;46202:39;46233:7;;46202:26;:30;;:39;;;;:::i;:72::-;46187:87;;46285:13;46301:73;46346:27;;46301:40;46332:8;;46301:26;:30;;:40;;;;:::i;:73::-;46285:89;-1:-1:-1;46385:15:0;46403:63;46285:89;46403:52;46450:4;46403:52;:26;46434:10;46403:42;:30;:42;:::i;:63::-;46496:10;;46385:81;;-1:-1:-1;46479:35:0;;46488:6;;-1:-1:-1;;;;;46496:10:0;46508:5;46479:8;:35::i;:::-;46550:20;;:33;;46575:7;46550:33;:24;:33;:::i;:::-;46527:20;:56;46620:23;;:39;;46648:10;46620:39;:27;:39;:::i;:::-;46594:23;:65;46690:17;;:27;;46712:4;46690:27;:21;:27;:::i;:::-;46670:17;:47;46728:66;46737:6;46753:4;46760:33;46788:4;46760:23;:7;46772:10;46760:23;:11;:23;:::i;:33::-;46728:8;:66::i;43555:173::-;43633:7;;:17;;43645:4;43633:17;:11;:17;:::i;:::-;43623:7;:27;43687:23;;:33;;43715:4;43687:33;:27;:33;:::i;:::-;43661:23;:59;-1:-1:-1;;43555:173:0:o;44226:392::-;44286:7;44295;44304;44324:12;44339:24;44355:7;44339:15;:24::i;:::-;44324:39;;44374:34;44411:44;44447:7;44411:35;:44::i;:::-;44374:81;-1:-1:-1;44466:23:0;44492:49;44374:81;44492:17;:7;44504:4;44492:17;:11;:17;:::i;:49::-;44466:75;44577:4;;-1:-1:-1;44583:26:0;;-1:-1:-1;44226:392:0;;-1:-1:-1;;;44226:392:0:o;44626:513::-;44762:7;;;;44818:24;:7;44830:11;44818:24;:11;:24;:::i;:::-;44800:42;-1:-1:-1;44853:12:0;44868:21;:4;44877:11;44868:21;:8;:21;:::i;:::-;44853:36;-1:-1:-1;44900:39:0;44942:48;:31;44978:11;44942:48;:35;:48;:::i;:::-;44900:90;-1:-1:-1;45001:23:0;45027:54;44900:90;45027:17;:7;45039:4;45027:17;:11;:17;:::i;:54::-;45100:7;;;;-1:-1:-1;45126:4:0;;-1:-1:-1;44626:513:0;;-1:-1:-1;;;;;;;44626:513:0:o;46810:345::-;46888:19;46911:10;:8;:10::i;:::-;46888:33;-1:-1:-1;46932:15:0;46950:23;:6;46888:33;46950:23;:10;:23;:::i;:::-;-1:-1:-1;;;;;46998:11:0;;;;;;:7;:11;;;;;;46932:41;;-1:-1:-1;46998:24:0;;46932:41;46998:24;:15;:24;:::i;:::-;-1:-1:-1;;;;;46984:11:0;;;;;;:7;:11;;;;;;;;:38;;;;47036:11;:15;;;;;;47033:70;;;-1:-1:-1;;;;;47080:11:0;;;;;;:7;:11;;;;;;:23;;47096:6;47080:23;:15;:23;:::i;:::-;-1:-1:-1;;;;;47066:11:0;;;;;;:7;:11;;;;;:37;47033:70;47136:2;-1:-1:-1;;;;;47121:26:0;47130:4;-1:-1:-1;;;;;47121:26:0;;47140:6;47121:26;;;;;;;;;;;;;;;;;;46810:345;;;;;:::o;47167:154::-;47231:7;47258:55;47297:5;47258:20;47270:7;;47258;:11;;:20;;;;:::i;47329:194::-;47413:7;47440:75;47499:5;47440:40;47452:27;;47440:7;:11;;:40;;;;:::i

Swarm Source

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